diff --git a/.editorconfig b/.editorconfig deleted file mode 100644 index a727df3..0000000 --- a/.editorconfig +++ /dev/null @@ -1,12 +0,0 @@ -# http://editorconfig.org -root = true - -[*] -indent_style = tab -end_of_line = lf -charset = utf-8 -trim_trailing_whitespace = true -insert_final_newline = true - -[*.yml] -indent_style = space diff --git a/.gitignore b/.gitignore index 4138168..85fe706 100644 --- a/.gitignore +++ b/.gitignore @@ -165,3 +165,10 @@ dist .env* !.env.example .wrangler/ + +# claude +.claude/ + +# playwright mcp +.playwright-mcp/ + diff --git a/.prettierrc b/.prettierrc deleted file mode 100644 index 5c7b5d3..0000000 --- a/.prettierrc +++ /dev/null @@ -1,6 +0,0 @@ -{ - "printWidth": 140, - "singleQuote": true, - "semi": true, - "useTabs": true -} diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index 0126e59..0000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "files.associations": { - "wrangler.json": "jsonc" - } -} \ No newline at end of file diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..b77bf2a --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2025 + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..36b1980 --- /dev/null +++ b/README.md @@ -0,0 +1,536 @@ +# Cloudflare Prometheus Exporter + +[![Cloudflare Prometheus Exporter](https://github.com/user-attachments/assets/33794cd1-f03d-4382-9bb6-83d77cd01de5)](https://github.com/cloudflare/cloudflare-prometheus-exporter) + +Export Cloudflare metrics to Prometheus. Built on Cloudflare Workers with Durable Objects for stateful metric accumulation. + +[![Deploy to Cloudflare Workers](https://deploy.workers.cloudflare.com/button)](https://deploy.workers.cloudflare.com/?url=https://github.com/cloudflare/cloudflare-prometheus-exporter) + +## Features + +- **58 Prometheus metrics** - requests, bandwidth, threats, workers, load balancers, SSL certs, and more +- **Cloudflare Workers** - serverless edge deployment +- **Durable Objects** - stateful counter accumulation for proper Prometheus semantics +- **Background refresh** - alarms fetch data every 60s; scrapes return cached data instantly +- **Rate limiting** - 40 req/10s with exponential backoff +- **Multi-account** - automatically discovers and exports all accessible accounts/zones +- **Runtime config API** - change settings without redeployment via REST endpoints +- **Configurable** - zone filtering, metric denylist, label exclusion, custom metrics path, and more + +## Quick Start + +### One-Click Deploy + +Click the deploy button above. Configure `CLOUDFLARE_API_TOKEN` as a secret after deployment. + +### Manual Deployment + +```bash +git clone https://github.com/cloudflare/cloudflare-prometheus-exporter.git +cd cloudflare-prometheus-exporter +bun install +wrangler secret put CLOUDFLARE_API_TOKEN +bun run deploy +``` + +## Configuration + +Configuration is resolved in order: **KV overrides** → **env vars** → **defaults**. Use the [Runtime Config API](#runtime-config-api) for dynamic changes without redeployment. + +### Environment Variables + +Set in `wrangler.jsonc` or via `wrangler secret put`: + +| Variable | Default | Description | +|----------|---------|-------------| +| `CLOUDFLARE_API_TOKEN` | - | Cloudflare API token (secret) | +| `QUERY_LIMIT` | 10000 | Max results per GraphQL query | +| `SCRAPE_DELAY_SECONDS` | 300 | Delay before fetching metrics (data propagation) | +| `TIME_WINDOW_SECONDS` | 60 | Query time window | +| `METRIC_REFRESH_INTERVAL_SECONDS` | 60 | Background refresh interval | +| `LOG_LEVEL` | info | Log level (debug/info/warn/error) | +| `LOG_FORMAT` | json | Log format (pretty/json) | +| `ACCOUNT_LIST_CACHE_TTL_SECONDS` | 600 | Account list cache TTL | +| `ZONE_LIST_CACHE_TTL_SECONDS` | 1800 | Zone list cache TTL | +| `SSL_CERTS_CACHE_TTL_SECONDS` | 1800 | SSL cert cache TTL | +| `HEALTH_CHECK_CACHE_TTL_SECONDS` | 10 | Health check cache TTL | +| `EXCLUDE_HOST` | false | Exclude host labels from metrics | +| `CF_HTTP_STATUS_GROUP` | false | Group HTTP status codes (2xx, 4xx, etc.) | +| `DISABLE_UI` | false | Disable landing page (returns 404) | +| `DISABLE_CONFIG_API` | false | Disable config API endpoints (returns 404) | +| `METRICS_DENYLIST` | - | Comma-separated list of metrics to exclude | +| `CF_ACCOUNTS` | - | Comma-separated account IDs to include (default: all) | +| `CF_ZONES` | - | Comma-separated zone IDs to include (default: all) | +| `CF_FREE_TIER_ACCOUNTS` | - | Comma-separated account IDs using free tier (skips paid-tier metrics) | +| `METRICS_PATH` | /metrics | Custom path for metrics endpoint | + +### Creating an API Token + +**Quick setup**: [Create token with pre-filled permissions](https://dash.cloudflare.com/profile/api-tokens?permissionGroupKeys=%5B%7B%22key%22%3A%22zone_analytics%22%2C%22type%22%3A%22read%22%7D%2C%7B%22key%22%3A%22account_analytics%22%2C%22type%22%3A%22read%22%7D%2C%7B%22key%22%3A%22workers_scripts%22%2C%22type%22%3A%22read%22%7D%2C%7B%22key%22%3A%22ssl_certificates%22%2C%22type%22%3A%22read%22%7D%2C%7B%22key%22%3A%22firewall_services%22%2C%22type%22%3A%22read%22%7D%2C%7B%22key%22%3A%22load_balancers%22%2C%22type%22%3A%22read%22%7D%2C%7B%22key%22%3A%22logpush%22%2C%22type%22%3A%22read%22%7D%5D&name=Cloudflare%20Prometheus%20Exporter) + +**Manual setup**: + +| Permission | Access | Required | +|------------|--------|----------| +| Zone > Analytics | Read | Yes | +| Account > Account Analytics | Read | Yes | +| Account > Workers Scripts | Read | Yes | +| Zone > SSL and Certificates | Read | Optional | +| Zone > Firewall Services | Read | Optional | +| Zone > Load Balancers | Read | Optional | +| Account > Logpush | Read | Optional | +| Account > Magic Transit | Read | Optional | + +## Endpoints + +| Path | Method | Description | +|------|--------|-------------| +| `/` | GET | Landing page (disable: `DISABLE_UI`) | +| `/metrics` | GET | Prometheus metrics | +| `/health` | GET | Health check (`{"status":"healthy"}`) | +| `/config` | GET | Get all runtime config (disable: `DISABLE_CONFIG_API`) | +| `/config` | DELETE | Reset all config to env defaults (disable: `DISABLE_CONFIG_API`) | +| `/config/:key` | GET | Get single config value (disable: `DISABLE_CONFIG_API`) | +| `/config/:key` | PUT | Set config override (persisted in KV) (disable: `DISABLE_CONFIG_API`) | +| `/config/:key` | DELETE | Reset config key to env default (disable: `DISABLE_CONFIG_API`) | + +## Prometheus Configuration + +```yaml +scrape_configs: + - job_name: 'cloudflare' + scrape_interval: 60s + scrape_timeout: 30s + static_configs: + - targets: ['your-worker.your-subdomain.workers.dev'] +``` + +## Runtime Config API + +Override configuration at runtime without redeployment. Overrides persist in KV and take precedence over `wrangler.jsonc` env vars. + +### Config Keys + +| Key | Type | Description | +|-----|------|-------------| +| `queryLimit` | number | Max results per GraphQL query | +| `scrapeDelaySeconds` | number | Delay before fetching metrics | +| `timeWindowSeconds` | number | Query time window | +| `metricRefreshIntervalSeconds` | number | Background refresh interval | +| `accountListCacheTtlSeconds` | number | Account list cache TTL | +| `zoneListCacheTtlSeconds` | number | Zone list cache TTL | +| `sslCertsCacheTtlSeconds` | number | SSL cert cache TTL | +| `healthCheckCacheTtlSeconds` | number | Health check cache TTL | +| `logFormat` | `"json"` \| `"pretty"` | Log format | +| `logLevel` | `"debug"` \| `"info"` \| `"warn"` \| `"error"` | Log level | +| `cfAccounts` | string \| null | Comma-separated account IDs (null = all) | +| `cfZones` | string \| null | Comma-separated zone IDs (null = all) | +| `cfFreeTierAccounts` | string | Comma-separated free tier account IDs | +| `metricsDenylist` | string | Comma-separated metrics to exclude | +| `excludeHost` | boolean | Exclude host labels | +| `httpStatusGroup` | boolean | Group HTTP status codes | + +### Examples + +```bash +# Get all config +curl https://your-worker.workers.dev/config + +# Get single value +curl https://your-worker.workers.dev/config/logLevel + +# Set override +curl -X PUT https://your-worker.workers.dev/config/logLevel \ + -H "Content-Type: application/json" \ + -d '{"value": "debug"}' + +# Filter to specific zones +curl -X PUT https://your-worker.workers.dev/config/cfZones \ + -H "Content-Type: application/json" \ + -d '{"value": "zone-id-1,zone-id-2"}' + +# Reset to env default +curl -X DELETE https://your-worker.workers.dev/config/logLevel + +# Reset all overrides +curl -X DELETE https://your-worker.workers.dev/config +``` + +## Available Metrics + +### Zone Request Metrics + +| Metric | Type | Labels | +|--------|------|--------| +| `cloudflare_zone_requests_total` | counter | zone | +| `cloudflare_zone_requests_cached` | gauge | zone | +| `cloudflare_zone_requests_ssl_encrypted` | counter | zone | +| `cloudflare_zone_requests_content_type` | counter | zone, content_type | +| `cloudflare_zone_requests_country` | counter | zone, country, region | +| `cloudflare_zone_requests_status` | counter | zone, status | +| `cloudflare_zone_requests_browser_map_page_views_count` | counter | zone, family | +| `cloudflare_zone_requests_ip_class` | counter | zone, ip_class | +| `cloudflare_zone_requests_ssl_protocol` | counter | zone, ssl_protocol | +| `cloudflare_zone_requests_http_version` | counter | zone, http_version | +| `cloudflare_zone_requests_origin_status_country_host` | counter | zone, origin_status, country, host | +| `cloudflare_zone_requests_status_country_host` | counter | zone, edge_status, country, host | +| `cloudflare_zone_request_method_count` | counter | zone, method | + +### Zone Bandwidth Metrics + +| Metric | Type | Labels | +|--------|------|--------| +| `cloudflare_zone_bandwidth_total` | counter | zone | +| `cloudflare_zone_bandwidth_cached` | counter | zone | +| `cloudflare_zone_bandwidth_ssl_encrypted` | counter | zone | +| `cloudflare_zone_bandwidth_content_type` | counter | zone, content_type | +| `cloudflare_zone_bandwidth_country` | counter | zone, country | + +### Zone Threat Metrics + +| Metric | Type | Labels | +|--------|------|--------| +| `cloudflare_zone_threats_total` | counter | zone | +| `cloudflare_zone_threats_country` | counter | zone, country | +| `cloudflare_zone_threats_type` | counter | zone, type | + +### Zone Page/Unique Metrics + +| Metric | Type | Labels | +|--------|------|--------| +| `cloudflare_zone_pageviews_total` | counter | zone | +| `cloudflare_zone_uniques_total` | counter | zone | + +### Colocation Metrics + +| Metric | Type | Labels | +|--------|------|--------| +| `cloudflare_zone_colocation_visits` | counter | zone, colo, host | +| `cloudflare_zone_colocation_edge_response_bytes` | counter | zone, colo, host | +| `cloudflare_zone_colocation_requests_total` | counter | zone, colo, host | +| `cloudflare_zone_colocation_visits_error` | counter | zone, colo, host, status | +| `cloudflare_zone_colocation_edge_response_bytes_error` | counter | zone, colo, host, status | +| `cloudflare_zone_colocation_requests_total_error` | counter | zone, colo, host, status | + +### Firewall Metrics + +| Metric | Type | Labels | +|--------|------|--------| +| `cloudflare_zone_firewall_events_count` | counter | zone, action, source, rule, host, country | +| `cloudflare_zone_firewall_bots_detected` | counter | zone, bot_score, detection_ids | + +### Health Check Metrics + +| Metric | Type | Labels | +|--------|------|--------| +| `cloudflare_zone_health_check_events_origin_count` | counter | zone, health_status, origin_ip, region, fqdn, failure_reason | +| `cloudflare_zone_health_check_events_avg` | gauge | zone | +| `cloudflare_zone_health_check_rtt_ms` | gauge | zone, origin_ip, fqdn | +| `cloudflare_zone_health_check_ttfb_ms` | gauge | zone, origin_ip, fqdn | +| `cloudflare_zone_health_check_tcp_conn_ms` | gauge | zone, origin_ip, fqdn | +| `cloudflare_zone_health_check_tls_handshake_ms` | gauge | zone, origin_ip, fqdn | + +### Worker Metrics + +| Metric | Type | Labels | +|--------|------|--------| +| `cloudflare_worker_requests_count` | counter | script_name | +| `cloudflare_worker_errors_count` | counter | script_name | +| `cloudflare_worker_cpu_time` | gauge | script_name, quantile | +| `cloudflare_worker_duration` | gauge | script_name, quantile | + +### Load Balancer Metrics + +| Metric | Type | Labels | +|--------|------|--------| +| `cloudflare_zone_pool_health_status` | gauge | zone, lb_name, pool_name | +| `cloudflare_zone_pool_requests_total` | counter | zone, lb_name, pool_name, origin_name | +| `cloudflare_zone_lb_pool_rtt_ms` | gauge | zone, lb_name, pool_name | +| `cloudflare_zone_lb_steering_policy_info` | gauge | zone, lb_name, policy | +| `cloudflare_zone_lb_origins_selected_count` | gauge | zone, lb_name, pool_name | +| `cloudflare_zone_lb_origin_weight` | gauge | zone, lb_name, pool_name, origin_name | + +### Logpush Metrics + +| Metric | Type | Labels | +|--------|------|--------| +| `cloudflare_logpush_failed_jobs_account_count` | counter | account, job_id, destination_type | +| `cloudflare_logpush_failed_jobs_zone_count` | counter | zone, job_id, destination_type | + +### Error Rate Metrics + +| Metric | Type | Labels | +|--------|------|--------| +| `cloudflare_zone_customer_error_4xx_rate` | counter | zone, status, country, host | +| `cloudflare_zone_customer_error_5xx_rate` | counter | zone, status, country, host | +| `cloudflare_zone_edge_error_rate` | gauge | zone, status | +| `cloudflare_zone_origin_error_rate` | gauge | zone, status | +| `cloudflare_zone_origin_response_duration_ms` | gauge | zone, status, country, host | + +### Cache Metrics + +| Metric | Type | Labels | +|--------|------|--------| +| `cloudflare_zone_cache_hit_ratio` | gauge | zone | +| `cloudflare_zone_cache_miss_origin_duration_ms` | gauge | zone, country, host | + +### Bot Metrics + +| Metric | Type | Labels | +|--------|------|--------| +| `cloudflare_zone_bot_request_by_country` | counter | zone, country | + +### Magic Transit Metrics + +| Metric | Type | Labels | +|--------|------|--------| +| `cloudflare_magic_transit_active_tunnels` | gauge | account | +| `cloudflare_magic_transit_healthy_tunnels` | gauge | account | +| `cloudflare_magic_transit_tunnel_failures` | gauge | account | +| `cloudflare_magic_transit_edge_colo_count` | gauge | account | + +### SSL Certificate Metrics + +| Metric | Type | Labels | +|--------|------|--------| +| `cloudflare_zone_certificate_validation_status` | gauge | zone, type, issuer, status | + +### Exporter Info Metrics + +| Metric | Type | Labels | +|--------|------|--------| +| `cloudflare_exporter_up` | gauge | - | +| `cloudflare_exporter_errors_total` | counter | account_id, error_code | +| `cloudflare_accounts_total` | gauge | - | +| `cloudflare_zones_total` | gauge | - | +| `cloudflare_zones_filtered` | gauge | - | +| `cloudflare_zones_processed` | gauge | - | + +## Architecture + + +``` +┌────────────────────────────────────────────────────────────────────────────────┐ +│ WORKER ISOLATE │ +│ ┌────────────────┐ │ +│ │ Worker.fetch │◄─── HTTP /metrics, /health, /config │ +│ │ (HTTP handler) │ │ +│ └───────┬────────┘ │ +│ │ │ +│ │ RPC (stub.export()) │ +│ ▼ │ +│ ┌────────────────────────────────────────────────────────────────────────┐ │ +│ │ CONFIG_KV: Runtime config overrides (merged with env defaults) │ │ +│ └────────────────────────────────────────────────────────────────────────┘ │ +└──────────┼─────────────────────────────────────────────────────────────────────┘ + │ + │ + ▼ +┌────────────────────────────────────────────────────────────────────────────────┐ +│ DURABLE OBJECT ISOLATES │ +│ │ +│ Each DO runs in its own V8 isolate with: │ +│ - Own CloudflareMetricsClient instance (per-isolate singleton) │ +│ - Own persistent storage │ +│ - Own alarm scheduler │ +│ │ +│ ┌─────────────────────────────────────────────────────────────────────────┐ │ +│ │ MetricCoordinator (1 global instance) │ │ +│ │ ID: "metric-coordinator" │ │ +│ │ State: accounts[], lastAccountFetch │ │ +│ │ Cache TTL: 600s (account list) │ │ +│ └─────────────────────────────────────────────────────────────────────────┘ │ +│ │ RPC │ +│ ┌────────────┼────────────┐ │ +│ ▼ ▼ ▼ │ +│ ┌─────────────────┐ ┌─────────────────┐ ┌─────────────────┐ │ +│ │ AccountMetric │ │ AccountMetric │ │ AccountMetric │ │ +│ │ Coordinator │ │ Coordinator │ │ Coordinator │ │ +│ │ account:acct1 │ │ account:acct2 │ │ account:acct3 │ │ +│ │ Alarm: 60s │ │ Alarm: 60s │ │ Alarm: 60s │ │ +│ │ Zone TTL: 1800s │ │ Zone TTL: 1800s │ │ Zone TTL: 1800s │ │ +│ └───────┬─────────┘ └───────┬─────────┘ └───────┬─────────┘ │ +│ │ RPC │ │ │ +│ ┌──────┴─────┐ ┌──────┴─────┐ ┌──────┴─────┐ │ +│ ▼ ▼ ▼ ▼ ▼ ▼ │ +│ ┌─────┐ ┌─────┐ ┌─────┐ ┌─────┐ ┌─────┐ ┌─────┐ │ +│ │Exprt│ │Exprt│ │Exprt│ │Exprt│ │Exprt│ │Exprt│ │ +│ │(13) │ .. │(N) │ │(13) │ .. │(N) │ │(13) │ .. │(N) │ │ +│ │acct │ │zone │ │acct │ │zone │ │acct │ │zone │ │ +│ └─────┘ └─────┘ └─────┘ └─────┘ └─────┘ └─────┘ │ +│ │ +│ MetricExporter DOs (per account): │ +│ - Account-scoped (13): worker-totals, logpush-account, magic-transit, │ +│ http-metrics, adaptive-metrics, edge-country-metrics, colo-metrics, │ +│ colo-error-metrics, request-method-metrics, health-check-metrics, │ +│ load-balancer-metrics, logpush-zone, origin-status-metrics │ +│ - Zone-scoped (N per account, 1 per zone): ssl-certificates │ +│ │ +│ ┌─────────────────────────────────────────────────────────────────────────┐ │ +│ │ CloudflareMetricsClient (per-isolate) │ │ +│ │ - urql Client (GraphQL) │ │ +│ │ - Cloudflare SDK (REST) │ │ +│ │ - DataLoader: firewallRulesLoader (batches Promise.all calls) │ │ +│ │ - Global Rate limiter: 40 req/10s with exponential backoff │ │ +│ └─────────────────────────────────────────────────────────────────────────┘ │ +└────────────────────────────────────────────────────────────────────────────────┘ +``` + +### Request Path: Prometheus Scrape (GET /metrics) + +``` +┌──────────┐ GET /metrics ┌────────┐ +│Prometheus│────────────────▶│ Worker │ +│ Server │ │ .fetch │ +└──────────┘ └───┬────┘ + │ + ┌──────────────────────┴──────────────────────┐ + │ MetricCoordinator │ + │ │ + │ 1. Check account cache (TTL: 600s) │ + │ 2. If stale → getAccounts() │ + │ 3. Fan out to AccountMetricCoordinators │ + └─────────────────────┬───────────────────────┘ + │ + ┌────────────────────────┼────────────────────────┐ + │ │ │ + ▼ ▼ ▼ +┌────────────────┐ ┌────────────────┐ ┌────────────────┐ +│ AccountMetric │ │ AccountMetric │ │ AccountMetric │ +│ Coordinator │ │ Coordinator │ │ Coordinator │ +│ (Account A) │ │ (Account B) │ │ (Account C) │ +│ │ │ │ │ │ +│ 1. Check if │ │ │ │ │ +│ refresh() │ │ (parallel) │ │ (parallel) │ +│ needed │ │ │ │ │ +│ 2. Fan out to │ │ │ │ │ +│ exporters │ │ │ │ │ +└───────┬────────┘ └───────┬────────┘ └───────┬────────┘ + │ │ │ + ┌─────┴─────┐ ┌─────┴─────┐ ┌─────┴─────┐ + ▼ ▼ ▼ ▼ ▼ ▼ +┌─────┐ ┌─────┐ ┌─────┐ ┌─────┐ ┌─────┐ ┌─────┐ +│Exprt│...│Exprt│ │Exprt│...│Exprt│ │Exprt│...│Exprt│ +│13+N │ │ │ │13+N │ │ │ │13+N │ │ │ +│ │ │ │ │ │ │ │ │ │ │ │ +│ ret │ │ ret │ │ ret │ │ ret │ │ ret │ │ ret │ +│cache│ │cache│ │cache│ │cache│ │cache│ │cache│ +└──┬──┘ └──┬──┘ └──┬──┘ └──┬──┘ └──┬──┘ └──┬──┘ + │ │ │ │ │ │ + └────┬────┘ └────┬────┘ └────┬────┘ + │ │ │ + └────────────────────┼────────────────────┘ + │ + ▼ + ┌─────────────────┐ + │ FAN-IN: Merge │ + │ all metrics + │ + │ serialize to │ + │ Prometheus fmt │ + └────────┬────────┘ + │ + ▼ + ┌─────────────────┐ + │ HTTP Response │ + │ text/plain │ + └─────────────────┘ + +┌──────────────────────────────────────────────────────────┐ +│ NOTE: Request path is FAST - just reads cached metrics │ +│ No network calls to Cloudflare API during scrape │ +│ (unless account list cache is stale) │ +└──────────────────────────────────────────────────────────┘ +``` + +### Background Refresh Path: Alarm-Driven Metric Fetching + +``` +┌──────────────────────────────────────────────┐ +│ ALARM TRIGGERS │ +│ AccountMetricCoordinator: every 60s │ +│ MetricExporter: every 60s + 1-5s fixed jitter│ +└──────────────────────────────────────────────┘ +``` + +**AccountMetricCoordinator.alarm()** + +``` +┌────────────────────────────────────────────────────────────────────────┐ +│ AccountMetricCoordinator.refresh() │ +│ │ +│ 1. Check zone cache (TTL: 1800s / 30 min) │ +│ │ +│ 2. If stale: │ +│ ┌────────────────────────────────────────────────────────────────┐ │ +│ │ REST: getZones(accountId) │ │ +│ │ └─► DataLoader batches if multiple calls same tick │ │ +│ └────────────────────────────────────────────────────────────────┘ │ +│ ┌────────────────────────────────────────────────────────────────┐ │ +│ │ REST: getFirewallRules(zoneId) × N zones (parallel) │ │ +│ │ └─► DataLoader batches parallel calls │ │ +│ └────────────────────────────────────────────────────────────────┘ │ +│ │ +│ 3. Push context to MetricExporter DOs: │ +│ ┌────────────────────────────────────────────────────────────────┐ │ +│ │ Account-scoped (13 exporters): │ │ +│ │ exporter.updateZoneContext(accountId, accountName, zones) │ │ +│ │ │ │ +│ │ Zone-scoped (N exporters, 1 per zone): │ │ +│ │ exporter.initializeZone(zone, accountId, accountName) │ │ +│ └────────────────────────────────────────────────────────────────┘ │ +│ │ +│ 4. Schedule next alarm (60s) │ +└────────────────────────────────────────────────────────────────────────┘ +``` + +**MetricExporter.alarm()** + +``` +┌────────────────────────────────────────────────────────────────────────┐ +│ MetricExporter.refresh() for account-scoped queries │ +│ │ +│ Query Types (13 total): │ +│ ├── ACCOUNT-LEVEL (single account per query, 3): │ +│ │ ├── worker-totals │ +│ │ ├── logpush-account │ +│ │ └── magic-transit │ +│ │ │ +│ └── ZONE-LEVEL (all zones batched in one query, 10): │ +│ ├── http-metrics │ +│ ├── adaptive-metrics │ +│ ├── edge-country-metrics │ +│ ├── colo-metrics │ +│ ├── colo-error-metrics │ +│ ├── request-method-metrics │ +│ ├── health-check-metrics │ +│ ├── load-balancer-metrics │ +│ ├── logpush-zone │ +│ └── origin-status-metrics │ +│ │ +│ After fetch: Process counters → Cache metrics → Schedule next alarm │ +│ Jitter: 1-5s fixed (tighter clustering for time range alignment) │ +└────────────────────────────────────────────────────────────────────────┘ +``` + +## Development + +```bash +bun install # Install dependencies +bun run dev # Run locally (port 8787) +bun run check # Lint + format check +bun run deploy # Deploy to Cloudflare +``` + +## Tech Stack + +- **[Hono](https://hono.dev/)** - Web framework +- **[urql](https://formidable.com/open-source/urql/)** - GraphQL client +- **[gql.tada](https://gql-tada.0no.co/)** - Type-safe GraphQL +- **[Zod](https://zod.dev/)** - Schema validation +- **[DataLoader](https://github.com/graphql/dataloader)** - Request batching +- **[Cloudflare SDK](https://developers.cloudflare.com/api/)** - REST API client +- **[Cloudflare KV](https://developers.cloudflare.com/kv/)** - Runtime config persistence + +## License + +MIT diff --git a/biome.json b/biome.json new file mode 100644 index 0000000..1cf4830 --- /dev/null +++ b/biome.json @@ -0,0 +1,40 @@ +{ + "$schema": "https://biomejs.dev/schemas/2.3.8/schema.json", + "vcs": { + "enabled": true, + "clientKind": "git", + "useIgnoreFile": true + }, + "files": { + "ignoreUnknown": false, + "includes": [ + "**", + "!worker-configuration.d.ts", + "!src/gql/graphql-env.d.ts", + "!src/gql/schema.gql" + ] + }, + "formatter": { + "enabled": true, + "indentStyle": "tab" + }, + "linter": { + "enabled": true, + "rules": { + "recommended": true + } + }, + "javascript": { + "formatter": { + "quoteStyle": "double" + } + }, + "assist": { + "enabled": true, + "actions": { + "source": { + "organizeImports": "on" + } + } + } +} diff --git a/bun.lock b/bun.lock new file mode 100644 index 0000000..ea09759 --- /dev/null +++ b/bun.lock @@ -0,0 +1,332 @@ +{ + "lockfileVersion": 1, + "workspaces": { + "": { + "name": "cloudflare-prometheus-exporter-v2", + "dependencies": { + "@urql/core": "^6.0.1", + "cloudflare": "^5.2.0", + "consola": "^3.4.2", + "dataloader": "^2.2.3", + "gql.tada": "^1.9.0", + "graphql": "^16.12.0", + "install": "^0.13.0", + "zod": "^4.1.13", + }, + "devDependencies": { + "@biomejs/biome": "^2.3.8", + "typescript": "^5.9.3", + "wrangler": "^4.51.0", + }, + }, + }, + "packages": { + "@0no-co/graphql.web": ["@0no-co/graphql.web@1.2.0", "", { "peerDependencies": { "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0" }, "optionalPeers": ["graphql"] }, "sha512-/1iHy9TTr63gE1YcR5idjx8UREz1s0kFhydf3bBLCXyqjhkIc6igAzTOx3zPifCwFR87tsh/4Pa9cNts6d2otw=="], + + "@0no-co/graphqlsp": ["@0no-co/graphqlsp@1.15.1", "", { "dependencies": { "@gql.tada/internal": "^1.0.0", "graphql": "^15.5.0 || ^16.0.0 || ^17.0.0" }, "peerDependencies": { "typescript": "^5.0.0" } }, "sha512-UBDBuVGpX5Ti0PjGnSAzkMG04psNYxKfJ+1bgF8HFPfHHpKNVl4GULHSNW0GTOngcYCYA70c+InoKw0qjHwmVQ=="], + + "@biomejs/biome": ["@biomejs/biome@2.3.8", "", { "optionalDependencies": { "@biomejs/cli-darwin-arm64": "2.3.8", "@biomejs/cli-darwin-x64": "2.3.8", "@biomejs/cli-linux-arm64": "2.3.8", "@biomejs/cli-linux-arm64-musl": "2.3.8", "@biomejs/cli-linux-x64": "2.3.8", "@biomejs/cli-linux-x64-musl": "2.3.8", "@biomejs/cli-win32-arm64": "2.3.8", "@biomejs/cli-win32-x64": "2.3.8" }, "bin": { "biome": "bin/biome" } }, "sha512-Qjsgoe6FEBxWAUzwFGFrB+1+M8y/y5kwmg5CHac+GSVOdmOIqsAiXM5QMVGZJ1eCUCLlPZtq4aFAQ0eawEUuUA=="], + + "@biomejs/cli-darwin-arm64": ["@biomejs/cli-darwin-arm64@2.3.8", "", { "os": "darwin", "cpu": "arm64" }, "sha512-HM4Zg9CGQ3txTPflxD19n8MFPrmUAjaC7PQdLkugeeC0cQ+PiVrd7i09gaBS/11QKsTDBJhVg85CEIK9f50Qww=="], + + "@biomejs/cli-darwin-x64": ["@biomejs/cli-darwin-x64@2.3.8", "", { "os": "darwin", "cpu": "x64" }, "sha512-lUDQ03D7y/qEao7RgdjWVGCu+BLYadhKTm40HkpJIi6kn8LSv5PAwRlew/DmwP4YZ9ke9XXoTIQDO1vAnbRZlA=="], + + "@biomejs/cli-linux-arm64": ["@biomejs/cli-linux-arm64@2.3.8", "", { "os": "linux", "cpu": "arm64" }, "sha512-Uo1OJnIkJgSgF+USx970fsM/drtPcQ39I+JO+Fjsaa9ZdCN1oysQmy6oAGbyESlouz+rzEckLTF6DS7cWse95g=="], + + "@biomejs/cli-linux-arm64-musl": ["@biomejs/cli-linux-arm64-musl@2.3.8", "", { "os": "linux", "cpu": "arm64" }, "sha512-PShR4mM0sjksUMyxbyPNMxoKFPVF48fU8Qe8Sfx6w6F42verbwRLbz+QiKNiDPRJwUoMG1nPM50OBL3aOnTevA=="], + + "@biomejs/cli-linux-x64": ["@biomejs/cli-linux-x64@2.3.8", "", { "os": "linux", "cpu": "x64" }, "sha512-QDPMD5bQz6qOVb3kiBui0zKZXASLo0NIQ9JVJio5RveBEFgDgsvJFUvZIbMbUZT3T00M/1wdzwWXk4GIh0KaAw=="], + + "@biomejs/cli-linux-x64-musl": ["@biomejs/cli-linux-x64-musl@2.3.8", "", { "os": "linux", "cpu": "x64" }, "sha512-YGLkqU91r1276uwSjiUD/xaVikdxgV1QpsicT0bIA1TaieM6E5ibMZeSyjQ/izBn4tKQthUSsVZacmoJfa3pDA=="], + + "@biomejs/cli-win32-arm64": ["@biomejs/cli-win32-arm64@2.3.8", "", { "os": "win32", "cpu": "arm64" }, "sha512-H4IoCHvL1fXKDrTALeTKMiE7GGWFAraDwBYFquE/L/5r1927Te0mYIGseXi4F+lrrwhSWbSGt5qPFswNoBaCxg=="], + + "@biomejs/cli-win32-x64": ["@biomejs/cli-win32-x64@2.3.8", "", { "os": "win32", "cpu": "x64" }, "sha512-RguzimPoZWtBapfKhKjcWXBVI91tiSprqdBYu7tWhgN8pKRZhw24rFeNZTNf6UiBfjCYCi9eFQs/JzJZIhuK4w=="], + + "@cloudflare/kv-asset-handler": ["@cloudflare/kv-asset-handler@0.4.1", "", { "dependencies": { "mime": "^3.0.0" } }, "sha512-Nu8ahitGFFJztxUml9oD/DLb7Z28C8cd8F46IVQ7y5Btz575pvMY8AqZsXkX7Gds29eCKdMgIHjIvzskHgPSFg=="], + + "@cloudflare/unenv-preset": ["@cloudflare/unenv-preset@2.7.11", "", { "peerDependencies": { "unenv": "2.0.0-rc.24", "workerd": "^1.20251106.1" } }, "sha512-se23f1D4PxKrMKOq+Stz+Yn7AJ9ITHcEecXo2Yjb+UgbUDCEBch1FXQC6hx6uT5fNA3kmX3mfzeZiUmpK1W9IQ=="], + + "@cloudflare/workerd-darwin-64": ["@cloudflare/workerd-darwin-64@1.20251125.0", "", { "os": "darwin", "cpu": "x64" }, "sha512-xDIVJi8fPxBseRoEIzLiUJb0N+DXnah/ynS+Unzn58HEoKLetUWiV/T1Fhned//lo5krnToG9KRgVRs0SOOTpw=="], + + "@cloudflare/workerd-darwin-arm64": ["@cloudflare/workerd-darwin-arm64@1.20251125.0", "", { "os": "darwin", "cpu": "arm64" }, "sha512-k5FQET5PXnWjeDqZUpl4Ah/Rn0bH6mjfUtTyeAy6ky7QB3AZpwIhgWQD0vOFB3OvJaK4J/K4cUtNChYXB9mY/A=="], + + "@cloudflare/workerd-linux-64": ["@cloudflare/workerd-linux-64@1.20251125.0", "", { "os": "linux", "cpu": "x64" }, "sha512-at6n/FomkftykWx0EqVLUZ0juUFz3ORtEPeBbW9ZZ3BQEyfVUtYfdcz/f1cN8Yyb7TE9ovF071P0mBRkx83ODw=="], + + "@cloudflare/workerd-linux-arm64": ["@cloudflare/workerd-linux-arm64@1.20251125.0", "", { "os": "linux", "cpu": "arm64" }, "sha512-EiRn+jrNaIs1QveabXGHFoyn3s/l02ui6Yp3nssyNhtmtgviddtt8KObBfM1jQKjXTpZlunhwdN4Bxf4jhlOMw=="], + + "@cloudflare/workerd-windows-64": ["@cloudflare/workerd-windows-64@1.20251125.0", "", { "os": "win32", "cpu": "x64" }, "sha512-6fdIsSeu65g++k8Y2DKzNKs0BkoU+KKI6GAAVBOLh2vvVWWnCP1OgMdVb5JAdjDrjDT5i0GSQu0bgQ8fPsW6zw=="], + + "@cspotcode/source-map-support": ["@cspotcode/source-map-support@0.8.1", "", { "dependencies": { "@jridgewell/trace-mapping": "0.3.9" } }, "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw=="], + + "@emnapi/runtime": ["@emnapi/runtime@1.7.1", "", { "dependencies": { "tslib": "^2.4.0" } }, "sha512-PVtJr5CmLwYAU9PZDMITZoR5iAOShYREoR45EyyLrbntV50mdePTgUn4AmOw90Ifcj+x2kRjdzr1HP3RrNiHGA=="], + + "@esbuild/aix-ppc64": ["@esbuild/aix-ppc64@0.25.4", "", { "os": "aix", "cpu": "ppc64" }, "sha512-1VCICWypeQKhVbE9oW/sJaAmjLxhVqacdkvPLEjwlttjfwENRSClS8EjBz0KzRyFSCPDIkuXW34Je/vk7zdB7Q=="], + + "@esbuild/android-arm": ["@esbuild/android-arm@0.25.4", "", { "os": "android", "cpu": "arm" }, "sha512-QNdQEps7DfFwE3hXiU4BZeOV68HHzYwGd0Nthhd3uCkkEKK7/R6MTgM0P7H7FAs5pU/DIWsviMmEGxEoxIZ+ZQ=="], + + "@esbuild/android-arm64": ["@esbuild/android-arm64@0.25.4", "", { "os": "android", "cpu": "arm64" }, "sha512-bBy69pgfhMGtCnwpC/x5QhfxAz/cBgQ9enbtwjf6V9lnPI/hMyT9iWpR1arm0l3kttTr4L0KSLpKmLp/ilKS9A=="], + + "@esbuild/android-x64": ["@esbuild/android-x64@0.25.4", "", { "os": "android", "cpu": "x64" }, "sha512-TVhdVtQIFuVpIIR282btcGC2oGQoSfZfmBdTip2anCaVYcqWlZXGcdcKIUklfX2wj0JklNYgz39OBqh2cqXvcQ=="], + + "@esbuild/darwin-arm64": ["@esbuild/darwin-arm64@0.25.4", "", { "os": "darwin", "cpu": "arm64" }, "sha512-Y1giCfM4nlHDWEfSckMzeWNdQS31BQGs9/rouw6Ub91tkK79aIMTH3q9xHvzH8d0wDru5Ci0kWB8b3up/nl16g=="], + + "@esbuild/darwin-x64": ["@esbuild/darwin-x64@0.25.4", "", { "os": "darwin", "cpu": "x64" }, "sha512-CJsry8ZGM5VFVeyUYB3cdKpd/H69PYez4eJh1W/t38vzutdjEjtP7hB6eLKBoOdxcAlCtEYHzQ/PJ/oU9I4u0A=="], + + "@esbuild/freebsd-arm64": ["@esbuild/freebsd-arm64@0.25.4", "", { "os": "freebsd", "cpu": "arm64" }, "sha512-yYq+39NlTRzU2XmoPW4l5Ifpl9fqSk0nAJYM/V/WUGPEFfek1epLHJIkTQM6bBs1swApjO5nWgvr843g6TjxuQ=="], + + "@esbuild/freebsd-x64": ["@esbuild/freebsd-x64@0.25.4", "", { "os": "freebsd", "cpu": "x64" }, "sha512-0FgvOJ6UUMflsHSPLzdfDnnBBVoCDtBTVyn/MrWloUNvq/5SFmh13l3dvgRPkDihRxb77Y17MbqbCAa2strMQQ=="], + + "@esbuild/linux-arm": ["@esbuild/linux-arm@0.25.4", "", { "os": "linux", "cpu": "arm" }, "sha512-kro4c0P85GMfFYqW4TWOpvmF8rFShbWGnrLqlzp4X1TNWjRY3JMYUfDCtOxPKOIY8B0WC8HN51hGP4I4hz4AaQ=="], + + "@esbuild/linux-arm64": ["@esbuild/linux-arm64@0.25.4", "", { "os": "linux", "cpu": "arm64" }, "sha512-+89UsQTfXdmjIvZS6nUnOOLoXnkUTB9hR5QAeLrQdzOSWZvNSAXAtcRDHWtqAUtAmv7ZM1WPOOeSxDzzzMogiQ=="], + + "@esbuild/linux-ia32": ["@esbuild/linux-ia32@0.25.4", "", { "os": "linux", "cpu": "ia32" }, "sha512-yTEjoapy8UP3rv8dB0ip3AfMpRbyhSN3+hY8mo/i4QXFeDxmiYbEKp3ZRjBKcOP862Ua4b1PDfwlvbuwY7hIGQ=="], + + "@esbuild/linux-loong64": ["@esbuild/linux-loong64@0.25.4", "", { "os": "linux", "cpu": "none" }, "sha512-NeqqYkrcGzFwi6CGRGNMOjWGGSYOpqwCjS9fvaUlX5s3zwOtn1qwg1s2iE2svBe4Q/YOG1q6875lcAoQK/F4VA=="], + + "@esbuild/linux-mips64el": ["@esbuild/linux-mips64el@0.25.4", "", { "os": "linux", "cpu": "none" }, "sha512-IcvTlF9dtLrfL/M8WgNI/qJYBENP3ekgsHbYUIzEzq5XJzzVEV/fXY9WFPfEEXmu3ck2qJP8LG/p3Q8f7Zc2Xg=="], + + "@esbuild/linux-ppc64": ["@esbuild/linux-ppc64@0.25.4", "", { "os": "linux", "cpu": "ppc64" }, "sha512-HOy0aLTJTVtoTeGZh4HSXaO6M95qu4k5lJcH4gxv56iaycfz1S8GO/5Jh6X4Y1YiI0h7cRyLi+HixMR+88swag=="], + + "@esbuild/linux-riscv64": ["@esbuild/linux-riscv64@0.25.4", "", { "os": "linux", "cpu": "none" }, "sha512-i8JUDAufpz9jOzo4yIShCTcXzS07vEgWzyX3NH2G7LEFVgrLEhjwL3ajFE4fZI3I4ZgiM7JH3GQ7ReObROvSUA=="], + + "@esbuild/linux-s390x": ["@esbuild/linux-s390x@0.25.4", "", { "os": "linux", "cpu": "s390x" }, "sha512-jFnu+6UbLlzIjPQpWCNh5QtrcNfMLjgIavnwPQAfoGx4q17ocOU9MsQ2QVvFxwQoWpZT8DvTLooTvmOQXkO51g=="], + + "@esbuild/linux-x64": ["@esbuild/linux-x64@0.25.4", "", { "os": "linux", "cpu": "x64" }, "sha512-6e0cvXwzOnVWJHq+mskP8DNSrKBr1bULBvnFLpc1KY+d+irZSgZ02TGse5FsafKS5jg2e4pbvK6TPXaF/A6+CA=="], + + "@esbuild/netbsd-arm64": ["@esbuild/netbsd-arm64@0.25.4", "", { "os": "none", "cpu": "arm64" }, "sha512-vUnkBYxZW4hL/ie91hSqaSNjulOnYXE1VSLusnvHg2u3jewJBz3YzB9+oCw8DABeVqZGg94t9tyZFoHma8gWZQ=="], + + "@esbuild/netbsd-x64": ["@esbuild/netbsd-x64@0.25.4", "", { "os": "none", "cpu": "x64" }, "sha512-XAg8pIQn5CzhOB8odIcAm42QsOfa98SBeKUdo4xa8OvX8LbMZqEtgeWE9P/Wxt7MlG2QqvjGths+nq48TrUiKw=="], + + "@esbuild/openbsd-arm64": ["@esbuild/openbsd-arm64@0.25.4", "", { "os": "openbsd", "cpu": "arm64" }, "sha512-Ct2WcFEANlFDtp1nVAXSNBPDxyU+j7+tId//iHXU2f/lN5AmO4zLyhDcpR5Cz1r08mVxzt3Jpyt4PmXQ1O6+7A=="], + + "@esbuild/openbsd-x64": ["@esbuild/openbsd-x64@0.25.4", "", { "os": "openbsd", "cpu": "x64" }, "sha512-xAGGhyOQ9Otm1Xu8NT1ifGLnA6M3sJxZ6ixylb+vIUVzvvd6GOALpwQrYrtlPouMqd/vSbgehz6HaVk4+7Afhw=="], + + "@esbuild/sunos-x64": ["@esbuild/sunos-x64@0.25.4", "", { "os": "sunos", "cpu": "x64" }, "sha512-Mw+tzy4pp6wZEK0+Lwr76pWLjrtjmJyUB23tHKqEDP74R3q95luY/bXqXZeYl4NYlvwOqoRKlInQialgCKy67Q=="], + + "@esbuild/win32-arm64": ["@esbuild/win32-arm64@0.25.4", "", { "os": "win32", "cpu": "arm64" }, "sha512-AVUP428VQTSddguz9dO9ngb+E5aScyg7nOeJDrF1HPYu555gmza3bDGMPhmVXL8svDSoqPCsCPjb265yG/kLKQ=="], + + "@esbuild/win32-ia32": ["@esbuild/win32-ia32@0.25.4", "", { "os": "win32", "cpu": "ia32" }, "sha512-i1sW+1i+oWvQzSgfRcxxG2k4I9n3O9NRqy8U+uugaT2Dy7kLO9Y7wI72haOahxceMX8hZAzgGou1FhndRldxRg=="], + + "@esbuild/win32-x64": ["@esbuild/win32-x64@0.25.4", "", { "os": "win32", "cpu": "x64" }, "sha512-nOT2vZNw6hJ+z43oP1SPea/G/6AbN6X+bGNhNuq8NtRHy4wsMhw765IKLNmnjek7GvjWBYQ8Q5VBoYTFg9y1UQ=="], + + "@gql.tada/cli-utils": ["@gql.tada/cli-utils@1.7.2", "", { "dependencies": { "@0no-co/graphqlsp": "^1.12.13", "@gql.tada/internal": "1.0.8", "graphql": "^15.5.0 || ^16.0.0 || ^17.0.0" }, "peerDependencies": { "@gql.tada/svelte-support": "1.0.1", "@gql.tada/vue-support": "1.0.1", "typescript": "^5.0.0" }, "optionalPeers": ["@gql.tada/svelte-support", "@gql.tada/vue-support"] }, "sha512-Qbc7hbLvCz6IliIJpJuKJa9p05b2Jona7ov7+qofCsMRxHRZE1kpAmZMvL8JCI4c0IagpIlWNaMizXEQUe8XjQ=="], + + "@gql.tada/internal": ["@gql.tada/internal@1.0.8", "", { "dependencies": { "@0no-co/graphql.web": "^1.0.5" }, "peerDependencies": { "graphql": "^15.5.0 || ^16.0.0 || ^17.0.0", "typescript": "^5.0.0" } }, "sha512-XYdxJhtHC5WtZfdDqtKjcQ4d7R1s0d1rnlSs3OcBEUbYiPoJJfZU7tWsVXuv047Z6msvmr4ompJ7eLSK5Km57g=="], + + "@img/sharp-darwin-arm64": ["@img/sharp-darwin-arm64@0.33.5", "", { "optionalDependencies": { "@img/sharp-libvips-darwin-arm64": "1.0.4" }, "os": "darwin", "cpu": "arm64" }, "sha512-UT4p+iz/2H4twwAoLCqfA9UH5pI6DggwKEGuaPy7nCVQ8ZsiY5PIcrRvD1DzuY3qYL07NtIQcWnBSY/heikIFQ=="], + + "@img/sharp-darwin-x64": ["@img/sharp-darwin-x64@0.33.5", "", { "optionalDependencies": { "@img/sharp-libvips-darwin-x64": "1.0.4" }, "os": "darwin", "cpu": "x64" }, "sha512-fyHac4jIc1ANYGRDxtiqelIbdWkIuQaI84Mv45KvGRRxSAa7o7d1ZKAOBaYbnepLC1WqxfpimdeWfvqqSGwR2Q=="], + + "@img/sharp-libvips-darwin-arm64": ["@img/sharp-libvips-darwin-arm64@1.0.4", "", { "os": "darwin", "cpu": "arm64" }, "sha512-XblONe153h0O2zuFfTAbQYAX2JhYmDHeWikp1LM9Hul9gVPjFY427k6dFEcOL72O01QxQsWi761svJ/ev9xEDg=="], + + "@img/sharp-libvips-darwin-x64": ["@img/sharp-libvips-darwin-x64@1.0.4", "", { "os": "darwin", "cpu": "x64" }, "sha512-xnGR8YuZYfJGmWPvmlunFaWJsb9T/AO2ykoP3Fz/0X5XV2aoYBPkX6xqCQvUTKKiLddarLaxpzNe+b1hjeWHAQ=="], + + "@img/sharp-libvips-linux-arm": ["@img/sharp-libvips-linux-arm@1.0.5", "", { "os": "linux", "cpu": "arm" }, "sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g=="], + + "@img/sharp-libvips-linux-arm64": ["@img/sharp-libvips-linux-arm64@1.0.4", "", { "os": "linux", "cpu": "arm64" }, "sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA=="], + + "@img/sharp-libvips-linux-s390x": ["@img/sharp-libvips-linux-s390x@1.0.4", "", { "os": "linux", "cpu": "s390x" }, "sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA=="], + + "@img/sharp-libvips-linux-x64": ["@img/sharp-libvips-linux-x64@1.0.4", "", { "os": "linux", "cpu": "x64" }, "sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw=="], + + "@img/sharp-libvips-linuxmusl-arm64": ["@img/sharp-libvips-linuxmusl-arm64@1.0.4", "", { "os": "linux", "cpu": "arm64" }, "sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA=="], + + "@img/sharp-libvips-linuxmusl-x64": ["@img/sharp-libvips-linuxmusl-x64@1.0.4", "", { "os": "linux", "cpu": "x64" }, "sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw=="], + + "@img/sharp-linux-arm": ["@img/sharp-linux-arm@0.33.5", "", { "optionalDependencies": { "@img/sharp-libvips-linux-arm": "1.0.5" }, "os": "linux", "cpu": "arm" }, "sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ=="], + + "@img/sharp-linux-arm64": ["@img/sharp-linux-arm64@0.33.5", "", { "optionalDependencies": { "@img/sharp-libvips-linux-arm64": "1.0.4" }, "os": "linux", "cpu": "arm64" }, "sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA=="], + + "@img/sharp-linux-s390x": ["@img/sharp-linux-s390x@0.33.5", "", { "optionalDependencies": { "@img/sharp-libvips-linux-s390x": "1.0.4" }, "os": "linux", "cpu": "s390x" }, "sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q=="], + + "@img/sharp-linux-x64": ["@img/sharp-linux-x64@0.33.5", "", { "optionalDependencies": { "@img/sharp-libvips-linux-x64": "1.0.4" }, "os": "linux", "cpu": "x64" }, "sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA=="], + + "@img/sharp-linuxmusl-arm64": ["@img/sharp-linuxmusl-arm64@0.33.5", "", { "optionalDependencies": { "@img/sharp-libvips-linuxmusl-arm64": "1.0.4" }, "os": "linux", "cpu": "arm64" }, "sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g=="], + + "@img/sharp-linuxmusl-x64": ["@img/sharp-linuxmusl-x64@0.33.5", "", { "optionalDependencies": { "@img/sharp-libvips-linuxmusl-x64": "1.0.4" }, "os": "linux", "cpu": "x64" }, "sha512-WT+d/cgqKkkKySYmqoZ8y3pxx7lx9vVejxW/W4DOFMYVSkErR+w7mf2u8m/y4+xHe7yY9DAXQMWQhpnMuFfScw=="], + + "@img/sharp-wasm32": ["@img/sharp-wasm32@0.33.5", "", { "dependencies": { "@emnapi/runtime": "^1.2.0" }, "cpu": "none" }, "sha512-ykUW4LVGaMcU9lu9thv85CbRMAwfeadCJHRsg2GmeRa/cJxsVY9Rbd57JcMxBkKHag5U/x7TSBpScF4U8ElVzg=="], + + "@img/sharp-win32-ia32": ["@img/sharp-win32-ia32@0.33.5", "", { "os": "win32", "cpu": "ia32" }, "sha512-T36PblLaTwuVJ/zw/LaH0PdZkRz5rd3SmMHX8GSmR7vtNSP5Z6bQkExdSK7xGWyxLw4sUknBuugTelgw2faBbQ=="], + + "@img/sharp-win32-x64": ["@img/sharp-win32-x64@0.33.5", "", { "os": "win32", "cpu": "x64" }, "sha512-MpY/o8/8kj+EcnxwvrP4aTJSWw/aZ7JIGR4aBeZkZw5B7/Jn+tY9/VNwtcoGmdT7GfggGIU4kygOMSbYnOrAbg=="], + + "@jridgewell/resolve-uri": ["@jridgewell/resolve-uri@3.1.2", "", {}, "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw=="], + + "@jridgewell/sourcemap-codec": ["@jridgewell/sourcemap-codec@1.5.5", "", {}, "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og=="], + + "@jridgewell/trace-mapping": ["@jridgewell/trace-mapping@0.3.9", "", { "dependencies": { "@jridgewell/resolve-uri": "^3.0.3", "@jridgewell/sourcemap-codec": "^1.4.10" } }, "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ=="], + + "@poppinss/colors": ["@poppinss/colors@4.1.5", "", { "dependencies": { "kleur": "^4.1.5" } }, "sha512-FvdDqtcRCtz6hThExcFOgW0cWX+xwSMWcRuQe5ZEb2m7cVQOAVZOIMt+/v9RxGiD9/OY16qJBXK4CVKWAPalBw=="], + + "@poppinss/dumper": ["@poppinss/dumper@0.6.5", "", { "dependencies": { "@poppinss/colors": "^4.1.5", "@sindresorhus/is": "^7.0.2", "supports-color": "^10.0.0" } }, "sha512-NBdYIb90J7LfOI32dOewKI1r7wnkiH6m920puQ3qHUeZkxNkQiFnXVWoE6YtFSv6QOiPPf7ys6i+HWWecDz7sw=="], + + "@poppinss/exception": ["@poppinss/exception@1.2.2", "", {}, "sha512-m7bpKCD4QMlFCjA/nKTs23fuvoVFoA83brRKmObCUNmi/9tVu8Ve3w4YQAnJu4q3Tjf5fr685HYIC/IA2zHRSg=="], + + "@sindresorhus/is": ["@sindresorhus/is@7.1.1", "", {}, "sha512-rO92VvpgMc3kfiTjGT52LEtJ8Yc5kCWhZjLQ3LwlA4pSgPpQO7bVpYXParOD8Jwf+cVQECJo3yP/4I8aZtUQTQ=="], + + "@speed-highlight/core": ["@speed-highlight/core@1.2.12", "", {}, "sha512-uilwrK0Ygyri5dToHYdZSjcvpS2ZwX0w5aSt3GCEN9hrjxWCoeV4Z2DTXuxjwbntaLQIEEAlCeNQss5SoHvAEA=="], + + "@types/node": ["@types/node@18.19.130", "", { "dependencies": { "undici-types": "~5.26.4" } }, "sha512-GRaXQx6jGfL8sKfaIDD6OupbIHBr9jv7Jnaml9tB7l4v068PAOXqfcujMMo5PhbIs6ggR1XODELqahT2R8v0fg=="], + + "@types/node-fetch": ["@types/node-fetch@2.6.13", "", { "dependencies": { "@types/node": "*", "form-data": "^4.0.4" } }, "sha512-QGpRVpzSaUs30JBSGPjOg4Uveu384erbHBoT1zeONvyCfwQxIkUshLAOqN/k9EjGviPRmWTTe6aH2qySWKTVSw=="], + + "@urql/core": ["@urql/core@6.0.1", "", { "dependencies": { "@0no-co/graphql.web": "^1.0.13", "wonka": "^6.3.2" } }, "sha512-FZDiQk6jxbj5hixf2rEPv0jI+IZz0EqqGW8mJBEug68/zHTtT+f34guZDmyjJZyiWbj0vL165LoMr/TkeDHaug=="], + + "abort-controller": ["abort-controller@3.0.0", "", { "dependencies": { "event-target-shim": "^5.0.0" } }, "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg=="], + + "acorn": ["acorn@8.14.0", "", { "bin": "bin/acorn" }, "sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA=="], + + "acorn-walk": ["acorn-walk@8.3.2", "", {}, "sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A=="], + + "agentkeepalive": ["agentkeepalive@4.6.0", "", { "dependencies": { "humanize-ms": "^1.2.1" } }, "sha512-kja8j7PjmncONqaTsB8fQ+wE2mSU2DJ9D4XKoJ5PFWIdRMa6SLSN1ff4mOr4jCbfRSsxR4keIiySJU0N9T5hIQ=="], + + "asynckit": ["asynckit@0.4.0", "", {}, "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q=="], + + "blake3-wasm": ["blake3-wasm@2.1.5", "", {}, "sha512-F1+K8EbfOZE49dtoPtmxUQrpXaBIl3ICvasLh+nJta0xkz+9kF/7uet9fLnwKqhDrmj6g+6K3Tw9yQPUg2ka5g=="], + + "call-bind-apply-helpers": ["call-bind-apply-helpers@1.0.2", "", { "dependencies": { "es-errors": "^1.3.0", "function-bind": "^1.1.2" } }, "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ=="], + + "cloudflare": ["cloudflare@5.2.0", "", { "dependencies": { "@types/node": "^18.11.18", "@types/node-fetch": "^2.6.4", "abort-controller": "^3.0.0", "agentkeepalive": "^4.2.1", "form-data-encoder": "1.7.2", "formdata-node": "^4.3.2", "node-fetch": "^2.6.7" } }, "sha512-dVzqDpPFYR9ApEC9e+JJshFJZXcw4HzM8W+3DHzO5oy9+8rLC53G7x6fEf9A7/gSuSCxuvndzui5qJKftfIM9A=="], + + "color": ["color@4.2.3", "", { "dependencies": { "color-convert": "^2.0.1", "color-string": "^1.9.0" } }, "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A=="], + + "color-convert": ["color-convert@2.0.1", "", { "dependencies": { "color-name": "~1.1.4" } }, "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ=="], + + "color-name": ["color-name@1.1.4", "", {}, "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="], + + "color-string": ["color-string@1.9.1", "", { "dependencies": { "color-name": "^1.0.0", "simple-swizzle": "^0.2.2" } }, "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg=="], + + "combined-stream": ["combined-stream@1.0.8", "", { "dependencies": { "delayed-stream": "~1.0.0" } }, "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg=="], + + "consola": ["consola@3.4.2", "", {}, "sha512-5IKcdX0nnYavi6G7TtOhwkYzyjfJlatbjMjuLSfE2kYT5pMDOilZ4OvMhi637CcDICTmz3wARPoyhqyX1Y+XvA=="], + + "cookie": ["cookie@1.1.1", "", {}, "sha512-ei8Aos7ja0weRpFzJnEA9UHJ/7XQmqglbRwnf2ATjcB9Wq874VKH9kfjjirM6UhU2/E5fFYadylyhFldcqSidQ=="], + + "dataloader": ["dataloader@2.2.3", "", {}, "sha512-y2krtASINtPFS1rSDjacrFgn1dcUuoREVabwlOGOe4SdxenREqwjwjElAdwvbGM7kgZz9a3KVicWR7vcz8rnzA=="], + + "delayed-stream": ["delayed-stream@1.0.0", "", {}, "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ=="], + + "detect-libc": ["detect-libc@2.1.2", "", {}, "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ=="], + + "dunder-proto": ["dunder-proto@1.0.1", "", { "dependencies": { "call-bind-apply-helpers": "^1.0.1", "es-errors": "^1.3.0", "gopd": "^1.2.0" } }, "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A=="], + + "error-stack-parser-es": ["error-stack-parser-es@1.0.5", "", {}, "sha512-5qucVt2XcuGMcEGgWI7i+yZpmpByQ8J1lHhcL7PwqCwu9FPP3VUXzT4ltHe5i2z9dePwEHcDVOAfSnHsOlCXRA=="], + + "es-define-property": ["es-define-property@1.0.1", "", {}, "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g=="], + + "es-errors": ["es-errors@1.3.0", "", {}, "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw=="], + + "es-object-atoms": ["es-object-atoms@1.1.1", "", { "dependencies": { "es-errors": "^1.3.0" } }, "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA=="], + + "es-set-tostringtag": ["es-set-tostringtag@2.1.0", "", { "dependencies": { "es-errors": "^1.3.0", "get-intrinsic": "^1.2.6", "has-tostringtag": "^1.0.2", "hasown": "^2.0.2" } }, "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA=="], + + "esbuild": ["esbuild@0.25.4", "", { "optionalDependencies": { "@esbuild/aix-ppc64": "0.25.4", "@esbuild/android-arm": "0.25.4", "@esbuild/android-arm64": "0.25.4", "@esbuild/android-x64": "0.25.4", "@esbuild/darwin-arm64": "0.25.4", "@esbuild/darwin-x64": "0.25.4", "@esbuild/freebsd-arm64": "0.25.4", "@esbuild/freebsd-x64": "0.25.4", "@esbuild/linux-arm": "0.25.4", "@esbuild/linux-arm64": "0.25.4", "@esbuild/linux-ia32": "0.25.4", "@esbuild/linux-loong64": "0.25.4", "@esbuild/linux-mips64el": "0.25.4", "@esbuild/linux-ppc64": "0.25.4", "@esbuild/linux-riscv64": "0.25.4", "@esbuild/linux-s390x": "0.25.4", "@esbuild/linux-x64": "0.25.4", "@esbuild/netbsd-arm64": "0.25.4", "@esbuild/netbsd-x64": "0.25.4", "@esbuild/openbsd-arm64": "0.25.4", "@esbuild/openbsd-x64": "0.25.4", "@esbuild/sunos-x64": "0.25.4", "@esbuild/win32-arm64": "0.25.4", "@esbuild/win32-ia32": "0.25.4", "@esbuild/win32-x64": "0.25.4" }, "bin": "bin/esbuild" }, "sha512-8pgjLUcUjcgDg+2Q4NYXnPbo/vncAY4UmyaCm0jZevERqCHZIaWwdJHkf8XQtu4AxSKCdvrUbT0XUr1IdZzI8Q=="], + + "event-target-shim": ["event-target-shim@5.0.1", "", {}, "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ=="], + + "exit-hook": ["exit-hook@2.2.1", "", {}, "sha512-eNTPlAD67BmP31LDINZ3U7HSF8l57TxOY2PmBJ1shpCvpnxBF93mWCE8YHBnXs8qiUZJc9WDcWIeC3a2HIAMfw=="], + + "form-data": ["form-data@4.0.5", "", { "dependencies": { "asynckit": "^0.4.0", "combined-stream": "^1.0.8", "es-set-tostringtag": "^2.1.0", "hasown": "^2.0.2", "mime-types": "^2.1.12" } }, "sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w=="], + + "form-data-encoder": ["form-data-encoder@1.7.2", "", {}, "sha512-qfqtYan3rxrnCk1VYaA4H+Ms9xdpPqvLZa6xmMgFvhO32x7/3J/ExcTd6qpxM0vH2GdMI+poehyBZvqfMTto8A=="], + + "formdata-node": ["formdata-node@4.4.1", "", { "dependencies": { "node-domexception": "1.0.0", "web-streams-polyfill": "4.0.0-beta.3" } }, "sha512-0iirZp3uVDjVGt9p49aTaqjk84TrglENEDuqfdlZQ1roC9CWlPk6Avf8EEnZNcAqPonwkG35x4n3ww/1THYAeQ=="], + + "fsevents": ["fsevents@2.3.3", "", { "os": "darwin" }, "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw=="], + + "function-bind": ["function-bind@1.1.2", "", {}, "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA=="], + + "get-intrinsic": ["get-intrinsic@1.3.0", "", { "dependencies": { "call-bind-apply-helpers": "^1.0.2", "es-define-property": "^1.0.1", "es-errors": "^1.3.0", "es-object-atoms": "^1.1.1", "function-bind": "^1.1.2", "get-proto": "^1.0.1", "gopd": "^1.2.0", "has-symbols": "^1.1.0", "hasown": "^2.0.2", "math-intrinsics": "^1.1.0" } }, "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ=="], + + "get-proto": ["get-proto@1.0.1", "", { "dependencies": { "dunder-proto": "^1.0.1", "es-object-atoms": "^1.0.0" } }, "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g=="], + + "glob-to-regexp": ["glob-to-regexp@0.4.1", "", {}, "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw=="], + + "gopd": ["gopd@1.2.0", "", {}, "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg=="], + + "gql.tada": ["gql.tada@1.9.0", "", { "dependencies": { "@0no-co/graphql.web": "^1.0.5", "@0no-co/graphqlsp": "^1.12.13", "@gql.tada/cli-utils": "1.7.2", "@gql.tada/internal": "1.0.8" }, "peerDependencies": { "typescript": "^5.0.0" }, "bin": { "gql.tada": "bin/cli.js", "gql-tada": "bin/cli.js" } }, "sha512-1LMiA46dRs5oF7Qev6vMU32gmiNvM3+3nHoQZA9K9j2xQzH8xOAWnnJrLSbZOFHTSdFxqn86TL6beo1/7ja/aA=="], + + "graphql": ["graphql@16.12.0", "", {}, "sha512-DKKrynuQRne0PNpEbzuEdHlYOMksHSUI8Zc9Unei5gTsMNA2/vMpoMz/yKba50pejK56qj98qM0SjYxAKi13gQ=="], + + "has-symbols": ["has-symbols@1.1.0", "", {}, "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ=="], + + "has-tostringtag": ["has-tostringtag@1.0.2", "", { "dependencies": { "has-symbols": "^1.0.3" } }, "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw=="], + + "hasown": ["hasown@2.0.2", "", { "dependencies": { "function-bind": "^1.1.2" } }, "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ=="], + + "humanize-ms": ["humanize-ms@1.2.1", "", { "dependencies": { "ms": "^2.0.0" } }, "sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ=="], + + "install": ["install@0.13.0", "", {}, "sha512-zDml/jzr2PKU9I8J/xyZBQn8rPCAY//UOYNmR01XwNwyfhEWObo2SWfSl1+0tm1u6PhxLwDnfsT/6jB7OUxqFA=="], + + "is-arrayish": ["is-arrayish@0.3.4", "", {}, "sha512-m6UrgzFVUYawGBh1dUsWR5M2Clqic9RVXC/9f8ceNlv2IcO9j9J/z8UoCLPqtsPBFNzEpfR3xftohbfqDx8EQA=="], + + "kleur": ["kleur@4.1.5", "", {}, "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ=="], + + "math-intrinsics": ["math-intrinsics@1.1.0", "", {}, "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g=="], + + "mime": ["mime@3.0.0", "", { "bin": "cli.js" }, "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A=="], + + "mime-db": ["mime-db@1.52.0", "", {}, "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg=="], + + "mime-types": ["mime-types@2.1.35", "", { "dependencies": { "mime-db": "1.52.0" } }, "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw=="], + + "miniflare": ["miniflare@4.20251125.0", "", { "dependencies": { "@cspotcode/source-map-support": "0.8.1", "acorn": "8.14.0", "acorn-walk": "8.3.2", "exit-hook": "2.2.1", "glob-to-regexp": "0.4.1", "sharp": "^0.33.5", "stoppable": "1.1.0", "undici": "7.14.0", "workerd": "1.20251125.0", "ws": "8.18.0", "youch": "4.1.0-beta.10", "zod": "3.22.3" }, "bin": "bootstrap.js" }, "sha512-xY6deLx0Drt8GfGG2Fv0fHUocHAIG/Iv62Kl36TPfDzgq7/+DQ5gYNisxnmyISQdA/sm7kOvn2XRBncxjWYrLg=="], + + "ms": ["ms@2.1.3", "", {}, "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="], + + "node-domexception": ["node-domexception@1.0.0", "", {}, "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ=="], + + "node-fetch": ["node-fetch@2.7.0", "", { "dependencies": { "whatwg-url": "^5.0.0" }, "peerDependencies": { "encoding": "^0.1.0" }, "optionalPeers": ["encoding"] }, "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A=="], + + "path-to-regexp": ["path-to-regexp@6.3.0", "", {}, "sha512-Yhpw4T9C6hPpgPeA28us07OJeqZ5EzQTkbfwuhsUg0c237RomFoETJgmp2sa3F/41gfLE6G5cqcYwznmeEeOlQ=="], + + "pathe": ["pathe@2.0.3", "", {}, "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w=="], + + "semver": ["semver@7.7.3", "", { "bin": "bin/semver.js" }, "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q=="], + + "sharp": ["sharp@0.33.5", "", { "dependencies": { "color": "^4.2.3", "detect-libc": "^2.0.3", "semver": "^7.6.3" }, "optionalDependencies": { "@img/sharp-darwin-arm64": "0.33.5", "@img/sharp-darwin-x64": "0.33.5", "@img/sharp-libvips-darwin-arm64": "1.0.4", "@img/sharp-libvips-darwin-x64": "1.0.4", "@img/sharp-libvips-linux-arm": "1.0.5", "@img/sharp-libvips-linux-arm64": "1.0.4", "@img/sharp-libvips-linux-s390x": "1.0.4", "@img/sharp-libvips-linux-x64": "1.0.4", "@img/sharp-libvips-linuxmusl-arm64": "1.0.4", "@img/sharp-libvips-linuxmusl-x64": "1.0.4", "@img/sharp-linux-arm": "0.33.5", "@img/sharp-linux-arm64": "0.33.5", "@img/sharp-linux-s390x": "0.33.5", "@img/sharp-linux-x64": "0.33.5", "@img/sharp-linuxmusl-arm64": "0.33.5", "@img/sharp-linuxmusl-x64": "0.33.5", "@img/sharp-wasm32": "0.33.5", "@img/sharp-win32-ia32": "0.33.5", "@img/sharp-win32-x64": "0.33.5" } }, "sha512-haPVm1EkS9pgvHrQ/F3Xy+hgcuMV0Wm9vfIBSiwZ05k+xgb0PkBQpGsAA/oWdDobNaZTH5ppvHtzCFbnSEwHVw=="], + + "simple-swizzle": ["simple-swizzle@0.2.4", "", { "dependencies": { "is-arrayish": "^0.3.1" } }, "sha512-nAu1WFPQSMNr2Zn9PGSZK9AGn4t/y97lEm+MXTtUDwfP0ksAIX4nO+6ruD9Jwut4C49SB1Ws+fbXsm/yScWOHw=="], + + "stoppable": ["stoppable@1.1.0", "", {}, "sha512-KXDYZ9dszj6bzvnEMRYvxgeTHU74QBFL54XKtP3nyMuJ81CFYtABZ3bAzL2EdFUaEwJOBOgENyFj3R7oTzDyyw=="], + + "supports-color": ["supports-color@10.2.2", "", {}, "sha512-SS+jx45GF1QjgEXQx4NJZV9ImqmO2NPz5FNsIHrsDjh2YsHnawpan7SNQ1o8NuhrbHZy9AZhIoCUiCeaW/C80g=="], + + "tr46": ["tr46@0.0.3", "", {}, "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw=="], + + "tslib": ["tslib@2.8.1", "", {}, "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="], + + "typescript": ["typescript@5.9.3", "", { "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" } }, "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw=="], + + "undici": ["undici@7.14.0", "", {}, "sha512-Vqs8HTzjpQXZeXdpsfChQTlafcMQaaIwnGwLam1wudSSjlJeQ3bw1j+TLPePgrCnCpUXx7Ba5Pdpf5OBih62NQ=="], + + "undici-types": ["undici-types@5.26.5", "", {}, "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA=="], + + "unenv": ["unenv@2.0.0-rc.24", "", { "dependencies": { "pathe": "^2.0.3" } }, "sha512-i7qRCmY42zmCwnYlh9H2SvLEypEFGye5iRmEMKjcGi7zk9UquigRjFtTLz0TYqr0ZGLZhaMHl/foy1bZR+Cwlw=="], + + "web-streams-polyfill": ["web-streams-polyfill@4.0.0-beta.3", "", {}, "sha512-QW95TCTaHmsYfHDybGMwO5IJIM93I/6vTRk+daHTWFPhwh+C8Cg7j7XyKrwrj8Ib6vYXe0ocYNrmzY4xAAN6ug=="], + + "webidl-conversions": ["webidl-conversions@3.0.1", "", {}, "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ=="], + + "whatwg-url": ["whatwg-url@5.0.0", "", { "dependencies": { "tr46": "~0.0.3", "webidl-conversions": "^3.0.0" } }, "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw=="], + + "wonka": ["wonka@6.3.5", "", {}, "sha512-SSil+ecw6B4/Dm7Pf2sAshKQ5hWFvfyGlfPbEd6A14dOH6VDjrmbY86u6nZvy9omGwwIPFR8V41+of1EezgoUw=="], + + "workerd": ["workerd@1.20251125.0", "", { "optionalDependencies": { "@cloudflare/workerd-darwin-64": "1.20251125.0", "@cloudflare/workerd-darwin-arm64": "1.20251125.0", "@cloudflare/workerd-linux-64": "1.20251125.0", "@cloudflare/workerd-linux-arm64": "1.20251125.0", "@cloudflare/workerd-windows-64": "1.20251125.0" }, "bin": "bin/workerd" }, "sha512-oQYfgu3UZ15HlMcEyilKD1RdielRnKSG5MA0xoi1theVs99Rop9AEFYicYCyK1R4YjYblLRYEiL1tMgEFqpReA=="], + + "wrangler": ["wrangler@4.51.0", "", { "dependencies": { "@cloudflare/kv-asset-handler": "0.4.1", "@cloudflare/unenv-preset": "2.7.11", "blake3-wasm": "2.1.5", "esbuild": "0.25.4", "miniflare": "4.20251125.0", "path-to-regexp": "6.3.0", "unenv": "2.0.0-rc.24", "workerd": "1.20251125.0" }, "optionalDependencies": { "fsevents": "~2.3.2" }, "peerDependencies": { "@cloudflare/workers-types": "^4.20251125.0" }, "optionalPeers": ["@cloudflare/workers-types"], "bin": { "wrangler": "bin/wrangler.js", "wrangler2": "bin/wrangler.js" } }, "sha512-JHv+58UxM2//e4kf9ASDwg016xd/OdDNDUKW6zLQyE7Uc9ayYKX1QJ9NsYtpo4dC1dfg6rT67pf1aNK1cTzUDg=="], + + "ws": ["ws@8.18.0", "", { "peerDependencies": { "bufferutil": "^4.0.1", "utf-8-validate": ">=5.0.2" }, "optionalPeers": ["bufferutil", "utf-8-validate"] }, "sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw=="], + + "youch": ["youch@4.1.0-beta.10", "", { "dependencies": { "@poppinss/colors": "^4.1.5", "@poppinss/dumper": "^0.6.4", "@speed-highlight/core": "^1.2.7", "cookie": "^1.0.2", "youch-core": "^0.3.3" } }, "sha512-rLfVLB4FgQneDr0dv1oddCVZmKjcJ6yX6mS4pU82Mq/Dt9a3cLZQ62pDBL4AUO+uVrCvtWz3ZFUL2HFAFJ/BXQ=="], + + "youch-core": ["youch-core@0.3.3", "", { "dependencies": { "@poppinss/exception": "^1.2.2", "error-stack-parser-es": "^1.0.5" } }, "sha512-ho7XuGjLaJ2hWHoK8yFnsUGy2Y5uDpqSTq1FkHLK4/oqKtyUU1AFbOOxY4IpC9f0fTLjwYbslUz0Po5BpD1wrA=="], + + "zod": ["zod@4.1.13", "", {}, "sha512-AvvthqfqrAhNH9dnfmrfKzX5upOdjUVJYFqNSlkmGf64gRaTzlPwz99IHYnVs28qYAybvAlBV+H7pn0saFY4Ig=="], + + "miniflare/zod": ["zod@3.22.3", "", {}, "sha512-EjIevzuJRiRPbVH4mGc8nApb/lVLKVpmUhAaR5R5doKGfAnGJ6Gr3CViAVjP+4FWSxCsybeWQdcgCtbX+7oZug=="], + } +} diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..01f7f93 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,9 @@ +services: + prometheus: + image: prom/prometheus:latest + ports: + - "9090:9090" + volumes: + - ./prometheus.yml:/etc/prometheus/prometheus.yml + extra_hosts: + - "host.docker.internal:host-gateway" diff --git a/package-lock.json b/package-lock.json deleted file mode 100644 index e895753..0000000 --- a/package-lock.json +++ /dev/null @@ -1,1534 +0,0 @@ -{ - "name": "cloudflare-prometheus-exporter-v2", - "version": "0.0.0", - "lockfileVersion": 3, - "requires": true, - "packages": { - "": { - "name": "cloudflare-prometheus-exporter-v2", - "version": "0.0.0", - "devDependencies": { - "typescript": "^5.5.2", - "wrangler": "^4.51.0" - } - }, - "node_modules/@cloudflare/kv-asset-handler": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/@cloudflare/kv-asset-handler/-/kv-asset-handler-0.4.1.tgz", - "integrity": "sha512-Nu8ahitGFFJztxUml9oD/DLb7Z28C8cd8F46IVQ7y5Btz575pvMY8AqZsXkX7Gds29eCKdMgIHjIvzskHgPSFg==", - "dev": true, - "license": "MIT OR Apache-2.0", - "dependencies": { - "mime": "^3.0.0" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/@cloudflare/unenv-preset": { - "version": "2.7.11", - "resolved": "https://registry.npmjs.org/@cloudflare/unenv-preset/-/unenv-preset-2.7.11.tgz", - "integrity": "sha512-se23f1D4PxKrMKOq+Stz+Yn7AJ9ITHcEecXo2Yjb+UgbUDCEBch1FXQC6hx6uT5fNA3kmX3mfzeZiUmpK1W9IQ==", - "dev": true, - "license": "MIT OR Apache-2.0", - "peerDependencies": { - "unenv": "2.0.0-rc.24", - "workerd": "^1.20251106.1" - }, - "peerDependenciesMeta": { - "workerd": { - "optional": true - } - } - }, - "node_modules/@cloudflare/workerd-darwin-64": { - "version": "1.20251125.0", - "resolved": "https://registry.npmjs.org/@cloudflare/workerd-darwin-64/-/workerd-darwin-64-1.20251125.0.tgz", - "integrity": "sha512-xDIVJi8fPxBseRoEIzLiUJb0N+DXnah/ynS+Unzn58HEoKLetUWiV/T1Fhned//lo5krnToG9KRgVRs0SOOTpw==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "Apache-2.0", - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=16" - } - }, - "node_modules/@cloudflare/workerd-darwin-arm64": { - "version": "1.20251125.0", - "resolved": "https://registry.npmjs.org/@cloudflare/workerd-darwin-arm64/-/workerd-darwin-arm64-1.20251125.0.tgz", - "integrity": "sha512-k5FQET5PXnWjeDqZUpl4Ah/Rn0bH6mjfUtTyeAy6ky7QB3AZpwIhgWQD0vOFB3OvJaK4J/K4cUtNChYXB9mY/A==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "Apache-2.0", - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=16" - } - }, - "node_modules/@cloudflare/workerd-linux-64": { - "version": "1.20251125.0", - "resolved": "https://registry.npmjs.org/@cloudflare/workerd-linux-64/-/workerd-linux-64-1.20251125.0.tgz", - "integrity": "sha512-at6n/FomkftykWx0EqVLUZ0juUFz3ORtEPeBbW9ZZ3BQEyfVUtYfdcz/f1cN8Yyb7TE9ovF071P0mBRkx83ODw==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "Apache-2.0", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=16" - } - }, - "node_modules/@cloudflare/workerd-linux-arm64": { - "version": "1.20251125.0", - "resolved": "https://registry.npmjs.org/@cloudflare/workerd-linux-arm64/-/workerd-linux-arm64-1.20251125.0.tgz", - "integrity": "sha512-EiRn+jrNaIs1QveabXGHFoyn3s/l02ui6Yp3nssyNhtmtgviddtt8KObBfM1jQKjXTpZlunhwdN4Bxf4jhlOMw==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "Apache-2.0", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=16" - } - }, - "node_modules/@cloudflare/workerd-windows-64": { - "version": "1.20251125.0", - "resolved": "https://registry.npmjs.org/@cloudflare/workerd-windows-64/-/workerd-windows-64-1.20251125.0.tgz", - "integrity": "sha512-6fdIsSeu65g++k8Y2DKzNKs0BkoU+KKI6GAAVBOLh2vvVWWnCP1OgMdVb5JAdjDrjDT5i0GSQu0bgQ8fPsW6zw==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "Apache-2.0", - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=16" - } - }, - "node_modules/@cspotcode/source-map-support": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", - "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@jridgewell/trace-mapping": "0.3.9" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/@emnapi/runtime": { - "version": "1.7.1", - "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.7.1.tgz", - "integrity": "sha512-PVtJr5CmLwYAU9PZDMITZoR5iAOShYREoR45EyyLrbntV50mdePTgUn4AmOw90Ifcj+x2kRjdzr1HP3RrNiHGA==", - "dev": true, - "license": "MIT", - "optional": true, - "dependencies": { - "tslib": "^2.4.0" - } - }, - "node_modules/@esbuild/aix-ppc64": { - "version": "0.25.4", - "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.4.tgz", - "integrity": "sha512-1VCICWypeQKhVbE9oW/sJaAmjLxhVqacdkvPLEjwlttjfwENRSClS8EjBz0KzRyFSCPDIkuXW34Je/vk7zdB7Q==", - "cpu": [ - "ppc64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "aix" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/android-arm": { - "version": "0.25.4", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.4.tgz", - "integrity": "sha512-QNdQEps7DfFwE3hXiU4BZeOV68HHzYwGd0Nthhd3uCkkEKK7/R6MTgM0P7H7FAs5pU/DIWsviMmEGxEoxIZ+ZQ==", - "cpu": [ - "arm" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/android-arm64": { - "version": "0.25.4", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.4.tgz", - "integrity": "sha512-bBy69pgfhMGtCnwpC/x5QhfxAz/cBgQ9enbtwjf6V9lnPI/hMyT9iWpR1arm0l3kttTr4L0KSLpKmLp/ilKS9A==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/android-x64": { - "version": "0.25.4", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.4.tgz", - "integrity": "sha512-TVhdVtQIFuVpIIR282btcGC2oGQoSfZfmBdTip2anCaVYcqWlZXGcdcKIUklfX2wj0JklNYgz39OBqh2cqXvcQ==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/darwin-arm64": { - "version": "0.25.4", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.4.tgz", - "integrity": "sha512-Y1giCfM4nlHDWEfSckMzeWNdQS31BQGs9/rouw6Ub91tkK79aIMTH3q9xHvzH8d0wDru5Ci0kWB8b3up/nl16g==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/darwin-x64": { - "version": "0.25.4", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.4.tgz", - "integrity": "sha512-CJsry8ZGM5VFVeyUYB3cdKpd/H69PYez4eJh1W/t38vzutdjEjtP7hB6eLKBoOdxcAlCtEYHzQ/PJ/oU9I4u0A==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/freebsd-arm64": { - "version": "0.25.4", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.4.tgz", - "integrity": "sha512-yYq+39NlTRzU2XmoPW4l5Ifpl9fqSk0nAJYM/V/WUGPEFfek1epLHJIkTQM6bBs1swApjO5nWgvr843g6TjxuQ==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/freebsd-x64": { - "version": "0.25.4", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.4.tgz", - "integrity": "sha512-0FgvOJ6UUMflsHSPLzdfDnnBBVoCDtBTVyn/MrWloUNvq/5SFmh13l3dvgRPkDihRxb77Y17MbqbCAa2strMQQ==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/linux-arm": { - "version": "0.25.4", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.4.tgz", - "integrity": "sha512-kro4c0P85GMfFYqW4TWOpvmF8rFShbWGnrLqlzp4X1TNWjRY3JMYUfDCtOxPKOIY8B0WC8HN51hGP4I4hz4AaQ==", - "cpu": [ - "arm" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/linux-arm64": { - "version": "0.25.4", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.4.tgz", - "integrity": "sha512-+89UsQTfXdmjIvZS6nUnOOLoXnkUTB9hR5QAeLrQdzOSWZvNSAXAtcRDHWtqAUtAmv7ZM1WPOOeSxDzzzMogiQ==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/linux-ia32": { - "version": "0.25.4", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.4.tgz", - "integrity": "sha512-yTEjoapy8UP3rv8dB0ip3AfMpRbyhSN3+hY8mo/i4QXFeDxmiYbEKp3ZRjBKcOP862Ua4b1PDfwlvbuwY7hIGQ==", - "cpu": [ - "ia32" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/linux-loong64": { - "version": "0.25.4", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.4.tgz", - "integrity": "sha512-NeqqYkrcGzFwi6CGRGNMOjWGGSYOpqwCjS9fvaUlX5s3zwOtn1qwg1s2iE2svBe4Q/YOG1q6875lcAoQK/F4VA==", - "cpu": [ - "loong64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/linux-mips64el": { - "version": "0.25.4", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.4.tgz", - "integrity": "sha512-IcvTlF9dtLrfL/M8WgNI/qJYBENP3ekgsHbYUIzEzq5XJzzVEV/fXY9WFPfEEXmu3ck2qJP8LG/p3Q8f7Zc2Xg==", - "cpu": [ - "mips64el" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/linux-ppc64": { - "version": "0.25.4", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.4.tgz", - "integrity": "sha512-HOy0aLTJTVtoTeGZh4HSXaO6M95qu4k5lJcH4gxv56iaycfz1S8GO/5Jh6X4Y1YiI0h7cRyLi+HixMR+88swag==", - "cpu": [ - "ppc64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/linux-riscv64": { - "version": "0.25.4", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.4.tgz", - "integrity": "sha512-i8JUDAufpz9jOzo4yIShCTcXzS07vEgWzyX3NH2G7LEFVgrLEhjwL3ajFE4fZI3I4ZgiM7JH3GQ7ReObROvSUA==", - "cpu": [ - "riscv64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/linux-s390x": { - "version": "0.25.4", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.4.tgz", - "integrity": "sha512-jFnu+6UbLlzIjPQpWCNh5QtrcNfMLjgIavnwPQAfoGx4q17ocOU9MsQ2QVvFxwQoWpZT8DvTLooTvmOQXkO51g==", - "cpu": [ - "s390x" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/linux-x64": { - "version": "0.25.4", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.4.tgz", - "integrity": "sha512-6e0cvXwzOnVWJHq+mskP8DNSrKBr1bULBvnFLpc1KY+d+irZSgZ02TGse5FsafKS5jg2e4pbvK6TPXaF/A6+CA==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/netbsd-arm64": { - "version": "0.25.4", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.4.tgz", - "integrity": "sha512-vUnkBYxZW4hL/ie91hSqaSNjulOnYXE1VSLusnvHg2u3jewJBz3YzB9+oCw8DABeVqZGg94t9tyZFoHma8gWZQ==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "netbsd" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/netbsd-x64": { - "version": "0.25.4", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.4.tgz", - "integrity": "sha512-XAg8pIQn5CzhOB8odIcAm42QsOfa98SBeKUdo4xa8OvX8LbMZqEtgeWE9P/Wxt7MlG2QqvjGths+nq48TrUiKw==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "netbsd" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/openbsd-arm64": { - "version": "0.25.4", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.4.tgz", - "integrity": "sha512-Ct2WcFEANlFDtp1nVAXSNBPDxyU+j7+tId//iHXU2f/lN5AmO4zLyhDcpR5Cz1r08mVxzt3Jpyt4PmXQ1O6+7A==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "openbsd" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/openbsd-x64": { - "version": "0.25.4", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.4.tgz", - "integrity": "sha512-xAGGhyOQ9Otm1Xu8NT1ifGLnA6M3sJxZ6ixylb+vIUVzvvd6GOALpwQrYrtlPouMqd/vSbgehz6HaVk4+7Afhw==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "openbsd" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/sunos-x64": { - "version": "0.25.4", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.4.tgz", - "integrity": "sha512-Mw+tzy4pp6wZEK0+Lwr76pWLjrtjmJyUB23tHKqEDP74R3q95luY/bXqXZeYl4NYlvwOqoRKlInQialgCKy67Q==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "sunos" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/win32-arm64": { - "version": "0.25.4", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.4.tgz", - "integrity": "sha512-AVUP428VQTSddguz9dO9ngb+E5aScyg7nOeJDrF1HPYu555gmza3bDGMPhmVXL8svDSoqPCsCPjb265yG/kLKQ==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/win32-ia32": { - "version": "0.25.4", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.4.tgz", - "integrity": "sha512-i1sW+1i+oWvQzSgfRcxxG2k4I9n3O9NRqy8U+uugaT2Dy7kLO9Y7wI72haOahxceMX8hZAzgGou1FhndRldxRg==", - "cpu": [ - "ia32" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/win32-x64": { - "version": "0.25.4", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.4.tgz", - "integrity": "sha512-nOT2vZNw6hJ+z43oP1SPea/G/6AbN6X+bGNhNuq8NtRHy4wsMhw765IKLNmnjek7GvjWBYQ8Q5VBoYTFg9y1UQ==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@img/sharp-darwin-arm64": { - "version": "0.33.5", - "resolved": "https://registry.npmjs.org/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.33.5.tgz", - "integrity": "sha512-UT4p+iz/2H4twwAoLCqfA9UH5pI6DggwKEGuaPy7nCVQ8ZsiY5PIcrRvD1DzuY3qYL07NtIQcWnBSY/heikIFQ==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "Apache-2.0", - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" - }, - "funding": { - "url": "https://opencollective.com/libvips" - }, - "optionalDependencies": { - "@img/sharp-libvips-darwin-arm64": "1.0.4" - } - }, - "node_modules/@img/sharp-darwin-x64": { - "version": "0.33.5", - "resolved": "https://registry.npmjs.org/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.33.5.tgz", - "integrity": "sha512-fyHac4jIc1ANYGRDxtiqelIbdWkIuQaI84Mv45KvGRRxSAa7o7d1ZKAOBaYbnepLC1WqxfpimdeWfvqqSGwR2Q==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "Apache-2.0", - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" - }, - "funding": { - "url": "https://opencollective.com/libvips" - }, - "optionalDependencies": { - "@img/sharp-libvips-darwin-x64": "1.0.4" - } - }, - "node_modules/@img/sharp-libvips-darwin-arm64": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.0.4.tgz", - "integrity": "sha512-XblONe153h0O2zuFfTAbQYAX2JhYmDHeWikp1LM9Hul9gVPjFY427k6dFEcOL72O01QxQsWi761svJ/ev9xEDg==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "LGPL-3.0-or-later", - "optional": true, - "os": [ - "darwin" - ], - "funding": { - "url": "https://opencollective.com/libvips" - } - }, - "node_modules/@img/sharp-libvips-darwin-x64": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.0.4.tgz", - "integrity": "sha512-xnGR8YuZYfJGmWPvmlunFaWJsb9T/AO2ykoP3Fz/0X5XV2aoYBPkX6xqCQvUTKKiLddarLaxpzNe+b1hjeWHAQ==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "LGPL-3.0-or-later", - "optional": true, - "os": [ - "darwin" - ], - "funding": { - "url": "https://opencollective.com/libvips" - } - }, - "node_modules/@img/sharp-libvips-linux-arm": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.0.5.tgz", - "integrity": "sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g==", - "cpu": [ - "arm" - ], - "dev": true, - "license": "LGPL-3.0-or-later", - "optional": true, - "os": [ - "linux" - ], - "funding": { - "url": "https://opencollective.com/libvips" - } - }, - "node_modules/@img/sharp-libvips-linux-arm64": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.0.4.tgz", - "integrity": "sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "LGPL-3.0-or-later", - "optional": true, - "os": [ - "linux" - ], - "funding": { - "url": "https://opencollective.com/libvips" - } - }, - "node_modules/@img/sharp-libvips-linux-s390x": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.0.4.tgz", - "integrity": "sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA==", - "cpu": [ - "s390x" - ], - "dev": true, - "license": "LGPL-3.0-or-later", - "optional": true, - "os": [ - "linux" - ], - "funding": { - "url": "https://opencollective.com/libvips" - } - }, - "node_modules/@img/sharp-libvips-linux-x64": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.0.4.tgz", - "integrity": "sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "LGPL-3.0-or-later", - "optional": true, - "os": [ - "linux" - ], - "funding": { - "url": "https://opencollective.com/libvips" - } - }, - "node_modules/@img/sharp-libvips-linuxmusl-arm64": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.0.4.tgz", - "integrity": "sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "LGPL-3.0-or-later", - "optional": true, - "os": [ - "linux" - ], - "funding": { - "url": "https://opencollective.com/libvips" - } - }, - "node_modules/@img/sharp-libvips-linuxmusl-x64": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.0.4.tgz", - "integrity": "sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "LGPL-3.0-or-later", - "optional": true, - "os": [ - "linux" - ], - "funding": { - "url": "https://opencollective.com/libvips" - } - }, - "node_modules/@img/sharp-linux-arm": { - "version": "0.33.5", - "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm/-/sharp-linux-arm-0.33.5.tgz", - "integrity": "sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ==", - "cpu": [ - "arm" - ], - "dev": true, - "license": "Apache-2.0", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" - }, - "funding": { - "url": "https://opencollective.com/libvips" - }, - "optionalDependencies": { - "@img/sharp-libvips-linux-arm": "1.0.5" - } - }, - "node_modules/@img/sharp-linux-arm64": { - "version": "0.33.5", - "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.33.5.tgz", - "integrity": "sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "Apache-2.0", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" - }, - "funding": { - "url": "https://opencollective.com/libvips" - }, - "optionalDependencies": { - "@img/sharp-libvips-linux-arm64": "1.0.4" - } - }, - "node_modules/@img/sharp-linux-s390x": { - "version": "0.33.5", - "resolved": "https://registry.npmjs.org/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.33.5.tgz", - "integrity": "sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==", - "cpu": [ - "s390x" - ], - "dev": true, - "license": "Apache-2.0", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" - }, - "funding": { - "url": "https://opencollective.com/libvips" - }, - "optionalDependencies": { - "@img/sharp-libvips-linux-s390x": "1.0.4" - } - }, - "node_modules/@img/sharp-linux-x64": { - "version": "0.33.5", - "resolved": "https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.33.5.tgz", - "integrity": "sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "Apache-2.0", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" - }, - "funding": { - "url": "https://opencollective.com/libvips" - }, - "optionalDependencies": { - "@img/sharp-libvips-linux-x64": "1.0.4" - } - }, - "node_modules/@img/sharp-linuxmusl-arm64": { - "version": "0.33.5", - "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.33.5.tgz", - "integrity": "sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "Apache-2.0", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" - }, - "funding": { - "url": "https://opencollective.com/libvips" - }, - "optionalDependencies": { - "@img/sharp-libvips-linuxmusl-arm64": "1.0.4" - } - }, - "node_modules/@img/sharp-linuxmusl-x64": { - "version": "0.33.5", - "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.33.5.tgz", - "integrity": "sha512-WT+d/cgqKkkKySYmqoZ8y3pxx7lx9vVejxW/W4DOFMYVSkErR+w7mf2u8m/y4+xHe7yY9DAXQMWQhpnMuFfScw==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "Apache-2.0", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" - }, - "funding": { - "url": "https://opencollective.com/libvips" - }, - "optionalDependencies": { - "@img/sharp-libvips-linuxmusl-x64": "1.0.4" - } - }, - "node_modules/@img/sharp-wasm32": { - "version": "0.33.5", - "resolved": "https://registry.npmjs.org/@img/sharp-wasm32/-/sharp-wasm32-0.33.5.tgz", - "integrity": "sha512-ykUW4LVGaMcU9lu9thv85CbRMAwfeadCJHRsg2GmeRa/cJxsVY9Rbd57JcMxBkKHag5U/x7TSBpScF4U8ElVzg==", - "cpu": [ - "wasm32" - ], - "dev": true, - "license": "Apache-2.0 AND LGPL-3.0-or-later AND MIT", - "optional": true, - "dependencies": { - "@emnapi/runtime": "^1.2.0" - }, - "engines": { - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" - }, - "funding": { - "url": "https://opencollective.com/libvips" - } - }, - "node_modules/@img/sharp-win32-ia32": { - "version": "0.33.5", - "resolved": "https://registry.npmjs.org/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.33.5.tgz", - "integrity": "sha512-T36PblLaTwuVJ/zw/LaH0PdZkRz5rd3SmMHX8GSmR7vtNSP5Z6bQkExdSK7xGWyxLw4sUknBuugTelgw2faBbQ==", - "cpu": [ - "ia32" - ], - "dev": true, - "license": "Apache-2.0 AND LGPL-3.0-or-later", - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" - }, - "funding": { - "url": "https://opencollective.com/libvips" - } - }, - "node_modules/@img/sharp-win32-x64": { - "version": "0.33.5", - "resolved": "https://registry.npmjs.org/@img/sharp-win32-x64/-/sharp-win32-x64-0.33.5.tgz", - "integrity": "sha512-MpY/o8/8kj+EcnxwvrP4aTJSWw/aZ7JIGR4aBeZkZw5B7/Jn+tY9/VNwtcoGmdT7GfggGIU4kygOMSbYnOrAbg==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "Apache-2.0 AND LGPL-3.0-or-later", - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" - }, - "funding": { - "url": "https://opencollective.com/libvips" - } - }, - "node_modules/@jridgewell/resolve-uri": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", - "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/sourcemap-codec": { - "version": "1.5.5", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz", - "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==", - "dev": true, - "license": "MIT" - }, - "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.9", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz", - "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@jridgewell/resolve-uri": "^3.0.3", - "@jridgewell/sourcemap-codec": "^1.4.10" - } - }, - "node_modules/@poppinss/colors": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/@poppinss/colors/-/colors-4.1.5.tgz", - "integrity": "sha512-FvdDqtcRCtz6hThExcFOgW0cWX+xwSMWcRuQe5ZEb2m7cVQOAVZOIMt+/v9RxGiD9/OY16qJBXK4CVKWAPalBw==", - "dev": true, - "license": "MIT", - "dependencies": { - "kleur": "^4.1.5" - } - }, - "node_modules/@poppinss/dumper": { - "version": "0.6.5", - "resolved": "https://registry.npmjs.org/@poppinss/dumper/-/dumper-0.6.5.tgz", - "integrity": "sha512-NBdYIb90J7LfOI32dOewKI1r7wnkiH6m920puQ3qHUeZkxNkQiFnXVWoE6YtFSv6QOiPPf7ys6i+HWWecDz7sw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@poppinss/colors": "^4.1.5", - "@sindresorhus/is": "^7.0.2", - "supports-color": "^10.0.0" - } - }, - "node_modules/@poppinss/exception": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/@poppinss/exception/-/exception-1.2.2.tgz", - "integrity": "sha512-m7bpKCD4QMlFCjA/nKTs23fuvoVFoA83brRKmObCUNmi/9tVu8Ve3w4YQAnJu4q3Tjf5fr685HYIC/IA2zHRSg==", - "dev": true, - "license": "MIT" - }, - "node_modules/@sindresorhus/is": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-7.1.1.tgz", - "integrity": "sha512-rO92VvpgMc3kfiTjGT52LEtJ8Yc5kCWhZjLQ3LwlA4pSgPpQO7bVpYXParOD8Jwf+cVQECJo3yP/4I8aZtUQTQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sindresorhus/is?sponsor=1" - } - }, - "node_modules/@speed-highlight/core": { - "version": "1.2.12", - "resolved": "https://registry.npmjs.org/@speed-highlight/core/-/core-1.2.12.tgz", - "integrity": "sha512-uilwrK0Ygyri5dToHYdZSjcvpS2ZwX0w5aSt3GCEN9hrjxWCoeV4Z2DTXuxjwbntaLQIEEAlCeNQss5SoHvAEA==", - "dev": true, - "license": "CC0-1.0" - }, - "node_modules/acorn": { - "version": "8.14.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.0.tgz", - "integrity": "sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==", - "dev": true, - "license": "MIT", - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/acorn-walk": { - "version": "8.3.2", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.2.tgz", - "integrity": "sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/blake3-wasm": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/blake3-wasm/-/blake3-wasm-2.1.5.tgz", - "integrity": "sha512-F1+K8EbfOZE49dtoPtmxUQrpXaBIl3ICvasLh+nJta0xkz+9kF/7uet9fLnwKqhDrmj6g+6K3Tw9yQPUg2ka5g==", - "dev": true, - "license": "MIT" - }, - "node_modules/color": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/color/-/color-4.2.3.tgz", - "integrity": "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1", - "color-string": "^1.9.0" - }, - "engines": { - "node": ">=12.5.0" - } - }, - "node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true, - "license": "MIT" - }, - "node_modules/color-string": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz", - "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "^1.0.0", - "simple-swizzle": "^0.2.2" - } - }, - "node_modules/cookie": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-1.1.1.tgz", - "integrity": "sha512-ei8Aos7ja0weRpFzJnEA9UHJ/7XQmqglbRwnf2ATjcB9Wq874VKH9kfjjirM6UhU2/E5fFYadylyhFldcqSidQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=18" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/express" - } - }, - "node_modules/detect-libc": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz", - "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==", - "dev": true, - "license": "Apache-2.0", - "engines": { - "node": ">=8" - } - }, - "node_modules/error-stack-parser-es": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/error-stack-parser-es/-/error-stack-parser-es-1.0.5.tgz", - "integrity": "sha512-5qucVt2XcuGMcEGgWI7i+yZpmpByQ8J1lHhcL7PwqCwu9FPP3VUXzT4ltHe5i2z9dePwEHcDVOAfSnHsOlCXRA==", - "dev": true, - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/antfu" - } - }, - "node_modules/esbuild": { - "version": "0.25.4", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.4.tgz", - "integrity": "sha512-8pgjLUcUjcgDg+2Q4NYXnPbo/vncAY4UmyaCm0jZevERqCHZIaWwdJHkf8XQtu4AxSKCdvrUbT0XUr1IdZzI8Q==", - "dev": true, - "hasInstallScript": true, - "license": "MIT", - "bin": { - "esbuild": "bin/esbuild" - }, - "engines": { - "node": ">=18" - }, - "optionalDependencies": { - "@esbuild/aix-ppc64": "0.25.4", - "@esbuild/android-arm": "0.25.4", - "@esbuild/android-arm64": "0.25.4", - "@esbuild/android-x64": "0.25.4", - "@esbuild/darwin-arm64": "0.25.4", - "@esbuild/darwin-x64": "0.25.4", - "@esbuild/freebsd-arm64": "0.25.4", - "@esbuild/freebsd-x64": "0.25.4", - "@esbuild/linux-arm": "0.25.4", - "@esbuild/linux-arm64": "0.25.4", - "@esbuild/linux-ia32": "0.25.4", - "@esbuild/linux-loong64": "0.25.4", - "@esbuild/linux-mips64el": "0.25.4", - "@esbuild/linux-ppc64": "0.25.4", - "@esbuild/linux-riscv64": "0.25.4", - "@esbuild/linux-s390x": "0.25.4", - "@esbuild/linux-x64": "0.25.4", - "@esbuild/netbsd-arm64": "0.25.4", - "@esbuild/netbsd-x64": "0.25.4", - "@esbuild/openbsd-arm64": "0.25.4", - "@esbuild/openbsd-x64": "0.25.4", - "@esbuild/sunos-x64": "0.25.4", - "@esbuild/win32-arm64": "0.25.4", - "@esbuild/win32-ia32": "0.25.4", - "@esbuild/win32-x64": "0.25.4" - } - }, - "node_modules/exit-hook": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/exit-hook/-/exit-hook-2.2.1.tgz", - "integrity": "sha512-eNTPlAD67BmP31LDINZ3U7HSF8l57TxOY2PmBJ1shpCvpnxBF93mWCE8YHBnXs8qiUZJc9WDcWIeC3a2HIAMfw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/fsevents": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", - "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", - "dev": true, - "hasInstallScript": true, - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": "^8.16.0 || ^10.6.0 || >=11.0.0" - } - }, - "node_modules/glob-to-regexp": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", - "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", - "dev": true, - "license": "BSD-2-Clause" - }, - "node_modules/is-arrayish": { - "version": "0.3.4", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.4.tgz", - "integrity": "sha512-m6UrgzFVUYawGBh1dUsWR5M2Clqic9RVXC/9f8ceNlv2IcO9j9J/z8UoCLPqtsPBFNzEpfR3xftohbfqDx8EQA==", - "dev": true, - "license": "MIT" - }, - "node_modules/kleur": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz", - "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/mime": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz", - "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==", - "dev": true, - "license": "MIT", - "bin": { - "mime": "cli.js" - }, - "engines": { - "node": ">=10.0.0" - } - }, - "node_modules/miniflare": { - "version": "4.20251125.0", - "resolved": "https://registry.npmjs.org/miniflare/-/miniflare-4.20251125.0.tgz", - "integrity": "sha512-xY6deLx0Drt8GfGG2Fv0fHUocHAIG/Iv62Kl36TPfDzgq7/+DQ5gYNisxnmyISQdA/sm7kOvn2XRBncxjWYrLg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@cspotcode/source-map-support": "0.8.1", - "acorn": "8.14.0", - "acorn-walk": "8.3.2", - "exit-hook": "2.2.1", - "glob-to-regexp": "0.4.1", - "sharp": "^0.33.5", - "stoppable": "1.1.0", - "undici": "7.14.0", - "workerd": "1.20251125.0", - "ws": "8.18.0", - "youch": "4.1.0-beta.10", - "zod": "3.22.3" - }, - "bin": { - "miniflare": "bootstrap.js" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/path-to-regexp": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-6.3.0.tgz", - "integrity": "sha512-Yhpw4T9C6hPpgPeA28us07OJeqZ5EzQTkbfwuhsUg0c237RomFoETJgmp2sa3F/41gfLE6G5cqcYwznmeEeOlQ==", - "dev": true, - "license": "MIT" - }, - "node_modules/pathe": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/pathe/-/pathe-2.0.3.tgz", - "integrity": "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==", - "dev": true, - "license": "MIT" - }, - "node_modules/semver": { - "version": "7.7.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz", - "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==", - "dev": true, - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/sharp": { - "version": "0.33.5", - "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.33.5.tgz", - "integrity": "sha512-haPVm1EkS9pgvHrQ/F3Xy+hgcuMV0Wm9vfIBSiwZ05k+xgb0PkBQpGsAA/oWdDobNaZTH5ppvHtzCFbnSEwHVw==", - "dev": true, - "hasInstallScript": true, - "license": "Apache-2.0", - "dependencies": { - "color": "^4.2.3", - "detect-libc": "^2.0.3", - "semver": "^7.6.3" - }, - "engines": { - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" - }, - "funding": { - "url": "https://opencollective.com/libvips" - }, - "optionalDependencies": { - "@img/sharp-darwin-arm64": "0.33.5", - "@img/sharp-darwin-x64": "0.33.5", - "@img/sharp-libvips-darwin-arm64": "1.0.4", - "@img/sharp-libvips-darwin-x64": "1.0.4", - "@img/sharp-libvips-linux-arm": "1.0.5", - "@img/sharp-libvips-linux-arm64": "1.0.4", - "@img/sharp-libvips-linux-s390x": "1.0.4", - "@img/sharp-libvips-linux-x64": "1.0.4", - "@img/sharp-libvips-linuxmusl-arm64": "1.0.4", - "@img/sharp-libvips-linuxmusl-x64": "1.0.4", - "@img/sharp-linux-arm": "0.33.5", - "@img/sharp-linux-arm64": "0.33.5", - "@img/sharp-linux-s390x": "0.33.5", - "@img/sharp-linux-x64": "0.33.5", - "@img/sharp-linuxmusl-arm64": "0.33.5", - "@img/sharp-linuxmusl-x64": "0.33.5", - "@img/sharp-wasm32": "0.33.5", - "@img/sharp-win32-ia32": "0.33.5", - "@img/sharp-win32-x64": "0.33.5" - } - }, - "node_modules/simple-swizzle": { - "version": "0.2.4", - "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.4.tgz", - "integrity": "sha512-nAu1WFPQSMNr2Zn9PGSZK9AGn4t/y97lEm+MXTtUDwfP0ksAIX4nO+6ruD9Jwut4C49SB1Ws+fbXsm/yScWOHw==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-arrayish": "^0.3.1" - } - }, - "node_modules/stoppable": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/stoppable/-/stoppable-1.1.0.tgz", - "integrity": "sha512-KXDYZ9dszj6bzvnEMRYvxgeTHU74QBFL54XKtP3nyMuJ81CFYtABZ3bAzL2EdFUaEwJOBOgENyFj3R7oTzDyyw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4", - "npm": ">=6" - } - }, - "node_modules/supports-color": { - "version": "10.2.2", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-10.2.2.tgz", - "integrity": "sha512-SS+jx45GF1QjgEXQx4NJZV9ImqmO2NPz5FNsIHrsDjh2YsHnawpan7SNQ1o8NuhrbHZy9AZhIoCUiCeaW/C80g==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/chalk/supports-color?sponsor=1" - } - }, - "node_modules/tslib": { - "version": "2.8.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", - "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", - "dev": true, - "license": "0BSD", - "optional": true - }, - "node_modules/typescript": { - "version": "5.9.3", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz", - "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==", - "dev": true, - "license": "Apache-2.0", - "bin": { - "tsc": "bin/tsc", - "tsserver": "bin/tsserver" - }, - "engines": { - "node": ">=14.17" - } - }, - "node_modules/undici": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/undici/-/undici-7.14.0.tgz", - "integrity": "sha512-Vqs8HTzjpQXZeXdpsfChQTlafcMQaaIwnGwLam1wudSSjlJeQ3bw1j+TLPePgrCnCpUXx7Ba5Pdpf5OBih62NQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=20.18.1" - } - }, - "node_modules/unenv": { - "version": "2.0.0-rc.24", - "resolved": "https://registry.npmjs.org/unenv/-/unenv-2.0.0-rc.24.tgz", - "integrity": "sha512-i7qRCmY42zmCwnYlh9H2SvLEypEFGye5iRmEMKjcGi7zk9UquigRjFtTLz0TYqr0ZGLZhaMHl/foy1bZR+Cwlw==", - "dev": true, - "license": "MIT", - "dependencies": { - "pathe": "^2.0.3" - } - }, - "node_modules/workerd": { - "version": "1.20251125.0", - "resolved": "https://registry.npmjs.org/workerd/-/workerd-1.20251125.0.tgz", - "integrity": "sha512-oQYfgu3UZ15HlMcEyilKD1RdielRnKSG5MA0xoi1theVs99Rop9AEFYicYCyK1R4YjYblLRYEiL1tMgEFqpReA==", - "dev": true, - "hasInstallScript": true, - "license": "Apache-2.0", - "bin": { - "workerd": "bin/workerd" - }, - "engines": { - "node": ">=16" - }, - "optionalDependencies": { - "@cloudflare/workerd-darwin-64": "1.20251125.0", - "@cloudflare/workerd-darwin-arm64": "1.20251125.0", - "@cloudflare/workerd-linux-64": "1.20251125.0", - "@cloudflare/workerd-linux-arm64": "1.20251125.0", - "@cloudflare/workerd-windows-64": "1.20251125.0" - } - }, - "node_modules/wrangler": { - "version": "4.51.0", - "resolved": "https://registry.npmjs.org/wrangler/-/wrangler-4.51.0.tgz", - "integrity": "sha512-JHv+58UxM2//e4kf9ASDwg016xd/OdDNDUKW6zLQyE7Uc9ayYKX1QJ9NsYtpo4dC1dfg6rT67pf1aNK1cTzUDg==", - "dev": true, - "license": "MIT OR Apache-2.0", - "dependencies": { - "@cloudflare/kv-asset-handler": "0.4.1", - "@cloudflare/unenv-preset": "2.7.11", - "blake3-wasm": "2.1.5", - "esbuild": "0.25.4", - "miniflare": "4.20251125.0", - "path-to-regexp": "6.3.0", - "unenv": "2.0.0-rc.24", - "workerd": "1.20251125.0" - }, - "bin": { - "wrangler": "bin/wrangler.js", - "wrangler2": "bin/wrangler.js" - }, - "engines": { - "node": ">=20.0.0" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" - }, - "peerDependencies": { - "@cloudflare/workers-types": "^4.20251125.0" - }, - "peerDependenciesMeta": { - "@cloudflare/workers-types": { - "optional": true - } - } - }, - "node_modules/ws": { - "version": "8.18.0", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.0.tgz", - "integrity": "sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=10.0.0" - }, - "peerDependencies": { - "bufferutil": "^4.0.1", - "utf-8-validate": ">=5.0.2" - }, - "peerDependenciesMeta": { - "bufferutil": { - "optional": true - }, - "utf-8-validate": { - "optional": true - } - } - }, - "node_modules/youch": { - "version": "4.1.0-beta.10", - "resolved": "https://registry.npmjs.org/youch/-/youch-4.1.0-beta.10.tgz", - "integrity": "sha512-rLfVLB4FgQneDr0dv1oddCVZmKjcJ6yX6mS4pU82Mq/Dt9a3cLZQ62pDBL4AUO+uVrCvtWz3ZFUL2HFAFJ/BXQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@poppinss/colors": "^4.1.5", - "@poppinss/dumper": "^0.6.4", - "@speed-highlight/core": "^1.2.7", - "cookie": "^1.0.2", - "youch-core": "^0.3.3" - } - }, - "node_modules/youch-core": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/youch-core/-/youch-core-0.3.3.tgz", - "integrity": "sha512-ho7XuGjLaJ2hWHoK8yFnsUGy2Y5uDpqSTq1FkHLK4/oqKtyUU1AFbOOxY4IpC9f0fTLjwYbslUz0Po5BpD1wrA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@poppinss/exception": "^1.2.2", - "error-stack-parser-es": "^1.0.5" - } - }, - "node_modules/zod": { - "version": "3.22.3", - "resolved": "https://registry.npmjs.org/zod/-/zod-3.22.3.tgz", - "integrity": "sha512-EjIevzuJRiRPbVH4mGc8nApb/lVLKVpmUhAaR5R5doKGfAnGJ6Gr3CViAVjP+4FWSxCsybeWQdcgCtbX+7oZug==", - "dev": true, - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/colinhacks" - } - } - } -} diff --git a/package.json b/package.json index 9d3217c..c56cb59 100644 --- a/package.json +++ b/package.json @@ -1,15 +1,31 @@ { - "name": "cloudflare-prometheus-exporter-v2", - "version": "0.0.0", + "name": "cloudflare-prometheus-exporter", + "version": "0.0.1", "private": true, "scripts": { "deploy": "wrangler deploy", "dev": "wrangler dev", "start": "wrangler dev", - "cf-typegen": "wrangler types" + "cf-typegen": "wrangler types", + "gql:generate": "gql.tada generate output", + "check": "biome check", + "format": "biome format --write", + "lint": "biome lint" }, "devDependencies": { - "typescript": "^5.5.2", + "@biomejs/biome": "^2.3.8", + "typescript": "^5.9.3", "wrangler": "^4.51.0" + }, + "dependencies": { + "@urql/core": "^6.0.1", + "cloudflare": "^5.2.0", + "consola": "^3.4.2", + "dataloader": "^2.2.3", + "gql.tada": "^1.9.0", + "graphql": "^16.12.0", + "hono": "^4.10.7", + "install": "^0.13.0", + "zod": "^4.1.13" } -} \ No newline at end of file +} diff --git a/prometheus.yml b/prometheus.yml new file mode 100644 index 0000000..1d6aee5 --- /dev/null +++ b/prometheus.yml @@ -0,0 +1,10 @@ +global: + scrape_interval: 60s + evaluation_interval: 60s + +scrape_configs: + - job_name: "cloudflare-exporter" + static_configs: + - targets: ["host.docker.internal:8787"] + metrics_path: /metrics + scrape_timeout: 30s diff --git a/src/cloudflare/client.ts b/src/cloudflare/client.ts new file mode 100644 index 0000000..77234f9 --- /dev/null +++ b/src/cloudflare/client.ts @@ -0,0 +1,2460 @@ +import { Client, fetchExchange } from "@urql/core"; +import Cloudflare from "cloudflare"; +import DataLoader from "dataloader"; +import z from "zod"; +import { GraphQLError } from "../lib/errors"; +import { findZoneName } from "../lib/filters"; +import { + configFromEnv, + createLogger, + type Logger, + type LoggerConfig, +} from "../lib/logger"; +import type { MetricDefinition } from "../lib/metrics"; +import type { + Account, + LoadBalancerPool, + LoadBalancerWithPools, + SSLCertificate, + TimeRange, + Zone, +} from "../lib/types"; +import { LoadBalancerPoolSchema } from "../lib/types"; +import { + AdaptiveMetricsQuery, + CacheMissMetricsQuery, + ColoErrorMetricsQuery, + ColoMetricsQuery, + EdgeCountryMetricsQuery, + HealthCheckMetricsQuery, + HTTPMetricsQuery, + HTTPMetricsQueryNoBots, + LoadBalancerMetricsQuery, + LogpushAccountMetricsQuery, + LogpushZoneMetricsQuery, + MagicTransitMetricsQuery, + OriginStatusMetricsQuery, + RequestMethodMetricsQuery, + WorkerTotalsQuery, +} from "./gql/queries"; +import type { AccountLevelQuery, ZoneLevelQuery } from "./queries"; + +export const CLOUDFLARE_GQL_URL = + "https://api.cloudflare.com/client/v4/graphql"; + +export type { + AccountLevelQuery, + MetricQueryName, + ZoneLevelQuery, +} from "./queries"; +// Re-export query types for consumers +export { + ACCOUNT_LEVEL_QUERIES, + isAccountLevelQuery, + isZoneLevelQuery, + MetricQueryNameSchema, + ZONE_LEVEL_QUERIES, +} from "./queries"; + +const API_PAGE_SIZE = 100; + +/** + * Groups HTTP status code into category string. + * + * @param code HTTP status code. + * @returns Status category string (1xx, 2xx, 3xx, 4xx, 5xx). + */ +function groupStatusCode(code: number): string { + if (code < 200) return "1xx"; + if (code < 300) return "2xx"; + if (code < 400) return "3xx"; + if (code < 500) return "4xx"; + return "5xx"; +} + +/** + * Normalizes account name for use in Prometheus labels. + * + * @param name Account name. + * @returns Normalized account name (lowercase, spaces replaced with dashes). + */ +function normalizeAccountName(name: string): string { + return name.toLowerCase().replace(/ /g, "-"); +} + +// Worker metric names +const WORKER_METRICS = { + REQUESTS: "cloudflare_worker_requests_count", + ERRORS: "cloudflare_worker_errors_count", + CPU_TIME: "cloudflare_worker_cpu_time", + DURATION: "cloudflare_worker_duration", +} as const; +// ### API Call Summary +// +// Most zone-level request/bandwidth/threat metrics come from **a single GraphQL call** (`HTTPMetricsQuery`). Premium metrics require separate calls. +// +// | gql.tada Query | Metrics | Notes | +// |----------------|---------|-------| +// | `HTTPMetricsQuery` | ~27 | Core zone metrics + firewall + bot detection | +// | `AdaptiveMetricsQuery` | 5 | Origin errors (4xx/5xx) + error rate | +// | `EdgeCountryMetricsQuery` | 3 | Edge status by country/host + error rate | +// | `ColoMetricsQuery` | 3 | Colo traffic | +// | `ColoErrorMetricsQuery` | 3 | Colo errors | +// | `RequestMethodMetricsQuery` | 1 | HTTP methods | +// | `HealthCheckMetricsQuery` | 2 | Health checks | +// | `WorkerTotalsQuery` | 4 | Account-level workers | +// | `LoadBalancerMetricsQuery` | 2 | LB health/requests | +// | `LogpushAccountMetricsQuery` | 1 | Account logpush | +// | `LogpushZoneMetricsQuery` | 1 | Zone logpush | +// | `MagicTransitMetricsQuery` | 4 | Tunnel health (active/healthy/failures/colos) | +// | `OriginStatusMetricsQuery` | 1 | Origin status by country/host | +// +// | SDK Call | Metrics | Notes | +// |----------|---------|-------| +// | `client.zones.list()` | 5 | Zone counts (total/filtered/processed) | +// | `client.ssl.certificatePacks.list()` | 1 | Per-zone | +// | `client.firewall.rules.list()` | - | Rule names for labels | +// + +/** + * Configuration for CloudflareMetricsClient. + * Controls API access, scrape timing, and fetch behavior. + */ +export type CloudflareMetricsClientConfig = Readonly<{ + apiToken: string; + queryLimit: number; + scrapeDelaySeconds: number; + timeWindowSeconds: number; + loggerConfig?: LoggerConfig; + fetch?: typeof globalThis.fetch; +}>; + +/** + * Input parameters for HTTP metrics GraphQL query. + * Specifies time range and zones to fetch. + */ +export type HttpMetricsInput = Readonly<{ + limit: number; + maxtime: Date; + mintime: Date; + zoneIds: string[]; +}>; + +// Workers-compatible batch scheduler +const batchScheduleFn = (cb: () => void) => queueMicrotask(cb); + +/** + * Client for fetching Cloudflare metrics via GraphQL and REST APIs. + * Supports both account-level and zone-level queries with batching via DataLoader. + */ +export class CloudflareMetricsClient { + private readonly api: Cloudflare; + private readonly gql: Client; + private readonly config: CloudflareMetricsClientConfig; + private readonly logger: Logger; + + // DataLoader for batched parallel REST calls (firewall rules benefit from + // batching in AccountMetricCoordinator where Promise.all fires multiple calls) + private readonly firewallRulesLoader: DataLoader>; + + constructor(config: CloudflareMetricsClientConfig) { + this.config = config; + this.logger = createLogger("cf_api", config.loggerConfig); + this.api = new Cloudflare({ + apiToken: config.apiToken, + fetch: config.fetch, + }); + + this.gql = new Client({ + url: CLOUDFLARE_GQL_URL, + preferGetMethod: false, + exchanges: [fetchExchange], + fetch: config.fetch, + fetchOptions() { + return { + headers: { + authorization: `Bearer ${config.apiToken}`, + }, + }; + }, + }); + + // DataLoader: firewall rules by zone ID + // Used effectively in AccountMetricCoordinator where Promise.all + // fires multiple getFirewallRules() calls in the same tick + this.firewallRulesLoader = new DataLoader( + (zoneIds) => this.batchGetFirewallRules([...zoneIds]), + { batchScheduleFn, cache: false }, + ); + } + + /** + * Fetches HTTP metrics via GraphQL (raw query, not processed). + * For processed metrics use getZoneMetrics with "http-metrics" query. + * + * @param input HTTP metrics input parameters. + * @returns Promise of raw GraphQL query result. + */ + async getHttpMetrics(input: HttpMetricsInput) { + const result = await this.gql.query(HTTPMetricsQuery, { + limit: input.limit, + maxtime: input.maxtime.toISOString(), + mintime: input.mintime.toISOString(), + zoneIDs: input.zoneIds, + }); + + return result; + } + + /** + * Fetches all accounts accessible by the API token. + * + * @returns Promise of accounts accessible by the API token. + */ + async getAccounts(): Promise { + this.logger.info("Fetching accounts"); + const response = await this.api.accounts.list({ per_page: API_PAGE_SIZE }); + + const accounts = response.result.map((acc) => ({ + id: acc.id, + name: acc.name, + })); + this.logger.info("Accounts fetched", { count: accounts.length }); + return accounts; + } + + /** + * Fetches all zones for a given account. + * + * @param accountId Cloudflare account ID. + * @returns Promise of zones for the account. + */ + async getZones(accountId: string): Promise { + this.logger.info("Fetching zones", { account_id: accountId }); + const zones: Zone[] = []; + + for await (const zone of this.api.zones.list({ + account: { id: accountId }, + per_page: API_PAGE_SIZE, + })) { + zones.push({ + id: zone.id, + name: zone.name, + status: zone.status ?? "unknown", + plan: { + id: zone.plan?.id ?? "", + name: zone.plan?.name ?? "", + }, + account: { + id: zone.account?.id ?? "", + name: zone.account?.name ?? "", + }, + }); + } + + this.logger.info("Zones fetched", { + account_id: accountId, + count: zones.length, + }); + return zones; + } + + /** + * Fetches firewall rules for a zone via DataLoader batching. + * Returns map of rule ID to rule name/description. + * + * @param zoneId Cloudflare zone ID. + * @returns Promise of map from rule ID to rule name. + */ + async getFirewallRules(zoneId: string): Promise> { + return this.firewallRulesLoader.load(zoneId); + } + + /** + * Fetches firewall rules internally (without DataLoader). + * Fetches both traditional firewall rules and managed rulesets. + * + * @param zoneId Cloudflare zone ID. + * @returns Promise of map from rule ID to rule name. + */ + private async getFirewallRulesInternal( + zoneId: string, + ): Promise> { + this.logger.info("Fetching firewall rules", { zone_id: zoneId }); + const rules = new Map(); + + try { + // Traditional firewall rules (deprecated but still used) + for await (const rule of this.api.firewall.rules.list({ + zone_id: zoneId, + })) { + if (rule.id) { + rules.set(rule.id, rule.description ?? rule.id); + } + } + } catch (error) { + const msg = error instanceof Error ? error.message : String(error); + this.logger.error("Firewall rules API unavailable", { + zone_id: zoneId, + error: msg, + }); + } + + try { + // Managed rulesets + const rulesets = await this.api.rulesets.list({ zone_id: zoneId }); + for (const ruleset of rulesets.result) { + rules.set(ruleset.id, ruleset.name ?? ruleset.id); + } + } catch (error) { + const msg = error instanceof Error ? error.message : String(error); + this.logger.error("Rulesets API unavailable", { + zone_id: zoneId, + error: msg, + }); + } + + this.logger.info("Firewall rules fetched", { + zone_id: zoneId, + count: rules.size, + }); + return rules; + } + + /** + * Batches firewall rule fetches for multiple zones via DataLoader. + * + * @param zoneIds Array of zone IDs. + * @returns Promise of array of rule maps (one per zone). + */ + private async batchGetFirewallRules( + zoneIds: string[], + ): Promise[]> { + this.logger.debug("DataLoader batch: firewall rules", { + batch_size: zoneIds.length, + zone_ids: zoneIds, + }); + + const results = await Promise.allSettled( + zoneIds.map((id) => this.getFirewallRulesInternal(id)), + ); + + const fulfilled = results.filter((r) => r.status === "fulfilled").length; + this.logger.debug("DataLoader batch complete: firewall rules", { + batch_size: zoneIds.length, + fulfilled, + rejected: zoneIds.length - fulfilled, + }); + + return results.map((r, i) => { + if (r.status === "fulfilled") return r.value; + this.logger.warn("Firewall fetch failed", { zone_id: zoneIds[i] }); + return new Map(); + }); + } + + /** + * Fetches SSL certificate packs for a zone. + * Returns empty array on API errors. + * + * @param zoneId Cloudflare zone ID. + * @returns Promise of SSL certificates for the zone. + */ + async getSSLCertificates(zoneId: string): Promise { + this.logger.info("Fetching SSL certificates", { zone_id: zoneId }); + const certs: SSLCertificate[] = []; + + // Schema for SDK response validation - lenient to handle missing/null fields + const CertificateSchema = z + .object({ + id: z.string(), + issuer: z.string().optional(), + status: z.string().optional(), + expires_on: z.string().optional(), + }) + .passthrough(); + + const CertPackSchema = z + .object({ + id: z.string().optional(), + type: z.string().optional(), + status: z.string().optional(), + primary_certificate: z.string().optional().nullable(), // Just the cert ID + certificates: z.array(CertificateSchema).optional().default([]), + hosts: z.array(z.string()).optional().default([]), + }) + .passthrough(); + + try { + const response = await this.api.ssl.certificatePacks.list({ + zone_id: zoneId, + }); + for (const raw of response.result) { + const parsed = CertPackSchema.safeParse(raw); + if (!parsed.success) { + this.logger.debug("Invalid cert pack shape", { + zone_id: zoneId, + error: parsed.error.message, + raw: JSON.stringify(raw), + }); + continue; + } + const pack = parsed.data; + for (const certData of pack.certificates) { + certs.push({ + id: certData.id ?? pack.id ?? "", + type: pack.type ?? "", + status: certData.status ?? pack.status ?? "", + issuer: certData.issuer ?? "unknown", + expiresOn: certData.expires_on ?? "", + hosts: pack.hosts, + }); + } + } + } catch (error) { + const msg = error instanceof Error ? error.message : String(error); + this.logger.error("SSL API unavailable", { zone_id: zoneId, error: msg }); + } + + this.logger.info("SSL certificates fetched", { + zone_id: zoneId, + count: certs.length, + }); + return certs; + } + + /** + * Fetches account-level metrics for a specific query type. + * Each MetricExporter DO calls this directly - no batching needed since + * Cloudflare's accounts filter only supports single accountTag. + * + * @param query Account-level query name. + * @param accountId Cloudflare account ID. + * @param accountName Account name for metric labels. + * @param timeRange Shared time range for query alignment. + * @returns Promise of metric definitions for the account. + * @throws {Error} When unknown query type provided. + */ + async getAccountMetrics( + query: AccountLevelQuery, + accountId: string, + accountName: string, + timeRange: TimeRange, + ): Promise { + this.logger.info("Fetching account metrics", { + query, + account_id: accountId, + }); + + const normalizedAccount = normalizeAccountName(accountName); + + switch (query) { + case "worker-totals": + return this.getWorkerTotalsMetrics( + accountId, + normalizedAccount, + timeRange, + ); + case "logpush-account": + return this.getLogpushAccountMetricsInternal( + accountId, + normalizedAccount, + timeRange, + ); + case "magic-transit": + return this.getMagicTransitMetricsInternal( + accountId, + normalizedAccount, + timeRange, + ); + default: { + const _exhaustive: never = query; + throw new Error(`Unknown account metric query: ${_exhaustive}`); + } + } + } + + /** + * Fetches worker totals metrics (requests, errors, CPU time, duration). + * + * @param accountId Cloudflare account ID. + * @param normalizedAccount Normalized account name for labels. + * @param timeRange Query time range. + * @returns Worker metrics. + */ + private async getWorkerTotalsMetrics( + accountId: string, + normalizedAccount: string, + timeRange: { mintime: string; maxtime: string }, + ): Promise { + const result = await this.gql.query(WorkerTotalsQuery, { + accountID: accountId, + mintime: timeRange.mintime, + maxtime: timeRange.maxtime, + limit: this.config.queryLimit, + }); + + if (result.error) { + this.logger.error("GraphQL error", { error: result.error.message }); + return []; + } + + const metrics: MetricDefinition[] = []; + const requestsMetric: MetricDefinition = { + name: WORKER_METRICS.REQUESTS, + help: "Total number of worker requests", + type: "counter", + values: [], + }; + const errorsMetric: MetricDefinition = { + name: WORKER_METRICS.ERRORS, + help: "Total number of worker errors", + type: "counter", + values: [], + }; + const cpuTimeMetric: MetricDefinition = { + name: WORKER_METRICS.CPU_TIME, + help: "Worker CPU time in microseconds", + type: "gauge", + values: [], + }; + const durationMetric: MetricDefinition = { + name: WORKER_METRICS.DURATION, + help: "Worker execution duration in milliseconds", + type: "gauge", + values: [], + }; + + for (const accountData of result.data?.viewer?.accounts ?? []) { + for (const worker of accountData.workersInvocationsAdaptive ?? []) { + const scriptName = worker.dimensions?.scriptName ?? "unknown"; + const baseLabels = { + script_name: scriptName, + account: normalizedAccount, + }; + + requestsMetric.values.push({ + labels: baseLabels, + value: worker.sum?.requests ?? 0, + }); + errorsMetric.values.push({ + labels: baseLabels, + value: worker.sum?.errors ?? 0, + }); + + const quantiles = worker.quantiles; + if (quantiles) { + for (const { q, val } of [ + { q: "P50", val: quantiles.cpuTimeP50 }, + { q: "P75", val: quantiles.cpuTimeP75 }, + { q: "P99", val: quantiles.cpuTimeP99 }, + { q: "P999", val: quantiles.cpuTimeP999 }, + ]) { + if (val != null) { + cpuTimeMetric.values.push({ + labels: { ...baseLabels, quantile: q }, + value: val, + }); + } + } + for (const { q, val } of [ + { q: "P50", val: quantiles.durationP50 }, + { q: "P75", val: quantiles.durationP75 }, + { q: "P99", val: quantiles.durationP99 }, + { q: "P999", val: quantiles.durationP999 }, + ]) { + if (val != null) { + durationMetric.values.push({ + labels: { ...baseLabels, quantile: q }, + value: Math.round(val * 1000) / 1000, + }); + } + } + } + } + } + + if (requestsMetric.values.length > 0) metrics.push(requestsMetric); + if (errorsMetric.values.length > 0) metrics.push(errorsMetric); + if (cpuTimeMetric.values.length > 0) metrics.push(cpuTimeMetric); + if (durationMetric.values.length > 0) metrics.push(durationMetric); + + return metrics; + } + + /** + * Fetches logpush account metrics (failed jobs). + * + * @param accountId Cloudflare account ID. + * @param normalizedAccount Normalized account name for labels. + * @param timeRange Query time range. + * @returns Logpush account metrics. + */ + private async getLogpushAccountMetricsInternal( + accountId: string, + normalizedAccount: string, + timeRange: { mintime: string; maxtime: string }, + ): Promise { + const result = await this.gql.query(LogpushAccountMetricsQuery, { + accountID: accountId, + mintime: timeRange.mintime, + maxtime: timeRange.maxtime, + limit: this.config.queryLimit, + }); + + if (result.error) { + this.logger.error("GraphQL error", { error: result.error.message }); + return []; + } + + const metric: MetricDefinition = { + name: "cloudflare_logpush_failed_jobs_account_count", + help: "Number of failed logpush jobs at account level", + type: "gauge", + values: [], + }; + + for (const accountData of result.data?.viewer?.accounts ?? []) { + for (const group of accountData.logpushHealthAdaptiveGroups ?? []) { + metric.values.push({ + labels: { + account: normalizedAccount, + job_id: String(group.dimensions?.jobId ?? "unknown"), + status: String(group.dimensions?.status ?? "unknown"), + destination_type: group.dimensions?.destinationType ?? "unknown", + }, + value: group.count ?? 0, + }); + } + } + + return metric.values.length > 0 ? [metric] : []; + } + + /** + * Magic Transit tunnel health metrics (active, healthy, failures, colo count). + * + * @param accountId Cloudflare account ID. + * @param normalizedAccount Normalized account name for labels. + * @param timeRange Query time range. + * @returns Magic Transit tunnel metrics. + */ + private async getMagicTransitMetricsInternal( + accountId: string, + normalizedAccount: string, + timeRange: { mintime: string; maxtime: string }, + ): Promise { + const result = await this.gql.query(MagicTransitMetricsQuery, { + accountID: accountId, + mintime: timeRange.mintime, + maxtime: timeRange.maxtime, + limit: this.config.queryLimit, + }); + + if (result.error) { + this.logger.error("GraphQL error", { error: result.error.message }); + return []; + } + + const activeTunnels: MetricDefinition = { + name: "cloudflare_magic_transit_active_tunnels", + help: "Active Magic Transit tunnels", + type: "gauge", + values: [], + }; + const healthyTunnels: MetricDefinition = { + name: "cloudflare_magic_transit_healthy_tunnels", + help: "Healthy Magic Transit tunnels", + type: "gauge", + values: [], + }; + const tunnelFailures: MetricDefinition = { + name: "cloudflare_magic_transit_tunnel_failures", + help: "Magic Transit tunnel failures", + type: "gauge", + values: [], + }; + const edgeColoCount: MetricDefinition = { + name: "cloudflare_magic_transit_edge_colo_count", + help: "Edge colocations serving tunnels", + type: "gauge", + values: [], + }; + + for (const accountData of result.data?.viewer?.accounts ?? []) { + const groups = + accountData.magicTransitTunnelHealthChecksAdaptiveGroups ?? []; + + // Group by tunnel for aggregation + const byTunnel = new Map(); + for (const g of groups) { + const key = `${g.dimensions?.tunnelName ?? ""}:${g.dimensions?.siteName ?? ""}`; + const existing = byTunnel.get(key); + if (existing) { + existing.push(g); + } else { + byTunnel.set(key, [g]); + } + } + + for (const [key, tunnelGroups] of byTunnel) { + const [tunnelName, siteName] = key.split(":"); + const labels = { + account: normalizedAccount, + tunnel_name: tunnelName ?? "", + site_name: siteName ?? "", + }; + + // Active: count where active=true + const active = tunnelGroups + .filter((g) => String(g.dimensions?.active) === "true") + .reduce((sum, g) => sum + (g.count ?? 0), 0); + if (active > 0) activeTunnels.values.push({ labels, value: active }); + + // Healthy: resultStatus === "healthy" + const healthy = tunnelGroups + .filter((g) => g.dimensions?.resultStatus === "healthy") + .reduce((sum, g) => sum + (g.count ?? 0), 0); + if (healthy > 0) healthyTunnels.values.push({ labels, value: healthy }); + + // Failures: resultStatus !== "healthy" + const failures = tunnelGroups + .filter((g) => g.dimensions?.resultStatus !== "healthy") + .reduce((sum, g) => sum + (g.count ?? 0), 0); + if (failures > 0) + tunnelFailures.values.push({ labels, value: failures }); + + // Edge colo count: distinct colos + const colos = new Set( + tunnelGroups + .map((g) => g.dimensions?.edgeColoCity) + .filter((c): c is string => c != null && c !== ""), + ); + if (colos.size > 0) + edgeColoCount.values.push({ labels, value: colos.size }); + } + } + + return [ + activeTunnels, + healthyTunnels, + tunnelFailures, + edgeColoCount, + ].filter((m) => m.values.length > 0); + } + + /** + * Fetches zone-level metrics for a specific query type. + * Requires zone IDs and zone metadata for label resolution. + * + * @param query Zone-level query name. + * @param zoneIds Array of Cloudflare zone IDs. + * @param zones Zone metadata for label mapping. + * @param firewallRules Map of firewall rule IDs to names. + * @param timeRange Shared time range for query alignment. + * @returns Promise of metric definitions for the zones. + * @throws {Error} When unknown query type provided. + */ + async getZoneMetrics( + query: ZoneLevelQuery, + zoneIds: string[], + zones: Zone[], + firewallRules: Record, + timeRange: TimeRange, + ): Promise { + this.logger.info("Fetching zone metrics", { + query, + zone_count: zoneIds.length, + }); + const firewallMap = new Map(Object.entries(firewallRules)); + switch (query) { + case "http-metrics": + return this.getHttpMetricsHandler( + zoneIds, + zones, + firewallMap, + timeRange, + ); + case "adaptive-metrics": + return this.getAdaptiveMetrics(zoneIds, zones, timeRange); + case "edge-country-metrics": + return this.getEdgeCountryMetrics(zoneIds, zones, timeRange); + case "colo-metrics": + return this.getColoMetrics(zoneIds, zones, timeRange); + case "colo-error-metrics": + return this.getColoErrorMetrics(zoneIds, zones, timeRange); + case "request-method-metrics": + return this.getRequestMethodMetrics(zoneIds, zones, timeRange); + case "health-check-metrics": + return this.getHealthCheckMetrics(zoneIds, zones, timeRange); + case "load-balancer-metrics": + return this.getLoadBalancerMetrics(zoneIds, zones, timeRange); + case "logpush-zone": + return this.getLogpushZoneMetrics(zoneIds, zones, timeRange); + case "origin-status-metrics": + return this.getOriginStatusMetrics(zoneIds, zones, timeRange); + case "cache-miss-metrics": + return this.getCacheMissMetrics(zoneIds, zones, timeRange); + case "ssl-certificates": + return this.getSSLCertificateMetrics(zones); + case "lb-weight-metrics": + return this.getLbWeightMetrics(zones); + default: { + const _exhaustive: never = query; + throw new Error(`Unknown zone metric query: ${_exhaustive}`); + } + } + } + + /** + * Extracts ~27 metrics from HTTPMetricsQuery. + * Including requests, bandwidth, threats, pageviews, uniques, firewall events, and bot detection. + * + * @param zoneIds Zone IDs to query. + * @param zones Zone metadata for label mapping. + * @param firewallRules Map of rule IDs to names for labels. + * @param timeRange Time range for the query. + * @returns HTTP metrics. + * @throws {Error} When GraphQL query fails. + */ + private async getHttpMetricsHandler( + zoneIds: string[], + zones: Zone[], + firewallRules: Map, + timeRange: TimeRange, + ): Promise { + const queryVars = { + zoneIDs: zoneIds, + mintime: timeRange.mintime, + maxtime: timeRange.maxtime, + limit: this.config.queryLimit, + }; + + let result = await this.gql.query(HTTPMetricsQuery, queryVars); + + // Fallback to query without bot fields if zone lacks Bot Management + if (result.error?.message.includes("does not have access to the field")) { + this.logger.warn( + "Bot fields unavailable for some zones, retrying without bot metrics", + ); + result = await this.gql.query(HTTPMetricsQueryNoBots, queryVars); + } + + if (result.error) { + throw new Error(`GraphQL error: ${result.error.message}`); + } + + // Initialize all metric definitions + const requestsTotal: MetricDefinition = { + name: "cloudflare_zone_requests_total", + help: "Total requests", + type: "counter", + values: [], + }; + const requestsCached: MetricDefinition = { + name: "cloudflare_zone_requests_cached", + help: "Cached requests", + type: "gauge", + values: [], + }; + const requestsSsl: MetricDefinition = { + name: "cloudflare_zone_requests_ssl_encrypted", + help: "SSL encrypted requests", + type: "counter", + values: [], + }; + const requestsContentType: MetricDefinition = { + name: "cloudflare_zone_requests_content_type", + help: "Requests by content type", + type: "counter", + values: [], + }; + const requestsCountry: MetricDefinition = { + name: "cloudflare_zone_requests_country", + help: "Requests by country", + type: "counter", + values: [], + }; + const requestsStatus: MetricDefinition = { + name: "cloudflare_zone_requests_status", + help: "Requests by status code group", + type: "counter", + values: [], + }; + const requestsBrowser: MetricDefinition = { + name: "cloudflare_zone_requests_browser_map_page_views_count", + help: "Page views by browser family", + type: "counter", + values: [], + }; + + const bandwidthTotal: MetricDefinition = { + name: "cloudflare_zone_bandwidth_total", + help: "Total bandwidth bytes", + type: "counter", + values: [], + }; + const bandwidthCached: MetricDefinition = { + name: "cloudflare_zone_bandwidth_cached", + help: "Cached bandwidth bytes", + type: "counter", + values: [], + }; + const bandwidthSsl: MetricDefinition = { + name: "cloudflare_zone_bandwidth_ssl_encrypted", + help: "SSL encrypted bandwidth bytes", + type: "counter", + values: [], + }; + const bandwidthContentType: MetricDefinition = { + name: "cloudflare_zone_bandwidth_content_type", + help: "Bandwidth by content type", + type: "counter", + values: [], + }; + const bandwidthCountry: MetricDefinition = { + name: "cloudflare_zone_bandwidth_country", + help: "Bandwidth by country", + type: "counter", + values: [], + }; + + const threatsTotal: MetricDefinition = { + name: "cloudflare_zone_threats_total", + help: "Total threats", + type: "counter", + values: [], + }; + const threatsCountry: MetricDefinition = { + name: "cloudflare_zone_threats_country", + help: "Threats by country", + type: "counter", + values: [], + }; + const threatsType: MetricDefinition = { + name: "cloudflare_zone_threats_type", + help: "Threats by type", + type: "counter", + values: [], + }; + + const pageviewsTotal: MetricDefinition = { + name: "cloudflare_zone_pageviews_total", + help: "Total pageviews", + type: "counter", + values: [], + }; + const uniquesTotal: MetricDefinition = { + name: "cloudflare_zone_uniques_total", + help: "Unique visitors", + type: "counter", + values: [], + }; + + const firewallEvents: MetricDefinition = { + name: "cloudflare_zone_firewall_events_count", + help: "Firewall events", + type: "counter", + values: [], + }; + + const requestsIpClass: MetricDefinition = { + name: "cloudflare_zone_requests_ip_class", + help: "Requests by IP classification", + type: "counter", + values: [], + }; + + const requestsSslProtocol: MetricDefinition = { + name: "cloudflare_zone_requests_ssl_protocol", + help: "Requests by SSL/TLS protocol version", + type: "counter", + values: [], + }; + + const requestsHttpVersion: MetricDefinition = { + name: "cloudflare_zone_requests_http_version", + help: "Requests by HTTP protocol version", + type: "counter", + values: [], + }; + + const botsDetected: MetricDefinition = { + name: "cloudflare_zone_firewall_bots_detected", + help: "Bot requests detected by score bucket", + type: "counter", + values: [], + }; + + const botByCountry: MetricDefinition = { + name: "cloudflare_zone_bot_request_by_country", + help: "Bot requests by country", + type: "counter", + values: [], + }; + + const cacheHitRatio: MetricDefinition = { + name: "cloudflare_zone_cache_hit_ratio", + help: "Cache hit ratio", + type: "gauge", + values: [], + }; + + for (const zoneData of result.data?.viewer?.zones ?? []) { + const zoneName = findZoneName(zoneData.zoneTag, zones); + const baseLabels = { zone: zoneName }; + + // httpRequests1mGroups may have multiple groups, aggregate first one + const group = zoneData.httpRequests1mGroups?.[0]; + if (!group) continue; + + const sum = group.sum; + const uniq = group.uniq; + + // Basic metrics + if (sum?.requests != null) { + requestsTotal.values.push({ labels: baseLabels, value: sum.requests }); + } + if (sum?.cachedRequests != null) { + requestsCached.values.push({ + labels: baseLabels, + value: sum.cachedRequests, + }); + } + if (sum?.encryptedRequests != null) { + requestsSsl.values.push({ + labels: baseLabels, + value: sum.encryptedRequests, + }); + } + if (sum?.bytes != null) { + bandwidthTotal.values.push({ labels: baseLabels, value: sum.bytes }); + } + if (sum?.cachedBytes != null) { + bandwidthCached.values.push({ + labels: baseLabels, + value: sum.cachedBytes, + }); + } + if (sum?.encryptedBytes != null) { + bandwidthSsl.values.push({ + labels: baseLabels, + value: sum.encryptedBytes, + }); + } + if (sum?.threats != null) { + threatsTotal.values.push({ labels: baseLabels, value: sum.threats }); + } + if (sum?.pageViews != null) { + pageviewsTotal.values.push({ + labels: baseLabels, + value: sum.pageViews, + }); + } + if (uniq?.uniques != null) { + uniquesTotal.values.push({ labels: baseLabels, value: uniq.uniques }); + } + + // Cache hit ratio + const requests = sum?.requests ?? 0; + const cached = sum?.cachedRequests ?? 0; + if (requests > 0) { + cacheHitRatio.values.push({ + labels: baseLabels, + value: cached / requests, + }); + } + + // Content type breakdown + for (const ct of sum?.contentTypeMap ?? []) { + const labels = { + ...baseLabels, + content_type: ct.edgeResponseContentTypeName ?? "", + }; + if (ct.requests != null) { + requestsContentType.values.push({ labels, value: ct.requests }); + } + if (ct.bytes != null) { + bandwidthContentType.values.push({ labels, value: ct.bytes }); + } + } + + // Country breakdown + for (const c of sum?.countryMap ?? []) { + const labels = { ...baseLabels, country: c.clientCountryName ?? "" }; + if (c.requests != null) { + requestsCountry.values.push({ labels, value: c.requests }); + } + if (c.bytes != null) { + bandwidthCountry.values.push({ labels, value: c.bytes }); + } + if (c.threats != null && c.threats > 0) { + threatsCountry.values.push({ labels, value: c.threats }); + } + } + + // Status code breakdown (with grouping) + const statusGroups: Record = {}; + for (const s of sum?.responseStatusMap ?? []) { + const groupedStatus = groupStatusCode(s.edgeResponseStatus ?? 0); + statusGroups[groupedStatus] = + (statusGroups[groupedStatus] ?? 0) + (s.requests ?? 0); + } + for (const [status, count] of Object.entries(statusGroups)) { + requestsStatus.values.push({ + labels: { ...baseLabels, status }, + value: count, + }); + } + + // Browser breakdown + for (const b of sum?.browserMap ?? []) { + if (b.pageViews != null && b.pageViews > 0) { + requestsBrowser.values.push({ + labels: { ...baseLabels, family: b.uaBrowserFamily ?? "" }, + value: b.pageViews, + }); + } + } + + // Threat types + for (const t of sum?.threatPathingMap ?? []) { + if (t.requests != null && t.requests > 0) { + threatsType.values.push({ + labels: { ...baseLabels, type: t.threatPathingName ?? "" }, + value: t.requests, + }); + } + } + + // IP class breakdown + for (const ip of sum?.ipClassMap ?? []) { + if (ip.requests != null && ip.requests > 0) { + requestsIpClass.values.push({ + labels: { ...baseLabels, ip_type: ip.ipType ?? "" }, + value: ip.requests, + }); + } + } + + // SSL protocol breakdown + for (const ssl of sum?.clientSSLMap ?? []) { + if (ssl.requests != null && ssl.requests > 0) { + requestsSslProtocol.values.push({ + labels: { + ...baseLabels, + ssl_protocol: ssl.clientSSLProtocol ?? "", + }, + value: ssl.requests, + }); + } + } + + // HTTP version breakdown + for (const http of sum?.clientHTTPVersionMap ?? []) { + if (http.requests != null && http.requests > 0) { + requestsHttpVersion.values.push({ + labels: { + ...baseLabels, + http_version: http.clientHTTPProtocol ?? "", + }, + value: http.requests, + }); + } + } + + // Firewall events and bot detection + for (const fw of zoneData.firewallEventsAdaptiveGroups ?? []) { + const dim = fw.dimensions; + const ruleId = dim?.ruleId ?? ""; + const ruleName = firewallRules.get(ruleId) ?? ruleId; + const count = fw.count ?? 0; + + if (count > 0) { + firewallEvents.values.push({ + labels: { + ...baseLabels, + action: dim?.action ?? "", + source: dim?.source ?? "", + rule: ruleName, + host: dim?.clientRequestHTTPHost ?? "", + country: dim?.clientCountryName ?? "", + }, + value: count, + }); + + // Bot detection: score < 30 = likely bot + const botScore = dim?.botScore; + if (botScore != null && botScore < 30) { + const scoreBucket = botScore < 10 ? "0-9" : "10-29"; + + botsDetected.values.push({ + labels: { + ...baseLabels, + bot_score: scoreBucket, + detection_source: dim?.botScoreSrcName ?? "unknown", + }, + value: count, + }); + + botByCountry.values.push({ + labels: { + ...baseLabels, + country: dim?.clientCountryName ?? "", + }, + value: count, + }); + } + } + } + } + + // Return only non-empty metrics + return [ + requestsTotal, + requestsCached, + requestsSsl, + requestsContentType, + requestsCountry, + requestsStatus, + requestsBrowser, + requestsIpClass, + requestsSslProtocol, + requestsHttpVersion, + bandwidthTotal, + bandwidthCached, + bandwidthSsl, + bandwidthContentType, + bandwidthCountry, + threatsTotal, + threatsCountry, + threatsType, + pageviewsTotal, + uniquesTotal, + firewallEvents, + botsDetected, + botByCountry, + cacheHitRatio, + ].filter((m) => m.values.length > 0); + } + + /** + * Origin error rates (4xx/5xx), response duration, and error rate gauge. + * + * @param zoneIds Zone IDs to query. + * @param zones Zone metadata for label mapping. + * @param timeRange Time range for the query. + * @returns Origin error metrics. + * @throws {Error} When GraphQL query fails. + */ + private async getAdaptiveMetrics( + zoneIds: string[], + zones: Zone[], + timeRange: TimeRange, + ): Promise { + const result = await this.gql.query(AdaptiveMetricsQuery, { + zoneIDs: zoneIds, + mintime: timeRange.mintime, + maxtime: timeRange.maxtime, + limit: this.config.queryLimit, + }); + + if (result.error) { + throw new Error(`GraphQL error: ${result.error.message}`); + } + + const error4xx: MetricDefinition = { + name: "cloudflare_zone_customer_error_4xx_rate", + help: "4xx error requests", + type: "counter", + values: [], + }; + const error5xx: MetricDefinition = { + name: "cloudflare_zone_customer_error_5xx_rate", + help: "5xx error requests", + type: "counter", + values: [], + }; + const originDuration: MetricDefinition = { + name: "cloudflare_zone_origin_response_duration_ms", + help: "Origin response duration in ms", + type: "gauge", + values: [], + }; + const originErrorRate: MetricDefinition = { + name: "cloudflare_zone_origin_error_rate", + help: "Origin error rate (4xx+5xx / total origin errors)", + type: "gauge", + values: [], + }; + + // Track totals for error rate calculation + const zoneStats: Record = + {}; + + for (const zoneData of result.data?.viewer?.zones ?? []) { + const zoneName = findZoneName(zoneData.zoneTag, zones); + + for (const group of zoneData.httpRequestsAdaptiveGroups ?? []) { + const dim = group.dimensions; + const status = dim?.originResponseStatus ?? 0; + const count = group.count ?? 0; + const labels = { + zone: zoneName, + status: String(status), + country: dim?.clientCountryName ?? "", + host: dim?.clientRequestHTTPHost ?? "", + }; + + if (status >= 400 && status < 500 && count > 0) { + error4xx.values.push({ labels, value: count }); + if (!zoneStats[zoneName]) { + zoneStats[zoneName] = { errors4xx: 0, errors5xx: 0 }; + } + zoneStats[zoneName].errors4xx += count; + } else if (status >= 500 && count > 0) { + error5xx.values.push({ labels, value: count }); + if (!zoneStats[zoneName]) { + zoneStats[zoneName] = { errors4xx: 0, errors5xx: 0 }; + } + zoneStats[zoneName].errors5xx += count; + } + + const avgDuration = group.avg?.originResponseDurationMs; + if (avgDuration != null) { + originDuration.values.push({ labels, value: avgDuration }); + } + } + } + + // Emit origin error rate (ratio of 5xx to total errors) + for (const [zone, stats] of Object.entries(zoneStats)) { + const total = stats.errors4xx + stats.errors5xx; + if (total > 0) { + originErrorRate.values.push({ + labels: { zone }, + value: stats.errors5xx / total, + }); + } + } + + return [error4xx, error5xx, originDuration, originErrorRate].filter( + (m) => m.values.length > 0, + ); + } + + /** + * Requests by edge status, country, host, and edge error rate gauge. + * + * @param zoneIds Zone IDs to query. + * @param zones Zone metadata for label mapping. + * @param timeRange Time range for the query. + * @returns Edge status metrics. + * @throws {Error} When GraphQL query fails. + */ + private async getEdgeCountryMetrics( + zoneIds: string[], + zones: Zone[], + timeRange: TimeRange, + ): Promise { + const result = await this.gql.query(EdgeCountryMetricsQuery, { + zoneIDs: zoneIds, + mintime: timeRange.mintime, + maxtime: timeRange.maxtime, + limit: this.config.queryLimit, + }); + + if (result.error) { + throw new Error(`GraphQL error: ${result.error.message}`); + } + + const statusCountryHost: MetricDefinition = { + name: "cloudflare_zone_requests_status_country_host", + help: "Edge status by country and host", + type: "counter", + values: [], + }; + + const edgeErrorRate: MetricDefinition = { + name: "cloudflare_zone_edge_error_rate", + help: "Edge error rate (4xx+5xx / total)", + type: "gauge", + values: [], + }; + + // Aggregate for error rate calculation + const zoneStats: Record = {}; + + for (const zoneData of result.data?.viewer?.zones ?? []) { + const zoneName = findZoneName(zoneData.zoneTag, zones); + + for (const group of zoneData.httpRequestsEdgeCountryHost ?? []) { + const dim = group.dimensions; + const status = dim?.edgeResponseStatus ?? 0; + const count = group.count ?? 0; + + if (count > 0) { + statusCountryHost.values.push({ + labels: { + zone: zoneName, + edge_status: String(status), + country: dim?.clientCountryName ?? "", + host: dim?.clientRequestHTTPHost ?? "", + }, + value: count, + }); + + // Aggregate for error rate + if (!zoneStats[zoneName]) { + zoneStats[zoneName] = { total: 0, errors: 0 }; + } + zoneStats[zoneName].total += count; + if (status >= 400) { + zoneStats[zoneName].errors += count; + } + } + } + } + + // Emit error rate gauges + for (const [zone, stats] of Object.entries(zoneStats)) { + if (stats.total > 0) { + edgeErrorRate.values.push({ + labels: { zone }, + value: stats.errors / stats.total, + }); + } + } + + return [statusCountryHost, edgeErrorRate].filter( + (m) => m.values.length > 0, + ); + } + + /** + * Visits, response bytes, requests per colo. + * + * @param zoneIds Zone IDs to query. + * @param zones Zone metadata for label mapping. + * @param timeRange Time range for the query. + * @returns Colo metrics. + * @throws {Error} When GraphQL query fails. + */ + private async getColoMetrics( + zoneIds: string[], + zones: Zone[], + timeRange: TimeRange, + ): Promise { + const result = await this.gql.query(ColoMetricsQuery, { + zoneIDs: zoneIds, + mintime: timeRange.mintime, + maxtime: timeRange.maxtime, + limit: this.config.queryLimit, + }); + + if (result.error) { + throw new Error(`GraphQL error: ${result.error.message}`); + } + + const visits: MetricDefinition = { + name: "cloudflare_zone_colocation_visits", + help: "Visits per colo", + type: "counter", + values: [], + }; + const responseBytes: MetricDefinition = { + name: "cloudflare_zone_colocation_edge_response_bytes", + help: "Edge response bytes per colo", + type: "counter", + values: [], + }; + const requestsTotal: MetricDefinition = { + name: "cloudflare_zone_colocation_requests_total", + help: "Requests per colo", + type: "counter", + values: [], + }; + + for (const zoneData of result.data?.viewer?.zones ?? []) { + const zoneName = findZoneName(zoneData.zoneTag, zones); + + for (const group of zoneData.httpRequestsAdaptiveGroups ?? []) { + const dim = group.dimensions; + const labels = { + zone: zoneName, + colo: dim?.coloCode ?? "", + host: dim?.clientRequestHTTPHost ?? "", + }; + + const visitsValue = group.sum?.visits; + if (visitsValue != null && visitsValue > 0) { + visits.values.push({ labels, value: visitsValue }); + } + + const bytesValue = group.sum?.edgeResponseBytes; + if (bytesValue != null && bytesValue > 0) { + responseBytes.values.push({ labels, value: bytesValue }); + } + + if (group.count != null && group.count > 0) { + requestsTotal.values.push({ labels, value: group.count }); + } + } + } + + return [visits, responseBytes, requestsTotal].filter( + (m) => m.values.length > 0, + ); + } + + /** + * Error visits, bytes, requests per colo (4xx+). + * + * @param zoneIds Zone IDs to query. + * @param zones Zone metadata for label mapping. + * @param timeRange Time range for the query. + * @returns Colo error metrics. + * @throws {Error} When GraphQL query fails. + */ + private async getColoErrorMetrics( + zoneIds: string[], + zones: Zone[], + timeRange: TimeRange, + ): Promise { + const result = await this.gql.query(ColoErrorMetricsQuery, { + zoneIDs: zoneIds, + mintime: timeRange.mintime, + maxtime: timeRange.maxtime, + limit: this.config.queryLimit, + }); + + if (result.error) { + throw new Error(`GraphQL error: ${result.error.message}`); + } + + const visitsError: MetricDefinition = { + name: "cloudflare_zone_colocation_visits_error", + help: "Error visits per colo", + type: "counter", + values: [], + }; + const responseBytesError: MetricDefinition = { + name: "cloudflare_zone_colocation_edge_response_bytes_error", + help: "Error response bytes per colo", + type: "counter", + values: [], + }; + const requestsError: MetricDefinition = { + name: "cloudflare_zone_colocation_requests_total_error", + help: "Error requests per colo", + type: "counter", + values: [], + }; + + for (const zoneData of result.data?.viewer?.zones ?? []) { + const zoneName = findZoneName(zoneData.zoneTag, zones); + + for (const group of zoneData.httpRequestsAdaptiveGroups ?? []) { + const dim = group.dimensions; + const labels = { + zone: zoneName, + colo: dim?.coloCode ?? "", + host: dim?.clientRequestHTTPHost ?? "", + status: String(dim?.edgeResponseStatus ?? 0), + }; + + const visitsValue = group.sum?.visits; + if (visitsValue != null && visitsValue > 0) { + visitsError.values.push({ labels, value: visitsValue }); + } + + const bytesValue = group.sum?.edgeResponseBytes; + if (bytesValue != null && bytesValue > 0) { + responseBytesError.values.push({ labels, value: bytesValue }); + } + + if (group.count != null && group.count > 0) { + requestsError.values.push({ labels, value: group.count }); + } + } + } + + return [visitsError, responseBytesError, requestsError].filter( + (m) => m.values.length > 0, + ); + } + + /** + * Requests by HTTP method. + * + * @param zoneIds Zone IDs to query. + * @param zones Zone metadata for label mapping. + * @param timeRange Time range for the query. + * @returns Request method metrics. + * @throws {Error} When GraphQL query fails. + */ + private async getRequestMethodMetrics( + zoneIds: string[], + zones: Zone[], + timeRange: TimeRange, + ): Promise { + const result = await this.gql.query(RequestMethodMetricsQuery, { + zoneIDs: zoneIds, + mintime: timeRange.mintime, + maxtime: timeRange.maxtime, + limit: this.config.queryLimit, + }); + + if (result.error) { + throw new Error(`GraphQL error: ${result.error.message}`); + } + + const methodCount: MetricDefinition = { + name: "cloudflare_zone_request_method_count", + help: "Requests by HTTP method", + type: "counter", + values: [], + }; + + for (const zoneData of result.data?.viewer?.zones ?? []) { + const zoneName = findZoneName(zoneData.zoneTag, zones); + + for (const group of zoneData.httpRequestsAdaptiveGroups ?? []) { + if (group.count != null && group.count > 0) { + methodCount.values.push({ + labels: { + zone: zoneName, + method: group.dimensions?.clientRequestHTTPMethodName ?? "", + }, + value: group.count, + }); + } + } + } + + return methodCount.values.length > 0 ? [methodCount] : []; + } + + /** + * Events per origin with timing metrics (RTT, TTFB, TCP, TLS). + * + * @param zoneIds Zone IDs to query. + * @param zones Zone metadata for label mapping. + * @param timeRange Time range for the query. + * @returns Health check metrics. + * @throws {GraphQLError} When GraphQL query fails. + */ + private async getHealthCheckMetrics( + zoneIds: string[], + zones: Zone[], + timeRange: TimeRange, + ): Promise { + const result = await this.gql.query(HealthCheckMetricsQuery, { + zoneIDs: zoneIds, + mintime: timeRange.mintime, + maxtime: timeRange.maxtime, + limit: this.config.queryLimit, + }); + + if (result.error) { + throw new GraphQLError( + "Failed to fetch health check metrics", + result.error.graphQLErrors ?? [], + { context: { zone_ids: zoneIds } }, + ); + } + + const eventsOrigin: MetricDefinition = { + name: "cloudflare_zone_health_check_events_origin_count", + help: "Health check events per origin", + type: "counter", + values: [], + }; + const eventsAvg: MetricDefinition = { + name: "cloudflare_zone_health_check_events_avg", + help: "Average health check events", + type: "gauge", + values: [], + }; + const healthCheckRtt: MetricDefinition = { + name: "cloudflare_zone_health_check_rtt_ms", + help: "Health check RTT to origin in milliseconds", + type: "gauge", + values: [], + }; + const healthCheckTtfb: MetricDefinition = { + name: "cloudflare_zone_health_check_ttfb_ms", + help: "Health check time to first byte in milliseconds", + type: "gauge", + values: [], + }; + const healthCheckTcpConn: MetricDefinition = { + name: "cloudflare_zone_health_check_tcp_conn_ms", + help: "Health check TCP connection time in milliseconds", + type: "gauge", + values: [], + }; + const healthCheckTlsHandshake: MetricDefinition = { + name: "cloudflare_zone_health_check_tls_handshake_ms", + help: "Health check TLS handshake time in milliseconds", + type: "gauge", + values: [], + }; + + for (const zoneData of result.data?.viewer?.zones ?? []) { + const zoneName = findZoneName(zoneData.zoneTag, zones); + let totalEvents = 0; + let groupCount = 0; + + for (const group of zoneData.healthCheckEventsAdaptiveGroups ?? []) { + const dim = group.dimensions; + const avg = group.avg; + + if (group.count != null && group.count > 0) { + eventsOrigin.values.push({ + labels: { + zone: zoneName, + health_status: dim?.healthStatus ?? "", + origin_ip: dim?.originIP ?? "", + region: dim?.region ?? "", + fqdn: dim?.fqdn ?? "", + failure_reason: dim?.failureReason ?? "", + }, + value: group.count, + }); + totalEvents += group.count; + groupCount++; + + // Timing metrics + const baseLabels = { + zone: zoneName, + origin_ip: dim?.originIP ?? "", + fqdn: dim?.fqdn ?? "", + }; + + if (avg?.rttMs != null) { + healthCheckRtt.values.push({ + labels: baseLabels, + value: avg.rttMs, + }); + } + if (avg?.timeToFirstByteMs != null) { + healthCheckTtfb.values.push({ + labels: baseLabels, + value: avg.timeToFirstByteMs, + }); + } + if (avg?.tcpConnMs != null) { + healthCheckTcpConn.values.push({ + labels: baseLabels, + value: avg.tcpConnMs, + }); + } + if (avg?.tlsHandshakeMs != null) { + healthCheckTlsHandshake.values.push({ + labels: baseLabels, + value: avg.tlsHandshakeMs, + }); + } + } + } + + if (groupCount > 0) { + eventsAvg.values.push({ + labels: { zone: zoneName }, + value: totalEvents / groupCount, + }); + } + } + + return [ + eventsOrigin, + eventsAvg, + healthCheckRtt, + healthCheckTtfb, + healthCheckTcpConn, + healthCheckTlsHandshake, + ].filter((m) => m.values.length > 0); + } + + /** + * Pool health, requests, RTT, steering policy, and origins selected. + * + * @param zoneIds Zone IDs to query. + * @param zones Zone metadata for label mapping. + * @param timeRange Time range for the query. + * @returns Load balancer metrics. + * @throws {GraphQLError} When GraphQL query fails. + */ + private async getLoadBalancerMetrics( + zoneIds: string[], + zones: Zone[], + timeRange: TimeRange, + ): Promise { + const result = await this.gql.query(LoadBalancerMetricsQuery, { + zoneIDs: zoneIds, + mintime: timeRange.mintime, + maxtime: timeRange.maxtime, + limit: this.config.queryLimit, + }); + + if (result.error) { + throw new GraphQLError( + "Failed to fetch load balancer metrics", + result.error.graphQLErrors ?? [], + { context: { zone_ids: zoneIds } }, + ); + } + + const poolHealth: MetricDefinition = { + name: "cloudflare_zone_pool_health_status", + help: "Pool health (1=healthy, 0=unhealthy)", + type: "gauge", + values: [], + }; + const poolRequests: MetricDefinition = { + name: "cloudflare_zone_pool_requests_total", + help: "Requests per pool", + type: "counter", + values: [], + }; + const poolRtt: MetricDefinition = { + name: "cloudflare_zone_lb_pool_rtt_ms", + help: "Load balancer pool RTT in milliseconds", + type: "gauge", + values: [], + }; + const steeringPolicyInfo: MetricDefinition = { + name: "cloudflare_zone_lb_steering_policy_info", + help: "Load balancer steering policy (info metric)", + type: "gauge", + values: [], + }; + const originsSelectedCount: MetricDefinition = { + name: "cloudflare_zone_lb_origins_selected_count", + help: "Number of origins selected per load balancer request", + type: "gauge", + values: [], + }; + + // Track seen policies to dedupe info metric + const seenPolicies = new Set(); + + for (const zoneData of result.data?.viewer?.zones ?? []) { + const zoneName = findZoneName(zoneData.zoneTag, zones); + + // Pool requests, RTT, steering policy, origins selected from groups + for (const group of zoneData.loadBalancingRequestsAdaptiveGroups ?? []) { + const dim = group.dimensions; + if (group.count != null && group.count > 0) { + poolRequests.values.push({ + labels: { + zone: zoneName, + lb_name: dim?.lbName ?? "", + pool_name: dim?.selectedPoolName ?? "", + origin_name: dim?.selectedOriginName ?? "", + }, + value: group.count, + }); + + // Pool RTT + if ( + dim?.selectedPoolAvgRttMs != null && + dim.selectedPoolAvgRttMs > 0 + ) { + poolRtt.values.push({ + labels: { + zone: zoneName, + lb_name: dim?.lbName ?? "", + pool_name: dim?.selectedPoolName ?? "", + }, + value: dim.selectedPoolAvgRttMs, + }); + } + + // Origins selected count + if (dim?.numberOriginsSelected != null) { + originsSelectedCount.values.push({ + labels: { + zone: zoneName, + lb_name: dim?.lbName ?? "", + pool_name: dim?.selectedPoolName ?? "", + }, + value: dim.numberOriginsSelected, + }); + } + + // Steering policy info (dedupe by zone:lb_name) + const policyKey = `${zoneName}:${dim?.lbName}`; + if (!seenPolicies.has(policyKey) && dim?.steeringPolicy) { + seenPolicies.add(policyKey); + steeringPolicyInfo.values.push({ + labels: { + zone: zoneName, + lb_name: dim?.lbName ?? "", + policy: dim.steeringPolicy, + }, + value: 1, + }); + } + } + } + + // Pool health from adaptive + for (const lb of zoneData.loadBalancingRequestsAdaptive ?? []) { + for (const pool of lb.pools ?? []) { + poolHealth.values.push({ + labels: { + zone: zoneName, + lb_name: lb.lbName ?? "", + pool_name: pool.poolName ?? "", + }, + value: pool.healthy ? 1 : 0, + }); + } + } + } + + return [ + poolHealth, + poolRequests, + poolRtt, + steeringPolicyInfo, + originsSelectedCount, + ].filter((m) => m.values.length > 0); + } + + /** + * Failed jobs per zone. + * + * @param zoneIds Zone IDs to query. + * @param zones Zone metadata for label mapping. + * @param timeRange Time range for the query. + * @returns Logpush zone metrics. + * @throws {Error} When GraphQL query fails. + */ + private async getLogpushZoneMetrics( + zoneIds: string[], + zones: Zone[], + timeRange: TimeRange, + ): Promise { + const result = await this.gql.query(LogpushZoneMetricsQuery, { + zoneIDs: zoneIds, + mintime: timeRange.mintime, + maxtime: timeRange.maxtime, + limit: this.config.queryLimit, + }); + + if (result.error) { + throw new Error(`GraphQL error: ${result.error.message}`); + } + + const failedJobs: MetricDefinition = { + name: "cloudflare_logpush_failed_jobs_zone_count", + help: "Failed logpush jobs per zone", + type: "counter", + values: [], + }; + + for (const zoneData of result.data?.viewer?.zones ?? []) { + const zoneName = findZoneName(zoneData.zoneTag, zones); + + for (const group of zoneData.logpushHealthAdaptiveGroups ?? []) { + const dim = group.dimensions; + if (group.count != null && group.count > 0) { + failedJobs.values.push({ + labels: { + zone: zoneName, + job_id: String(dim?.jobId ?? ""), + destination_type: dim?.destinationType ?? "", + }, + value: group.count, + }); + } + } + } + + return failedJobs.values.length > 0 ? [failedJobs] : []; + } + + /** + * Origin responses by status, country, and host. + * + * @param zoneIds Zone IDs to query. + * @param zones Zone metadata for label mapping. + * @param timeRange Time range for the query. + * @returns Origin status metrics. + * @throws {Error} When GraphQL query fails. + */ + private async getOriginStatusMetrics( + zoneIds: string[], + zones: Zone[], + timeRange: TimeRange, + ): Promise { + const result = await this.gql.query(OriginStatusMetricsQuery, { + zoneIDs: zoneIds, + mintime: timeRange.mintime, + maxtime: timeRange.maxtime, + limit: this.config.queryLimit, + }); + + if (result.error) { + throw new Error(`GraphQL error: ${result.error.message}`); + } + + const originStatusCountryHost: MetricDefinition = { + name: "cloudflare_zone_requests_origin_status_country_host", + help: "Requests by origin status, country, and host", + type: "counter", + values: [], + }; + + for (const zoneData of result.data?.viewer?.zones ?? []) { + const zoneName = findZoneName(zoneData.zoneTag, zones); + + for (const group of zoneData.httpRequestsAdaptiveGroups ?? []) { + const dim = group.dimensions; + const count = group.count ?? 0; + if (count > 0) { + originStatusCountryHost.values.push({ + labels: { + zone: zoneName, + origin_status: String(dim?.originResponseStatus ?? 0), + country: dim?.clientCountryName ?? "", + host: dim?.clientRequestHTTPHost ?? "", + }, + value: count, + }); + } + } + } + + return originStatusCountryHost.values.length > 0 + ? [originStatusCountryHost] + : []; + } + + /** + * Cache miss origin response duration (rt_miss equivalent). + * + * @param zoneIds Zone IDs to query. + * @param zones Zone metadata for label mapping. + * @param timeRange Time range for the query. + * @returns Cache miss metrics. + * @throws {GraphQLError} When GraphQL query fails. + */ + private async getCacheMissMetrics( + zoneIds: string[], + zones: Zone[], + timeRange: TimeRange, + ): Promise { + const result = await this.gql.query(CacheMissMetricsQuery, { + zoneIDs: zoneIds, + mintime: timeRange.mintime, + maxtime: timeRange.maxtime, + limit: this.config.queryLimit, + }); + + if (result.error) { + throw new GraphQLError( + "Failed to fetch cache miss metrics", + result.error.graphQLErrors ?? [], + { context: { zone_ids: zoneIds } }, + ); + } + + const cacheMissDuration: MetricDefinition = { + name: "cloudflare_zone_cache_miss_origin_duration_ms", + help: "Average origin response duration on cache miss in milliseconds", + type: "gauge", + values: [], + }; + + for (const zoneData of result.data?.viewer?.zones ?? []) { + const zoneName = findZoneName(zoneData.zoneTag, zones); + + for (const group of zoneData.httpRequestsAdaptiveGroups ?? []) { + const dim = group.dimensions; + const avgDuration = group.avg?.originResponseDurationMs; + + if (avgDuration != null && group.count != null && group.count > 0) { + cacheMissDuration.values.push({ + labels: { + zone: zoneName, + country: dim?.clientCountryName ?? "", + host: dim?.clientRequestHTTPHost ?? "", + }, + value: avgDuration, + }); + } + } + } + + return cacheMissDuration.values.length > 0 ? [cacheMissDuration] : []; + } + + /** + * Fetches load balancer configs for a zone. + * + * @param zoneId Cloudflare zone ID. + * @param accountId Cloudflare account ID. + * @returns Promise of load balancer configs with pools. + */ + async getLoadBalancerConfigs( + zoneId: string, + accountId: string, + ): Promise { + this.logger.info("Fetching load balancer configs", { zone_id: zoneId }); + const configs: LoadBalancerWithPools[] = []; + + try { + // Get load balancers + for await (const lb of this.api.loadBalancers.list({ zone_id: zoneId })) { + if (!lb.id || !lb.name) continue; + + const poolIds = lb.default_pools ?? []; + + // Fetch all pools in parallel + const poolResults = await Promise.allSettled( + poolIds.map((poolId) => + this.api.loadBalancers.pools.get(poolId, { account_id: accountId }), + ), + ); + + const pools: LoadBalancerPool[] = []; + poolResults.forEach((result, i) => { + const poolId = poolIds[i] ?? "unknown"; + + if (result.status === "rejected") { + const msg = + result.reason instanceof Error + ? result.reason.message + : String(result.reason); + this.logger.warn("Failed to fetch pool", { + pool_id: poolId, + error: msg, + }); + return; + } + + const parsed = LoadBalancerPoolSchema.safeParse(result.value); + if (parsed.success) { + pools.push(parsed.data); + } else { + this.logger.debug("Invalid pool schema", { + pool_id: poolId, + error: parsed.error.message, + }); + } + }); + + configs.push({ + id: lb.id, + name: lb.name, + pools, + }); + } + } catch (err) { + const msg = err instanceof Error ? err.message : String(err); + this.logger.error("Load balancers API unavailable", { + zone_id: zoneId, + error: msg, + }); + // Return empty array on failure - graceful degradation + } + + this.logger.info("Load balancer configs fetched", { + zone_id: zoneId, + count: configs.length, + }); + return configs; + } + + /** + * Load balancer origin weight metric from REST API. + * + * @param zones Zone metadata. + * @returns LB weight metrics. + */ + private async getLbWeightMetrics(zones: Zone[]): Promise { + const originWeight: MetricDefinition = { + name: "cloudflare_zone_lb_origin_weight", + help: "Load balancer origin weight (0-1 normalized)", + type: "gauge", + values: [], + }; + + for (const zone of zones) { + const lbConfigs = await this.getLoadBalancerConfigs( + zone.id, + zone.account.id, + ); + + for (const lb of lbConfigs) { + for (const pool of lb.pools) { + for (const origin of pool.origins) { + if (origin.enabled) { + originWeight.values.push({ + labels: { + zone: zone.name, + lb_name: lb.name, + pool_name: pool.name, + origin_name: origin.name, + }, + value: origin.weight, + }); + } + } + } + } + } + + return originWeight.values.length > 0 ? [originWeight] : []; + } + + /** + * Certificate expiry timestamps (batched). + * + * @param zones Zone metadata. + * @returns SSL certificate metrics. + */ + private async getSSLCertificateMetrics( + zones: Zone[], + ): Promise { + const certStatus: MetricDefinition = { + name: "cloudflare_zone_certificate_validation_status", + help: "Certificate expiry timestamp", + type: "gauge", + values: [], + }; + + // Fetch all certs in parallel via DataLoader batching + const certsResults = await Promise.all( + zones.map((zone) => + this.getSSLCertificates(zone.id) + .then((certs) => ({ zone, certs })) + .catch(() => { + this.logger.warn("Failed to fetch SSL certs", { zone: zone.name }); + return { zone, certs: [] as SSLCertificate[] }; + }), + ), + ); + + for (const { zone, certs } of certsResults) { + for (const cert of certs) { + const expiresOn = cert.expiresOn + ? new Date(cert.expiresOn).getTime() / 1000 + : 0; + certStatus.values.push({ + labels: { + zone: zone.name, + type: cert.type, + issuer: cert.issuer, + status: cert.status, + }, + value: expiresOn, + }); + } + } + + return certStatus.values.length > 0 ? [certStatus] : []; + } + + /** + * Fetches SSL certificate metrics for a single zone. + * Used by zone-scoped MetricExporter DOs. + * + * @param zone Zone metadata. + * @returns Promise of SSL certificate metrics. + */ + async getSSLCertificateMetricsForZone( + zone: Zone, + ): Promise { + this.logger.info("Fetching SSL certificate metrics for zone", { + zone: zone.name, + }); + + const certStatus: MetricDefinition = { + name: "cloudflare_zone_certificate_validation_status", + help: "Certificate expiry timestamp", + type: "gauge", + values: [], + }; + + try { + const certs = await this.getSSLCertificates(zone.id); + for (const cert of certs) { + const expiresOn = cert.expiresOn + ? new Date(cert.expiresOn).getTime() / 1000 + : 0; + certStatus.values.push({ + labels: { + zone: zone.name, + type: cert.type, + issuer: cert.issuer, + status: cert.status, + }, + value: expiresOn, + }); + } + } catch (error) { + const msg = error instanceof Error ? error.message : String(error); + this.logger.warn("Failed to fetch SSL certs for zone", { + zone: zone.name, + error: msg, + }); + } + + return certStatus.values.length > 0 ? [certStatus] : []; + } + + /** + * Fetches LB origin weight metrics for a single zone. + * Used by zone-scoped MetricExporter DOs. + * + * @param zone Zone metadata. + * @returns Promise of LB weight metrics. + */ + async getLbWeightMetricsForZone(zone: Zone): Promise { + this.logger.info("Fetching LB weight metrics for zone", { + zone: zone.name, + }); + + const originWeight: MetricDefinition = { + name: "cloudflare_zone_lb_origin_weight", + help: "Load balancer origin weight (0-1 normalized)", + type: "gauge", + values: [], + }; + + try { + const lbConfigs = await this.getLoadBalancerConfigs( + zone.id, + zone.account.id, + ); + + for (const lb of lbConfigs) { + for (const pool of lb.pools) { + for (const origin of pool.origins) { + if (origin.enabled) { + originWeight.values.push({ + labels: { + zone: zone.name, + lb_name: lb.name, + pool_name: pool.name, + origin_name: origin.name, + }, + value: origin.weight, + }); + } + } + } + } + } catch (error) { + const msg = error instanceof Error ? error.message : String(error); + this.logger.warn("Failed to fetch LB configs for zone", { + zone: zone.name, + error: msg, + }); + } + + return originWeight.values.length > 0 ? [originWeight] : []; + } +} + +// ============================================================================= +// Singleton factory +// ============================================================================= + +let cachedClient: CloudflareMetricsClient | null = null; +let cachedEnvHash: string | null = null; + +type RateLimiter = { + limit: (opts: { key: string }) => Promise<{ success: boolean }>; +}; + +/** + * Generates hash from environment for client caching. + * + * @param env Environment variables. + * @returns Hash string (API token). + */ +function envHash(env: Env): string { + return env.CLOUDFLARE_API_TOKEN; +} + +const MAX_RETRIES = 3; +const BASE_DELAY_MS = 250; + +/** + * Creates rate-limited fetch wrapper with exponential backoff. + * + * @param rateLimiter Rate limiter instance. + * @param logger Logger instance. + * @returns Rate-limited fetch function. + * @throws {Error} When rate limit exceeded after all retries. + */ +function createRateLimitedFetch( + rateLimiter: RateLimiter, + logger: Logger, +): typeof fetch { + return async (input, init) => { + for (let attempt = 0; attempt <= MAX_RETRIES; attempt++) { + const { success } = await rateLimiter.limit({ key: "cf-api" }); + if (success) { + return fetch(input, init); + } + + if (attempt < MAX_RETRIES) { + const delay = BASE_DELAY_MS * 2 ** attempt; // 250, 500, 1000ms + logger.warn("Rate limited, backing off", { delay_ms: delay, attempt }); + await new Promise((r) => setTimeout(r, delay)); + } + } + + logger.error("Rate limit exceeded after retries", { + max_retries: MAX_RETRIES, + }); + throw new Error("Rate limit exceeded after retries"); + }; +} + +/** + * Gets or creates singleton CloudflareMetricsClient with rate limiting and env-based caching. + * + * @param env Environment variables. + * @returns CloudflareMetricsClient singleton instance. + */ +export function getCloudflareMetricsClient(env: Env): CloudflareMetricsClient { + const currentHash = envHash(env); + + if (cachedClient && cachedEnvHash === currentHash) { + return cachedClient; + } + + const loggerConfig = configFromEnv(env); + const logger = createLogger("cf_client_singleton", loggerConfig); + + logger.info("Creating CloudflareMetricsClient singleton", { + rate_limit: "40/10s", + log_level: loggerConfig.level, + log_format: loggerConfig.format, + }); + + const rateLimitedFetch = createRateLimitedFetch( + env.CF_API_RATE_LIMITER, + logger, + ); + + cachedClient = new CloudflareMetricsClient({ + apiToken: env.CLOUDFLARE_API_TOKEN, + scrapeDelaySeconds: env.SCRAPE_DELAY_SECONDS, + timeWindowSeconds: env.TIME_WINDOW_SECONDS, + queryLimit: env.QUERY_LIMIT, + loggerConfig, + fetch: rateLimitedFetch, + }); + + cachedEnvHash = currentHash; + return cachedClient; +} diff --git a/src/cloudflare/gql/client.ts b/src/cloudflare/gql/client.ts new file mode 100644 index 0000000..5e58a70 --- /dev/null +++ b/src/cloudflare/gql/client.ts @@ -0,0 +1,21 @@ +import { initGraphQLTada } from "gql.tada"; +import type { introspection } from "./graphql-env"; + +export const graphql = initGraphQLTada<{ + introspection: introspection; + scalars: { + Date: string; + DateTime: string; + Time: string; + bytes: string; + float32: number; + float64: number; + string: string; + uint8: number; + uint16: number; + uint32: number; + uint64: number; + }; +}>(); + +export type { FragmentOf, ResultOf, VariablesOf } from "gql.tada"; diff --git a/src/cloudflare/gql/graphql-env.d.ts b/src/cloudflare/gql/graphql-env.d.ts new file mode 100644 index 0000000..1437165 --- /dev/null +++ b/src/cloudflare/gql/graphql-env.d.ts @@ -0,0 +1,1460 @@ +/* eslint-disable */ +/* prettier-ignore */ + +export type introspection_types = { + 'AccountAccessLoginRequestsAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountAccessLoginRequestsAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountAccessLoginRequestsAdaptiveGroupsAvg'; ofType: null; } }; 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountAccessLoginRequestsAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountAccessLoginRequestsAdaptiveGroupsDimensions'; ofType: null; } }; }; }; + 'AccountAccessLoginRequestsAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'AccountAccessLoginRequestsAdaptiveGroupsAvg'; fields: { 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountAccessLoginRequestsAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountAccessLoginRequestsAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountAccessLoginRequestsAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountAccessLoginRequestsAdaptiveGroupsDimensions'; fields: { 'appId': { name: 'appId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'approvingPolicyId': { name: 'approvingPolicyId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'cfRayId': { name: 'cfRayId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'country': { name: 'country'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'deviceId': { name: 'deviceId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'hasExistingJWT': { name: 'hasExistingJWT'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'hasGatewayEnabled': { name: 'hasGatewayEnabled'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'hasWarpEnabled': { name: 'hasWarpEnabled'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'identityProvider': { name: 'identityProvider'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipAddress': { name: 'ipAddress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'isSuccessfulLogin': { name: 'isSuccessfulLogin'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'mtlsCertSerialId': { name: 'mtlsCertSerialId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'mtlsCommonName': { name: 'mtlsCommonName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'mtlsStatus': { name: 'mtlsStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'serviceTokenId': { name: 'serviceTokenId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'serviceTokenVersion': { name: 'serviceTokenVersion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'userUuid': { name: 'userUuid'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountAccessLoginRequestsAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountAccessLoginRequestsAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountAccessLoginRequestsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountAccessLoginRequestsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'appId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'appId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'appId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'appId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'appId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'appId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'appId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'appId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'appId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'appId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'approvingPolicyId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'approvingPolicyId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'approvingPolicyId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'approvingPolicyId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'approvingPolicyId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'approvingPolicyId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'approvingPolicyId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'approvingPolicyId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'approvingPolicyId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'approvingPolicyId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cfRayId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cfRayId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cfRayId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cfRayId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'cfRayId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cfRayId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cfRayId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cfRayId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cfRayId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'cfRayId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'country'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'country_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'country_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'country_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'country_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'country_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'country_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'country_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'country_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'country_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'hasExistingJWT'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'hasExistingJWT_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'hasExistingJWT_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'hasExistingJWT_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'hasExistingJWT_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'hasExistingJWT_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'hasExistingJWT_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'hasExistingJWT_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'hasGatewayEnabled'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'hasGatewayEnabled_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'hasGatewayEnabled_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'hasGatewayEnabled_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'hasGatewayEnabled_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'hasGatewayEnabled_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'hasGatewayEnabled_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'hasGatewayEnabled_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'hasWarpEnabled'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'hasWarpEnabled_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'hasWarpEnabled_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'hasWarpEnabled_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'hasWarpEnabled_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'hasWarpEnabled_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'hasWarpEnabled_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'hasWarpEnabled_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'identityProvider'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'identityProvider_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'identityProvider_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'identityProvider_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'identityProvider_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'identityProvider_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'identityProvider_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'identityProvider_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'identityProvider_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'identityProvider_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipAddress'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipAddress_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipAddress_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipAddress_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipAddress_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipAddress_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipAddress_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipAddress_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipAddress_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipAddress_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'isSuccessfulLogin'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isSuccessfulLogin_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isSuccessfulLogin_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isSuccessfulLogin_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'isSuccessfulLogin_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isSuccessfulLogin_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isSuccessfulLogin_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isSuccessfulLogin_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'mtlsCertSerialId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mtlsCertSerialId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mtlsCertSerialId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mtlsCertSerialId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'mtlsCertSerialId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mtlsCertSerialId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mtlsCertSerialId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mtlsCertSerialId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mtlsCertSerialId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'mtlsCertSerialId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mtlsCommonName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mtlsCommonName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mtlsCommonName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mtlsCommonName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'mtlsCommonName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mtlsCommonName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mtlsCommonName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mtlsCommonName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mtlsCommonName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'mtlsCommonName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mtlsStatus'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mtlsStatus_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mtlsStatus_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mtlsStatus_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'mtlsStatus_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mtlsStatus_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mtlsStatus_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mtlsStatus_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mtlsStatus_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'mtlsStatus_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'serviceTokenId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'serviceTokenId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'serviceTokenId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'serviceTokenId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'serviceTokenId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'serviceTokenId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'serviceTokenId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'serviceTokenId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'serviceTokenId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'serviceTokenId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'serviceTokenVersion'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'serviceTokenVersion_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'serviceTokenVersion_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'serviceTokenVersion_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'serviceTokenVersion_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'serviceTokenVersion_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'serviceTokenVersion_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'serviceTokenVersion_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'userUuid'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userUuid_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userUuid_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userUuid_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userUuid_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userUuid_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userUuid_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userUuid_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userUuid_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userUuid_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountAccessLoginRequestsAdaptiveGroupsOrderBy': { name: 'AccountAccessLoginRequestsAdaptiveGroupsOrderBy'; enumValues: 'appId_ASC' | 'appId_DESC' | 'approvingPolicyId_ASC' | 'approvingPolicyId_DESC' | 'avg_sampleInterval_ASC' | 'avg_sampleInterval_DESC' | 'cfRayId_ASC' | 'cfRayId_DESC' | 'count_ASC' | 'count_DESC' | 'country_ASC' | 'country_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'deviceId_ASC' | 'deviceId_DESC' | 'hasExistingJWT_ASC' | 'hasExistingJWT_DESC' | 'hasGatewayEnabled_ASC' | 'hasGatewayEnabled_DESC' | 'hasWarpEnabled_ASC' | 'hasWarpEnabled_DESC' | 'identityProvider_ASC' | 'identityProvider_DESC' | 'ipAddress_ASC' | 'ipAddress_DESC' | 'isSuccessfulLogin_ASC' | 'isSuccessfulLogin_DESC' | 'mtlsCertSerialId_ASC' | 'mtlsCertSerialId_DESC' | 'mtlsCommonName_ASC' | 'mtlsCommonName_DESC' | 'mtlsStatus_ASC' | 'mtlsStatus_DESC' | 'serviceTokenId_ASC' | 'serviceTokenId_DESC' | 'serviceTokenVersion_ASC' | 'serviceTokenVersion_DESC' | 'userUuid_ASC' | 'userUuid_DESC'; }; + 'AccountAdvancedDnsProtectionNetworkAnalyticsAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountAdvancedDnsProtectionNetworkAnalyticsAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountAdvancedDnsProtectionNetworkAnalyticsAdaptiveGroupsAvg'; ofType: null; } }; 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountAdvancedDnsProtectionNetworkAnalyticsAdaptiveGroupsConfidence'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountAdvancedDnsProtectionNetworkAnalyticsAdaptiveGroupsDimensions'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountAdvancedDnsProtectionNetworkAnalyticsAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'AccountAdvancedDnsProtectionNetworkAnalyticsAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'AccountAdvancedDnsProtectionNetworkAnalyticsAdaptiveGroupsAvg'; fields: { 'bitRate': { name: 'bitRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'bitRateDay': { name: 'bitRateDay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'bitRateFifteenMinutes': { name: 'bitRateFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'bitRateFiveMinutes': { name: 'bitRateFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'bitRateHour': { name: 'bitRateHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'bitRateMinute': { name: 'bitRateMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'bitRateTenSeconds': { name: 'bitRateTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRate': { name: 'packetRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRateDay': { name: 'packetRateDay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRateFifteenMinutes': { name: 'packetRateFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRateFiveMinutes': { name: 'packetRateFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRateHour': { name: 'packetRateHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRateMinute': { name: 'packetRateMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRateTenSeconds': { name: 'packetRateTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountAdvancedDnsProtectionNetworkAnalyticsAdaptiveGroupsAvgConfidence': { kind: 'OBJECT'; name: 'AccountAdvancedDnsProtectionNetworkAnalyticsAdaptiveGroupsAvgConfidence'; fields: { 'bitRate': { name: 'bitRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateDay': { name: 'bitRateDay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateFifteenMinutes': { name: 'bitRateFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateFiveMinutes': { name: 'bitRateFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateHour': { name: 'bitRateHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateMinute': { name: 'bitRateMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateTenSeconds': { name: 'bitRateTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRate': { name: 'packetRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateDay': { name: 'packetRateDay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateFifteenMinutes': { name: 'packetRateFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateFiveMinutes': { name: 'packetRateFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateHour': { name: 'packetRateHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateMinute': { name: 'packetRateMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateTenSeconds': { name: 'packetRateTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountAdvancedDnsProtectionNetworkAnalyticsAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountAdvancedDnsProtectionNetworkAnalyticsAdaptiveGroupsConfidence'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountAdvancedDnsProtectionNetworkAnalyticsAdaptiveGroupsAvgConfidence'; ofType: null; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountAdvancedDnsProtectionNetworkAnalyticsAdaptiveGroupsSumConfidence'; ofType: null; } }; }; }; + 'AccountAdvancedDnsProtectionNetworkAnalyticsAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountAdvancedDnsProtectionNetworkAnalyticsAdaptiveGroupsDimensions'; fields: { 'applicationTag': { name: 'applicationTag'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'coloCity': { name: 'coloCity'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'coloCode': { name: 'coloCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'coloCountry': { name: 'coloCountry'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'coloGeohash': { name: 'coloGeohash'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'coloName': { name: 'coloName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeTenSeconds': { name: 'datetimeTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'destinationAsn': { name: 'destinationAsn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'destinationAsnName': { name: 'destinationAsnName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'destinationCountry': { name: 'destinationCountry'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'destinationGeohash': { name: 'destinationGeohash'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'destinationPort': { name: 'destinationPort'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'direction': { name: 'direction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'dnsQueryName': { name: 'dnsQueryName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'dnsQueryType': { name: 'dnsQueryType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ethertype': { name: 'ethertype'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'greChecksum': { name: 'greChecksum'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'greEthertype': { name: 'greEthertype'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'greHeaderLength': { name: 'greHeaderLength'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'greKey': { name: 'greKey'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'greSequenceNumber': { name: 'greSequenceNumber'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'greVersion': { name: 'greVersion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'icmpChecksum': { name: 'icmpChecksum'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'icmpCode': { name: 'icmpCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'icmpType': { name: 'icmpType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipDestinationAddress': { name: 'ipDestinationAddress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipDestinationSubnet': { name: 'ipDestinationSubnet'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipFragmentOffset': { name: 'ipFragmentOffset'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'ipHeaderLength': { name: 'ipHeaderLength'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'ipMoreFragments': { name: 'ipMoreFragments'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipProtocol': { name: 'ipProtocol'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipProtocolName': { name: 'ipProtocolName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipSourceAddress': { name: 'ipSourceAddress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipSourceSubnet': { name: 'ipSourceSubnet'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipTotalLength': { name: 'ipTotalLength'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'ipTotalLengthBuckets': { name: 'ipTotalLengthBuckets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'ipTtl': { name: 'ipTtl'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipTtlBuckets': { name: 'ipTtlBuckets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipv4Checksum': { name: 'ipv4Checksum'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'ipv4DontFragment': { name: 'ipv4DontFragment'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipv4Dscp': { name: 'ipv4Dscp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipv4Ecn': { name: 'ipv4Ecn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipv4Identification': { name: 'ipv4Identification'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'ipv4Options': { name: 'ipv4Options'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipv6Dscp': { name: 'ipv6Dscp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipv6Ecn': { name: 'ipv6Ecn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipv6ExtensionHeaders': { name: 'ipv6ExtensionHeaders'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipv6FlowLabel': { name: 'ipv6FlowLabel'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'ipv6Identification': { name: 'ipv6Identification'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'leaseTag': { name: 'leaseTag'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'mitigationReason': { name: 'mitigationReason'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'mitigationScope': { name: 'mitigationScope'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'outcome': { name: 'outcome'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'prefixTag': { name: 'prefixTag'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'sourceAsn': { name: 'sourceAsn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'sourceAsnName': { name: 'sourceAsnName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sourceCountry': { name: 'sourceCountry'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sourceGeohash': { name: 'sourceGeohash'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sourcePort': { name: 'sourcePort'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'tcpAcknowledgementNumber': { name: 'tcpAcknowledgementNumber'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'tcpChecksum': { name: 'tcpChecksum'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'tcpDataOffset': { name: 'tcpDataOffset'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'tcpFlags': { name: 'tcpFlags'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'tcpFlagsString': { name: 'tcpFlagsString'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'tcpMss': { name: 'tcpMss'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'tcpOptions': { name: 'tcpOptions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'tcpSackBlocks': { name: 'tcpSackBlocks'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'tcpSackPermitted': { name: 'tcpSackPermitted'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'tcpSequenceNumber': { name: 'tcpSequenceNumber'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'tcpTimestampEcr': { name: 'tcpTimestampEcr'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'tcpTimestampValue': { name: 'tcpTimestampValue'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'tcpUrgentPointer': { name: 'tcpUrgentPointer'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'tcpWindowScale': { name: 'tcpWindowScale'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'tcpWindowSize': { name: 'tcpWindowSize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'udpChecksum': { name: 'udpChecksum'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'udpPayloadLength': { name: 'udpPayloadLength'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'verdict': { name: 'verdict'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountAdvancedDnsProtectionNetworkAnalyticsAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountAdvancedDnsProtectionNetworkAnalyticsAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountAdvancedDnsProtectionNetworkAnalyticsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountAdvancedDnsProtectionNetworkAnalyticsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'applicationTag'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationTag_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationTag_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationTag_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'applicationTag_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationTag_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationTag_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationTag_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationTag_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'applicationTag_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCity_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCity_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCode_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCode_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCountry_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCountry_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloGeohash_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloGeohash_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeTenSeconds'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeTenSeconds_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationAsn'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationAsnName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationAsnName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsn_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'destinationAsn_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'destinationAsn_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationAsn_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'destinationAsn_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'destinationAsn_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'destinationAsn_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationCountry'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationCountry_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationCountry_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationGeohash_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationGeohash_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationPort'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationPort_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'direction'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'direction_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'direction_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dnsQueryName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dnsQueryName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dnsQueryName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dnsQueryName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'dnsQueryName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dnsQueryName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dnsQueryName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dnsQueryName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dnsQueryName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'dnsQueryName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dnsQueryType'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dnsQueryType_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dnsQueryType_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dnsQueryType_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'dnsQueryType_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dnsQueryType_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dnsQueryType_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dnsQueryType_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dnsQueryType_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'dnsQueryType_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ethertype'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ethertype_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ethertype_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ethertype_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ethertype_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ethertype_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ethertype_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ethertype_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'greChecksum'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greChecksum_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greChecksum_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greChecksum_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'greChecksum_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greChecksum_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greChecksum_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greChecksum_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'greEthertype'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greEthertype_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greEthertype_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greEthertype_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'greEthertype_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greEthertype_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greEthertype_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greEthertype_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'greHeaderLength'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greHeaderLength_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greHeaderLength_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greHeaderLength_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'greHeaderLength_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greHeaderLength_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greHeaderLength_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greHeaderLength_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'greKey'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greKey_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greKey_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greKey_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'greKey_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greKey_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greKey_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greKey_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'greSequenceNumber'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greSequenceNumber_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greSequenceNumber_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greSequenceNumber_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'greSequenceNumber_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greSequenceNumber_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greSequenceNumber_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greSequenceNumber_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'greVersion'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'greVersion_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'greVersion_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'greVersion_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'greVersion_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'greVersion_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'greVersion_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'greVersion_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'icmpChecksum'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'icmpChecksum_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'icmpChecksum_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'icmpChecksum_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'icmpChecksum_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'icmpChecksum_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'icmpChecksum_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'icmpChecksum_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'icmpCode'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpCode_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpCode_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpCode_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'icmpCode_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpCode_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpCode_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpCode_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'icmpType'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpType_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpType_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpType_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'icmpType_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpType_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpType_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpType_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipDestinationAddress_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipDestinationAddress_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipDestinationSubnet_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipDestinationSubnet_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipFragmentOffset'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipFragmentOffset_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipFragmentOffset_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipFragmentOffset_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipFragmentOffset_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipFragmentOffset_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipFragmentOffset_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipFragmentOffset_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipHeaderLength'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipHeaderLength_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipHeaderLength_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipHeaderLength_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipHeaderLength_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipHeaderLength_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipHeaderLength_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipHeaderLength_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipMoreFragments'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipMoreFragments_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipMoreFragments_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipMoreFragments_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipMoreFragments_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipMoreFragments_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipMoreFragments_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipMoreFragments_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipProtocolName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipProtocolName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipSourceAddress_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipSourceAddress_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipSourceSubnet_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipSourceSubnet_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLength'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLengthBuckets'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLengthBuckets_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLengthBuckets_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLengthBuckets_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipTotalLengthBuckets_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLengthBuckets_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLengthBuckets_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLengthBuckets_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipTotalLength_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLength_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLength_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipTotalLength_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLength_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLength_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLength_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipTtl'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipTtl_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtl_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtl_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipTtl_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtl_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtl_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtl_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv4Checksum'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Checksum_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Checksum_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Checksum_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv4Checksum_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Checksum_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Checksum_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Checksum_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv4DontFragment'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4DontFragment_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4DontFragment_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4DontFragment_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv4DontFragment_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4DontFragment_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4DontFragment_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4DontFragment_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv4Identification'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Identification_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Identification_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Identification_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv4Identification_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Identification_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Identification_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Identification_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv4Options'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4Options_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4Options_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4Options_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv4Options_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4Options_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4Options_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4Options_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4Options_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv4Options_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6FlowLabel'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6FlowLabel_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6FlowLabel_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6FlowLabel_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv6FlowLabel_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6FlowLabel_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6FlowLabel_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6FlowLabel_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv6Identification'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6Identification_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6Identification_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6Identification_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv6Identification_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6Identification_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6Identification_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6Identification_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'leaseTag'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leaseTag_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leaseTag_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leaseTag_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'leaseTag_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leaseTag_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leaseTag_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leaseTag_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leaseTag_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'leaseTag_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationReason'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationReason_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationReason_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationReason_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'mitigationReason_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationReason_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationReason_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationReason_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationReason_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'mitigationReason_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationScope'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationScope_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationScope_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationScope_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'mitigationScope_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationScope_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationScope_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationScope_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationScope_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'mitigationScope_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'outcome_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'outcome_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'prefixTag_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'prefixTag_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sampleInterval_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceAsn'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceAsnName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceAsnName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsn_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sourceAsn_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sourceAsn_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceAsn_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sourceAsn_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sourceAsn_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sourceAsn_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceCountry'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceCountry_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceCountry_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceGeohash_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceGeohash_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourcePort'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourcePort_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpChecksum'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpChecksum_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpChecksum_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpChecksum_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpChecksum_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpChecksum_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpChecksum_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpChecksum_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpDataOffset'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpDataOffset_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpDataOffset_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpDataOffset_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpDataOffset_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpDataOffset_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpDataOffset_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpDataOffset_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpFlags'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpFlagsString_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpFlagsString_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'tcpMss'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpMss_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpMss_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpMss_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpMss_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpMss_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpMss_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpMss_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpOptions'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpOptions_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpOptions_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpOptions_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpOptions_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpOptions_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpOptions_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpOptions_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpOptions_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpOptions_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpSackBlocks_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpSackBlocks_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'tcpSequenceNumber'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpSequenceNumber_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpSequenceNumber_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpSequenceNumber_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpSequenceNumber_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpSequenceNumber_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpSequenceNumber_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpSequenceNumber_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpTimestampEcr'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampEcr_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampEcr_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampEcr_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpTimestampEcr_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampEcr_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampEcr_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampEcr_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpTimestampValue'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampValue_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampValue_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampValue_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpTimestampValue_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampValue_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampValue_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampValue_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpUrgentPointer'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpUrgentPointer_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpUrgentPointer_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpUrgentPointer_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpUrgentPointer_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpUrgentPointer_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpUrgentPointer_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpUrgentPointer_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpWindowScale'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowScale_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowScale_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowScale_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpWindowScale_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowScale_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowScale_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowScale_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpWindowSize'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowSize_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowSize_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowSize_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpWindowSize_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowSize_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowSize_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowSize_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'udpChecksum'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpChecksum_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpChecksum_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpChecksum_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'udpChecksum_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpChecksum_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpChecksum_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpChecksum_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'udpPayloadLength'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpPayloadLength_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpPayloadLength_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpPayloadLength_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'udpPayloadLength_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpPayloadLength_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpPayloadLength_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpPayloadLength_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'verdict'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verdict_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verdict_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verdict_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'verdict_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verdict_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verdict_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verdict_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verdict_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'verdict_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountAdvancedDnsProtectionNetworkAnalyticsAdaptiveGroupsOrderBy': { name: 'AccountAdvancedDnsProtectionNetworkAnalyticsAdaptiveGroupsOrderBy'; enumValues: 'applicationTag_ASC' | 'applicationTag_DESC' | 'avg_bitRateDay_ASC' | 'avg_bitRateDay_DESC' | 'avg_bitRateFifteenMinutes_ASC' | 'avg_bitRateFifteenMinutes_DESC' | 'avg_bitRateFiveMinutes_ASC' | 'avg_bitRateFiveMinutes_DESC' | 'avg_bitRateHour_ASC' | 'avg_bitRateHour_DESC' | 'avg_bitRateMinute_ASC' | 'avg_bitRateMinute_DESC' | 'avg_bitRateTenSeconds_ASC' | 'avg_bitRateTenSeconds_DESC' | 'avg_bitRate_ASC' | 'avg_bitRate_DESC' | 'avg_packetRateDay_ASC' | 'avg_packetRateDay_DESC' | 'avg_packetRateFifteenMinutes_ASC' | 'avg_packetRateFifteenMinutes_DESC' | 'avg_packetRateFiveMinutes_ASC' | 'avg_packetRateFiveMinutes_DESC' | 'avg_packetRateHour_ASC' | 'avg_packetRateHour_DESC' | 'avg_packetRateMinute_ASC' | 'avg_packetRateMinute_DESC' | 'avg_packetRateTenSeconds_ASC' | 'avg_packetRateTenSeconds_DESC' | 'avg_packetRate_ASC' | 'avg_packetRate_DESC' | 'coloCity_ASC' | 'coloCity_DESC' | 'coloCode_ASC' | 'coloCode_DESC' | 'coloCountry_ASC' | 'coloCountry_DESC' | 'coloGeohash_ASC' | 'coloGeohash_DESC' | 'coloName_ASC' | 'coloName_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetimeTenSeconds_ASC' | 'datetimeTenSeconds_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'destinationAsnName_ASC' | 'destinationAsnName_DESC' | 'destinationAsn_ASC' | 'destinationAsn_DESC' | 'destinationCountry_ASC' | 'destinationCountry_DESC' | 'destinationGeohash_ASC' | 'destinationGeohash_DESC' | 'destinationPort_ASC' | 'destinationPort_DESC' | 'direction_ASC' | 'direction_DESC' | 'dnsQueryName_ASC' | 'dnsQueryName_DESC' | 'dnsQueryType_ASC' | 'dnsQueryType_DESC' | 'ethertype_ASC' | 'ethertype_DESC' | 'greChecksum_ASC' | 'greChecksum_DESC' | 'greEthertype_ASC' | 'greEthertype_DESC' | 'greHeaderLength_ASC' | 'greHeaderLength_DESC' | 'greKey_ASC' | 'greKey_DESC' | 'greSequenceNumber_ASC' | 'greSequenceNumber_DESC' | 'greVersion_ASC' | 'greVersion_DESC' | 'icmpChecksum_ASC' | 'icmpChecksum_DESC' | 'icmpCode_ASC' | 'icmpCode_DESC' | 'icmpType_ASC' | 'icmpType_DESC' | 'ipDestinationAddress_ASC' | 'ipDestinationAddress_DESC' | 'ipDestinationSubnet_ASC' | 'ipDestinationSubnet_DESC' | 'ipFragmentOffset_ASC' | 'ipFragmentOffset_DESC' | 'ipHeaderLength_ASC' | 'ipHeaderLength_DESC' | 'ipMoreFragments_ASC' | 'ipMoreFragments_DESC' | 'ipProtocolName_ASC' | 'ipProtocolName_DESC' | 'ipProtocol_ASC' | 'ipProtocol_DESC' | 'ipSourceAddress_ASC' | 'ipSourceAddress_DESC' | 'ipSourceSubnet_ASC' | 'ipSourceSubnet_DESC' | 'ipTotalLengthBuckets_ASC' | 'ipTotalLengthBuckets_DESC' | 'ipTotalLength_ASC' | 'ipTotalLength_DESC' | 'ipTtlBuckets_ASC' | 'ipTtlBuckets_DESC' | 'ipTtl_ASC' | 'ipTtl_DESC' | 'ipv4Checksum_ASC' | 'ipv4Checksum_DESC' | 'ipv4DontFragment_ASC' | 'ipv4DontFragment_DESC' | 'ipv4Dscp_ASC' | 'ipv4Dscp_DESC' | 'ipv4Ecn_ASC' | 'ipv4Ecn_DESC' | 'ipv4Identification_ASC' | 'ipv4Identification_DESC' | 'ipv4Options_ASC' | 'ipv4Options_DESC' | 'ipv6Dscp_ASC' | 'ipv6Dscp_DESC' | 'ipv6Ecn_ASC' | 'ipv6Ecn_DESC' | 'ipv6ExtensionHeaders_ASC' | 'ipv6ExtensionHeaders_DESC' | 'ipv6FlowLabel_ASC' | 'ipv6FlowLabel_DESC' | 'ipv6Identification_ASC' | 'ipv6Identification_DESC' | 'leaseTag_ASC' | 'leaseTag_DESC' | 'mitigationReason_ASC' | 'mitigationReason_DESC' | 'mitigationScope_ASC' | 'mitigationScope_DESC' | 'outcome_ASC' | 'outcome_DESC' | 'prefixTag_ASC' | 'prefixTag_DESC' | 'sampleInterval_ASC' | 'sampleInterval_DESC' | 'sourceAsnName_ASC' | 'sourceAsnName_DESC' | 'sourceAsn_ASC' | 'sourceAsn_DESC' | 'sourceCountry_ASC' | 'sourceCountry_DESC' | 'sourceGeohash_ASC' | 'sourceGeohash_DESC' | 'sourcePort_ASC' | 'sourcePort_DESC' | 'sum_bits_ASC' | 'sum_bits_DESC' | 'sum_packets_ASC' | 'sum_packets_DESC' | 'system_ASC' | 'system_DESC' | 'tcpAcknowledgementNumber_ASC' | 'tcpAcknowledgementNumber_DESC' | 'tcpChecksum_ASC' | 'tcpChecksum_DESC' | 'tcpDataOffset_ASC' | 'tcpDataOffset_DESC' | 'tcpFlagsString_ASC' | 'tcpFlagsString_DESC' | 'tcpFlags_ASC' | 'tcpFlags_DESC' | 'tcpMss_ASC' | 'tcpMss_DESC' | 'tcpOptions_ASC' | 'tcpOptions_DESC' | 'tcpSackBlocks_ASC' | 'tcpSackBlocks_DESC' | 'tcpSackPermitted_ASC' | 'tcpSackPermitted_DESC' | 'tcpSequenceNumber_ASC' | 'tcpSequenceNumber_DESC' | 'tcpTimestampEcr_ASC' | 'tcpTimestampEcr_DESC' | 'tcpTimestampValue_ASC' | 'tcpTimestampValue_DESC' | 'tcpUrgentPointer_ASC' | 'tcpUrgentPointer_DESC' | 'tcpWindowScale_ASC' | 'tcpWindowScale_DESC' | 'tcpWindowSize_ASC' | 'tcpWindowSize_DESC' | 'udpChecksum_ASC' | 'udpChecksum_DESC' | 'udpPayloadLength_ASC' | 'udpPayloadLength_DESC' | 'verdict_ASC' | 'verdict_DESC'; }; + 'AccountAdvancedDnsProtectionNetworkAnalyticsAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'AccountAdvancedDnsProtectionNetworkAnalyticsAdaptiveGroupsSum'; fields: { 'bits': { name: 'bits'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packets': { name: 'packets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountAdvancedDnsProtectionNetworkAnalyticsAdaptiveGroupsSumConfidence': { kind: 'OBJECT'; name: 'AccountAdvancedDnsProtectionNetworkAnalyticsAdaptiveGroupsSumConfidence'; fields: { 'bits': { name: 'bits'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packets': { name: 'packets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountAdvancedTcpProtectionNetworkAnalyticsAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountAdvancedTcpProtectionNetworkAnalyticsAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountAdvancedTcpProtectionNetworkAnalyticsAdaptiveGroupsAvg'; ofType: null; } }; 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountAdvancedTcpProtectionNetworkAnalyticsAdaptiveGroupsConfidence'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountAdvancedTcpProtectionNetworkAnalyticsAdaptiveGroupsDimensions'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountAdvancedTcpProtectionNetworkAnalyticsAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'AccountAdvancedTcpProtectionNetworkAnalyticsAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'AccountAdvancedTcpProtectionNetworkAnalyticsAdaptiveGroupsAvg'; fields: { 'bitRate': { name: 'bitRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'bitRateDay': { name: 'bitRateDay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'bitRateFifteenMinutes': { name: 'bitRateFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'bitRateFiveMinutes': { name: 'bitRateFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'bitRateHour': { name: 'bitRateHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'bitRateMinute': { name: 'bitRateMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'bitRateTenSeconds': { name: 'bitRateTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRate': { name: 'packetRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRateDay': { name: 'packetRateDay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRateFifteenMinutes': { name: 'packetRateFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRateFiveMinutes': { name: 'packetRateFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRateHour': { name: 'packetRateHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRateMinute': { name: 'packetRateMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRateTenSeconds': { name: 'packetRateTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountAdvancedTcpProtectionNetworkAnalyticsAdaptiveGroupsAvgConfidence': { kind: 'OBJECT'; name: 'AccountAdvancedTcpProtectionNetworkAnalyticsAdaptiveGroupsAvgConfidence'; fields: { 'bitRate': { name: 'bitRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateDay': { name: 'bitRateDay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateFifteenMinutes': { name: 'bitRateFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateFiveMinutes': { name: 'bitRateFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateHour': { name: 'bitRateHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateMinute': { name: 'bitRateMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateTenSeconds': { name: 'bitRateTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRate': { name: 'packetRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateDay': { name: 'packetRateDay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateFifteenMinutes': { name: 'packetRateFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateFiveMinutes': { name: 'packetRateFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateHour': { name: 'packetRateHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateMinute': { name: 'packetRateMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateTenSeconds': { name: 'packetRateTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountAdvancedTcpProtectionNetworkAnalyticsAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountAdvancedTcpProtectionNetworkAnalyticsAdaptiveGroupsConfidence'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountAdvancedTcpProtectionNetworkAnalyticsAdaptiveGroupsAvgConfidence'; ofType: null; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountAdvancedTcpProtectionNetworkAnalyticsAdaptiveGroupsSumConfidence'; ofType: null; } }; }; }; + 'AccountAdvancedTcpProtectionNetworkAnalyticsAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountAdvancedTcpProtectionNetworkAnalyticsAdaptiveGroupsDimensions'; fields: { 'applicationTag': { name: 'applicationTag'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'coloCity': { name: 'coloCity'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'coloCode': { name: 'coloCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'coloCountry': { name: 'coloCountry'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'coloGeohash': { name: 'coloGeohash'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'coloName': { name: 'coloName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeTenSeconds': { name: 'datetimeTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'destinationAsn': { name: 'destinationAsn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'destinationAsnName': { name: 'destinationAsnName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'destinationCountry': { name: 'destinationCountry'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'destinationGeohash': { name: 'destinationGeohash'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'destinationPort': { name: 'destinationPort'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'direction': { name: 'direction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ethertype': { name: 'ethertype'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'greChecksum': { name: 'greChecksum'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'greEthertype': { name: 'greEthertype'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'greHeaderLength': { name: 'greHeaderLength'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'greKey': { name: 'greKey'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'greSequenceNumber': { name: 'greSequenceNumber'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'greVersion': { name: 'greVersion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'icmpChecksum': { name: 'icmpChecksum'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'icmpCode': { name: 'icmpCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'icmpType': { name: 'icmpType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipDestinationAddress': { name: 'ipDestinationAddress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipDestinationSubnet': { name: 'ipDestinationSubnet'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipFragmentOffset': { name: 'ipFragmentOffset'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'ipHeaderLength': { name: 'ipHeaderLength'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'ipMoreFragments': { name: 'ipMoreFragments'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipProtocol': { name: 'ipProtocol'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipProtocolName': { name: 'ipProtocolName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipSourceAddress': { name: 'ipSourceAddress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipSourceSubnet': { name: 'ipSourceSubnet'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipTotalLength': { name: 'ipTotalLength'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'ipTotalLengthBuckets': { name: 'ipTotalLengthBuckets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'ipTtl': { name: 'ipTtl'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipTtlBuckets': { name: 'ipTtlBuckets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipv4Checksum': { name: 'ipv4Checksum'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'ipv4DontFragment': { name: 'ipv4DontFragment'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipv4Dscp': { name: 'ipv4Dscp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipv4Ecn': { name: 'ipv4Ecn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipv4Identification': { name: 'ipv4Identification'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'ipv4Options': { name: 'ipv4Options'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipv6Dscp': { name: 'ipv6Dscp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipv6Ecn': { name: 'ipv6Ecn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipv6ExtensionHeaders': { name: 'ipv6ExtensionHeaders'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipv6FlowLabel': { name: 'ipv6FlowLabel'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'ipv6Identification': { name: 'ipv6Identification'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'leaseTag': { name: 'leaseTag'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'mitigationReason': { name: 'mitigationReason'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'mitigationScope': { name: 'mitigationScope'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'outcome': { name: 'outcome'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'prefixTag': { name: 'prefixTag'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'protocolState': { name: 'protocolState'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'sourceAsn': { name: 'sourceAsn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'sourceAsnName': { name: 'sourceAsnName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sourceCountry': { name: 'sourceCountry'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sourceGeohash': { name: 'sourceGeohash'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sourcePort': { name: 'sourcePort'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'tcpAcknowledgementNumber': { name: 'tcpAcknowledgementNumber'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'tcpChecksum': { name: 'tcpChecksum'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'tcpDataOffset': { name: 'tcpDataOffset'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'tcpFlags': { name: 'tcpFlags'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'tcpFlagsString': { name: 'tcpFlagsString'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'tcpMss': { name: 'tcpMss'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'tcpOptions': { name: 'tcpOptions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'tcpSackBlocks': { name: 'tcpSackBlocks'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'tcpSackPermitted': { name: 'tcpSackPermitted'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'tcpSequenceNumber': { name: 'tcpSequenceNumber'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'tcpTimestampEcr': { name: 'tcpTimestampEcr'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'tcpTimestampValue': { name: 'tcpTimestampValue'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'tcpUrgentPointer': { name: 'tcpUrgentPointer'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'tcpWindowScale': { name: 'tcpWindowScale'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'tcpWindowSize': { name: 'tcpWindowSize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'udpChecksum': { name: 'udpChecksum'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'udpPayloadLength': { name: 'udpPayloadLength'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'verdict': { name: 'verdict'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountAdvancedTcpProtectionNetworkAnalyticsAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountAdvancedTcpProtectionNetworkAnalyticsAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountAdvancedTcpProtectionNetworkAnalyticsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountAdvancedTcpProtectionNetworkAnalyticsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'applicationTag'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationTag_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationTag_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationTag_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'applicationTag_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationTag_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationTag_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationTag_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationTag_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'applicationTag_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCity_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCity_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCode_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCode_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCountry_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCountry_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloGeohash_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloGeohash_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeTenSeconds'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeTenSeconds_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationAsn'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationAsnName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationAsnName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsn_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'destinationAsn_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'destinationAsn_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationAsn_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'destinationAsn_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'destinationAsn_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'destinationAsn_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationCountry'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationCountry_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationCountry_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationGeohash_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationGeohash_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationPort'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationPort_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'direction'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'direction_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'direction_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ethertype'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ethertype_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ethertype_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ethertype_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ethertype_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ethertype_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ethertype_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ethertype_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'greChecksum'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greChecksum_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greChecksum_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greChecksum_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'greChecksum_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greChecksum_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greChecksum_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greChecksum_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'greEthertype'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greEthertype_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greEthertype_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greEthertype_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'greEthertype_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greEthertype_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greEthertype_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greEthertype_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'greHeaderLength'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greHeaderLength_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greHeaderLength_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greHeaderLength_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'greHeaderLength_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greHeaderLength_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greHeaderLength_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greHeaderLength_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'greKey'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greKey_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greKey_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greKey_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'greKey_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greKey_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greKey_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greKey_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'greSequenceNumber'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greSequenceNumber_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greSequenceNumber_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greSequenceNumber_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'greSequenceNumber_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greSequenceNumber_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greSequenceNumber_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greSequenceNumber_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'greVersion'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'greVersion_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'greVersion_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'greVersion_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'greVersion_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'greVersion_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'greVersion_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'greVersion_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'icmpChecksum'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'icmpChecksum_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'icmpChecksum_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'icmpChecksum_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'icmpChecksum_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'icmpChecksum_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'icmpChecksum_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'icmpChecksum_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'icmpCode'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpCode_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpCode_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpCode_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'icmpCode_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpCode_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpCode_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpCode_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'icmpType'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpType_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpType_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpType_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'icmpType_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpType_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpType_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpType_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipDestinationAddress_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipDestinationAddress_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipDestinationSubnet_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipDestinationSubnet_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipFragmentOffset'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipFragmentOffset_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipFragmentOffset_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipFragmentOffset_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipFragmentOffset_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipFragmentOffset_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipFragmentOffset_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipFragmentOffset_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipHeaderLength'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipHeaderLength_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipHeaderLength_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipHeaderLength_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipHeaderLength_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipHeaderLength_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipHeaderLength_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipHeaderLength_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipMoreFragments'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipMoreFragments_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipMoreFragments_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipMoreFragments_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipMoreFragments_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipMoreFragments_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipMoreFragments_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipMoreFragments_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipProtocolName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipProtocolName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipSourceAddress_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipSourceAddress_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipSourceSubnet_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipSourceSubnet_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLength'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLengthBuckets'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLengthBuckets_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLengthBuckets_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLengthBuckets_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipTotalLengthBuckets_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLengthBuckets_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLengthBuckets_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLengthBuckets_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipTotalLength_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLength_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLength_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipTotalLength_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLength_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLength_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLength_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipTtl'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipTtl_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtl_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtl_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipTtl_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtl_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtl_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtl_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv4Checksum'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Checksum_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Checksum_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Checksum_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv4Checksum_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Checksum_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Checksum_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Checksum_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv4DontFragment'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4DontFragment_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4DontFragment_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4DontFragment_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv4DontFragment_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4DontFragment_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4DontFragment_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4DontFragment_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv4Identification'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Identification_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Identification_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Identification_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv4Identification_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Identification_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Identification_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Identification_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv4Options'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4Options_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4Options_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4Options_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv4Options_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4Options_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4Options_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4Options_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4Options_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv4Options_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6FlowLabel'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6FlowLabel_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6FlowLabel_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6FlowLabel_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv6FlowLabel_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6FlowLabel_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6FlowLabel_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6FlowLabel_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv6Identification'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6Identification_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6Identification_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6Identification_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv6Identification_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6Identification_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6Identification_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6Identification_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'leaseTag'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leaseTag_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leaseTag_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leaseTag_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'leaseTag_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leaseTag_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leaseTag_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leaseTag_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leaseTag_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'leaseTag_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationReason'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationReason_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationReason_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationReason_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'mitigationReason_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationReason_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationReason_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationReason_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationReason_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'mitigationReason_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationScope'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationScope_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationScope_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationScope_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'mitigationScope_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationScope_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationScope_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationScope_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationScope_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'mitigationScope_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'outcome_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'outcome_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'prefixTag_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'prefixTag_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocolState'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocolState_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocolState_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocolState_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'protocolState_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocolState_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocolState_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocolState_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocolState_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'protocolState_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sampleInterval_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceAsn'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceAsnName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceAsnName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsn_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sourceAsn_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sourceAsn_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceAsn_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sourceAsn_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sourceAsn_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sourceAsn_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceCountry'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceCountry_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceCountry_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceGeohash_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceGeohash_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourcePort'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourcePort_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpChecksum'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpChecksum_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpChecksum_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpChecksum_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpChecksum_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpChecksum_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpChecksum_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpChecksum_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpDataOffset'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpDataOffset_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpDataOffset_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpDataOffset_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpDataOffset_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpDataOffset_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpDataOffset_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpDataOffset_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpFlags'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpFlagsString_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpFlagsString_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'tcpMss'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpMss_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpMss_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpMss_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpMss_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpMss_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpMss_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpMss_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpOptions'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpOptions_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpOptions_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpOptions_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpOptions_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpOptions_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpOptions_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpOptions_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpOptions_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpOptions_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpSackBlocks_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpSackBlocks_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'tcpSequenceNumber'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpSequenceNumber_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpSequenceNumber_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpSequenceNumber_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpSequenceNumber_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpSequenceNumber_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpSequenceNumber_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpSequenceNumber_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpTimestampEcr'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampEcr_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampEcr_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampEcr_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpTimestampEcr_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampEcr_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampEcr_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampEcr_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpTimestampValue'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampValue_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampValue_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampValue_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpTimestampValue_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampValue_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampValue_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampValue_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpUrgentPointer'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpUrgentPointer_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpUrgentPointer_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpUrgentPointer_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpUrgentPointer_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpUrgentPointer_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpUrgentPointer_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpUrgentPointer_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpWindowScale'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowScale_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowScale_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowScale_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpWindowScale_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowScale_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowScale_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowScale_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpWindowSize'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowSize_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowSize_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowSize_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpWindowSize_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowSize_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowSize_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowSize_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'udpChecksum'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpChecksum_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpChecksum_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpChecksum_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'udpChecksum_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpChecksum_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpChecksum_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpChecksum_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'udpPayloadLength'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpPayloadLength_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpPayloadLength_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpPayloadLength_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'udpPayloadLength_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpPayloadLength_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpPayloadLength_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpPayloadLength_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'verdict'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verdict_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verdict_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verdict_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'verdict_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verdict_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verdict_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verdict_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verdict_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'verdict_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountAdvancedTcpProtectionNetworkAnalyticsAdaptiveGroupsOrderBy': { name: 'AccountAdvancedTcpProtectionNetworkAnalyticsAdaptiveGroupsOrderBy'; enumValues: 'applicationTag_ASC' | 'applicationTag_DESC' | 'avg_bitRateDay_ASC' | 'avg_bitRateDay_DESC' | 'avg_bitRateFifteenMinutes_ASC' | 'avg_bitRateFifteenMinutes_DESC' | 'avg_bitRateFiveMinutes_ASC' | 'avg_bitRateFiveMinutes_DESC' | 'avg_bitRateHour_ASC' | 'avg_bitRateHour_DESC' | 'avg_bitRateMinute_ASC' | 'avg_bitRateMinute_DESC' | 'avg_bitRateTenSeconds_ASC' | 'avg_bitRateTenSeconds_DESC' | 'avg_bitRate_ASC' | 'avg_bitRate_DESC' | 'avg_packetRateDay_ASC' | 'avg_packetRateDay_DESC' | 'avg_packetRateFifteenMinutes_ASC' | 'avg_packetRateFifteenMinutes_DESC' | 'avg_packetRateFiveMinutes_ASC' | 'avg_packetRateFiveMinutes_DESC' | 'avg_packetRateHour_ASC' | 'avg_packetRateHour_DESC' | 'avg_packetRateMinute_ASC' | 'avg_packetRateMinute_DESC' | 'avg_packetRateTenSeconds_ASC' | 'avg_packetRateTenSeconds_DESC' | 'avg_packetRate_ASC' | 'avg_packetRate_DESC' | 'coloCity_ASC' | 'coloCity_DESC' | 'coloCode_ASC' | 'coloCode_DESC' | 'coloCountry_ASC' | 'coloCountry_DESC' | 'coloGeohash_ASC' | 'coloGeohash_DESC' | 'coloName_ASC' | 'coloName_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetimeTenSeconds_ASC' | 'datetimeTenSeconds_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'destinationAsnName_ASC' | 'destinationAsnName_DESC' | 'destinationAsn_ASC' | 'destinationAsn_DESC' | 'destinationCountry_ASC' | 'destinationCountry_DESC' | 'destinationGeohash_ASC' | 'destinationGeohash_DESC' | 'destinationPort_ASC' | 'destinationPort_DESC' | 'direction_ASC' | 'direction_DESC' | 'ethertype_ASC' | 'ethertype_DESC' | 'greChecksum_ASC' | 'greChecksum_DESC' | 'greEthertype_ASC' | 'greEthertype_DESC' | 'greHeaderLength_ASC' | 'greHeaderLength_DESC' | 'greKey_ASC' | 'greKey_DESC' | 'greSequenceNumber_ASC' | 'greSequenceNumber_DESC' | 'greVersion_ASC' | 'greVersion_DESC' | 'icmpChecksum_ASC' | 'icmpChecksum_DESC' | 'icmpCode_ASC' | 'icmpCode_DESC' | 'icmpType_ASC' | 'icmpType_DESC' | 'ipDestinationAddress_ASC' | 'ipDestinationAddress_DESC' | 'ipDestinationSubnet_ASC' | 'ipDestinationSubnet_DESC' | 'ipFragmentOffset_ASC' | 'ipFragmentOffset_DESC' | 'ipHeaderLength_ASC' | 'ipHeaderLength_DESC' | 'ipMoreFragments_ASC' | 'ipMoreFragments_DESC' | 'ipProtocolName_ASC' | 'ipProtocolName_DESC' | 'ipProtocol_ASC' | 'ipProtocol_DESC' | 'ipSourceAddress_ASC' | 'ipSourceAddress_DESC' | 'ipSourceSubnet_ASC' | 'ipSourceSubnet_DESC' | 'ipTotalLengthBuckets_ASC' | 'ipTotalLengthBuckets_DESC' | 'ipTotalLength_ASC' | 'ipTotalLength_DESC' | 'ipTtlBuckets_ASC' | 'ipTtlBuckets_DESC' | 'ipTtl_ASC' | 'ipTtl_DESC' | 'ipv4Checksum_ASC' | 'ipv4Checksum_DESC' | 'ipv4DontFragment_ASC' | 'ipv4DontFragment_DESC' | 'ipv4Dscp_ASC' | 'ipv4Dscp_DESC' | 'ipv4Ecn_ASC' | 'ipv4Ecn_DESC' | 'ipv4Identification_ASC' | 'ipv4Identification_DESC' | 'ipv4Options_ASC' | 'ipv4Options_DESC' | 'ipv6Dscp_ASC' | 'ipv6Dscp_DESC' | 'ipv6Ecn_ASC' | 'ipv6Ecn_DESC' | 'ipv6ExtensionHeaders_ASC' | 'ipv6ExtensionHeaders_DESC' | 'ipv6FlowLabel_ASC' | 'ipv6FlowLabel_DESC' | 'ipv6Identification_ASC' | 'ipv6Identification_DESC' | 'leaseTag_ASC' | 'leaseTag_DESC' | 'mitigationReason_ASC' | 'mitigationReason_DESC' | 'mitigationScope_ASC' | 'mitigationScope_DESC' | 'outcome_ASC' | 'outcome_DESC' | 'prefixTag_ASC' | 'prefixTag_DESC' | 'protocolState_ASC' | 'protocolState_DESC' | 'sampleInterval_ASC' | 'sampleInterval_DESC' | 'sourceAsnName_ASC' | 'sourceAsnName_DESC' | 'sourceAsn_ASC' | 'sourceAsn_DESC' | 'sourceCountry_ASC' | 'sourceCountry_DESC' | 'sourceGeohash_ASC' | 'sourceGeohash_DESC' | 'sourcePort_ASC' | 'sourcePort_DESC' | 'sum_bits_ASC' | 'sum_bits_DESC' | 'sum_packets_ASC' | 'sum_packets_DESC' | 'system_ASC' | 'system_DESC' | 'tcpAcknowledgementNumber_ASC' | 'tcpAcknowledgementNumber_DESC' | 'tcpChecksum_ASC' | 'tcpChecksum_DESC' | 'tcpDataOffset_ASC' | 'tcpDataOffset_DESC' | 'tcpFlagsString_ASC' | 'tcpFlagsString_DESC' | 'tcpFlags_ASC' | 'tcpFlags_DESC' | 'tcpMss_ASC' | 'tcpMss_DESC' | 'tcpOptions_ASC' | 'tcpOptions_DESC' | 'tcpSackBlocks_ASC' | 'tcpSackBlocks_DESC' | 'tcpSackPermitted_ASC' | 'tcpSackPermitted_DESC' | 'tcpSequenceNumber_ASC' | 'tcpSequenceNumber_DESC' | 'tcpTimestampEcr_ASC' | 'tcpTimestampEcr_DESC' | 'tcpTimestampValue_ASC' | 'tcpTimestampValue_DESC' | 'tcpUrgentPointer_ASC' | 'tcpUrgentPointer_DESC' | 'tcpWindowScale_ASC' | 'tcpWindowScale_DESC' | 'tcpWindowSize_ASC' | 'tcpWindowSize_DESC' | 'udpChecksum_ASC' | 'udpChecksum_DESC' | 'udpPayloadLength_ASC' | 'udpPayloadLength_DESC' | 'verdict_ASC' | 'verdict_DESC'; }; + 'AccountAdvancedTcpProtectionNetworkAnalyticsAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'AccountAdvancedTcpProtectionNetworkAnalyticsAdaptiveGroupsSum'; fields: { 'bits': { name: 'bits'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packets': { name: 'packets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountAdvancedTcpProtectionNetworkAnalyticsAdaptiveGroupsSumConfidence': { kind: 'OBJECT'; name: 'AccountAdvancedTcpProtectionNetworkAnalyticsAdaptiveGroupsSumConfidence'; fields: { 'bits': { name: 'bits'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packets': { name: 'packets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountAegisIpUtilizationAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountAegisIpUtilizationAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountAegisIpUtilizationAdaptiveGroupsAvg'; ofType: null; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountAegisIpUtilizationAdaptiveGroupsDimensions'; ofType: null; } }; 'max': { name: 'max'; type: { kind: 'OBJECT'; name: 'AccountAegisIpUtilizationAdaptiveGroupsMax'; ofType: null; } }; }; }; + 'AccountAegisIpUtilizationAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'AccountAegisIpUtilizationAdaptiveGroupsAvg'; fields: { 'utilization': { name: 'utilization'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountAegisIpUtilizationAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountAegisIpUtilizationAdaptiveGroupsDimensions'; fields: { 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'popUtilizationKey': { name: 'popUtilizationKey'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountAegisIpUtilizationAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountAegisIpUtilizationAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountAegisIpUtilizationAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountAegisIpUtilizationAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'egressIp'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'egressIp_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'egressIp_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'egressIp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'egressIp_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'egressIp_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'egressIp_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'egressIp_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'egressIp_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'egressIp_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'origin'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'origin_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'origin_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'origin_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'origin_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'origin_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'origin_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'origin_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'origin_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'origin_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'popName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'popName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'popName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'popName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'popName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'popName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'popName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'popName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'popName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'popName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'popUtilizationKey'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'popUtilizationKey_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'popUtilizationKey_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'popUtilizationKey_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'popUtilizationKey_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'popUtilizationKey_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'popUtilizationKey_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'popUtilizationKey_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'popUtilizationKey_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'popUtilizationKey_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountAegisIpUtilizationAdaptiveGroupsMax': { kind: 'OBJECT'; name: 'AccountAegisIpUtilizationAdaptiveGroupsMax'; fields: { 'utilization': { name: 'utilization'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountAegisIpUtilizationAdaptiveGroupsOrderBy': { name: 'AccountAegisIpUtilizationAdaptiveGroupsOrderBy'; enumValues: 'avg_utilization_ASC' | 'avg_utilization_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'max_utilization_ASC' | 'max_utilization_DESC' | 'popUtilizationKey_ASC' | 'popUtilizationKey_DESC'; }; + 'AccountAiGatewayCacheAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountAiGatewayCacheAdaptiveGroups'; fields: { 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountAiGatewayCacheAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountAiGatewayCacheAdaptiveGroupsDimensions'; ofType: null; } }; }; }; + 'AccountAiGatewayCacheAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountAiGatewayCacheAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountAiGatewayCacheAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountAiGatewayCacheAdaptiveGroupsDimensions'; fields: { 'cacheOp': { name: 'cacheOp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'gateway': { name: 'gateway'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'model': { name: 'model'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'provider': { name: 'provider'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'tokensIn': { name: 'tokensIn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'tokensOut': { name: 'tokensOut'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountAiGatewayCacheAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountAiGatewayCacheAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountAiGatewayCacheAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountAiGatewayCacheAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'cacheOp'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'cacheOp_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'cacheOp_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'cacheOp_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'cacheOp_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'cacheOp_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'cacheOp_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'cacheOp_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'gateway'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'gateway_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'gateway_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'gateway_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'gateway_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'gateway_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'gateway_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'gateway_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'gateway_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'gateway_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'model'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'model_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'model_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'model_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'model_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'model_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'model_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'model_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'model_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'model_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'provider'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'provider_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'provider_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'provider_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'provider_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'provider_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'provider_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'provider_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'provider_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'provider_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tokensIn'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'tokensIn_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'tokensIn_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'tokensIn_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'tokensIn_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'tokensIn_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'tokensIn_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'tokensIn_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'tokensOut'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'tokensOut_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'tokensOut_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'tokensOut_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'tokensOut_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'tokensOut_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'tokensOut_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'tokensOut_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }]; }; + 'AccountAiGatewayCacheAdaptiveGroupsOrderBy': { name: 'AccountAiGatewayCacheAdaptiveGroupsOrderBy'; enumValues: 'cacheOp_ASC' | 'cacheOp_DESC' | 'count_ASC' | 'count_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'gateway_ASC' | 'gateway_DESC' | 'model_ASC' | 'model_DESC' | 'provider_ASC' | 'provider_DESC' | 'tokensIn_ASC' | 'tokensIn_DESC' | 'tokensOut_ASC' | 'tokensOut_DESC'; }; + 'AccountAiGatewayErrorsAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountAiGatewayErrorsAdaptiveGroups'; fields: { 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountAiGatewayErrorsAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountAiGatewayErrorsAdaptiveGroupsDimensions'; ofType: null; } }; }; }; + 'AccountAiGatewayErrorsAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountAiGatewayErrorsAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountAiGatewayErrorsAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountAiGatewayErrorsAdaptiveGroupsDimensions'; fields: { 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'gateway': { name: 'gateway'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'model': { name: 'model'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'provider': { name: 'provider'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountAiGatewayErrorsAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountAiGatewayErrorsAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountAiGatewayErrorsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountAiGatewayErrorsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'gateway'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'gateway_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'gateway_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'gateway_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'gateway_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'gateway_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'gateway_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'gateway_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'gateway_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'gateway_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'model'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'model_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'model_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'model_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'model_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'model_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'model_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'model_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'model_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'model_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'provider'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'provider_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'provider_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'provider_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'provider_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'provider_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'provider_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'provider_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'provider_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'provider_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountAiGatewayErrorsAdaptiveGroupsOrderBy': { name: 'AccountAiGatewayErrorsAdaptiveGroupsOrderBy'; enumValues: 'count_ASC' | 'count_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'gateway_ASC' | 'gateway_DESC' | 'model_ASC' | 'model_DESC' | 'provider_ASC' | 'provider_DESC'; }; + 'AccountAiGatewayRequestsAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountAiGatewayRequestsAdaptiveGroups'; fields: { 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountAiGatewayRequestsAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountAiGatewayRequestsAdaptiveGroupsDimensions'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountAiGatewayRequestsAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'AccountAiGatewayRequestsAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountAiGatewayRequestsAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountAiGatewayRequestsAdaptiveGroupsSumConfidence'; ofType: null; } }; }; }; + 'AccountAiGatewayRequestsAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountAiGatewayRequestsAdaptiveGroupsDimensions'; fields: { 'cached': { name: 'cached'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'cost': { name: 'cost'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'error': { name: 'error'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'gateway': { name: 'gateway'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'metadataKeys': { name: 'metadataKeys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'metadataRaw': { name: 'metadataRaw'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'metadataValues': { name: 'metadataValues'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'model': { name: 'model'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'prompts': { name: 'prompts'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'promptsIds': { name: 'promptsIds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'promptsVersions': { name: 'promptsVersions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'provider': { name: 'provider'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'rateLimited': { name: 'rateLimited'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'statusCode': { name: 'statusCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'tokensIn': { name: 'tokensIn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'tokensOut': { name: 'tokensOut'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'wholesale': { name: 'wholesale'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; }; }; + 'AccountAiGatewayRequestsAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountAiGatewayRequestsAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountAiGatewayRequestsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountAiGatewayRequestsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'cached'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'cached_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'cached_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'cached_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'cached_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'cached_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'cached_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'cached_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'cost'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'cost_geq'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'cost_gt'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'cost_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; }; }; defaultValue: null }, { name: 'cost_leq'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'cost_lt'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'cost_neq'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'cost_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'error'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'error_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'error_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'error_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'error_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'error_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'error_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'error_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'gateway'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'gateway_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'gateway_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'gateway_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'gateway_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'gateway_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'gateway_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'gateway_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'gateway_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'gateway_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'metadataKeys_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'metadataKeys_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'metadataKeys_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'metadataKeys_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'metadataKeys_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'metadataRaw'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'metadataRaw_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'metadataRaw_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'metadataRaw_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'metadataRaw_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'metadataRaw_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'metadataRaw_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'metadataRaw_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'metadataRaw_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'metadataRaw_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'metadataValues_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'metadataValues_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'metadataValues_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'metadataValues_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'metadataValues_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'model'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'model_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'model_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'model_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'model_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'model_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'model_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'model_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'model_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'model_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prompts'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'promptsIds_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'promptsIds_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'promptsIds_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'promptsIds_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'promptsIds_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'promptsVersions_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'promptsVersions_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'promptsVersions_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'promptsVersions_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'promptsVersions_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prompts_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prompts_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prompts_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'prompts_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prompts_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prompts_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prompts_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prompts_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'prompts_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'provider'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'provider_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'provider_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'provider_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'provider_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'provider_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'provider_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'provider_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'provider_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'provider_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rateLimited'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'rateLimited_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'rateLimited_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'rateLimited_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'rateLimited_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'rateLimited_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'rateLimited_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'rateLimited_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'statusCode'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'statusCode_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'statusCode_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'statusCode_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'statusCode_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'statusCode_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'statusCode_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'statusCode_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tokensIn'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'tokensIn_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'tokensIn_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'tokensIn_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'tokensIn_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'tokensIn_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'tokensIn_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'tokensIn_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'tokensOut'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'tokensOut_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'tokensOut_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'tokensOut_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'tokensOut_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'tokensOut_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'tokensOut_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'tokensOut_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'wholesale'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wholesale_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wholesale_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wholesale_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wholesale_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wholesale_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wholesale_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wholesale_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }]; }; + 'AccountAiGatewayRequestsAdaptiveGroupsOrderBy': { name: 'AccountAiGatewayRequestsAdaptiveGroupsOrderBy'; enumValues: 'cached_ASC' | 'cached_DESC' | 'cost_ASC' | 'cost_DESC' | 'count_ASC' | 'count_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'error_ASC' | 'error_DESC' | 'gateway_ASC' | 'gateway_DESC' | 'metadataKeys_ASC' | 'metadataKeys_DESC' | 'metadataRaw_ASC' | 'metadataRaw_DESC' | 'metadataValues_ASC' | 'metadataValues_DESC' | 'model_ASC' | 'model_DESC' | 'promptsIds_ASC' | 'promptsIds_DESC' | 'promptsVersions_ASC' | 'promptsVersions_DESC' | 'prompts_ASC' | 'prompts_DESC' | 'provider_ASC' | 'provider_DESC' | 'rateLimited_ASC' | 'rateLimited_DESC' | 'statusCode_ASC' | 'statusCode_DESC' | 'sum_cachedRequests_ASC' | 'sum_cachedRequests_DESC' | 'sum_cachedTokensIn_ASC' | 'sum_cachedTokensIn_DESC' | 'sum_cachedTokensOut_ASC' | 'sum_cachedTokensOut_DESC' | 'sum_cost_ASC' | 'sum_cost_DESC' | 'sum_erroredRequests_ASC' | 'sum_erroredRequests_DESC' | 'sum_uncachedTokensIn_ASC' | 'sum_uncachedTokensIn_DESC' | 'sum_uncachedTokensOut_ASC' | 'sum_uncachedTokensOut_DESC' | 'tokensIn_ASC' | 'tokensIn_DESC' | 'tokensOut_ASC' | 'tokensOut_DESC' | 'wholesale_ASC' | 'wholesale_DESC'; }; + 'AccountAiGatewayRequestsAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'AccountAiGatewayRequestsAdaptiveGroupsSum'; fields: { 'cachedRequests': { name: 'cachedRequests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'cachedTokensIn': { name: 'cachedTokensIn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'cachedTokensOut': { name: 'cachedTokensOut'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'cost': { name: 'cost'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'erroredRequests': { name: 'erroredRequests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'uncachedTokensIn': { name: 'uncachedTokensIn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'uncachedTokensOut': { name: 'uncachedTokensOut'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountAiGatewayRequestsAdaptiveGroupsSumConfidence': { kind: 'OBJECT'; name: 'AccountAiGatewayRequestsAdaptiveGroupsSumConfidence'; fields: { 'cachedRequests': { name: 'cachedRequests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'cachedTokensIn': { name: 'cachedTokensIn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'cachedTokensOut': { name: 'cachedTokensOut'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'cost': { name: 'cost'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'erroredRequests': { name: 'erroredRequests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'uncachedTokensIn': { name: 'uncachedTokensIn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'uncachedTokensOut': { name: 'uncachedTokensOut'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountAiGatewaySizeAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountAiGatewaySizeAdaptiveGroups'; fields: { 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountAiGatewaySizeAdaptiveGroupsDimensions'; ofType: null; } }; 'max': { name: 'max'; type: { kind: 'OBJECT'; name: 'AccountAiGatewaySizeAdaptiveGroupsMax'; ofType: null; } }; }; }; + 'AccountAiGatewaySizeAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountAiGatewaySizeAdaptiveGroupsDimensions'; fields: { 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'gateway': { name: 'gateway'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'logManagement': { name: 'logManagement'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'rows': { name: 'rows'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountAiGatewaySizeAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountAiGatewaySizeAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountAiGatewaySizeAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountAiGatewaySizeAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'gateway'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'gateway_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'gateway_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'gateway_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'gateway_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'gateway_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'gateway_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'gateway_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'gateway_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'gateway_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'logManagement'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'logManagement_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'logManagement_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'logManagement_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'logManagement_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'logManagement_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'logManagement_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'logManagement_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'rows'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'rows_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'rows_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'rows_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'rows_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'rows_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'rows_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'rows_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }]; }; + 'AccountAiGatewaySizeAdaptiveGroupsMax': { kind: 'OBJECT'; name: 'AccountAiGatewaySizeAdaptiveGroupsMax'; fields: { 'rows': { name: 'rows'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountAiGatewaySizeAdaptiveGroupsOrderBy': { name: 'AccountAiGatewaySizeAdaptiveGroupsOrderBy'; enumValues: 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'gateway_ASC' | 'gateway_DESC' | 'logManagement_ASC' | 'logManagement_DESC' | 'max_rows_ASC' | 'max_rows_DESC' | 'rows_ASC' | 'rows_DESC'; }; + 'AccountAiInferenceAdaptive': { kind: 'OBJECT'; name: 'AccountAiInferenceAdaptive'; fields: { 'audioSeconds': { name: 'audioSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'costMetricName1': { name: 'costMetricName1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'costMetricName2': { name: 'costMetricName2'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'costMetricValue1': { name: 'costMetricValue1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'costMetricValue2': { name: 'costMetricValue2'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'errorCode': { name: 'errorCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'inferenceSteps': { name: 'inferenceSteps'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'inferenceTimeMs': { name: 'inferenceTimeMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'inputLength': { name: 'inputLength'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'inputTokens': { name: 'inputTokens'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'modelId': { name: 'modelId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'modelIsBeta': { name: 'modelIsBeta'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'neurons': { name: 'neurons'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'outputTokens': { name: 'outputTokens'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'processedPixels': { name: 'processedPixels'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'processedTiles': { name: 'processedTiles'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'requestBytesIn': { name: 'requestBytesIn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'requestBytesOut': { name: 'requestBytesOut'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'requestSource': { name: 'requestSource'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'tag': { name: 'tag'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'totalTiles': { name: 'totalTiles'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountAiInferenceAdaptiveFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountAiInferenceAdaptiveFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountAiInferenceAdaptiveFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountAiInferenceAdaptiveFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'audioSeconds'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'audioSeconds_geq'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'audioSeconds_gt'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'audioSeconds_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; }; }; defaultValue: null }, { name: 'audioSeconds_leq'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'audioSeconds_lt'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'audioSeconds_neq'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'audioSeconds_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; }; }; defaultValue: null }, { name: 'costMetricName1'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'costMetricName1_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'costMetricName1_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'costMetricName1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'costMetricName1_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'costMetricName1_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'costMetricName1_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'costMetricName1_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'costMetricName1_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'costMetricName1_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'costMetricName2'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'costMetricName2_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'costMetricName2_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'costMetricName2_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'costMetricName2_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'costMetricName2_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'costMetricName2_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'costMetricName2_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'costMetricName2_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'costMetricName2_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'costMetricValue1'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'costMetricValue1_geq'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'costMetricValue1_gt'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'costMetricValue1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; }; }; defaultValue: null }, { name: 'costMetricValue1_leq'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'costMetricValue1_lt'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'costMetricValue1_neq'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'costMetricValue1_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; }; }; defaultValue: null }, { name: 'costMetricValue2'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'costMetricValue2_geq'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'costMetricValue2_gt'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'costMetricValue2_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; }; }; defaultValue: null }, { name: 'costMetricValue2_leq'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'costMetricValue2_lt'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'costMetricValue2_neq'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'costMetricValue2_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'errorCode'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'errorCode_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'errorCode_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'errorCode_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'errorCode_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'errorCode_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'errorCode_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'errorCode_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'inferenceSteps'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'inferenceSteps_geq'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'inferenceSteps_gt'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'inferenceSteps_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; }; }; defaultValue: null }, { name: 'inferenceSteps_leq'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'inferenceSteps_lt'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'inferenceSteps_neq'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'inferenceSteps_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; }; }; defaultValue: null }, { name: 'inferenceTimeMs'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'inferenceTimeMs_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'inferenceTimeMs_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'inferenceTimeMs_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'inferenceTimeMs_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'inferenceTimeMs_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'inferenceTimeMs_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'inferenceTimeMs_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'inputLength'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'inputLength_geq'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'inputLength_gt'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'inputLength_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; }; }; defaultValue: null }, { name: 'inputLength_leq'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'inputLength_lt'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'inputLength_neq'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'inputLength_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; }; }; defaultValue: null }, { name: 'inputTokens'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'inputTokens_geq'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'inputTokens_gt'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'inputTokens_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; }; }; defaultValue: null }, { name: 'inputTokens_leq'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'inputTokens_lt'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'inputTokens_neq'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'inputTokens_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; }; }; defaultValue: null }, { name: 'modelId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'modelId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'modelId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'modelId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'modelId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'modelId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'modelId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'modelId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'modelId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'modelId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'modelIsBeta'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'modelIsBeta_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'modelIsBeta_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'modelIsBeta_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'modelIsBeta_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'modelIsBeta_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'modelIsBeta_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'modelIsBeta_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'neurons'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'neurons_geq'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'neurons_gt'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'neurons_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; }; }; defaultValue: null }, { name: 'neurons_leq'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'neurons_lt'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'neurons_neq'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'neurons_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; }; }; defaultValue: null }, { name: 'outputTokens'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'outputTokens_geq'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'outputTokens_gt'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'outputTokens_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; }; }; defaultValue: null }, { name: 'outputTokens_leq'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'outputTokens_lt'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'outputTokens_neq'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'outputTokens_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; }; }; defaultValue: null }, { name: 'processedPixels'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'processedPixels_geq'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'processedPixels_gt'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'processedPixels_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; }; }; defaultValue: null }, { name: 'processedPixels_leq'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'processedPixels_lt'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'processedPixels_neq'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'processedPixels_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; }; }; defaultValue: null }, { name: 'processedTiles'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'processedTiles_geq'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'processedTiles_gt'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'processedTiles_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; }; }; defaultValue: null }, { name: 'processedTiles_leq'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'processedTiles_lt'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'processedTiles_neq'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'processedTiles_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; }; }; defaultValue: null }, { name: 'requestBytesIn'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'requestBytesIn_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'requestBytesIn_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'requestBytesIn_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'requestBytesIn_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'requestBytesIn_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'requestBytesIn_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'requestBytesIn_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'requestBytesOut'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'requestBytesOut_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'requestBytesOut_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'requestBytesOut_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'requestBytesOut_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'requestBytesOut_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'requestBytesOut_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'requestBytesOut_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'requestSource'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestSource_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestSource_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestSource_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'requestSource_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestSource_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestSource_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestSource_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestSource_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'requestSource_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sampleInterval_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tag'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tag_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tag_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tag_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tag_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tag_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tag_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tag_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tag_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tag_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'totalTiles'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'totalTiles_geq'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'totalTiles_gt'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'totalTiles_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalTiles_leq'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'totalTiles_lt'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'totalTiles_neq'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'totalTiles_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; }; }; defaultValue: null }]; }; + 'AccountAiInferenceAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountAiInferenceAdaptiveGroups'; fields: { 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountAiInferenceAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountAiInferenceAdaptiveGroupsDimensions'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountAiInferenceAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'AccountAiInferenceAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountAiInferenceAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountAiInferenceAdaptiveGroupsSumConfidence'; ofType: null; } }; }; }; + 'AccountAiInferenceAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountAiInferenceAdaptiveGroupsDimensions'; fields: { 'costMetricName1': { name: 'costMetricName1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'costMetricName2': { name: 'costMetricName2'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'costMetricValue1': { name: 'costMetricValue1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'costMetricValue2': { name: 'costMetricValue2'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeSixHours': { name: 'datetimeSixHours'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'errorCode': { name: 'errorCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'inferenceTimeMs': { name: 'inferenceTimeMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'modelId': { name: 'modelId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'modelIsBeta': { name: 'modelIsBeta'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'neurons': { name: 'neurons'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'requestBytesIn': { name: 'requestBytesIn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'requestBytesOut': { name: 'requestBytesOut'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'requestSource': { name: 'requestSource'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'tag': { name: 'tag'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountAiInferenceAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountAiInferenceAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountAiInferenceAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountAiInferenceAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'costMetricName1'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'costMetricName1_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'costMetricName1_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'costMetricName1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'costMetricName1_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'costMetricName1_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'costMetricName1_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'costMetricName1_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'costMetricName1_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'costMetricName1_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'costMetricName2'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'costMetricName2_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'costMetricName2_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'costMetricName2_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'costMetricName2_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'costMetricName2_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'costMetricName2_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'costMetricName2_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'costMetricName2_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'costMetricName2_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'costMetricValue1'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'costMetricValue1_geq'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'costMetricValue1_gt'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'costMetricValue1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; }; }; defaultValue: null }, { name: 'costMetricValue1_leq'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'costMetricValue1_lt'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'costMetricValue1_neq'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'costMetricValue1_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; }; }; defaultValue: null }, { name: 'costMetricValue2'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'costMetricValue2_geq'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'costMetricValue2_gt'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'costMetricValue2_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; }; }; defaultValue: null }, { name: 'costMetricValue2_leq'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'costMetricValue2_lt'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'costMetricValue2_neq'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'costMetricValue2_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'errorCode'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'errorCode_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'errorCode_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'errorCode_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'errorCode_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'errorCode_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'errorCode_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'errorCode_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'inferenceTimeMs'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'inferenceTimeMs_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'inferenceTimeMs_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'inferenceTimeMs_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'inferenceTimeMs_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'inferenceTimeMs_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'inferenceTimeMs_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'inferenceTimeMs_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'modelId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'modelId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'modelId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'modelId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'modelId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'modelId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'modelId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'modelId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'modelId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'modelId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'modelIsBeta'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'modelIsBeta_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'modelIsBeta_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'modelIsBeta_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'modelIsBeta_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'modelIsBeta_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'modelIsBeta_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'modelIsBeta_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'neurons'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'neurons_geq'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'neurons_gt'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'neurons_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; }; }; defaultValue: null }, { name: 'neurons_leq'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'neurons_lt'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'neurons_neq'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'neurons_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; }; }; defaultValue: null }, { name: 'requestBytesIn'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'requestBytesIn_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'requestBytesIn_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'requestBytesIn_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'requestBytesIn_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'requestBytesIn_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'requestBytesIn_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'requestBytesIn_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'requestBytesOut'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'requestBytesOut_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'requestBytesOut_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'requestBytesOut_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'requestBytesOut_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'requestBytesOut_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'requestBytesOut_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'requestBytesOut_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'requestSource'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestSource_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestSource_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestSource_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'requestSource_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestSource_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestSource_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestSource_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestSource_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'requestSource_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tag'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tag_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tag_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tag_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tag_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tag_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tag_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tag_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tag_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tag_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountAiInferenceAdaptiveGroupsOrderBy': { name: 'AccountAiInferenceAdaptiveGroupsOrderBy'; enumValues: 'costMetricName1_ASC' | 'costMetricName1_DESC' | 'costMetricName2_ASC' | 'costMetricName2_DESC' | 'costMetricValue1_ASC' | 'costMetricValue1_DESC' | 'costMetricValue2_ASC' | 'costMetricValue2_DESC' | 'count_ASC' | 'count_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetimeSixHours_ASC' | 'datetimeSixHours_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'errorCode_ASC' | 'errorCode_DESC' | 'inferenceTimeMs_ASC' | 'inferenceTimeMs_DESC' | 'modelId_ASC' | 'modelId_DESC' | 'modelIsBeta_ASC' | 'modelIsBeta_DESC' | 'neurons_ASC' | 'neurons_DESC' | 'requestBytesIn_ASC' | 'requestBytesIn_DESC' | 'requestBytesOut_ASC' | 'requestBytesOut_DESC' | 'requestSource_ASC' | 'requestSource_DESC' | 'sum_totalAudioSeconds_ASC' | 'sum_totalAudioSeconds_DESC' | 'sum_totalCostMetricValue1_ASC' | 'sum_totalCostMetricValue1_DESC' | 'sum_totalCostMetricValue2_ASC' | 'sum_totalCostMetricValue2_DESC' | 'sum_totalInferenceSteps_ASC' | 'sum_totalInferenceSteps_DESC' | 'sum_totalInferenceTimeMs_ASC' | 'sum_totalInferenceTimeMs_DESC' | 'sum_totalInputLength_ASC' | 'sum_totalInputLength_DESC' | 'sum_totalInputTokens_ASC' | 'sum_totalInputTokens_DESC' | 'sum_totalNeurons_ASC' | 'sum_totalNeurons_DESC' | 'sum_totalOutputTokens_ASC' | 'sum_totalOutputTokens_DESC' | 'sum_totalProcessedPixels_ASC' | 'sum_totalProcessedPixels_DESC' | 'sum_totalProcessedTiles_ASC' | 'sum_totalProcessedTiles_DESC' | 'sum_totalRequestBytesIn_ASC' | 'sum_totalRequestBytesIn_DESC' | 'sum_totalRequestBytesOut_ASC' | 'sum_totalRequestBytesOut_DESC' | 'sum_totalTiles_ASC' | 'sum_totalTiles_DESC' | 'tag_ASC' | 'tag_DESC'; }; + 'AccountAiInferenceAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'AccountAiInferenceAdaptiveGroupsSum'; fields: { 'totalAudioSeconds': { name: 'totalAudioSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'totalCostMetricValue1': { name: 'totalCostMetricValue1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'totalCostMetricValue2': { name: 'totalCostMetricValue2'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'totalInferenceSteps': { name: 'totalInferenceSteps'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'totalInferenceTimeMs': { name: 'totalInferenceTimeMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'totalInputLength': { name: 'totalInputLength'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'totalInputTokens': { name: 'totalInputTokens'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'totalNeurons': { name: 'totalNeurons'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'totalOutputTokens': { name: 'totalOutputTokens'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'totalProcessedPixels': { name: 'totalProcessedPixels'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'totalProcessedTiles': { name: 'totalProcessedTiles'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'totalRequestBytesIn': { name: 'totalRequestBytesIn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'totalRequestBytesOut': { name: 'totalRequestBytesOut'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'totalTiles': { name: 'totalTiles'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountAiInferenceAdaptiveGroupsSumConfidence': { kind: 'OBJECT'; name: 'AccountAiInferenceAdaptiveGroupsSumConfidence'; fields: { 'totalAudioSeconds': { name: 'totalAudioSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'totalCostMetricValue1': { name: 'totalCostMetricValue1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'totalCostMetricValue2': { name: 'totalCostMetricValue2'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'totalInferenceSteps': { name: 'totalInferenceSteps'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'totalInferenceTimeMs': { name: 'totalInferenceTimeMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'totalInputLength': { name: 'totalInputLength'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'totalInputTokens': { name: 'totalInputTokens'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'totalNeurons': { name: 'totalNeurons'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'totalOutputTokens': { name: 'totalOutputTokens'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'totalProcessedPixels': { name: 'totalProcessedPixels'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'totalProcessedTiles': { name: 'totalProcessedTiles'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'totalRequestBytesIn': { name: 'totalRequestBytesIn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'totalRequestBytesOut': { name: 'totalRequestBytesOut'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'totalTiles': { name: 'totalTiles'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountAiInferenceAdaptiveOrderBy': { name: 'AccountAiInferenceAdaptiveOrderBy'; enumValues: 'audioSeconds_ASC' | 'audioSeconds_DESC' | 'costMetricName1_ASC' | 'costMetricName1_DESC' | 'costMetricName2_ASC' | 'costMetricName2_DESC' | 'costMetricValue1_ASC' | 'costMetricValue1_DESC' | 'costMetricValue2_ASC' | 'costMetricValue2_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'errorCode_ASC' | 'errorCode_DESC' | 'inferenceSteps_ASC' | 'inferenceSteps_DESC' | 'inferenceTimeMs_ASC' | 'inferenceTimeMs_DESC' | 'inputLength_ASC' | 'inputLength_DESC' | 'inputTokens_ASC' | 'inputTokens_DESC' | 'modelId_ASC' | 'modelId_DESC' | 'modelIsBeta_ASC' | 'modelIsBeta_DESC' | 'neurons_ASC' | 'neurons_DESC' | 'outputTokens_ASC' | 'outputTokens_DESC' | 'processedPixels_ASC' | 'processedPixels_DESC' | 'processedTiles_ASC' | 'processedTiles_DESC' | 'requestBytesIn_ASC' | 'requestBytesIn_DESC' | 'requestBytesOut_ASC' | 'requestBytesOut_DESC' | 'requestSource_ASC' | 'requestSource_DESC' | 'sampleInterval_ASC' | 'sampleInterval_DESC' | 'tag_ASC' | 'tag_DESC' | 'totalTiles_ASC' | 'totalTiles_DESC'; }; + 'AccountAutoRAGConfigAPIAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountAutoRAGConfigAPIAdaptiveGroups'; fields: { 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountAutoRAGConfigAPIAdaptiveGroupsConfidence'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountAutoRAGConfigAPIAdaptiveGroupsDimensions'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountAutoRAGConfigAPIAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'AccountAutoRAGConfigAPIAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountAutoRAGConfigAPIAdaptiveGroupsConfidence'; fields: { 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountAutoRAGConfigAPIAdaptiveGroupsSumConfidence'; ofType: null; } }; }; }; + 'AccountAutoRAGConfigAPIAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountAutoRAGConfigAPIAdaptiveGroupsDimensions'; fields: { 'aiPromptIncluded': { name: 'aiPromptIncluded'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'aiSearchDurationMs': { name: 'aiSearchDurationMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'aiSearchInputSizeTokens': { name: 'aiSearchInputSizeTokens'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'aiSearchModel': { name: 'aiSearchModel'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'aiSearchResultSizeTokens': { name: 'aiSearchResultSizeTokens'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'chuckSizeTokensArray': { name: 'chuckSizeTokensArray'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; } }; 'chunkOverlap': { name: 'chunkOverlap'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'chunkSize': { name: 'chunkSize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'doReranking': { name: 'doReranking'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'doRewrite': { name: 'doRewrite'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'embeddingModel': { name: 'embeddingModel'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'enableChunking': { name: 'enableChunking'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'fileIdArray': { name: 'fileIdArray'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'filenameArray': { name: 'filenameArray'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'getFilesDurationMs': { name: 'getFilesDurationMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'getQueryVectorsAvgDurationMs': { name: 'getQueryVectorsAvgDurationMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'getResultVectorsAvgDurationMs': { name: 'getResultVectorsAvgDurationMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'isStream': { name: 'isStream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'maxResults': { name: 'maxResults'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'numChunksToRetrieve': { name: 'numChunksToRetrieve'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'numResults': { name: 'numResults'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'querySizeTokens': { name: 'querySizeTokens'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'rag': { name: 'rag'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'regenerateMarkdown': { name: 'regenerateMarkdown'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'rerankingDurationMs': { name: 'rerankingDurationMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'rerankingModel': { name: 'rerankingModel'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'rewriteDurationMs': { name: 'rewriteDurationMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'rewriteInputSizeTokens': { name: 'rewriteInputSizeTokens'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'rewriteModel': { name: 'rewriteModel'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'rewritePromptIncluded': { name: 'rewritePromptIncluded'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'rewriteResultSizeTokens': { name: 'rewriteResultSizeTokens'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'scoreArray': { name: 'scoreArray'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; }; }; } }; 'scoreThreshold': { name: 'scoreThreshold'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'searchType': { name: 'searchType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'totalDurationMs': { name: 'totalDurationMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; }; }; + 'AccountAutoRAGConfigAPIAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountAutoRAGConfigAPIAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountAutoRAGConfigAPIAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountAutoRAGConfigAPIAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'aiPromptIncluded'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'aiPromptIncluded_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'aiPromptIncluded_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'aiPromptIncluded_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'aiPromptIncluded_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'aiPromptIncluded_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'aiPromptIncluded_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'aiPromptIncluded_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'aiSearchDurationMs'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'aiSearchDurationMs_geq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'aiSearchDurationMs_gt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'aiSearchDurationMs_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'aiSearchDurationMs_leq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'aiSearchDurationMs_lt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'aiSearchDurationMs_neq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'aiSearchDurationMs_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'aiSearchInputSizeTokens'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'aiSearchInputSizeTokens_geq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'aiSearchInputSizeTokens_gt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'aiSearchInputSizeTokens_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'aiSearchInputSizeTokens_leq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'aiSearchInputSizeTokens_lt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'aiSearchInputSizeTokens_neq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'aiSearchInputSizeTokens_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'aiSearchModel'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'aiSearchModel_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'aiSearchModel_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'aiSearchModel_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'aiSearchModel_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'aiSearchModel_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'aiSearchModel_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'aiSearchModel_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'aiSearchModel_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'aiSearchModel_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'aiSearchResultSizeTokens'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'aiSearchResultSizeTokens_geq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'aiSearchResultSizeTokens_gt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'aiSearchResultSizeTokens_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'aiSearchResultSizeTokens_leq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'aiSearchResultSizeTokens_lt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'aiSearchResultSizeTokens_neq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'aiSearchResultSizeTokens_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'chuckSizeTokensArray_has'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'chuckSizeTokensArray_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'chuckSizeTokensArray_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'chuckSizeTokensArray_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'chuckSizeTokensArray_nothas'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'chunkOverlap'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'chunkOverlap_geq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'chunkOverlap_gt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'chunkOverlap_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'chunkOverlap_leq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'chunkOverlap_lt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'chunkOverlap_neq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'chunkOverlap_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'chunkSize'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'chunkSize_geq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'chunkSize_gt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'chunkSize_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'chunkSize_leq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'chunkSize_lt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'chunkSize_neq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'chunkSize_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'doReranking'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'doReranking_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'doReranking_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'doReranking_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'doReranking_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'doReranking_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'doReranking_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'doReranking_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'doRewrite'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'doRewrite_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'doRewrite_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'doRewrite_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'doRewrite_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'doRewrite_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'doRewrite_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'doRewrite_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'embeddingModel'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'embeddingModel_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'embeddingModel_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'embeddingModel_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'embeddingModel_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'embeddingModel_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'embeddingModel_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'embeddingModel_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'embeddingModel_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'embeddingModel_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'enableChunking'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'enableChunking_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'enableChunking_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'enableChunking_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'enableChunking_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'enableChunking_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'enableChunking_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'enableChunking_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'fileIdArray_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fileIdArray_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'fileIdArray_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'fileIdArray_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'fileIdArray_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'filenameArray_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'filenameArray_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'filenameArray_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'filenameArray_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'filenameArray_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'getFilesDurationMs'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'getFilesDurationMs_geq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'getFilesDurationMs_gt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'getFilesDurationMs_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'getFilesDurationMs_leq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'getFilesDurationMs_lt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'getFilesDurationMs_neq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'getFilesDurationMs_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'getQueryVectorsAvgDurationMs'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'getQueryVectorsAvgDurationMs_geq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'getQueryVectorsAvgDurationMs_gt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'getQueryVectorsAvgDurationMs_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'getQueryVectorsAvgDurationMs_leq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'getQueryVectorsAvgDurationMs_lt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'getQueryVectorsAvgDurationMs_neq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'getQueryVectorsAvgDurationMs_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'getResultVectorsAvgDurationMs'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'getResultVectorsAvgDurationMs_geq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'getResultVectorsAvgDurationMs_gt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'getResultVectorsAvgDurationMs_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'getResultVectorsAvgDurationMs_leq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'getResultVectorsAvgDurationMs_lt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'getResultVectorsAvgDurationMs_neq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'getResultVectorsAvgDurationMs_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'isStream'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isStream_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isStream_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isStream_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'isStream_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isStream_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isStream_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isStream_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'maxResults'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'maxResults_geq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'maxResults_gt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'maxResults_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'maxResults_leq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'maxResults_lt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'maxResults_neq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'maxResults_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'numChunksToRetrieve'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'numChunksToRetrieve_geq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'numChunksToRetrieve_gt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'numChunksToRetrieve_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'numChunksToRetrieve_leq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'numChunksToRetrieve_lt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'numChunksToRetrieve_neq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'numChunksToRetrieve_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'numResults'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'numResults_geq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'numResults_gt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'numResults_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'numResults_leq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'numResults_lt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'numResults_neq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'numResults_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'querySizeTokens'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'querySizeTokens_geq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'querySizeTokens_gt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'querySizeTokens_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'querySizeTokens_leq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'querySizeTokens_lt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'querySizeTokens_neq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'querySizeTokens_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'rag'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rag_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rag_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rag_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'rag_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rag_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rag_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rag_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rag_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'rag_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'regenerateMarkdown'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'regenerateMarkdown_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'regenerateMarkdown_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'regenerateMarkdown_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'regenerateMarkdown_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'regenerateMarkdown_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'regenerateMarkdown_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'regenerateMarkdown_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'rerankingDurationMs'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'rerankingDurationMs_geq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'rerankingDurationMs_gt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'rerankingDurationMs_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'rerankingDurationMs_leq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'rerankingDurationMs_lt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'rerankingDurationMs_neq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'rerankingDurationMs_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'rerankingModel'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rerankingModel_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rerankingModel_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rerankingModel_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'rerankingModel_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rerankingModel_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rerankingModel_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rerankingModel_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rerankingModel_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'rerankingModel_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rewriteDurationMs'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'rewriteDurationMs_geq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'rewriteDurationMs_gt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'rewriteDurationMs_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'rewriteDurationMs_leq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'rewriteDurationMs_lt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'rewriteDurationMs_neq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'rewriteDurationMs_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'rewriteInputSizeTokens'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'rewriteInputSizeTokens_geq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'rewriteInputSizeTokens_gt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'rewriteInputSizeTokens_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'rewriteInputSizeTokens_leq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'rewriteInputSizeTokens_lt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'rewriteInputSizeTokens_neq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'rewriteInputSizeTokens_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'rewriteModel'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rewriteModel_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rewriteModel_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rewriteModel_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'rewriteModel_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rewriteModel_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rewriteModel_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rewriteModel_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rewriteModel_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'rewriteModel_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rewritePromptIncluded'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'rewritePromptIncluded_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'rewritePromptIncluded_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'rewritePromptIncluded_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'rewritePromptIncluded_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'rewritePromptIncluded_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'rewritePromptIncluded_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'rewritePromptIncluded_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'rewriteResultSizeTokens'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'rewriteResultSizeTokens_geq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'rewriteResultSizeTokens_gt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'rewriteResultSizeTokens_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'rewriteResultSizeTokens_leq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'rewriteResultSizeTokens_lt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'rewriteResultSizeTokens_neq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'rewriteResultSizeTokens_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'scoreArray_has'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'scoreArray_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; }; }; defaultValue: null }, { name: 'scoreArray_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; }; }; defaultValue: null }, { name: 'scoreArray_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'scoreArray_nothas'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'scoreThreshold'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'scoreThreshold_geq'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'scoreThreshold_gt'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'scoreThreshold_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; }; }; defaultValue: null }, { name: 'scoreThreshold_leq'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'scoreThreshold_lt'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'scoreThreshold_neq'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'scoreThreshold_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; }; }; defaultValue: null }, { name: 'searchType'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'searchType_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'searchType_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'searchType_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'searchType_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'searchType_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'searchType_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'searchType_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'searchType_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'searchType_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'totalDurationMs'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'totalDurationMs_geq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'totalDurationMs_gt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'totalDurationMs_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalDurationMs_leq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'totalDurationMs_lt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'totalDurationMs_neq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'totalDurationMs_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }]; }; + 'AccountAutoRAGConfigAPIAdaptiveGroupsOrderBy': { name: 'AccountAutoRAGConfigAPIAdaptiveGroupsOrderBy'; enumValues: 'aiPromptIncluded_ASC' | 'aiPromptIncluded_DESC' | 'aiSearchDurationMs_ASC' | 'aiSearchDurationMs_DESC' | 'aiSearchInputSizeTokens_ASC' | 'aiSearchInputSizeTokens_DESC' | 'aiSearchModel_ASC' | 'aiSearchModel_DESC' | 'aiSearchResultSizeTokens_ASC' | 'aiSearchResultSizeTokens_DESC' | 'chuckSizeTokensArray_ASC' | 'chuckSizeTokensArray_DESC' | 'chunkOverlap_ASC' | 'chunkOverlap_DESC' | 'chunkSize_ASC' | 'chunkSize_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'doReranking_ASC' | 'doReranking_DESC' | 'doRewrite_ASC' | 'doRewrite_DESC' | 'embeddingModel_ASC' | 'embeddingModel_DESC' | 'enableChunking_ASC' | 'enableChunking_DESC' | 'fileIdArray_ASC' | 'fileIdArray_DESC' | 'filenameArray_ASC' | 'filenameArray_DESC' | 'getFilesDurationMs_ASC' | 'getFilesDurationMs_DESC' | 'getQueryVectorsAvgDurationMs_ASC' | 'getQueryVectorsAvgDurationMs_DESC' | 'getResultVectorsAvgDurationMs_ASC' | 'getResultVectorsAvgDurationMs_DESC' | 'isStream_ASC' | 'isStream_DESC' | 'maxResults_ASC' | 'maxResults_DESC' | 'numChunksToRetrieve_ASC' | 'numChunksToRetrieve_DESC' | 'numResults_ASC' | 'numResults_DESC' | 'querySizeTokens_ASC' | 'querySizeTokens_DESC' | 'rag_ASC' | 'rag_DESC' | 'regenerateMarkdown_ASC' | 'regenerateMarkdown_DESC' | 'rerankingDurationMs_ASC' | 'rerankingDurationMs_DESC' | 'rerankingModel_ASC' | 'rerankingModel_DESC' | 'rewriteDurationMs_ASC' | 'rewriteDurationMs_DESC' | 'rewriteInputSizeTokens_ASC' | 'rewriteInputSizeTokens_DESC' | 'rewriteModel_ASC' | 'rewriteModel_DESC' | 'rewritePromptIncluded_ASC' | 'rewritePromptIncluded_DESC' | 'rewriteResultSizeTokens_ASC' | 'rewriteResultSizeTokens_DESC' | 'scoreArray_ASC' | 'scoreArray_DESC' | 'scoreThreshold_ASC' | 'scoreThreshold_DESC' | 'searchType_ASC' | 'searchType_DESC' | 'sum_aiSearchCount_ASC' | 'sum_aiSearchCount_DESC' | 'sum_searchCount_ASC' | 'sum_searchCount_DESC' | 'totalDurationMs_ASC' | 'totalDurationMs_DESC'; }; + 'AccountAutoRAGConfigAPIAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'AccountAutoRAGConfigAPIAdaptiveGroupsSum'; fields: { 'aiSearchCount': { name: 'aiSearchCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'searchCount': { name: 'searchCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountAutoRAGConfigAPIAdaptiveGroupsSumConfidence': { kind: 'OBJECT'; name: 'AccountAutoRAGConfigAPIAdaptiveGroupsSumConfidence'; fields: { 'aiSearchCount': { name: 'aiSearchCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'searchCount': { name: 'searchCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountAutoRAGEngineAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountAutoRAGEngineAdaptiveGroups'; fields: { 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountAutoRAGEngineAdaptiveGroupsDimensions'; ofType: null; } }; 'max': { name: 'max'; type: { kind: 'OBJECT'; name: 'AccountAutoRAGEngineAdaptiveGroupsMax'; ofType: null; } }; }; }; + 'AccountAutoRAGEngineAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountAutoRAGEngineAdaptiveGroupsDimensions'; fields: { 'completed': { name: 'completed'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'errored': { name: 'errored'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'queued': { name: 'queued'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'rag': { name: 'rag'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'running': { name: 'running'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'sourceType': { name: 'sourceType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountAutoRAGEngineAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountAutoRAGEngineAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountAutoRAGEngineAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountAutoRAGEngineAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'completed'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'completed_geq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'completed_gt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'completed_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'completed_leq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'completed_lt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'completed_neq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'completed_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'errored'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'errored_geq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'errored_gt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'errored_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'errored_leq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'errored_lt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'errored_neq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'errored_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'queued'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'queued_geq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'queued_gt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'queued_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'queued_leq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'queued_lt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'queued_neq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'queued_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'rag'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rag_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rag_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rag_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'rag_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rag_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rag_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rag_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rag_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'rag_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'running'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'running_geq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'running_gt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'running_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'running_leq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'running_lt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'running_neq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'running_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceType'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceType_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceType_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceType_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceType_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceType_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceType_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceType_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceType_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceType_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountAutoRAGEngineAdaptiveGroupsMax': { kind: 'OBJECT'; name: 'AccountAutoRAGEngineAdaptiveGroupsMax'; fields: { 'completed': { name: 'completed'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'errored': { name: 'errored'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'queued': { name: 'queued'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'running': { name: 'running'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; }; }; + 'AccountAutoRAGEngineAdaptiveGroupsOrderBy': { name: 'AccountAutoRAGEngineAdaptiveGroupsOrderBy'; enumValues: 'completed_ASC' | 'completed_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'errored_ASC' | 'errored_DESC' | 'max_completed_ASC' | 'max_completed_DESC' | 'max_errored_ASC' | 'max_errored_DESC' | 'max_queued_ASC' | 'max_queued_DESC' | 'max_running_ASC' | 'max_running_DESC' | 'queued_ASC' | 'queued_DESC' | 'rag_ASC' | 'rag_DESC' | 'running_ASC' | 'running_DESC' | 'sourceType_ASC' | 'sourceType_DESC'; }; + 'AccountBrowserIsolationSessionsAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountBrowserIsolationSessionsAdaptiveGroups'; fields: { 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountBrowserIsolationSessionsAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountBrowserIsolationSessionsAdaptiveGroupsDimensions'; ofType: null; } }; }; }; + 'AccountBrowserIsolationSessionsAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountBrowserIsolationSessionsAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountBrowserIsolationSessionsAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountBrowserIsolationSessionsAdaptiveGroupsDimensions'; fields: { 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; }; }; + 'AccountBrowserIsolationSessionsAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountBrowserIsolationSessionsAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountBrowserIsolationSessionsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountBrowserIsolationSessionsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }]; }; + 'AccountBrowserIsolationSessionsAdaptiveGroupsOrderBy': { name: 'AccountBrowserIsolationSessionsAdaptiveGroupsOrderBy'; enumValues: 'count_ASC' | 'count_DESC' | 'datetime_ASC' | 'datetime_DESC'; }; + 'AccountBrowserIsolationUserActionsAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountBrowserIsolationUserActionsAdaptiveGroups'; fields: { 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountBrowserIsolationUserActionsAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountBrowserIsolationUserActionsAdaptiveGroupsDimensions'; ofType: null; } }; }; }; + 'AccountBrowserIsolationUserActionsAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountBrowserIsolationUserActionsAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountBrowserIsolationUserActionsAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountBrowserIsolationUserActionsAdaptiveGroupsDimensions'; fields: { 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'decision': { name: 'decision'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'type': { name: 'type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountBrowserIsolationUserActionsAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountBrowserIsolationUserActionsAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountBrowserIsolationUserActionsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountBrowserIsolationUserActionsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'decision'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'decision_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'decision_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'decision_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'decision_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'decision_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'decision_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'decision_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'decision_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'decision_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'type_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'type_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'type_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'type_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'type_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'type_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'type_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'type_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'type_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountBrowserIsolationUserActionsAdaptiveGroupsOrderBy': { name: 'AccountBrowserIsolationUserActionsAdaptiveGroupsOrderBy'; enumValues: 'count_ASC' | 'count_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'decision_ASC' | 'decision_DESC' | 'type_ASC' | 'type_DESC'; }; + 'AccountBrowserRenderingApiAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountBrowserRenderingApiAdaptiveGroups'; fields: { 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountBrowserRenderingApiAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountBrowserRenderingApiAdaptiveGroupsDimensions'; ofType: null; } }; }; }; + 'AccountBrowserRenderingApiAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountBrowserRenderingApiAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountBrowserRenderingApiAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountBrowserRenderingApiAdaptiveGroupsDimensions'; fields: { 'browserSessionEndTime': { name: 'browserSessionEndTime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'browserSessionStartTime': { name: 'browserSessionStartTime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'endpoint': { name: 'endpoint'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'requestEndTime': { name: 'requestEndTime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'requestStartTime': { name: 'requestStartTime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'sessionId': { name: 'sessionId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'status': { name: 'status'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'tier': { name: 'tier'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountBrowserRenderingApiAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountBrowserRenderingApiAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountBrowserRenderingApiAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountBrowserRenderingApiAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'browserSessionEndTime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'browserSessionEndTime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'browserSessionEndTime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'browserSessionEndTime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'browserSessionEndTime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'browserSessionEndTime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'browserSessionEndTime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'browserSessionEndTime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'browserSessionStartTime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'browserSessionStartTime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'browserSessionStartTime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'browserSessionStartTime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'browserSessionStartTime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'browserSessionStartTime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'browserSessionStartTime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'browserSessionStartTime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'endpoint'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'endpoint_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'endpoint_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'endpoint_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'endpoint_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'endpoint_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'endpoint_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'endpoint_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'endpoint_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'endpoint_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestEndTime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'requestEndTime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'requestEndTime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'requestEndTime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'requestEndTime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'requestEndTime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'requestEndTime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'requestEndTime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'requestStartTime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'requestStartTime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'requestStartTime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'requestStartTime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'requestStartTime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'requestStartTime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'requestStartTime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'requestStartTime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'status_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'status_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'status_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'status_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'status_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'status_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'status_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'tier'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tier_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tier_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tier_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tier_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tier_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tier_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tier_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tier_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tier_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountBrowserRenderingApiAdaptiveGroupsOrderBy': { name: 'AccountBrowserRenderingApiAdaptiveGroupsOrderBy'; enumValues: 'browserSessionEndTime_ASC' | 'browserSessionEndTime_DESC' | 'browserSessionStartTime_ASC' | 'browserSessionStartTime_DESC' | 'count_ASC' | 'count_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'endpoint_ASC' | 'endpoint_DESC' | 'env_ASC' | 'env_DESC' | 'requestEndTime_ASC' | 'requestEndTime_DESC' | 'requestStartTime_ASC' | 'requestStartTime_DESC' | 'sessionId_ASC' | 'sessionId_DESC' | 'status_ASC' | 'status_DESC' | 'tier_ASC' | 'tier_DESC'; }; + 'AccountBrowserRenderingBindingSessionsAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountBrowserRenderingBindingSessionsAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountBrowserRenderingBindingSessionsAdaptiveGroupsAvg'; ofType: null; } }; 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountBrowserRenderingBindingSessionsAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountBrowserRenderingBindingSessionsAdaptiveGroupsDimensions'; ofType: null; } }; 'max': { name: 'max'; type: { kind: 'OBJECT'; name: 'AccountBrowserRenderingBindingSessionsAdaptiveGroupsMax'; ofType: null; } }; 'uniq': { name: 'uniq'; type: { kind: 'OBJECT'; name: 'AccountBrowserRenderingBindingSessionsAdaptiveGroupsUniq'; ofType: null; } }; }; }; + 'AccountBrowserRenderingBindingSessionsAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'AccountBrowserRenderingBindingSessionsAdaptiveGroupsAvg'; fields: { 'avgConcurrentSessions': { name: 'avgConcurrentSessions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountBrowserRenderingBindingSessionsAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountBrowserRenderingBindingSessionsAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountBrowserRenderingBindingSessionsAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountBrowserRenderingBindingSessionsAdaptiveGroupsDimensions'; fields: { 'concurrentSessions': { name: 'concurrentSessions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'sessionId': { name: 'sessionId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountBrowserRenderingBindingSessionsAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountBrowserRenderingBindingSessionsAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountBrowserRenderingBindingSessionsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountBrowserRenderingBindingSessionsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'concurrentSessions'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'concurrentSessions_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'concurrentSessions_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'concurrentSessions_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'concurrentSessions_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'concurrentSessions_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'concurrentSessions_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'concurrentSessions_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountBrowserRenderingBindingSessionsAdaptiveGroupsMax': { kind: 'OBJECT'; name: 'AccountBrowserRenderingBindingSessionsAdaptiveGroupsMax'; fields: { 'maxConcurrentSessions': { name: 'maxConcurrentSessions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountBrowserRenderingBindingSessionsAdaptiveGroupsOrderBy': { name: 'AccountBrowserRenderingBindingSessionsAdaptiveGroupsOrderBy'; enumValues: 'avg_avgConcurrentSessions_ASC' | 'avg_avgConcurrentSessions_DESC' | 'concurrentSessions_ASC' | 'concurrentSessions_DESC' | 'count_ASC' | 'count_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'max_maxConcurrentSessions_ASC' | 'max_maxConcurrentSessions_DESC' | 'sessionId_ASC' | 'sessionId_DESC' | 'uniq_sessionIdCount_ASC' | 'uniq_sessionIdCount_DESC'; }; + 'AccountBrowserRenderingBindingSessionsAdaptiveGroupsUniq': { kind: 'OBJECT'; name: 'AccountBrowserRenderingBindingSessionsAdaptiveGroupsUniq'; fields: { 'sessionIdCount': { name: 'sessionIdCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; }; }; + 'AccountBrowserRenderingBrowserTimeUsageAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountBrowserRenderingBrowserTimeUsageAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountBrowserRenderingBrowserTimeUsageAdaptiveGroupsAvg'; ofType: null; } }; 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountBrowserRenderingBrowserTimeUsageAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountBrowserRenderingBrowserTimeUsageAdaptiveGroupsDimensions'; ofType: null; } }; 'max': { name: 'max'; type: { kind: 'OBJECT'; name: 'AccountBrowserRenderingBrowserTimeUsageAdaptiveGroupsMax'; ofType: null; } }; 'min': { name: 'min'; type: { kind: 'OBJECT'; name: 'AccountBrowserRenderingBrowserTimeUsageAdaptiveGroupsMin'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountBrowserRenderingBrowserTimeUsageAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'AccountBrowserRenderingBrowserTimeUsageAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'AccountBrowserRenderingBrowserTimeUsageAdaptiveGroupsAvg'; fields: { 'avgSessionDurationMs': { name: 'avgSessionDurationMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountBrowserRenderingBrowserTimeUsageAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountBrowserRenderingBrowserTimeUsageAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountBrowserRenderingBrowserTimeUsageAdaptiveGroupsSumConfidence'; ofType: null; } }; }; }; + 'AccountBrowserRenderingBrowserTimeUsageAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountBrowserRenderingBrowserTimeUsageAdaptiveGroupsDimensions'; fields: { 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'sessionDurationMs': { name: 'sessionDurationMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'sessionEnd': { name: 'sessionEnd'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'sessionId': { name: 'sessionId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sessionStart': { name: 'sessionStart'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; }; }; + 'AccountBrowserRenderingBrowserTimeUsageAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountBrowserRenderingBrowserTimeUsageAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountBrowserRenderingBrowserTimeUsageAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountBrowserRenderingBrowserTimeUsageAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionDurationMs'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'sessionDurationMs_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'sessionDurationMs_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'sessionDurationMs_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionDurationMs_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'sessionDurationMs_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'sessionDurationMs_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'sessionDurationMs_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionEnd'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionEnd_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionEnd_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionEnd_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionEnd_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionEnd_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionEnd_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionEnd_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionStart'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionStart_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionStart_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionStart_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionStart_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionStart_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionStart_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionStart_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }]; }; + 'AccountBrowserRenderingBrowserTimeUsageAdaptiveGroupsMax': { kind: 'OBJECT'; name: 'AccountBrowserRenderingBrowserTimeUsageAdaptiveGroupsMax'; fields: { 'maxSessionDurationMs': { name: 'maxSessionDurationMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountBrowserRenderingBrowserTimeUsageAdaptiveGroupsMin': { kind: 'OBJECT'; name: 'AccountBrowserRenderingBrowserTimeUsageAdaptiveGroupsMin'; fields: { 'minSessionDurationMs': { name: 'minSessionDurationMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountBrowserRenderingBrowserTimeUsageAdaptiveGroupsOrderBy': { name: 'AccountBrowserRenderingBrowserTimeUsageAdaptiveGroupsOrderBy'; enumValues: 'avg_avgSessionDurationMs_ASC' | 'avg_avgSessionDurationMs_DESC' | 'count_ASC' | 'count_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'max_maxSessionDurationMs_ASC' | 'max_maxSessionDurationMs_DESC' | 'min_minSessionDurationMs_ASC' | 'min_minSessionDurationMs_DESC' | 'rowNum_ASC' | 'rowNum_DESC' | 'sessionDurationMs_ASC' | 'sessionDurationMs_DESC' | 'sessionEnd_ASC' | 'sessionEnd_DESC' | 'sessionId_ASC' | 'sessionId_DESC' | 'sessionStart_ASC' | 'sessionStart_DESC' | 'sum_totalSessionDurationMs_ASC' | 'sum_totalSessionDurationMs_DESC'; }; + 'AccountBrowserRenderingBrowserTimeUsageAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'AccountBrowserRenderingBrowserTimeUsageAdaptiveGroupsSum'; fields: { 'totalSessionDurationMs': { name: 'totalSessionDurationMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountBrowserRenderingBrowserTimeUsageAdaptiveGroupsSumConfidence': { kind: 'OBJECT'; name: 'AccountBrowserRenderingBrowserTimeUsageAdaptiveGroupsSumConfidence'; fields: { 'totalSessionDurationMs': { name: 'totalSessionDurationMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountBrowserRenderingEventsAdaptive': { kind: 'OBJECT'; name: 'AccountBrowserRenderingEventsAdaptive'; fields: { 'browserCloseReason': { name: 'browserCloseReason'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'browserEndTime': { name: 'browserEndTime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'browserStartTime': { name: 'browserStartTime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'concurrentSessions': { name: 'concurrentSessions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'connectionEndTime': { name: 'connectionEndTime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'connectionId': { name: 'connectionId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'connectionStartTime': { name: 'connectionStartTime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'scriptName': { name: 'scriptName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sessionId': { name: 'sessionId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountBrowserRenderingEventsAdaptiveFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountBrowserRenderingEventsAdaptiveFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountBrowserRenderingEventsAdaptiveFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountBrowserRenderingEventsAdaptiveFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'browserCloseReason'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'browserCloseReason_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'browserCloseReason_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'browserCloseReason_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'browserCloseReason_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'browserCloseReason_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'browserCloseReason_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'browserCloseReason_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'browserCloseReason_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'browserCloseReason_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'browserEndTime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'browserEndTime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'browserEndTime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'browserEndTime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'browserEndTime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'browserEndTime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'browserEndTime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'browserEndTime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'browserStartTime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'browserStartTime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'browserStartTime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'browserStartTime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'browserStartTime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'browserStartTime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'browserStartTime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'browserStartTime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'concurrentSessions'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'concurrentSessions_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'concurrentSessions_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'concurrentSessions_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'concurrentSessions_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'concurrentSessions_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'concurrentSessions_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'concurrentSessions_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'connectionEndTime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'connectionEndTime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'connectionEndTime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'connectionEndTime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'connectionEndTime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'connectionEndTime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'connectionEndTime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'connectionEndTime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'connectionId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectionId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectionId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectionId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'connectionId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectionId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectionId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectionId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectionId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'connectionId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectionStartTime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'connectionStartTime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'connectionStartTime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'connectionStartTime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'connectionStartTime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'connectionStartTime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'connectionStartTime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'connectionStartTime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'sampleInterval'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sampleInterval_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'scriptName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'scriptName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'scriptName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountBrowserRenderingEventsAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountBrowserRenderingEventsAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountBrowserRenderingEventsAdaptiveGroupsAvg'; ofType: null; } }; 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountBrowserRenderingEventsAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountBrowserRenderingEventsAdaptiveGroupsDimensions'; ofType: null; } }; 'max': { name: 'max'; type: { kind: 'OBJECT'; name: 'AccountBrowserRenderingEventsAdaptiveGroupsMax'; ofType: null; } }; 'min': { name: 'min'; type: { kind: 'OBJECT'; name: 'AccountBrowserRenderingEventsAdaptiveGroupsMin'; ofType: null; } }; 'uniq': { name: 'uniq'; type: { kind: 'OBJECT'; name: 'AccountBrowserRenderingEventsAdaptiveGroupsUniq'; ofType: null; } }; }; }; + 'AccountBrowserRenderingEventsAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'AccountBrowserRenderingEventsAdaptiveGroupsAvg'; fields: { 'avgConcurrentSessions': { name: 'avgConcurrentSessions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountBrowserRenderingEventsAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountBrowserRenderingEventsAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountBrowserRenderingEventsAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountBrowserRenderingEventsAdaptiveGroupsDimensions'; fields: { 'browserCloseReason': { name: 'browserCloseReason'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'concurrentSessions': { name: 'concurrentSessions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'connectionId': { name: 'connectionId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'scriptName': { name: 'scriptName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sessionId': { name: 'sessionId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountBrowserRenderingEventsAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountBrowserRenderingEventsAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountBrowserRenderingEventsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountBrowserRenderingEventsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'browserCloseReason'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'browserCloseReason_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'browserCloseReason_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'browserCloseReason_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'browserCloseReason_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'browserCloseReason_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'browserCloseReason_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'browserCloseReason_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'browserCloseReason_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'browserCloseReason_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'concurrentSessions'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'concurrentSessions_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'concurrentSessions_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'concurrentSessions_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'concurrentSessions_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'concurrentSessions_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'concurrentSessions_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'concurrentSessions_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'connectionId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectionId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectionId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectionId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'connectionId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectionId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectionId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectionId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectionId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'connectionId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'scriptName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'scriptName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'scriptName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountBrowserRenderingEventsAdaptiveGroupsMax': { kind: 'OBJECT'; name: 'AccountBrowserRenderingEventsAdaptiveGroupsMax'; fields: { 'finalBrowserCloseReason': { name: 'finalBrowserCloseReason'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'latestBrowserEndTime': { name: 'latestBrowserEndTime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; }; }; + 'AccountBrowserRenderingEventsAdaptiveGroupsMin': { kind: 'OBJECT'; name: 'AccountBrowserRenderingEventsAdaptiveGroupsMin'; fields: { 'earliestBrowserStartTime': { name: 'earliestBrowserStartTime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; }; }; + 'AccountBrowserRenderingEventsAdaptiveGroupsOrderBy': { name: 'AccountBrowserRenderingEventsAdaptiveGroupsOrderBy'; enumValues: 'avg_avgConcurrentSessions_ASC' | 'avg_avgConcurrentSessions_DESC' | 'browserCloseReason_ASC' | 'browserCloseReason_DESC' | 'concurrentSessions_ASC' | 'concurrentSessions_DESC' | 'connectionId_ASC' | 'connectionId_DESC' | 'count_ASC' | 'count_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'max_finalBrowserCloseReason_ASC' | 'max_finalBrowserCloseReason_DESC' | 'max_latestBrowserEndTime_ASC' | 'max_latestBrowserEndTime_DESC' | 'min_earliestBrowserStartTime_ASC' | 'min_earliestBrowserStartTime_DESC' | 'scriptName_ASC' | 'scriptName_DESC' | 'sessionId_ASC' | 'sessionId_DESC' | 'uniq_connectionIdCount_ASC' | 'uniq_connectionIdCount_DESC' | 'uniq_sessionIdCount_ASC' | 'uniq_sessionIdCount_DESC'; }; + 'AccountBrowserRenderingEventsAdaptiveGroupsUniq': { kind: 'OBJECT'; name: 'AccountBrowserRenderingEventsAdaptiveGroupsUniq'; fields: { 'connectionIdCount': { name: 'connectionIdCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'sessionIdCount': { name: 'sessionIdCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; }; }; + 'AccountBrowserRenderingEventsAdaptiveOrderBy': { name: 'AccountBrowserRenderingEventsAdaptiveOrderBy'; enumValues: 'browserCloseReason_ASC' | 'browserCloseReason_DESC' | 'browserEndTime_ASC' | 'browserEndTime_DESC' | 'browserStartTime_ASC' | 'browserStartTime_DESC' | 'concurrentSessions_ASC' | 'concurrentSessions_DESC' | 'connectionEndTime_ASC' | 'connectionEndTime_DESC' | 'connectionId_ASC' | 'connectionId_DESC' | 'connectionStartTime_ASC' | 'connectionStartTime_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'sampleInterval_ASC' | 'sampleInterval_DESC' | 'scriptName_ASC' | 'scriptName_DESC' | 'sessionId_ASC' | 'sessionId_DESC'; }; + 'AccountCallsStatusAdaptive': { kind: 'OBJECT'; name: 'AccountCallsStatusAdaptive'; fields: { 'appId': { name: 'appId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'event': { name: 'event'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sessionId': { name: 'sessionId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'trackId': { name: 'trackId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountCallsStatusAdaptiveFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountCallsStatusAdaptiveFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountCallsStatusAdaptiveFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountCallsStatusAdaptiveFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'appId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'appId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'appId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'appId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'appId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'appId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'appId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'appId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'appId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'appId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'event'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'event_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'event_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'event_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'event_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'event_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'event_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'event_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'event_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'event_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'trackId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'trackId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountCallsStatusAdaptiveOrderBy': { name: 'AccountCallsStatusAdaptiveOrderBy'; enumValues: 'appId_ASC' | 'appId_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'event_ASC' | 'event_DESC' | 'sessionId_ASC' | 'sessionId_DESC' | 'trackId_ASC' | 'trackId_DESC'; }; + 'AccountCallsTurnUsageAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountCallsTurnUsageAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountCallsTurnUsageAdaptiveGroupsAvg'; ofType: null; } }; 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountCallsTurnUsageAdaptiveGroupsConfidence'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountCallsTurnUsageAdaptiveGroupsDimensions'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountCallsTurnUsageAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'AccountCallsTurnUsageAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'AccountCallsTurnUsageAdaptiveGroupsAvg'; fields: { 'concurrentConnectionsFifteenMinutes': { name: 'concurrentConnectionsFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'concurrentConnectionsFiveMinutes': { name: 'concurrentConnectionsFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'concurrentConnectionsHour': { name: 'concurrentConnectionsHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'concurrentConnectionsMinute': { name: 'concurrentConnectionsMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountCallsTurnUsageAdaptiveGroupsAvgConfidence': { kind: 'OBJECT'; name: 'AccountCallsTurnUsageAdaptiveGroupsAvgConfidence'; fields: { 'concurrentConnectionsFifteenMinutes': { name: 'concurrentConnectionsFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'concurrentConnectionsFiveMinutes': { name: 'concurrentConnectionsFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'concurrentConnectionsHour': { name: 'concurrentConnectionsHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'concurrentConnectionsMinute': { name: 'concurrentConnectionsMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountCallsTurnUsageAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountCallsTurnUsageAdaptiveGroupsConfidence'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountCallsTurnUsageAdaptiveGroupsAvgConfidence'; ofType: null; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountCallsTurnUsageAdaptiveGroupsSumConfidence'; ofType: null; } }; }; }; + 'AccountCallsTurnUsageAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountCallsTurnUsageAdaptiveGroupsDimensions'; fields: { 'customIdentifier': { name: 'customIdentifier'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'datacenterCity': { name: 'datacenterCity'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'datacenterCode': { name: 'datacenterCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'datacenterCountry': { name: 'datacenterCountry'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'datacenterRegion': { name: 'datacenterRegion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'keyId': { name: 'keyId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'username': { name: 'username'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountCallsTurnUsageAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountCallsTurnUsageAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountCallsTurnUsageAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountCallsTurnUsageAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'customIdentifier'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'customIdentifier_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'customIdentifier_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'customIdentifier_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'customIdentifier_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'customIdentifier_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'customIdentifier_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'customIdentifier_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'customIdentifier_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'customIdentifier_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'datacenterCity'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'datacenterCity_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'datacenterCity_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'datacenterCity_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'datacenterCity_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'datacenterCity_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'datacenterCity_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'datacenterCity_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'datacenterCity_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'datacenterCity_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'datacenterCode'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'datacenterCode_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'datacenterCode_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'datacenterCode_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'datacenterCode_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'datacenterCode_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'datacenterCode_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'datacenterCode_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'datacenterCode_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'datacenterCode_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'datacenterCountry'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'datacenterCountry_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'datacenterCountry_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'datacenterCountry_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'datacenterCountry_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'datacenterCountry_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'datacenterCountry_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'datacenterCountry_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'datacenterCountry_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'datacenterCountry_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'datacenterRegion'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'datacenterRegion_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'datacenterRegion_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'datacenterRegion_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'datacenterRegion_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'datacenterRegion_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'datacenterRegion_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'datacenterRegion_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'datacenterRegion_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'datacenterRegion_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'keyId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'keyId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'keyId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'keyId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'keyId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'keyId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'keyId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'keyId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'keyId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'keyId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'username'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'username_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'username_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'username_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'username_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'username_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'username_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'username_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'username_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'username_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountCallsTurnUsageAdaptiveGroupsOrderBy': { name: 'AccountCallsTurnUsageAdaptiveGroupsOrderBy'; enumValues: 'avg_concurrentConnectionsFifteenMinutes_ASC' | 'avg_concurrentConnectionsFifteenMinutes_DESC' | 'avg_concurrentConnectionsFiveMinutes_ASC' | 'avg_concurrentConnectionsFiveMinutes_DESC' | 'avg_concurrentConnectionsHour_ASC' | 'avg_concurrentConnectionsHour_DESC' | 'avg_concurrentConnectionsMinute_ASC' | 'avg_concurrentConnectionsMinute_DESC' | 'customIdentifier_ASC' | 'customIdentifier_DESC' | 'datacenterCity_ASC' | 'datacenterCity_DESC' | 'datacenterCode_ASC' | 'datacenterCode_DESC' | 'datacenterCountry_ASC' | 'datacenterCountry_DESC' | 'datacenterRegion_ASC' | 'datacenterRegion_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'keyId_ASC' | 'keyId_DESC' | 'sum_egressBytes_ASC' | 'sum_egressBytes_DESC' | 'sum_ingressBytes_ASC' | 'sum_ingressBytes_DESC' | 'username_ASC' | 'username_DESC'; }; + 'AccountCallsTurnUsageAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'AccountCallsTurnUsageAdaptiveGroupsSum'; fields: { 'egressBytes': { name: 'egressBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'ingressBytes': { name: 'ingressBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; }; }; + 'AccountCallsTurnUsageAdaptiveGroupsSumConfidence': { kind: 'OBJECT'; name: 'AccountCallsTurnUsageAdaptiveGroupsSumConfidence'; fields: { 'egressBytes': { name: 'egressBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'ingressBytes': { name: 'ingressBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountCallsUsageAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountCallsUsageAdaptiveGroups'; fields: { 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountCallsUsageAdaptiveGroupsConfidence'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountCallsUsageAdaptiveGroupsDimensions'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountCallsUsageAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'AccountCallsUsageAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountCallsUsageAdaptiveGroupsConfidence'; fields: { 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountCallsUsageAdaptiveGroupsSumConfidence'; ofType: null; } }; }; }; + 'AccountCallsUsageAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountCallsUsageAdaptiveGroupsDimensions'; fields: { 'appId': { name: 'appId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'sessionId': { name: 'sessionId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'trackId': { name: 'trackId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'trackType': { name: 'trackType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountCallsUsageAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountCallsUsageAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountCallsUsageAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountCallsUsageAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'appId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'appId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'appId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'appId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'appId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'appId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'appId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'appId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'appId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'appId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'trackId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'trackId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackType'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackType_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackType_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackType_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'trackType_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackType_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackType_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackType_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackType_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'trackType_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountCallsUsageAdaptiveGroupsOrderBy': { name: 'AccountCallsUsageAdaptiveGroupsOrderBy'; enumValues: 'appId_ASC' | 'appId_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'sessionId_ASC' | 'sessionId_DESC' | 'sum_egressBytes_ASC' | 'sum_egressBytes_DESC' | 'sum_ingressBytes_ASC' | 'sum_ingressBytes_DESC' | 'trackId_ASC' | 'trackId_DESC' | 'trackType_ASC' | 'trackType_DESC'; }; + 'AccountCallsUsageAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'AccountCallsUsageAdaptiveGroupsSum'; fields: { 'egressBytes': { name: 'egressBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'ingressBytes': { name: 'ingressBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; }; }; + 'AccountCallsUsageAdaptiveGroupsSumConfidence': { kind: 'OBJECT'; name: 'AccountCallsUsageAdaptiveGroupsSumConfidence'; fields: { 'egressBytes': { name: 'egressBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'ingressBytes': { name: 'ingressBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountCdnNetworkAnalyticsAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountCdnNetworkAnalyticsAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountCdnNetworkAnalyticsAdaptiveGroupsAvg'; ofType: null; } }; 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountCdnNetworkAnalyticsAdaptiveGroupsConfidence'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountCdnNetworkAnalyticsAdaptiveGroupsDimensions'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountCdnNetworkAnalyticsAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'AccountCdnNetworkAnalyticsAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'AccountCdnNetworkAnalyticsAdaptiveGroupsAvg'; fields: { 'bitRate': { name: 'bitRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'bitRateDay': { name: 'bitRateDay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'bitRateFifteenMinutes': { name: 'bitRateFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'bitRateFiveMinutes': { name: 'bitRateFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'bitRateHour': { name: 'bitRateHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'bitRateMinute': { name: 'bitRateMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'bitRateTenSeconds': { name: 'bitRateTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRate': { name: 'packetRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRateDay': { name: 'packetRateDay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRateFifteenMinutes': { name: 'packetRateFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRateFiveMinutes': { name: 'packetRateFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRateHour': { name: 'packetRateHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRateMinute': { name: 'packetRateMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRateTenSeconds': { name: 'packetRateTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountCdnNetworkAnalyticsAdaptiveGroupsAvgConfidence': { kind: 'OBJECT'; name: 'AccountCdnNetworkAnalyticsAdaptiveGroupsAvgConfidence'; fields: { 'bitRate': { name: 'bitRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateDay': { name: 'bitRateDay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateFifteenMinutes': { name: 'bitRateFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateFiveMinutes': { name: 'bitRateFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateHour': { name: 'bitRateHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateMinute': { name: 'bitRateMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateTenSeconds': { name: 'bitRateTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRate': { name: 'packetRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateDay': { name: 'packetRateDay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateFifteenMinutes': { name: 'packetRateFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateFiveMinutes': { name: 'packetRateFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateHour': { name: 'packetRateHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateMinute': { name: 'packetRateMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateTenSeconds': { name: 'packetRateTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountCdnNetworkAnalyticsAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountCdnNetworkAnalyticsAdaptiveGroupsConfidence'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountCdnNetworkAnalyticsAdaptiveGroupsAvgConfidence'; ofType: null; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountCdnNetworkAnalyticsAdaptiveGroupsSumConfidence'; ofType: null; } }; }; }; + 'AccountCdnNetworkAnalyticsAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountCdnNetworkAnalyticsAdaptiveGroupsDimensions'; fields: { 'applicationTag': { name: 'applicationTag'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'coloCity': { name: 'coloCity'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'coloCode': { name: 'coloCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'coloCountry': { name: 'coloCountry'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'coloGeohash': { name: 'coloGeohash'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'coloName': { name: 'coloName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeTenSeconds': { name: 'datetimeTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'destinationAsn': { name: 'destinationAsn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'destinationAsnName': { name: 'destinationAsnName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'destinationCountry': { name: 'destinationCountry'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'destinationDeviceTag': { name: 'destinationDeviceTag'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'destinationGeohash': { name: 'destinationGeohash'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'destinationPort': { name: 'destinationPort'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'direction': { name: 'direction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ethertype': { name: 'ethertype'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'greChecksum': { name: 'greChecksum'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'greEthertype': { name: 'greEthertype'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'greHeaderLength': { name: 'greHeaderLength'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'greKey': { name: 'greKey'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'greSequenceNumber': { name: 'greSequenceNumber'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'greVersion': { name: 'greVersion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'icmpChecksum': { name: 'icmpChecksum'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'icmpCode': { name: 'icmpCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'icmpType': { name: 'icmpType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipDestinationAddress': { name: 'ipDestinationAddress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipDestinationSubnet': { name: 'ipDestinationSubnet'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipFragmentOffset': { name: 'ipFragmentOffset'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'ipHeaderLength': { name: 'ipHeaderLength'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'ipMoreFragments': { name: 'ipMoreFragments'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipProtocol': { name: 'ipProtocol'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipProtocolName': { name: 'ipProtocolName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipSourceAddress': { name: 'ipSourceAddress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipSourceSubnet': { name: 'ipSourceSubnet'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipTotalLength': { name: 'ipTotalLength'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'ipTotalLengthBuckets': { name: 'ipTotalLengthBuckets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'ipTtl': { name: 'ipTtl'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipTtlBuckets': { name: 'ipTtlBuckets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipv4Checksum': { name: 'ipv4Checksum'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'ipv4DontFragment': { name: 'ipv4DontFragment'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipv4Dscp': { name: 'ipv4Dscp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipv4Ecn': { name: 'ipv4Ecn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipv4Identification': { name: 'ipv4Identification'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'ipv4Options': { name: 'ipv4Options'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipv6Dscp': { name: 'ipv6Dscp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipv6Ecn': { name: 'ipv6Ecn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipv6ExtensionHeaders': { name: 'ipv6ExtensionHeaders'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipv6FlowLabel': { name: 'ipv6FlowLabel'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'ipv6Identification': { name: 'ipv6Identification'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'leaseTag': { name: 'leaseTag'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'mitigationSystem': { name: 'mitigationSystem'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'outcome': { name: 'outcome'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'popName': { name: 'popName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'prefixTag': { name: 'prefixTag'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'sourceAsn': { name: 'sourceAsn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'sourceAsnName': { name: 'sourceAsnName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sourceCountry': { name: 'sourceCountry'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sourceDeviceTag': { name: 'sourceDeviceTag'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sourceGeohash': { name: 'sourceGeohash'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sourcePort': { name: 'sourcePort'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'tcpAcknowledgementNumber': { name: 'tcpAcknowledgementNumber'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'tcpChecksum': { name: 'tcpChecksum'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'tcpDataOffset': { name: 'tcpDataOffset'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'tcpFlags': { name: 'tcpFlags'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'tcpFlagsString': { name: 'tcpFlagsString'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'tcpMss': { name: 'tcpMss'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'tcpOptions': { name: 'tcpOptions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'tcpSackBlocks': { name: 'tcpSackBlocks'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'tcpSackPermitted': { name: 'tcpSackPermitted'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'tcpSequenceNumber': { name: 'tcpSequenceNumber'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'tcpTimestampEcr': { name: 'tcpTimestampEcr'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'tcpTimestampValue': { name: 'tcpTimestampValue'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'tcpUrgentPointer': { name: 'tcpUrgentPointer'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'tcpWindowScale': { name: 'tcpWindowScale'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'tcpWindowSize': { name: 'tcpWindowSize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'udpChecksum': { name: 'udpChecksum'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'udpPayloadLength': { name: 'udpPayloadLength'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; }; }; + 'AccountCdnNetworkAnalyticsAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountCdnNetworkAnalyticsAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountCdnNetworkAnalyticsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountCdnNetworkAnalyticsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'applicationTag'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationTag_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationTag_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationTag_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'applicationTag_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationTag_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationTag_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationTag_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationTag_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'applicationTag_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCity_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCity_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCode_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCode_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCountry_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCountry_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloGeohash_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloGeohash_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeTenSeconds'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeTenSeconds_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationAsn'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationAsnName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationAsnName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsn_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'destinationAsn_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'destinationAsn_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationAsn_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'destinationAsn_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'destinationAsn_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'destinationAsn_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationCountry'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationCountry_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationCountry_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationDeviceTag'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationDeviceTag_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationDeviceTag_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationDeviceTag_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationDeviceTag_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationDeviceTag_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationDeviceTag_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationDeviceTag_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationDeviceTag_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationDeviceTag_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationGeohash_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationGeohash_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationPort'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationPort_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'direction'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'direction_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'direction_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ethertype'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ethertype_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ethertype_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ethertype_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ethertype_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ethertype_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ethertype_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ethertype_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'greChecksum'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greChecksum_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greChecksum_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greChecksum_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'greChecksum_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greChecksum_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greChecksum_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greChecksum_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'greEthertype'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greEthertype_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greEthertype_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greEthertype_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'greEthertype_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greEthertype_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greEthertype_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greEthertype_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'greHeaderLength'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greHeaderLength_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greHeaderLength_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greHeaderLength_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'greHeaderLength_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greHeaderLength_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greHeaderLength_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greHeaderLength_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'greKey'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greKey_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greKey_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greKey_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'greKey_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greKey_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greKey_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greKey_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'greSequenceNumber'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greSequenceNumber_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greSequenceNumber_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greSequenceNumber_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'greSequenceNumber_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greSequenceNumber_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greSequenceNumber_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greSequenceNumber_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'greVersion'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'greVersion_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'greVersion_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'greVersion_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'greVersion_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'greVersion_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'greVersion_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'greVersion_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'icmpChecksum'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'icmpChecksum_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'icmpChecksum_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'icmpChecksum_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'icmpChecksum_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'icmpChecksum_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'icmpChecksum_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'icmpChecksum_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'icmpCode'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpCode_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpCode_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpCode_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'icmpCode_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpCode_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpCode_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpCode_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'icmpType'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpType_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpType_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpType_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'icmpType_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpType_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpType_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpType_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipDestinationAddress_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipDestinationAddress_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipDestinationSubnet_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipDestinationSubnet_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipFragmentOffset'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipFragmentOffset_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipFragmentOffset_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipFragmentOffset_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipFragmentOffset_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipFragmentOffset_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipFragmentOffset_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipFragmentOffset_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipHeaderLength'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipHeaderLength_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipHeaderLength_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipHeaderLength_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipHeaderLength_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipHeaderLength_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipHeaderLength_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipHeaderLength_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipMoreFragments'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipMoreFragments_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipMoreFragments_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipMoreFragments_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipMoreFragments_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipMoreFragments_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipMoreFragments_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipMoreFragments_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipProtocolName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipProtocolName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipSourceAddress_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipSourceAddress_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipSourceSubnet_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipSourceSubnet_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLength'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLengthBuckets'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLengthBuckets_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLengthBuckets_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLengthBuckets_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipTotalLengthBuckets_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLengthBuckets_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLengthBuckets_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLengthBuckets_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipTotalLength_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLength_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLength_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipTotalLength_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLength_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLength_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLength_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipTtl'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipTtl_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtl_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtl_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipTtl_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtl_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtl_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtl_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv4Checksum'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Checksum_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Checksum_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Checksum_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv4Checksum_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Checksum_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Checksum_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Checksum_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv4DontFragment'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4DontFragment_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4DontFragment_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4DontFragment_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv4DontFragment_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4DontFragment_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4DontFragment_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4DontFragment_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv4Identification'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Identification_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Identification_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Identification_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv4Identification_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Identification_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Identification_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Identification_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv4Options'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4Options_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4Options_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4Options_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv4Options_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4Options_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4Options_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4Options_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4Options_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv4Options_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6FlowLabel'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6FlowLabel_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6FlowLabel_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6FlowLabel_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv6FlowLabel_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6FlowLabel_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6FlowLabel_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6FlowLabel_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv6Identification'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6Identification_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6Identification_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6Identification_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv6Identification_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6Identification_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6Identification_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6Identification_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'leaseTag'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leaseTag_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leaseTag_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leaseTag_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'leaseTag_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leaseTag_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leaseTag_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leaseTag_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leaseTag_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'leaseTag_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationSystem'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationSystem_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationSystem_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationSystem_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'mitigationSystem_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationSystem_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationSystem_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationSystem_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationSystem_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'mitigationSystem_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'outcome_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'outcome_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'popName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'popName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'popName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'popName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'popName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'popName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'popName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'popName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'popName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'popName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'prefixTag_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'prefixTag_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sampleInterval_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceAsn'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceAsnName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceAsnName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsn_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sourceAsn_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sourceAsn_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceAsn_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sourceAsn_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sourceAsn_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sourceAsn_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceCountry'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceCountry_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceCountry_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceDeviceTag'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceDeviceTag_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceDeviceTag_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceDeviceTag_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceDeviceTag_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceDeviceTag_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceDeviceTag_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceDeviceTag_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceDeviceTag_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceDeviceTag_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceGeohash_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceGeohash_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourcePort'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourcePort_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpChecksum'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpChecksum_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpChecksum_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpChecksum_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpChecksum_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpChecksum_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpChecksum_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpChecksum_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpDataOffset'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpDataOffset_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpDataOffset_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpDataOffset_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpDataOffset_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpDataOffset_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpDataOffset_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpDataOffset_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpFlags'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpFlagsString_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpFlagsString_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'tcpMss'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpMss_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpMss_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpMss_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpMss_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpMss_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpMss_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpMss_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpOptions'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpOptions_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpOptions_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpOptions_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpOptions_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpOptions_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpOptions_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpOptions_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpOptions_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpOptions_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpSackBlocks_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpSackBlocks_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'tcpSequenceNumber'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpSequenceNumber_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpSequenceNumber_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpSequenceNumber_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpSequenceNumber_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpSequenceNumber_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpSequenceNumber_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpSequenceNumber_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpTimestampEcr'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampEcr_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampEcr_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampEcr_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpTimestampEcr_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampEcr_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampEcr_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampEcr_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpTimestampValue'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampValue_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampValue_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampValue_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpTimestampValue_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampValue_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampValue_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampValue_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpUrgentPointer'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpUrgentPointer_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpUrgentPointer_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpUrgentPointer_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpUrgentPointer_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpUrgentPointer_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpUrgentPointer_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpUrgentPointer_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpWindowScale'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowScale_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowScale_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowScale_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpWindowScale_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowScale_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowScale_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowScale_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpWindowSize'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowSize_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowSize_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowSize_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpWindowSize_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowSize_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowSize_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowSize_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'udpChecksum'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpChecksum_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpChecksum_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpChecksum_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'udpChecksum_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpChecksum_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpChecksum_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpChecksum_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'udpPayloadLength'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpPayloadLength_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpPayloadLength_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpPayloadLength_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'udpPayloadLength_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpPayloadLength_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpPayloadLength_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpPayloadLength_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }]; }; + 'AccountCdnNetworkAnalyticsAdaptiveGroupsOrderBy': { name: 'AccountCdnNetworkAnalyticsAdaptiveGroupsOrderBy'; enumValues: 'applicationTag_ASC' | 'applicationTag_DESC' | 'avg_bitRateDay_ASC' | 'avg_bitRateDay_DESC' | 'avg_bitRateFifteenMinutes_ASC' | 'avg_bitRateFifteenMinutes_DESC' | 'avg_bitRateFiveMinutes_ASC' | 'avg_bitRateFiveMinutes_DESC' | 'avg_bitRateHour_ASC' | 'avg_bitRateHour_DESC' | 'avg_bitRateMinute_ASC' | 'avg_bitRateMinute_DESC' | 'avg_bitRateTenSeconds_ASC' | 'avg_bitRateTenSeconds_DESC' | 'avg_bitRate_ASC' | 'avg_bitRate_DESC' | 'avg_packetRateDay_ASC' | 'avg_packetRateDay_DESC' | 'avg_packetRateFifteenMinutes_ASC' | 'avg_packetRateFifteenMinutes_DESC' | 'avg_packetRateFiveMinutes_ASC' | 'avg_packetRateFiveMinutes_DESC' | 'avg_packetRateHour_ASC' | 'avg_packetRateHour_DESC' | 'avg_packetRateMinute_ASC' | 'avg_packetRateMinute_DESC' | 'avg_packetRateTenSeconds_ASC' | 'avg_packetRateTenSeconds_DESC' | 'avg_packetRate_ASC' | 'avg_packetRate_DESC' | 'coloCity_ASC' | 'coloCity_DESC' | 'coloCode_ASC' | 'coloCode_DESC' | 'coloCountry_ASC' | 'coloCountry_DESC' | 'coloGeohash_ASC' | 'coloGeohash_DESC' | 'coloName_ASC' | 'coloName_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetimeTenSeconds_ASC' | 'datetimeTenSeconds_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'destinationAsnName_ASC' | 'destinationAsnName_DESC' | 'destinationAsn_ASC' | 'destinationAsn_DESC' | 'destinationCountry_ASC' | 'destinationCountry_DESC' | 'destinationDeviceTag_ASC' | 'destinationDeviceTag_DESC' | 'destinationGeohash_ASC' | 'destinationGeohash_DESC' | 'destinationPort_ASC' | 'destinationPort_DESC' | 'destinationService_ASC' | 'destinationService_DESC' | 'direction_ASC' | 'direction_DESC' | 'ethertype_ASC' | 'ethertype_DESC' | 'greChecksum_ASC' | 'greChecksum_DESC' | 'greEthertype_ASC' | 'greEthertype_DESC' | 'greHeaderLength_ASC' | 'greHeaderLength_DESC' | 'greKey_ASC' | 'greKey_DESC' | 'greSequenceNumber_ASC' | 'greSequenceNumber_DESC' | 'greVersion_ASC' | 'greVersion_DESC' | 'icmpChecksum_ASC' | 'icmpChecksum_DESC' | 'icmpCode_ASC' | 'icmpCode_DESC' | 'icmpType_ASC' | 'icmpType_DESC' | 'ipDestinationAddress_ASC' | 'ipDestinationAddress_DESC' | 'ipDestinationSubnet_ASC' | 'ipDestinationSubnet_DESC' | 'ipFragmentOffset_ASC' | 'ipFragmentOffset_DESC' | 'ipHeaderLength_ASC' | 'ipHeaderLength_DESC' | 'ipMoreFragments_ASC' | 'ipMoreFragments_DESC' | 'ipProtocolName_ASC' | 'ipProtocolName_DESC' | 'ipProtocol_ASC' | 'ipProtocol_DESC' | 'ipSourceAddress_ASC' | 'ipSourceAddress_DESC' | 'ipSourceSubnet_ASC' | 'ipSourceSubnet_DESC' | 'ipTotalLengthBuckets_ASC' | 'ipTotalLengthBuckets_DESC' | 'ipTotalLength_ASC' | 'ipTotalLength_DESC' | 'ipTtlBuckets_ASC' | 'ipTtlBuckets_DESC' | 'ipTtl_ASC' | 'ipTtl_DESC' | 'ipv4Checksum_ASC' | 'ipv4Checksum_DESC' | 'ipv4DontFragment_ASC' | 'ipv4DontFragment_DESC' | 'ipv4Dscp_ASC' | 'ipv4Dscp_DESC' | 'ipv4Ecn_ASC' | 'ipv4Ecn_DESC' | 'ipv4Identification_ASC' | 'ipv4Identification_DESC' | 'ipv4Options_ASC' | 'ipv4Options_DESC' | 'ipv6Dscp_ASC' | 'ipv6Dscp_DESC' | 'ipv6Ecn_ASC' | 'ipv6Ecn_DESC' | 'ipv6ExtensionHeaders_ASC' | 'ipv6ExtensionHeaders_DESC' | 'ipv6FlowLabel_ASC' | 'ipv6FlowLabel_DESC' | 'ipv6Identification_ASC' | 'ipv6Identification_DESC' | 'leaseTag_ASC' | 'leaseTag_DESC' | 'mitigationSystem_ASC' | 'mitigationSystem_DESC' | 'outcome_ASC' | 'outcome_DESC' | 'popName_ASC' | 'popName_DESC' | 'prefixTag_ASC' | 'prefixTag_DESC' | 'sampleInterval_ASC' | 'sampleInterval_DESC' | 'sourceAsnName_ASC' | 'sourceAsnName_DESC' | 'sourceAsn_ASC' | 'sourceAsn_DESC' | 'sourceCountry_ASC' | 'sourceCountry_DESC' | 'sourceDeviceTag_ASC' | 'sourceDeviceTag_DESC' | 'sourceGeohash_ASC' | 'sourceGeohash_DESC' | 'sourcePort_ASC' | 'sourcePort_DESC' | 'sourceService_ASC' | 'sourceService_DESC' | 'sum_bits_ASC' | 'sum_bits_DESC' | 'sum_packets_ASC' | 'sum_packets_DESC' | 'system_ASC' | 'system_DESC' | 'tcpAcknowledgementNumber_ASC' | 'tcpAcknowledgementNumber_DESC' | 'tcpChecksum_ASC' | 'tcpChecksum_DESC' | 'tcpDataOffset_ASC' | 'tcpDataOffset_DESC' | 'tcpFlagsString_ASC' | 'tcpFlagsString_DESC' | 'tcpFlags_ASC' | 'tcpFlags_DESC' | 'tcpMss_ASC' | 'tcpMss_DESC' | 'tcpOptions_ASC' | 'tcpOptions_DESC' | 'tcpSackBlocks_ASC' | 'tcpSackBlocks_DESC' | 'tcpSackPermitted_ASC' | 'tcpSackPermitted_DESC' | 'tcpSequenceNumber_ASC' | 'tcpSequenceNumber_DESC' | 'tcpTimestampEcr_ASC' | 'tcpTimestampEcr_DESC' | 'tcpTimestampValue_ASC' | 'tcpTimestampValue_DESC' | 'tcpUrgentPointer_ASC' | 'tcpUrgentPointer_DESC' | 'tcpWindowScale_ASC' | 'tcpWindowScale_DESC' | 'tcpWindowSize_ASC' | 'tcpWindowSize_DESC' | 'udpChecksum_ASC' | 'udpChecksum_DESC' | 'udpPayloadLength_ASC' | 'udpPayloadLength_DESC' | 'verdict_ASC' | 'verdict_DESC'; }; + 'AccountCdnNetworkAnalyticsAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'AccountCdnNetworkAnalyticsAdaptiveGroupsSum'; fields: { 'bits': { name: 'bits'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packets': { name: 'packets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountCdnNetworkAnalyticsAdaptiveGroupsSumConfidence': { kind: 'OBJECT'; name: 'AccountCdnNetworkAnalyticsAdaptiveGroupsSumConfidence'; fields: { 'bits': { name: 'bits'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packets': { name: 'packets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountCloudchamberMetricsAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountCloudchamberMetricsAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountCloudchamberMetricsAdaptiveGroupsAvg'; ofType: null; } }; 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountCloudchamberMetricsAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountCloudchamberMetricsAdaptiveGroupsDimensions'; ofType: null; } }; 'max': { name: 'max'; type: { kind: 'OBJECT'; name: 'AccountCloudchamberMetricsAdaptiveGroupsMax'; ofType: null; } }; 'quantiles': { name: 'quantiles'; type: { kind: 'OBJECT'; name: 'AccountCloudchamberMetricsAdaptiveGroupsQuantiles'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountCloudchamberMetricsAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'AccountCloudchamberMetricsAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'AccountCloudchamberMetricsAdaptiveGroupsAvg'; fields: { 'cpuLoad': { name: 'cpuLoad'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'gpuMemory': { name: 'gpuMemory'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'memory': { name: 'memory'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'rxBandwidth': { name: 'rxBandwidth'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'rxBandwidthBps': { name: 'rxBandwidthBps'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'txBandwidth': { name: 'txBandwidth'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'txBandwidthBps': { name: 'txBandwidthBps'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountCloudchamberMetricsAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountCloudchamberMetricsAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountCloudchamberMetricsAdaptiveGroupsSumConfidence'; ofType: null; } }; }; }; + 'AccountCloudchamberMetricsAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountCloudchamberMetricsAdaptiveGroupsDimensions'; fields: { 'applicationId': { name: 'applicationId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeSixHours': { name: 'datetimeSixHours'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'deploymentId': { name: 'deploymentId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'durableObjectId': { name: 'durableObjectId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'location': { name: 'location'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'placementId': { name: 'placementId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'procType': { name: 'procType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'region': { name: 'region'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountCloudchamberMetricsAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountCloudchamberMetricsAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountCloudchamberMetricsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountCloudchamberMetricsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'applicationId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'applicationId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'applicationId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'deploymentId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deploymentId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deploymentId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deploymentId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'deploymentId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deploymentId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deploymentId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deploymentId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deploymentId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'deploymentId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'durableObjectId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'durableObjectId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'durableObjectId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'durableObjectId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'durableObjectId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'durableObjectId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'durableObjectId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'durableObjectId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'durableObjectId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'durableObjectId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'location'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'location_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'location_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'location_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'location_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'location_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'location_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'location_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'location_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'location_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'placementId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'placementId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'placementId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'placementId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'placementId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'placementId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'placementId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'placementId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'placementId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'placementId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'procType'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'procType_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'procType_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'procType_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'procType_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'procType_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'procType_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'procType_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'procType_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'procType_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'region'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'region_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'region_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'region_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'region_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'region_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'region_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'region_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'region_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'region_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountCloudchamberMetricsAdaptiveGroupsMax': { kind: 'OBJECT'; name: 'AccountCloudchamberMetricsAdaptiveGroupsMax'; fields: { 'cpuLoad': { name: 'cpuLoad'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'diskAvailable': { name: 'diskAvailable'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'diskUsage': { name: 'diskUsage'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'diskUsagePercentage': { name: 'diskUsagePercentage'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'gpuMemory': { name: 'gpuMemory'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'memory': { name: 'memory'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'rxBandwidth': { name: 'rxBandwidth'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'rxBandwidthBps': { name: 'rxBandwidthBps'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'rxBytes': { name: 'rxBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'txBandwidth': { name: 'txBandwidth'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'txBandwidthBps': { name: 'txBandwidthBps'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'txBytes': { name: 'txBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountCloudchamberMetricsAdaptiveGroupsOrderBy': { name: 'AccountCloudchamberMetricsAdaptiveGroupsOrderBy'; enumValues: 'applicationId_ASC' | 'applicationId_DESC' | 'avg_cpuLoad_ASC' | 'avg_cpuLoad_DESC' | 'avg_gpuMemory_ASC' | 'avg_gpuMemory_DESC' | 'avg_memory_ASC' | 'avg_memory_DESC' | 'avg_rxBandwidthBps_ASC' | 'avg_rxBandwidthBps_DESC' | 'avg_rxBandwidth_ASC' | 'avg_rxBandwidth_DESC' | 'avg_txBandwidthBps_ASC' | 'avg_txBandwidthBps_DESC' | 'avg_txBandwidth_ASC' | 'avg_txBandwidth_DESC' | 'count_ASC' | 'count_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetimeSixHours_ASC' | 'datetimeSixHours_DESC' | 'deploymentId_ASC' | 'deploymentId_DESC' | 'durableObjectId_ASC' | 'durableObjectId_DESC' | 'location_ASC' | 'location_DESC' | 'max_cpuLoad_ASC' | 'max_cpuLoad_DESC' | 'max_diskAvailable_ASC' | 'max_diskAvailable_DESC' | 'max_diskUsagePercentage_ASC' | 'max_diskUsagePercentage_DESC' | 'max_diskUsage_ASC' | 'max_diskUsage_DESC' | 'max_gpuMemory_ASC' | 'max_gpuMemory_DESC' | 'max_memory_ASC' | 'max_memory_DESC' | 'max_rxBandwidthBps_ASC' | 'max_rxBandwidthBps_DESC' | 'max_rxBandwidth_ASC' | 'max_rxBandwidth_DESC' | 'max_rxBytes_ASC' | 'max_rxBytes_DESC' | 'max_txBandwidthBps_ASC' | 'max_txBandwidthBps_DESC' | 'max_txBandwidth_ASC' | 'max_txBandwidth_DESC' | 'max_txBytes_ASC' | 'max_txBytes_DESC' | 'placementId_ASC' | 'placementId_DESC' | 'procType_ASC' | 'procType_DESC' | 'quantiles_cpuLoadP50_ASC' | 'quantiles_cpuLoadP50_DESC' | 'quantiles_cpuLoadP90_ASC' | 'quantiles_cpuLoadP90_DESC' | 'quantiles_cpuLoadP99_ASC' | 'quantiles_cpuLoadP99_DESC' | 'quantiles_diskUsageP50_ASC' | 'quantiles_diskUsageP50_DESC' | 'quantiles_diskUsageP90_ASC' | 'quantiles_diskUsageP90_DESC' | 'quantiles_diskUsageP99_ASC' | 'quantiles_diskUsageP99_DESC' | 'quantiles_diskUsagePercentageP50_ASC' | 'quantiles_diskUsagePercentageP50_DESC' | 'quantiles_diskUsagePercentageP90_ASC' | 'quantiles_diskUsagePercentageP90_DESC' | 'quantiles_diskUsagePercentageP99_ASC' | 'quantiles_diskUsagePercentageP99_DESC' | 'quantiles_gpuMemoryP50_ASC' | 'quantiles_gpuMemoryP50_DESC' | 'quantiles_gpuMemoryP90_ASC' | 'quantiles_gpuMemoryP90_DESC' | 'quantiles_gpuMemoryP99_ASC' | 'quantiles_gpuMemoryP99_DESC' | 'quantiles_memoryP50_ASC' | 'quantiles_memoryP50_DESC' | 'quantiles_memoryP90_ASC' | 'quantiles_memoryP90_DESC' | 'quantiles_memoryP99_ASC' | 'quantiles_memoryP99_DESC' | 'quantiles_rxBandwidthBpsP50_ASC' | 'quantiles_rxBandwidthBpsP50_DESC' | 'quantiles_rxBandwidthBpsP90_ASC' | 'quantiles_rxBandwidthBpsP90_DESC' | 'quantiles_rxBandwidthBpsP99_ASC' | 'quantiles_rxBandwidthBpsP99_DESC' | 'quantiles_rxBandwidthP50_ASC' | 'quantiles_rxBandwidthP50_DESC' | 'quantiles_rxBandwidthP90_ASC' | 'quantiles_rxBandwidthP90_DESC' | 'quantiles_rxBandwidthP99_ASC' | 'quantiles_rxBandwidthP99_DESC' | 'quantiles_txBandwidthBpsP50_ASC' | 'quantiles_txBandwidthBpsP50_DESC' | 'quantiles_txBandwidthBpsP90_ASC' | 'quantiles_txBandwidthBpsP90_DESC' | 'quantiles_txBandwidthBpsP99_ASC' | 'quantiles_txBandwidthBpsP99_DESC' | 'quantiles_txBandwidthP50_ASC' | 'quantiles_txBandwidthP50_DESC' | 'quantiles_txBandwidthP90_ASC' | 'quantiles_txBandwidthP90_DESC' | 'quantiles_txBandwidthP99_ASC' | 'quantiles_txBandwidthP99_DESC' | 'region_ASC' | 'region_DESC' | 'sum_rxBytes_ASC' | 'sum_rxBytes_DESC' | 'sum_txBytes_ASC' | 'sum_txBytes_DESC'; }; + 'AccountCloudchamberMetricsAdaptiveGroupsQuantiles': { kind: 'OBJECT'; name: 'AccountCloudchamberMetricsAdaptiveGroupsQuantiles'; fields: { 'cpuLoadP50': { name: 'cpuLoadP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'cpuLoadP90': { name: 'cpuLoadP90'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'cpuLoadP99': { name: 'cpuLoadP99'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'diskUsageP50': { name: 'diskUsageP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'diskUsageP90': { name: 'diskUsageP90'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'diskUsageP99': { name: 'diskUsageP99'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'diskUsagePercentageP50': { name: 'diskUsagePercentageP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'diskUsagePercentageP90': { name: 'diskUsagePercentageP90'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'diskUsagePercentageP99': { name: 'diskUsagePercentageP99'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'gpuMemoryP50': { name: 'gpuMemoryP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'gpuMemoryP90': { name: 'gpuMemoryP90'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'gpuMemoryP99': { name: 'gpuMemoryP99'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'memoryP50': { name: 'memoryP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'memoryP90': { name: 'memoryP90'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'memoryP99': { name: 'memoryP99'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'rxBandwidthBpsP50': { name: 'rxBandwidthBpsP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'rxBandwidthBpsP90': { name: 'rxBandwidthBpsP90'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'rxBandwidthBpsP99': { name: 'rxBandwidthBpsP99'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'rxBandwidthP50': { name: 'rxBandwidthP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'rxBandwidthP90': { name: 'rxBandwidthP90'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'rxBandwidthP99': { name: 'rxBandwidthP99'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'txBandwidthBpsP50': { name: 'txBandwidthBpsP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'txBandwidthBpsP90': { name: 'txBandwidthBpsP90'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'txBandwidthBpsP99': { name: 'txBandwidthBpsP99'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'txBandwidthP50': { name: 'txBandwidthP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'txBandwidthP90': { name: 'txBandwidthP90'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'txBandwidthP99': { name: 'txBandwidthP99'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountCloudchamberMetricsAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'AccountCloudchamberMetricsAdaptiveGroupsSum'; fields: { 'rxBytes': { name: 'rxBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'txBytes': { name: 'txBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountCloudchamberMetricsAdaptiveGroupsSumConfidence': { kind: 'OBJECT'; name: 'AccountCloudchamberMetricsAdaptiveGroupsSumConfidence'; fields: { 'rxBytes': { name: 'rxBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'txBytes': { name: 'txBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountCloudflareTunnelsAnalyticsAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountCloudflareTunnelsAnalyticsAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountCloudflareTunnelsAnalyticsAdaptiveGroupsAvg'; ofType: null; } }; 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountCloudflareTunnelsAnalyticsAdaptiveGroupsConfidence'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountCloudflareTunnelsAnalyticsAdaptiveGroupsDimensions'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountCloudflareTunnelsAnalyticsAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'AccountCloudflareTunnelsAnalyticsAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'AccountCloudflareTunnelsAnalyticsAdaptiveGroupsAvg'; fields: { 'bitRate': { name: 'bitRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'bitRateDay': { name: 'bitRateDay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'bitRateFifteenMinutes': { name: 'bitRateFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'bitRateFiveMinutes': { name: 'bitRateFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'bitRateHour': { name: 'bitRateHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'bitRateMinute': { name: 'bitRateMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'bitRateTenSeconds': { name: 'bitRateTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'egressBitRate': { name: 'egressBitRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'egressBitRateDay': { name: 'egressBitRateDay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'egressBitRateFifteenMinutes': { name: 'egressBitRateFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'egressBitRateFiveMinutes': { name: 'egressBitRateFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'egressBitRateHour': { name: 'egressBitRateHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'egressBitRateMinute': { name: 'egressBitRateMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'egressBitRateTenSeconds': { name: 'egressBitRateTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountCloudflareTunnelsAnalyticsAdaptiveGroupsAvgConfidence': { kind: 'OBJECT'; name: 'AccountCloudflareTunnelsAnalyticsAdaptiveGroupsAvgConfidence'; fields: { 'bitRate': { name: 'bitRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateDay': { name: 'bitRateDay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateFifteenMinutes': { name: 'bitRateFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateFiveMinutes': { name: 'bitRateFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateHour': { name: 'bitRateHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateMinute': { name: 'bitRateMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateTenSeconds': { name: 'bitRateTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'egressBitRate': { name: 'egressBitRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'egressBitRateDay': { name: 'egressBitRateDay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'egressBitRateFifteenMinutes': { name: 'egressBitRateFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'egressBitRateFiveMinutes': { name: 'egressBitRateFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'egressBitRateHour': { name: 'egressBitRateHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'egressBitRateMinute': { name: 'egressBitRateMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'egressBitRateTenSeconds': { name: 'egressBitRateTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountCloudflareTunnelsAnalyticsAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountCloudflareTunnelsAnalyticsAdaptiveGroupsConfidence'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountCloudflareTunnelsAnalyticsAdaptiveGroupsAvgConfidence'; ofType: null; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountCloudflareTunnelsAnalyticsAdaptiveGroupsSumConfidence'; ofType: null; } }; }; }; + 'AccountCloudflareTunnelsAnalyticsAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountCloudflareTunnelsAnalyticsAdaptiveGroupsDimensions'; fields: { 'connectionDuration': { name: 'connectionDuration'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeTenSeconds': { name: 'datetimeTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'destinationCountry': { name: 'destinationCountry'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'destinationIP': { name: 'destinationIP'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'destinationPort': { name: 'destinationPort'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'deviceID': { name: 'deviceID'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'deviceName': { name: 'deviceName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'onRamp': { name: 'onRamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'protocol': { name: 'protocol'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sourceCountry': { name: 'sourceCountry'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sourceIP': { name: 'sourceIP'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sourcePort': { name: 'sourcePort'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'tcpHandshakeDuration': { name: 'tcpHandshakeDuration'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountCloudflareTunnelsAnalyticsAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountCloudflareTunnelsAnalyticsAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountCloudflareTunnelsAnalyticsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountCloudflareTunnelsAnalyticsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'connectionDuration'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'connectionDuration_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'connectionDuration_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'connectionDuration_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'connectionDuration_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'connectionDuration_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'connectionDuration_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'connectionDuration_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeTenSeconds'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeTenSeconds_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationCountry'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationCountry_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationCountry_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIP'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIP_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIP_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIP_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationIP_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIP_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIP_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIP_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIP_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationIP_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationPort'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationPort_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceID'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceID_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceID_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceID_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceID_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceID_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceID_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceID_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceID_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceID_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'onRamp'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'onRamp_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'onRamp_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'onRamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'onRamp_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'onRamp_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'onRamp_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'onRamp_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'onRamp_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'onRamp_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocol'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocol_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocol_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocol_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'protocol_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocol_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocol_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocol_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocol_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'protocol_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceCountry_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceCountry_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIP'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIP_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIP_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIP_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceIP_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIP_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIP_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIP_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIP_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceIP_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourcePort'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourcePort_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpHandshakeDuration'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'tcpHandshakeDuration_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'tcpHandshakeDuration_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'tcpHandshakeDuration_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpHandshakeDuration_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'tcpHandshakeDuration_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'tcpHandshakeDuration_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'tcpHandshakeDuration_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }]; }; + 'AccountCloudflareTunnelsAnalyticsAdaptiveGroupsOrderBy': { name: 'AccountCloudflareTunnelsAnalyticsAdaptiveGroupsOrderBy'; enumValues: 'avg_bitRateDay_ASC' | 'avg_bitRateDay_DESC' | 'avg_bitRateFifteenMinutes_ASC' | 'avg_bitRateFifteenMinutes_DESC' | 'avg_bitRateFiveMinutes_ASC' | 'avg_bitRateFiveMinutes_DESC' | 'avg_bitRateHour_ASC' | 'avg_bitRateHour_DESC' | 'avg_bitRateMinute_ASC' | 'avg_bitRateMinute_DESC' | 'avg_bitRateTenSeconds_ASC' | 'avg_bitRateTenSeconds_DESC' | 'avg_bitRate_ASC' | 'avg_bitRate_DESC' | 'avg_egressBitRateDay_ASC' | 'avg_egressBitRateDay_DESC' | 'avg_egressBitRateFifteenMinutes_ASC' | 'avg_egressBitRateFifteenMinutes_DESC' | 'avg_egressBitRateFiveMinutes_ASC' | 'avg_egressBitRateFiveMinutes_DESC' | 'avg_egressBitRateHour_ASC' | 'avg_egressBitRateHour_DESC' | 'avg_egressBitRateMinute_ASC' | 'avg_egressBitRateMinute_DESC' | 'avg_egressBitRateTenSeconds_ASC' | 'avg_egressBitRateTenSeconds_DESC' | 'avg_egressBitRate_ASC' | 'avg_egressBitRate_DESC' | 'avg_sampleInterval_ASC' | 'avg_sampleInterval_DESC' | 'connectionDuration_ASC' | 'connectionDuration_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetimeTenSeconds_ASC' | 'datetimeTenSeconds_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'destinationCountry_ASC' | 'destinationCountry_DESC' | 'destinationIP_ASC' | 'destinationIP_DESC' | 'destinationPort_ASC' | 'destinationPort_DESC' | 'deviceID_ASC' | 'deviceID_DESC' | 'deviceName_ASC' | 'deviceName_DESC' | 'offRamp_ASC' | 'offRamp_DESC' | 'onRamp_ASC' | 'onRamp_DESC' | 'protocol_ASC' | 'protocol_DESC' | 'sourceCountry_ASC' | 'sourceCountry_DESC' | 'sourceIP_ASC' | 'sourceIP_DESC' | 'sourcePort_ASC' | 'sourcePort_DESC' | 'sum_bits_ASC' | 'sum_bits_DESC' | 'sum_egressBits_ASC' | 'sum_egressBits_DESC' | 'tcpHandshakeDuration_ASC' | 'tcpHandshakeDuration_DESC'; }; + 'AccountCloudflareTunnelsAnalyticsAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'AccountCloudflareTunnelsAnalyticsAdaptiveGroupsSum'; fields: { 'bits': { name: 'bits'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'egressBits': { name: 'egressBits'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountCloudflareTunnelsAnalyticsAdaptiveGroupsSumConfidence': { kind: 'OBJECT'; name: 'AccountCloudflareTunnelsAnalyticsAdaptiveGroupsSumConfidence'; fields: { 'bits': { name: 'bits'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'egressBits': { name: 'egressBits'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountContainersMetricsAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountContainersMetricsAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountContainersMetricsAdaptiveGroupsAvg'; ofType: null; } }; 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountContainersMetricsAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountContainersMetricsAdaptiveGroupsDimensions'; ofType: null; } }; 'max': { name: 'max'; type: { kind: 'OBJECT'; name: 'AccountContainersMetricsAdaptiveGroupsMax'; ofType: null; } }; 'quantiles': { name: 'quantiles'; type: { kind: 'OBJECT'; name: 'AccountContainersMetricsAdaptiveGroupsQuantiles'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountContainersMetricsAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'AccountContainersMetricsAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'AccountContainersMetricsAdaptiveGroupsAvg'; fields: { 'cpuLoad': { name: 'cpuLoad'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'gpuMemory': { name: 'gpuMemory'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'memory': { name: 'memory'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'rxBandwidth': { name: 'rxBandwidth'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'rxBandwidthBps': { name: 'rxBandwidthBps'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'txBandwidth': { name: 'txBandwidth'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'txBandwidthBps': { name: 'txBandwidthBps'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountContainersMetricsAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountContainersMetricsAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountContainersMetricsAdaptiveGroupsSumConfidence'; ofType: null; } }; }; }; + 'AccountContainersMetricsAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountContainersMetricsAdaptiveGroupsDimensions'; fields: { 'applicationId': { name: 'applicationId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeSixHours': { name: 'datetimeSixHours'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'deploymentId': { name: 'deploymentId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'durableObjectId': { name: 'durableObjectId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'location': { name: 'location'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'placementId': { name: 'placementId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'procType': { name: 'procType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'region': { name: 'region'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountContainersMetricsAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountContainersMetricsAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountContainersMetricsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountContainersMetricsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'applicationId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'applicationId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'applicationId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'deploymentId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deploymentId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deploymentId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deploymentId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'deploymentId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deploymentId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deploymentId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deploymentId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deploymentId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'deploymentId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'durableObjectId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'durableObjectId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'durableObjectId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'durableObjectId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'durableObjectId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'durableObjectId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'durableObjectId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'durableObjectId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'durableObjectId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'durableObjectId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'location'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'location_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'location_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'location_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'location_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'location_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'location_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'location_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'location_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'location_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'placementId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'placementId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'placementId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'placementId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'placementId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'placementId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'placementId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'placementId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'placementId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'placementId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'procType'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'procType_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'procType_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'procType_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'procType_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'procType_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'procType_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'procType_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'procType_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'procType_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'region'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'region_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'region_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'region_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'region_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'region_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'region_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'region_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'region_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'region_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountContainersMetricsAdaptiveGroupsMax': { kind: 'OBJECT'; name: 'AccountContainersMetricsAdaptiveGroupsMax'; fields: { 'cpuLoad': { name: 'cpuLoad'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'diskAvailable': { name: 'diskAvailable'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'diskUsage': { name: 'diskUsage'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'diskUsagePercentage': { name: 'diskUsagePercentage'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'gpuMemory': { name: 'gpuMemory'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'memory': { name: 'memory'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'rxBandwidth': { name: 'rxBandwidth'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'rxBandwidthBps': { name: 'rxBandwidthBps'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'rxBytes': { name: 'rxBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'txBandwidth': { name: 'txBandwidth'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'txBandwidthBps': { name: 'txBandwidthBps'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'txBytes': { name: 'txBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountContainersMetricsAdaptiveGroupsOrderBy': { name: 'AccountContainersMetricsAdaptiveGroupsOrderBy'; enumValues: 'applicationId_ASC' | 'applicationId_DESC' | 'avg_cpuLoad_ASC' | 'avg_cpuLoad_DESC' | 'avg_gpuMemory_ASC' | 'avg_gpuMemory_DESC' | 'avg_memory_ASC' | 'avg_memory_DESC' | 'avg_rxBandwidthBps_ASC' | 'avg_rxBandwidthBps_DESC' | 'avg_rxBandwidth_ASC' | 'avg_rxBandwidth_DESC' | 'avg_txBandwidthBps_ASC' | 'avg_txBandwidthBps_DESC' | 'avg_txBandwidth_ASC' | 'avg_txBandwidth_DESC' | 'count_ASC' | 'count_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetimeSixHours_ASC' | 'datetimeSixHours_DESC' | 'deploymentId_ASC' | 'deploymentId_DESC' | 'durableObjectId_ASC' | 'durableObjectId_DESC' | 'location_ASC' | 'location_DESC' | 'max_cpuLoad_ASC' | 'max_cpuLoad_DESC' | 'max_diskAvailable_ASC' | 'max_diskAvailable_DESC' | 'max_diskUsagePercentage_ASC' | 'max_diskUsagePercentage_DESC' | 'max_diskUsage_ASC' | 'max_diskUsage_DESC' | 'max_gpuMemory_ASC' | 'max_gpuMemory_DESC' | 'max_memory_ASC' | 'max_memory_DESC' | 'max_rxBandwidthBps_ASC' | 'max_rxBandwidthBps_DESC' | 'max_rxBandwidth_ASC' | 'max_rxBandwidth_DESC' | 'max_rxBytes_ASC' | 'max_rxBytes_DESC' | 'max_txBandwidthBps_ASC' | 'max_txBandwidthBps_DESC' | 'max_txBandwidth_ASC' | 'max_txBandwidth_DESC' | 'max_txBytes_ASC' | 'max_txBytes_DESC' | 'placementId_ASC' | 'placementId_DESC' | 'procType_ASC' | 'procType_DESC' | 'quantiles_cpuLoadP50_ASC' | 'quantiles_cpuLoadP50_DESC' | 'quantiles_cpuLoadP90_ASC' | 'quantiles_cpuLoadP90_DESC' | 'quantiles_cpuLoadP99_ASC' | 'quantiles_cpuLoadP99_DESC' | 'quantiles_diskUsageP50_ASC' | 'quantiles_diskUsageP50_DESC' | 'quantiles_diskUsageP90_ASC' | 'quantiles_diskUsageP90_DESC' | 'quantiles_diskUsageP99_ASC' | 'quantiles_diskUsageP99_DESC' | 'quantiles_diskUsagePercentageP50_ASC' | 'quantiles_diskUsagePercentageP50_DESC' | 'quantiles_diskUsagePercentageP90_ASC' | 'quantiles_diskUsagePercentageP90_DESC' | 'quantiles_diskUsagePercentageP99_ASC' | 'quantiles_diskUsagePercentageP99_DESC' | 'quantiles_gpuMemoryP50_ASC' | 'quantiles_gpuMemoryP50_DESC' | 'quantiles_gpuMemoryP90_ASC' | 'quantiles_gpuMemoryP90_DESC' | 'quantiles_gpuMemoryP99_ASC' | 'quantiles_gpuMemoryP99_DESC' | 'quantiles_memoryP50_ASC' | 'quantiles_memoryP50_DESC' | 'quantiles_memoryP90_ASC' | 'quantiles_memoryP90_DESC' | 'quantiles_memoryP99_ASC' | 'quantiles_memoryP99_DESC' | 'quantiles_rxBandwidthBpsP50_ASC' | 'quantiles_rxBandwidthBpsP50_DESC' | 'quantiles_rxBandwidthBpsP90_ASC' | 'quantiles_rxBandwidthBpsP90_DESC' | 'quantiles_rxBandwidthBpsP99_ASC' | 'quantiles_rxBandwidthBpsP99_DESC' | 'quantiles_rxBandwidthP50_ASC' | 'quantiles_rxBandwidthP50_DESC' | 'quantiles_rxBandwidthP90_ASC' | 'quantiles_rxBandwidthP90_DESC' | 'quantiles_rxBandwidthP99_ASC' | 'quantiles_rxBandwidthP99_DESC' | 'quantiles_txBandwidthBpsP50_ASC' | 'quantiles_txBandwidthBpsP50_DESC' | 'quantiles_txBandwidthBpsP90_ASC' | 'quantiles_txBandwidthBpsP90_DESC' | 'quantiles_txBandwidthBpsP99_ASC' | 'quantiles_txBandwidthBpsP99_DESC' | 'quantiles_txBandwidthP50_ASC' | 'quantiles_txBandwidthP50_DESC' | 'quantiles_txBandwidthP90_ASC' | 'quantiles_txBandwidthP90_DESC' | 'quantiles_txBandwidthP99_ASC' | 'quantiles_txBandwidthP99_DESC' | 'region_ASC' | 'region_DESC' | 'sum_rxBytes_ASC' | 'sum_rxBytes_DESC' | 'sum_txBytes_ASC' | 'sum_txBytes_DESC'; }; + 'AccountContainersMetricsAdaptiveGroupsQuantiles': { kind: 'OBJECT'; name: 'AccountContainersMetricsAdaptiveGroupsQuantiles'; fields: { 'cpuLoadP50': { name: 'cpuLoadP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'cpuLoadP90': { name: 'cpuLoadP90'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'cpuLoadP99': { name: 'cpuLoadP99'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'diskUsageP50': { name: 'diskUsageP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'diskUsageP90': { name: 'diskUsageP90'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'diskUsageP99': { name: 'diskUsageP99'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'diskUsagePercentageP50': { name: 'diskUsagePercentageP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'diskUsagePercentageP90': { name: 'diskUsagePercentageP90'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'diskUsagePercentageP99': { name: 'diskUsagePercentageP99'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'gpuMemoryP50': { name: 'gpuMemoryP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'gpuMemoryP90': { name: 'gpuMemoryP90'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'gpuMemoryP99': { name: 'gpuMemoryP99'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'memoryP50': { name: 'memoryP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'memoryP90': { name: 'memoryP90'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'memoryP99': { name: 'memoryP99'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'rxBandwidthBpsP50': { name: 'rxBandwidthBpsP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'rxBandwidthBpsP90': { name: 'rxBandwidthBpsP90'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'rxBandwidthBpsP99': { name: 'rxBandwidthBpsP99'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'rxBandwidthP50': { name: 'rxBandwidthP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'rxBandwidthP90': { name: 'rxBandwidthP90'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'rxBandwidthP99': { name: 'rxBandwidthP99'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'txBandwidthBpsP50': { name: 'txBandwidthBpsP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'txBandwidthBpsP90': { name: 'txBandwidthBpsP90'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'txBandwidthBpsP99': { name: 'txBandwidthBpsP99'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'txBandwidthP50': { name: 'txBandwidthP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'txBandwidthP90': { name: 'txBandwidthP90'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'txBandwidthP99': { name: 'txBandwidthP99'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountContainersMetricsAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'AccountContainersMetricsAdaptiveGroupsSum'; fields: { 'rxBytes': { name: 'rxBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'txBytes': { name: 'txBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountContainersMetricsAdaptiveGroupsSumConfidence': { kind: 'OBJECT'; name: 'AccountContainersMetricsAdaptiveGroupsSumConfidence'; fields: { 'rxBytes': { name: 'rxBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'txBytes': { name: 'txBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountD1AnalyticsAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountD1AnalyticsAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountD1AnalyticsAdaptiveGroupsAvg'; ofType: null; } }; 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountD1AnalyticsAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountD1AnalyticsAdaptiveGroupsDimensions'; ofType: null; } }; 'quantiles': { name: 'quantiles'; type: { kind: 'OBJECT'; name: 'AccountD1AnalyticsAdaptiveGroupsQuantiles'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountD1AnalyticsAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'AccountD1AnalyticsAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'AccountD1AnalyticsAdaptiveGroupsAvg'; fields: { 'queryBatchResponseBytes': { name: 'queryBatchResponseBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'queryBatchTimeMs': { name: 'queryBatchTimeMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountD1AnalyticsAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountD1AnalyticsAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountD1AnalyticsAdaptiveGroupsSumConfidence'; ofType: null; } }; }; }; + 'AccountD1AnalyticsAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountD1AnalyticsAdaptiveGroupsDimensions'; fields: { 'databaseId': { name: 'databaseId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'databaseRole': { name: 'databaseRole'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeSixHours': { name: 'datetimeSixHours'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'servedByInstance': { name: 'servedByInstance'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'servedByRegion': { name: 'servedByRegion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountD1AnalyticsAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountD1AnalyticsAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountD1AnalyticsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountD1AnalyticsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'databaseId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'databaseId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'databaseId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'databaseId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'databaseId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'databaseId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'databaseId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'databaseId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'databaseId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'databaseId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'databaseRole'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'databaseRole_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'databaseRole_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'databaseRole_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'databaseRole_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'databaseRole_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'databaseRole_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'databaseRole_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'databaseRole_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'databaseRole_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'servedByInstance'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'servedByInstance_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'servedByInstance_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'servedByInstance_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'servedByInstance_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'servedByInstance_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'servedByInstance_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'servedByInstance_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'servedByInstance_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'servedByInstance_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'servedByRegion'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'servedByRegion_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'servedByRegion_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'servedByRegion_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'servedByRegion_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'servedByRegion_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'servedByRegion_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'servedByRegion_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'servedByRegion_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'servedByRegion_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountD1AnalyticsAdaptiveGroupsOrderBy': { name: 'AccountD1AnalyticsAdaptiveGroupsOrderBy'; enumValues: 'avg_queryBatchResponseBytes_ASC' | 'avg_queryBatchResponseBytes_DESC' | 'avg_queryBatchTimeMs_ASC' | 'avg_queryBatchTimeMs_DESC' | 'avg_sampleInterval_ASC' | 'avg_sampleInterval_DESC' | 'count_ASC' | 'count_DESC' | 'databaseId_ASC' | 'databaseId_DESC' | 'databaseRole_ASC' | 'databaseRole_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetimeSixHours_ASC' | 'datetimeSixHours_DESC' | 'quantiles_queryBatchResponseBytesP50_ASC' | 'quantiles_queryBatchResponseBytesP50_DESC' | 'quantiles_queryBatchResponseBytesP90_ASC' | 'quantiles_queryBatchResponseBytesP90_DESC' | 'quantiles_queryBatchTimeMsP50_ASC' | 'quantiles_queryBatchTimeMsP50_DESC' | 'quantiles_queryBatchTimeMsP90_ASC' | 'quantiles_queryBatchTimeMsP90_DESC' | 'servedByInstance_ASC' | 'servedByInstance_DESC' | 'servedByRegion_ASC' | 'servedByRegion_DESC' | 'sum_queryBatchResponseBytes_ASC' | 'sum_queryBatchResponseBytes_DESC' | 'sum_readQueries_ASC' | 'sum_readQueries_DESC' | 'sum_rowsRead_ASC' | 'sum_rowsRead_DESC' | 'sum_rowsWritten_ASC' | 'sum_rowsWritten_DESC' | 'sum_writeQueries_ASC' | 'sum_writeQueries_DESC'; }; + 'AccountD1AnalyticsAdaptiveGroupsQuantiles': { kind: 'OBJECT'; name: 'AccountD1AnalyticsAdaptiveGroupsQuantiles'; fields: { 'queryBatchResponseBytesP50': { name: 'queryBatchResponseBytesP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'queryBatchResponseBytesP90': { name: 'queryBatchResponseBytesP90'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'queryBatchTimeMsP50': { name: 'queryBatchTimeMsP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'queryBatchTimeMsP90': { name: 'queryBatchTimeMsP90'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountD1AnalyticsAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'AccountD1AnalyticsAdaptiveGroupsSum'; fields: { 'queryBatchResponseBytes': { name: 'queryBatchResponseBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'readQueries': { name: 'readQueries'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'rowsRead': { name: 'rowsRead'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'rowsWritten': { name: 'rowsWritten'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'writeQueries': { name: 'writeQueries'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountD1AnalyticsAdaptiveGroupsSumConfidence': { kind: 'OBJECT'; name: 'AccountD1AnalyticsAdaptiveGroupsSumConfidence'; fields: { 'queryBatchResponseBytes': { name: 'queryBatchResponseBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'readQueries': { name: 'readQueries'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'rowsRead': { name: 'rowsRead'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'rowsWritten': { name: 'rowsWritten'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'writeQueries': { name: 'writeQueries'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountD1QueriesAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountD1QueriesAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountD1QueriesAdaptiveGroupsAvg'; ofType: null; } }; 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountD1QueriesAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountD1QueriesAdaptiveGroupsDimensions'; ofType: null; } }; 'quantiles': { name: 'quantiles'; type: { kind: 'OBJECT'; name: 'AccountD1QueriesAdaptiveGroupsQuantiles'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountD1QueriesAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'AccountD1QueriesAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'AccountD1QueriesAdaptiveGroupsAvg'; fields: { 'queryDurationMs': { name: 'queryDurationMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'rowsRead': { name: 'rowsRead'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'rowsReturned': { name: 'rowsReturned'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'rowsWritten': { name: 'rowsWritten'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountD1QueriesAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountD1QueriesAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountD1QueriesAdaptiveGroupsSumConfidence'; ofType: null; } }; }; }; + 'AccountD1QueriesAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountD1QueriesAdaptiveGroupsDimensions'; fields: { 'databaseId': { name: 'databaseId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'databaseRole': { name: 'databaseRole'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeSixHours': { name: 'datetimeSixHours'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'error': { name: 'error'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'query': { name: 'query'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'servedByInstance': { name: 'servedByInstance'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'servedByRegion': { name: 'servedByRegion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountD1QueriesAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountD1QueriesAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountD1QueriesAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountD1QueriesAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'databaseId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'databaseId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'databaseId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'databaseId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'databaseId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'databaseId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'databaseId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'databaseId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'databaseId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'databaseId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'databaseRole'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'databaseRole_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'databaseRole_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'databaseRole_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'databaseRole_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'databaseRole_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'databaseRole_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'databaseRole_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'databaseRole_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'databaseRole_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'error'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'error_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'error_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'error_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'error_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'error_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'error_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'error_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'error_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'error_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'query'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'query_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'query_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'query_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'query_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'query_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'query_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'query_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'query_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'query_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'servedByInstance'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'servedByInstance_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'servedByInstance_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'servedByInstance_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'servedByInstance_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'servedByInstance_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'servedByInstance_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'servedByInstance_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'servedByInstance_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'servedByInstance_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'servedByRegion'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'servedByRegion_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'servedByRegion_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'servedByRegion_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'servedByRegion_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'servedByRegion_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'servedByRegion_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'servedByRegion_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'servedByRegion_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'servedByRegion_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountD1QueriesAdaptiveGroupsOrderBy': { name: 'AccountD1QueriesAdaptiveGroupsOrderBy'; enumValues: 'avg_queryDurationMs_ASC' | 'avg_queryDurationMs_DESC' | 'avg_rowsRead_ASC' | 'avg_rowsRead_DESC' | 'avg_rowsReturned_ASC' | 'avg_rowsReturned_DESC' | 'avg_rowsWritten_ASC' | 'avg_rowsWritten_DESC' | 'avg_sampleInterval_ASC' | 'avg_sampleInterval_DESC' | 'count_ASC' | 'count_DESC' | 'databaseId_ASC' | 'databaseId_DESC' | 'databaseRole_ASC' | 'databaseRole_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetimeSixHours_ASC' | 'datetimeSixHours_DESC' | 'error_ASC' | 'error_DESC' | 'quantiles_queryDurationMsP50_ASC' | 'quantiles_queryDurationMsP50_DESC' | 'quantiles_queryDurationMsP95_ASC' | 'quantiles_queryDurationMsP95_DESC' | 'quantiles_queryDurationMsP99_ASC' | 'quantiles_queryDurationMsP99_DESC' | 'query_ASC' | 'query_DESC' | 'servedByInstance_ASC' | 'servedByInstance_DESC' | 'servedByRegion_ASC' | 'servedByRegion_DESC' | 'sum_queryDurationMs_ASC' | 'sum_queryDurationMs_DESC' | 'sum_rowsRead_ASC' | 'sum_rowsRead_DESC' | 'sum_rowsReturned_ASC' | 'sum_rowsReturned_DESC' | 'sum_rowsWritten_ASC' | 'sum_rowsWritten_DESC'; }; + 'AccountD1QueriesAdaptiveGroupsQuantiles': { kind: 'OBJECT'; name: 'AccountD1QueriesAdaptiveGroupsQuantiles'; fields: { 'queryDurationMsP50': { name: 'queryDurationMsP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'queryDurationMsP95': { name: 'queryDurationMsP95'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'queryDurationMsP99': { name: 'queryDurationMsP99'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountD1QueriesAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'AccountD1QueriesAdaptiveGroupsSum'; fields: { 'queryDurationMs': { name: 'queryDurationMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'rowsRead': { name: 'rowsRead'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'rowsReturned': { name: 'rowsReturned'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'rowsWritten': { name: 'rowsWritten'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountD1QueriesAdaptiveGroupsSumConfidence': { kind: 'OBJECT'; name: 'AccountD1QueriesAdaptiveGroupsSumConfidence'; fields: { 'queryDurationMs': { name: 'queryDurationMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'rowsRead': { name: 'rowsRead'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'rowsReturned': { name: 'rowsReturned'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'rowsWritten': { name: 'rowsWritten'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountD1StorageAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountD1StorageAdaptiveGroups'; fields: { 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountD1StorageAdaptiveGroupsDimensions'; ofType: null; } }; 'max': { name: 'max'; type: { kind: 'OBJECT'; name: 'AccountD1StorageAdaptiveGroupsMax'; ofType: null; } }; }; }; + 'AccountD1StorageAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountD1StorageAdaptiveGroupsDimensions'; fields: { 'databaseId': { name: 'databaseId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeSixHours': { name: 'datetimeSixHours'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; }; }; + 'AccountD1StorageAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountD1StorageAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountD1StorageAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountD1StorageAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'databaseId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'databaseId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'databaseId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'databaseId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'databaseId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'databaseId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'databaseId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'databaseId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'databaseId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'databaseId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }]; }; + 'AccountD1StorageAdaptiveGroupsMax': { kind: 'OBJECT'; name: 'AccountD1StorageAdaptiveGroupsMax'; fields: { 'databaseSizeBytes': { name: 'databaseSizeBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountD1StorageAdaptiveGroupsOrderBy': { name: 'AccountD1StorageAdaptiveGroupsOrderBy'; enumValues: 'databaseId_ASC' | 'databaseId_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetimeSixHours_ASC' | 'datetimeSixHours_DESC' | 'max_databaseSizeBytes_ASC' | 'max_databaseSizeBytes_DESC'; }; + 'AccountDnsAnalyticsAdaptive': { kind: 'OBJECT'; name: 'AccountDnsAnalyticsAdaptive'; fields: { 'coloName': { name: 'coloName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'destinationIP': { name: 'destinationIP'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipVersion': { name: 'ipVersion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'protocol': { name: 'protocol'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'queryName': { name: 'queryName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'querySize': { name: 'querySize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'queryType': { name: 'queryType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'responseCached': { name: 'responseCached'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'responseCode': { name: 'responseCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'responseSize': { name: 'responseSize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'responseStale': { name: 'responseStale'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'sourceIP': { name: 'sourceIP'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'upstreamIP': { name: 'upstreamIP'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'zoneTag': { name: 'zoneTag'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountDnsAnalyticsAdaptiveFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountDnsAnalyticsAdaptiveFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountDnsAnalyticsAdaptiveFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountDnsAnalyticsAdaptiveFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationIP'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIP_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIP_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIP_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationIP_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIP_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIP_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIP_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIP_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationIP_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipVersion'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipVersion_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipVersion_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipVersion_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipVersion_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipVersion_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipVersion_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipVersion_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'protocol'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocol_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocol_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocol_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'protocol_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocol_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocol_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocol_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocol_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'protocol_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'queryName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'queryName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'querySize'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'querySize_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'querySize_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'querySize_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'querySize_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'querySize_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'querySize_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'querySize_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'queryType'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryType_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryType_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryType_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'queryType_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryType_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryType_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryType_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryType_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'queryType_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseCached'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'responseCached_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'responseCached_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'responseCached_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'responseCached_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'responseCached_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'responseCached_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'responseCached_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'responseCode'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseCode_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseCode_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseCode_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'responseCode_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseCode_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseCode_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseCode_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseCode_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'responseCode_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseSize'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'responseSize_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'responseSize_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'responseSize_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'responseSize_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'responseSize_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'responseSize_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'responseSize_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'responseStale'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'responseStale_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'responseStale_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'responseStale_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'responseStale_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'responseStale_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'responseStale_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'responseStale_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sampleInterval_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceIP'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIP_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIP_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIP_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceIP_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIP_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIP_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIP_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIP_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceIP_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upstreamIP'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upstreamIP_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upstreamIP_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upstreamIP_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'upstreamIP_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upstreamIP_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upstreamIP_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upstreamIP_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upstreamIP_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'upstreamIP_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'zoneTag'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'zoneTag_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'zoneTag_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'zoneTag_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'zoneTag_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'zoneTag_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'zoneTag_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'zoneTag_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'zoneTag_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'zoneTag_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountDnsAnalyticsAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountDnsAnalyticsAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountDnsAnalyticsAdaptiveGroupsAvg'; ofType: null; } }; 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountDnsAnalyticsAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountDnsAnalyticsAdaptiveGroupsDimensions'; ofType: null; } }; 'quantiles': { name: 'quantiles'; type: { kind: 'OBJECT'; name: 'AccountDnsAnalyticsAdaptiveGroupsQuantiles'; ofType: null; } }; }; }; + 'AccountDnsAnalyticsAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'AccountDnsAnalyticsAdaptiveGroupsAvg'; fields: { 'processingTimeUs': { name: 'processingTimeUs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountDnsAnalyticsAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountDnsAnalyticsAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountDnsAnalyticsAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountDnsAnalyticsAdaptiveGroupsDimensions'; fields: { 'coloName': { name: 'coloName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHalfOfHour': { name: 'datetimeHalfOfHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'destinationIP': { name: 'destinationIP'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipVersion': { name: 'ipVersion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'protocol': { name: 'protocol'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'queryName': { name: 'queryName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'querySizeBucket': { name: 'querySizeBucket'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'queryType': { name: 'queryType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'responseCached': { name: 'responseCached'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'responseCode': { name: 'responseCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'responseSizeBucket': { name: 'responseSizeBucket'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'responseStale': { name: 'responseStale'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'sourceIP': { name: 'sourceIP'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'upstreamIP': { name: 'upstreamIP'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'zoneTag': { name: 'zoneTag'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountDnsAnalyticsAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountDnsAnalyticsAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountDnsAnalyticsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountDnsAnalyticsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHalfOfHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHalfOfHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationIP'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIP_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIP_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIP_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationIP_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIP_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIP_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIP_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIP_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationIP_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipVersion'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipVersion_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipVersion_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipVersion_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipVersion_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipVersion_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipVersion_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipVersion_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'protocol'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocol_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocol_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocol_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'protocol_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocol_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocol_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocol_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocol_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'protocol_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'queryName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'queryName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'querySizeBucket'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'querySizeBucket_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'querySizeBucket_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'querySizeBucket_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'querySizeBucket_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'querySizeBucket_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'querySizeBucket_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'querySizeBucket_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'querySizeBucket_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'querySizeBucket_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryType'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryType_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryType_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryType_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'queryType_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryType_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryType_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryType_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryType_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'queryType_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseCached'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'responseCached_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'responseCached_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'responseCached_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'responseCached_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'responseCached_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'responseCached_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'responseCached_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'responseCode'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseCode_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseCode_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseCode_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'responseCode_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseCode_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseCode_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseCode_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseCode_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'responseCode_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseSizeBucket'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseSizeBucket_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseSizeBucket_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseSizeBucket_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'responseSizeBucket_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseSizeBucket_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseSizeBucket_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseSizeBucket_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseSizeBucket_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'responseSizeBucket_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseStale'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'responseStale_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'responseStale_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'responseStale_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'responseStale_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'responseStale_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'responseStale_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'responseStale_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'sourceIP'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIP_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIP_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIP_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceIP_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIP_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIP_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIP_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIP_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceIP_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upstreamIP'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upstreamIP_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upstreamIP_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upstreamIP_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'upstreamIP_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upstreamIP_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upstreamIP_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upstreamIP_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upstreamIP_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'upstreamIP_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'zoneTag'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'zoneTag_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'zoneTag_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'zoneTag_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'zoneTag_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'zoneTag_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'zoneTag_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'zoneTag_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'zoneTag_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'zoneTag_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountDnsAnalyticsAdaptiveGroupsOrderBy': { name: 'AccountDnsAnalyticsAdaptiveGroupsOrderBy'; enumValues: 'avg_processingTimeUs_ASC' | 'avg_processingTimeUs_DESC' | 'avg_sampleInterval_ASC' | 'avg_sampleInterval_DESC' | 'coloName_ASC' | 'coloName_DESC' | 'count_ASC' | 'count_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHalfOfHour_ASC' | 'datetimeHalfOfHour_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'destinationIP_ASC' | 'destinationIP_DESC' | 'instanceCode_ASC' | 'instanceCode_DESC' | 'ipVersion_ASC' | 'ipVersion_DESC' | 'protocol_ASC' | 'protocol_DESC' | 'quantiles_processingTimeUsP50_ASC' | 'quantiles_processingTimeUsP50_DESC' | 'quantiles_processingTimeUsP90_ASC' | 'quantiles_processingTimeUsP90_DESC' | 'quantiles_processingTimeUsP99_ASC' | 'quantiles_processingTimeUsP99_DESC' | 'queryName_ASC' | 'queryName_DESC' | 'querySizeBucket_ASC' | 'querySizeBucket_DESC' | 'queryType_ASC' | 'queryType_DESC' | 'responseCached_ASC' | 'responseCached_DESC' | 'responseCode_ASC' | 'responseCode_DESC' | 'responseSizeBucket_ASC' | 'responseSizeBucket_DESC' | 'responseStale_ASC' | 'responseStale_DESC' | 'sourceIP_ASC' | 'sourceIP_DESC' | 'upstreamIP_ASC' | 'upstreamIP_DESC' | 'zoneTag_ASC' | 'zoneTag_DESC'; }; + 'AccountDnsAnalyticsAdaptiveGroupsQuantiles': { kind: 'OBJECT'; name: 'AccountDnsAnalyticsAdaptiveGroupsQuantiles'; fields: { 'processingTimeUsP50': { name: 'processingTimeUsP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'processingTimeUsP90': { name: 'processingTimeUsP90'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'processingTimeUsP99': { name: 'processingTimeUsP99'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountDnsAnalyticsAdaptiveOrderBy': { name: 'AccountDnsAnalyticsAdaptiveOrderBy'; enumValues: 'coloName_ASC' | 'coloName_DESC' | 'date_ASC' | 'date_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'destinationIP_ASC' | 'destinationIP_DESC' | 'instanceCode_ASC' | 'instanceCode_DESC' | 'ipVersion_ASC' | 'ipVersion_DESC' | 'protocol_ASC' | 'protocol_DESC' | 'queryName_ASC' | 'queryName_DESC' | 'querySize_ASC' | 'querySize_DESC' | 'queryType_ASC' | 'queryType_DESC' | 'responseCached_ASC' | 'responseCached_DESC' | 'responseCode_ASC' | 'responseCode_DESC' | 'responseSize_ASC' | 'responseSize_DESC' | 'responseStale_ASC' | 'responseStale_DESC' | 'sampleInterval_ASC' | 'sampleInterval_DESC' | 'sourceIP_ASC' | 'sourceIP_DESC' | 'upstreamIP_ASC' | 'upstreamIP_DESC' | 'zoneTag_ASC' | 'zoneTag_DESC'; }; + 'AccountDnsFirewallAnalyticsAdaptive': { kind: 'OBJECT'; name: 'AccountDnsFirewallAnalyticsAdaptive'; fields: { 'clusterName': { name: 'clusterName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clusterTag': { name: 'clusterTag'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'coloName': { name: 'coloName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'destinationIP': { name: 'destinationIP'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipVersion': { name: 'ipVersion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'protocol': { name: 'protocol'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'queryName': { name: 'queryName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'querySize': { name: 'querySize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'queryType': { name: 'queryType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'responseCached': { name: 'responseCached'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'responseCode': { name: 'responseCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'responseReason': { name: 'responseReason'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'responseSize': { name: 'responseSize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'responseStale': { name: 'responseStale'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'sourceIP': { name: 'sourceIP'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'upstreamIP': { name: 'upstreamIP'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountDnsFirewallAnalyticsAdaptiveFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountDnsFirewallAnalyticsAdaptiveFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountDnsFirewallAnalyticsAdaptiveFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountDnsFirewallAnalyticsAdaptiveFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'clusterName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clusterName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clusterName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clusterName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clusterName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clusterName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clusterName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clusterName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clusterName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clusterName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clusterTag'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clusterTag_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clusterTag_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clusterTag_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clusterTag_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clusterTag_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clusterTag_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clusterTag_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clusterTag_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clusterTag_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationIP'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIP_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIP_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIP_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationIP_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIP_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIP_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIP_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIP_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationIP_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipVersion'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipVersion_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipVersion_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipVersion_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipVersion_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipVersion_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipVersion_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipVersion_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'protocol'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocol_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocol_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocol_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'protocol_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocol_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocol_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocol_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocol_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'protocol_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'queryName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'queryName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'querySize'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'querySize_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'querySize_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'querySize_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'querySize_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'querySize_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'querySize_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'querySize_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'queryType'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryType_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryType_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryType_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'queryType_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryType_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryType_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryType_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryType_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'queryType_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseCached'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'responseCached_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'responseCached_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'responseCached_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'responseCached_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'responseCached_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'responseCached_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'responseCached_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'responseCode'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseCode_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseCode_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseCode_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'responseCode_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseCode_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseCode_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseCode_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseCode_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'responseCode_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseReason'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseReason_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseReason_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseReason_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'responseReason_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseReason_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseReason_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseReason_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseReason_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'responseReason_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseSize'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'responseSize_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'responseSize_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'responseSize_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'responseSize_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'responseSize_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'responseSize_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'responseSize_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'responseStale'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'responseStale_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'responseStale_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'responseStale_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'responseStale_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'responseStale_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'responseStale_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'responseStale_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sampleInterval_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceIP'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIP_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIP_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIP_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceIP_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIP_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIP_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIP_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIP_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceIP_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upstreamIP'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upstreamIP_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upstreamIP_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upstreamIP_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'upstreamIP_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upstreamIP_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upstreamIP_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upstreamIP_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upstreamIP_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'upstreamIP_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountDnsFirewallAnalyticsAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountDnsFirewallAnalyticsAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountDnsFirewallAnalyticsAdaptiveGroupsAvg'; ofType: null; } }; 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountDnsFirewallAnalyticsAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountDnsFirewallAnalyticsAdaptiveGroupsDimensions'; ofType: null; } }; 'quantiles': { name: 'quantiles'; type: { kind: 'OBJECT'; name: 'AccountDnsFirewallAnalyticsAdaptiveGroupsQuantiles'; ofType: null; } }; }; }; + 'AccountDnsFirewallAnalyticsAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'AccountDnsFirewallAnalyticsAdaptiveGroupsAvg'; fields: { 'processingTimeUs': { name: 'processingTimeUs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountDnsFirewallAnalyticsAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountDnsFirewallAnalyticsAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountDnsFirewallAnalyticsAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountDnsFirewallAnalyticsAdaptiveGroupsDimensions'; fields: { 'clusterName': { name: 'clusterName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clusterTag': { name: 'clusterTag'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'coloName': { name: 'coloName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHalfOfHour': { name: 'datetimeHalfOfHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'destinationIP': { name: 'destinationIP'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipVersion': { name: 'ipVersion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'protocol': { name: 'protocol'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'queryName': { name: 'queryName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'querySizeBucket': { name: 'querySizeBucket'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'queryType': { name: 'queryType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'responseCached': { name: 'responseCached'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'responseCode': { name: 'responseCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'responseReason': { name: 'responseReason'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'responseSizeBucket': { name: 'responseSizeBucket'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'responseStale': { name: 'responseStale'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'sourceIP': { name: 'sourceIP'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'upstreamIP': { name: 'upstreamIP'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountDnsFirewallAnalyticsAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountDnsFirewallAnalyticsAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountDnsFirewallAnalyticsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountDnsFirewallAnalyticsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'clusterName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clusterName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clusterName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clusterName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clusterName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clusterName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clusterName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clusterName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clusterName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clusterName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clusterTag'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clusterTag_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clusterTag_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clusterTag_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clusterTag_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clusterTag_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clusterTag_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clusterTag_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clusterTag_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clusterTag_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHalfOfHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHalfOfHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationIP'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIP_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIP_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIP_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationIP_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIP_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIP_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIP_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIP_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationIP_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipVersion'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipVersion_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipVersion_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipVersion_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipVersion_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipVersion_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipVersion_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipVersion_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'protocol'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocol_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocol_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocol_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'protocol_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocol_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocol_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocol_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocol_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'protocol_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'queryName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'queryName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'querySizeBucket'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'querySizeBucket_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'querySizeBucket_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'querySizeBucket_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'querySizeBucket_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'querySizeBucket_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'querySizeBucket_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'querySizeBucket_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'querySizeBucket_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'querySizeBucket_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryType'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryType_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryType_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryType_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'queryType_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryType_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryType_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryType_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryType_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'queryType_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseCached'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'responseCached_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'responseCached_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'responseCached_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'responseCached_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'responseCached_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'responseCached_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'responseCached_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'responseCode'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseCode_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseCode_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseCode_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'responseCode_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseCode_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseCode_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseCode_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseCode_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'responseCode_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseReason'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseReason_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseReason_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseReason_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'responseReason_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseReason_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseReason_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseReason_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseReason_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'responseReason_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseSizeBucket'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseSizeBucket_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseSizeBucket_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseSizeBucket_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'responseSizeBucket_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseSizeBucket_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseSizeBucket_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseSizeBucket_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseSizeBucket_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'responseSizeBucket_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseStale'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'responseStale_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'responseStale_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'responseStale_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'responseStale_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'responseStale_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'responseStale_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'responseStale_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'sourceIP'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIP_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIP_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIP_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceIP_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIP_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIP_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIP_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIP_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceIP_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upstreamIP'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upstreamIP_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upstreamIP_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upstreamIP_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'upstreamIP_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upstreamIP_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upstreamIP_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upstreamIP_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upstreamIP_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'upstreamIP_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountDnsFirewallAnalyticsAdaptiveGroupsOrderBy': { name: 'AccountDnsFirewallAnalyticsAdaptiveGroupsOrderBy'; enumValues: 'avg_processingTimeUs_ASC' | 'avg_processingTimeUs_DESC' | 'avg_sampleInterval_ASC' | 'avg_sampleInterval_DESC' | 'clusterName_ASC' | 'clusterName_DESC' | 'clusterTag_ASC' | 'clusterTag_DESC' | 'coloName_ASC' | 'coloName_DESC' | 'count_ASC' | 'count_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHalfOfHour_ASC' | 'datetimeHalfOfHour_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'destinationIP_ASC' | 'destinationIP_DESC' | 'instanceCode_ASC' | 'instanceCode_DESC' | 'ipVersion_ASC' | 'ipVersion_DESC' | 'protocol_ASC' | 'protocol_DESC' | 'quantiles_processingTimeUsP50_ASC' | 'quantiles_processingTimeUsP50_DESC' | 'quantiles_processingTimeUsP90_ASC' | 'quantiles_processingTimeUsP90_DESC' | 'quantiles_processingTimeUsP99_ASC' | 'quantiles_processingTimeUsP99_DESC' | 'queryName_ASC' | 'queryName_DESC' | 'querySizeBucket_ASC' | 'querySizeBucket_DESC' | 'queryType_ASC' | 'queryType_DESC' | 'responseCached_ASC' | 'responseCached_DESC' | 'responseCode_ASC' | 'responseCode_DESC' | 'responseReason_ASC' | 'responseReason_DESC' | 'responseSizeBucket_ASC' | 'responseSizeBucket_DESC' | 'responseStale_ASC' | 'responseStale_DESC' | 'sourceIP_ASC' | 'sourceIP_DESC' | 'upstreamIP_ASC' | 'upstreamIP_DESC'; }; + 'AccountDnsFirewallAnalyticsAdaptiveGroupsQuantiles': { kind: 'OBJECT'; name: 'AccountDnsFirewallAnalyticsAdaptiveGroupsQuantiles'; fields: { 'processingTimeUsP50': { name: 'processingTimeUsP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'processingTimeUsP90': { name: 'processingTimeUsP90'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'processingTimeUsP99': { name: 'processingTimeUsP99'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountDnsFirewallAnalyticsAdaptiveOrderBy': { name: 'AccountDnsFirewallAnalyticsAdaptiveOrderBy'; enumValues: 'clusterName_ASC' | 'clusterName_DESC' | 'clusterTag_ASC' | 'clusterTag_DESC' | 'coloName_ASC' | 'coloName_DESC' | 'date_ASC' | 'date_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'destinationIP_ASC' | 'destinationIP_DESC' | 'instanceCode_ASC' | 'instanceCode_DESC' | 'ipVersion_ASC' | 'ipVersion_DESC' | 'protocol_ASC' | 'protocol_DESC' | 'queryName_ASC' | 'queryName_DESC' | 'querySize_ASC' | 'querySize_DESC' | 'queryType_ASC' | 'queryType_DESC' | 'responseCached_ASC' | 'responseCached_DESC' | 'responseCode_ASC' | 'responseCode_DESC' | 'responseReason_ASC' | 'responseReason_DESC' | 'responseSize_ASC' | 'responseSize_DESC' | 'responseStale_ASC' | 'responseStale_DESC' | 'sampleInterval_ASC' | 'sampleInterval_DESC' | 'sourceIP_ASC' | 'sourceIP_DESC' | 'upstreamIP_ASC' | 'upstreamIP_DESC'; }; + 'AccountDosdAttackAnalyticsGroups': { kind: 'OBJECT'; name: 'AccountDosdAttackAnalyticsGroups'; fields: { 'attackId': { name: 'attackId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'attackType': { name: 'attackType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'attackVector': { name: 'attackVector'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'bits': { name: 'bits'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'commonTcpFlags': { name: 'commonTcpFlags'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'commonTcpFlagsNames': { name: 'commonTcpFlagsNames'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'destinationIp': { name: 'destinationIp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'destinationPort': { name: 'destinationPort'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'droppedBits': { name: 'droppedBits'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'droppedPackets': { name: 'droppedPackets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'endDatetime': { name: 'endDatetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'ipProtocol': { name: 'ipProtocol'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipProtocolName': { name: 'ipProtocolName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'mitigationReason': { name: 'mitigationReason'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'mitigationScope': { name: 'mitigationScope'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'mitigationType': { name: 'mitigationType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'packets': { name: 'packets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'ruleId': { name: 'ruleId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ruleName': { name: 'ruleName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'rulesetId': { name: 'rulesetId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'rulesetOverrideId': { name: 'rulesetOverrideId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sourceIp': { name: 'sourceIp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sourcePort': { name: 'sourcePort'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'startDatetime': { name: 'startDatetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'tcpFlags': { name: 'tcpFlags'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'tcpFlagsNames': { name: 'tcpFlagsNames'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountDosdAttackAnalyticsGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountDosdAttackAnalyticsGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountDosdAttackAnalyticsGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountDosdAttackAnalyticsGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'attackId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'attackId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'attackId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackType'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackType_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackType_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackType_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'attackType_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackType_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackType_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackType_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackType_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'attackType_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackVector'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackVector_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackVector_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackVector_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'attackVector_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackVector_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackVector_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackVector_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackVector_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'attackVector_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'bits'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'bits_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'bits_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'bits_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'bits_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'bits_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'bits_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'bits_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'commonTcpFlags'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'commonTcpFlagsNames'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'commonTcpFlagsNames_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'commonTcpFlagsNames_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'commonTcpFlagsNames_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'commonTcpFlagsNames_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'commonTcpFlagsNames_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'commonTcpFlagsNames_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'commonTcpFlagsNames_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'commonTcpFlagsNames_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'commonTcpFlagsNames_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'commonTcpFlags_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'commonTcpFlags_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'commonTcpFlags_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'commonTcpFlags_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'commonTcpFlags_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'commonTcpFlags_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'commonTcpFlags_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'destinationIp'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIp_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIp_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationIp_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIp_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIp_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIp_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIp_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationIp_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationPort'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationPort_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'droppedBits'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'droppedBits_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'droppedBits_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'droppedBits_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'droppedBits_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'droppedBits_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'droppedBits_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'droppedBits_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'droppedPackets'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'droppedPackets_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'droppedPackets_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'droppedPackets_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'droppedPackets_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'droppedPackets_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'droppedPackets_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'droppedPackets_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'endDatetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'endDatetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'endDatetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'endDatetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'endDatetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'endDatetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'endDatetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'endDatetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipProtocol'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipProtocolName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipProtocolName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'mitigationReason'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationReason_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationReason_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationReason_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'mitigationReason_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationReason_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationReason_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationReason_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationReason_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'mitigationReason_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationScope'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationScope_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationScope_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationScope_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'mitigationScope_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationScope_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationScope_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationScope_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationScope_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'mitigationScope_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationType'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationType_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationType_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationType_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'mitigationType_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationType_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationType_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationType_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationType_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'mitigationType_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'packets'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'packets_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'packets_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'packets_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'packets_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'packets_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'packets_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'packets_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'ruleId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ruleId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ruleId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ruleName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ruleName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'rulesetId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'rulesetId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetOverrideId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetOverrideId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetOverrideId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetOverrideId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'rulesetOverrideId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetOverrideId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetOverrideId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetOverrideId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetOverrideId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'rulesetOverrideId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIp'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIp_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIp_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceIp_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIp_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIp_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIp_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIp_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceIp_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourcePort'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourcePort_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'startDatetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'startDatetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'startDatetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'startDatetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'startDatetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'startDatetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'startDatetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'startDatetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpFlags'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsNames'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsNames_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsNames_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsNames_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpFlagsNames_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsNames_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsNames_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsNames_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsNames_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpFlagsNames_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }]; }; + 'AccountDosdAttackAnalyticsGroupsOrderBy': { name: 'AccountDosdAttackAnalyticsGroupsOrderBy'; enumValues: 'attackId_ASC' | 'attackId_DESC' | 'attackType_ASC' | 'attackType_DESC' | 'attackVector_ASC' | 'attackVector_DESC' | 'bits_ASC' | 'bits_DESC' | 'commonTcpFlagsNames_ASC' | 'commonTcpFlagsNames_DESC' | 'commonTcpFlags_ASC' | 'commonTcpFlags_DESC' | 'destinationIp_ASC' | 'destinationIp_DESC' | 'destinationPort_ASC' | 'destinationPort_DESC' | 'droppedBits_ASC' | 'droppedBits_DESC' | 'droppedPackets_ASC' | 'droppedPackets_DESC' | 'endDatetime_ASC' | 'endDatetime_DESC' | 'ipProtocolName_ASC' | 'ipProtocolName_DESC' | 'ipProtocol_ASC' | 'ipProtocol_DESC' | 'mitigationReason_ASC' | 'mitigationReason_DESC' | 'mitigationScope_ASC' | 'mitigationScope_DESC' | 'mitigationType_ASC' | 'mitigationType_DESC' | 'packets_ASC' | 'packets_DESC' | 'ruleId_ASC' | 'ruleId_DESC' | 'ruleName_ASC' | 'ruleName_DESC' | 'rulesetId_ASC' | 'rulesetId_DESC' | 'rulesetOverrideId_ASC' | 'rulesetOverrideId_DESC' | 'sourceIp_ASC' | 'sourceIp_DESC' | 'sourcePort_ASC' | 'sourcePort_DESC' | 'startDatetime_ASC' | 'startDatetime_DESC' | 'tcpFlagsNames_ASC' | 'tcpFlagsNames_DESC' | 'tcpFlags_ASC' | 'tcpFlags_DESC'; }; + 'AccountDosdNetworkAnalyticsAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountDosdNetworkAnalyticsAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountDosdNetworkAnalyticsAdaptiveGroupsAvg'; ofType: null; } }; 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountDosdNetworkAnalyticsAdaptiveGroupsConfidence'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountDosdNetworkAnalyticsAdaptiveGroupsDimensions'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountDosdNetworkAnalyticsAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'AccountDosdNetworkAnalyticsAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'AccountDosdNetworkAnalyticsAdaptiveGroupsAvg'; fields: { 'bitRate': { name: 'bitRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'bitRateDay': { name: 'bitRateDay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'bitRateFifteenMinutes': { name: 'bitRateFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'bitRateFiveMinutes': { name: 'bitRateFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'bitRateHour': { name: 'bitRateHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'bitRateMinute': { name: 'bitRateMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'bitRateTenSeconds': { name: 'bitRateTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRate': { name: 'packetRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRateDay': { name: 'packetRateDay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRateFifteenMinutes': { name: 'packetRateFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRateFiveMinutes': { name: 'packetRateFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRateHour': { name: 'packetRateHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRateMinute': { name: 'packetRateMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRateTenSeconds': { name: 'packetRateTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountDosdNetworkAnalyticsAdaptiveGroupsAvgConfidence': { kind: 'OBJECT'; name: 'AccountDosdNetworkAnalyticsAdaptiveGroupsAvgConfidence'; fields: { 'bitRate': { name: 'bitRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateDay': { name: 'bitRateDay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateFifteenMinutes': { name: 'bitRateFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateFiveMinutes': { name: 'bitRateFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateHour': { name: 'bitRateHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateMinute': { name: 'bitRateMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateTenSeconds': { name: 'bitRateTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRate': { name: 'packetRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateDay': { name: 'packetRateDay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateFifteenMinutes': { name: 'packetRateFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateFiveMinutes': { name: 'packetRateFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateHour': { name: 'packetRateHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateMinute': { name: 'packetRateMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateTenSeconds': { name: 'packetRateTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountDosdNetworkAnalyticsAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountDosdNetworkAnalyticsAdaptiveGroupsConfidence'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountDosdNetworkAnalyticsAdaptiveGroupsAvgConfidence'; ofType: null; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountDosdNetworkAnalyticsAdaptiveGroupsSumConfidence'; ofType: null; } }; }; }; + 'AccountDosdNetworkAnalyticsAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountDosdNetworkAnalyticsAdaptiveGroupsDimensions'; fields: { 'applicationTag': { name: 'applicationTag'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'attackId': { name: 'attackId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'attackVector': { name: 'attackVector'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'coloCity': { name: 'coloCity'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'coloCode': { name: 'coloCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'coloCountry': { name: 'coloCountry'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'coloGeohash': { name: 'coloGeohash'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'coloName': { name: 'coloName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeTenSeconds': { name: 'datetimeTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'destinationAsn': { name: 'destinationAsn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'destinationAsnName': { name: 'destinationAsnName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'destinationCountry': { name: 'destinationCountry'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'destinationGeohash': { name: 'destinationGeohash'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'destinationPort': { name: 'destinationPort'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'direction': { name: 'direction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ethertype': { name: 'ethertype'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'greChecksum': { name: 'greChecksum'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'greEthertype': { name: 'greEthertype'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'greHeaderLength': { name: 'greHeaderLength'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'greKey': { name: 'greKey'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'greSequenceNumber': { name: 'greSequenceNumber'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'greVersion': { name: 'greVersion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'icmpChecksum': { name: 'icmpChecksum'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'icmpCode': { name: 'icmpCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'icmpType': { name: 'icmpType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipDestinationAddress': { name: 'ipDestinationAddress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipDestinationSubnet': { name: 'ipDestinationSubnet'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipFragmentOffset': { name: 'ipFragmentOffset'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'ipHeaderLength': { name: 'ipHeaderLength'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'ipMoreFragments': { name: 'ipMoreFragments'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipProtocol': { name: 'ipProtocol'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipProtocolName': { name: 'ipProtocolName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipSourceAddress': { name: 'ipSourceAddress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipSourceSubnet': { name: 'ipSourceSubnet'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipTotalLength': { name: 'ipTotalLength'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'ipTotalLengthBuckets': { name: 'ipTotalLengthBuckets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'ipTtl': { name: 'ipTtl'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipTtlBuckets': { name: 'ipTtlBuckets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipv4Checksum': { name: 'ipv4Checksum'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'ipv4DontFragment': { name: 'ipv4DontFragment'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipv4Dscp': { name: 'ipv4Dscp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipv4Ecn': { name: 'ipv4Ecn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipv4Identification': { name: 'ipv4Identification'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'ipv4Options': { name: 'ipv4Options'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipv6Dscp': { name: 'ipv6Dscp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipv6Ecn': { name: 'ipv6Ecn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipv6ExtensionHeaders': { name: 'ipv6ExtensionHeaders'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipv6FlowLabel': { name: 'ipv6FlowLabel'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'ipv6Identification': { name: 'ipv6Identification'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'leaseTag': { name: 'leaseTag'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'mitigationReason': { name: 'mitigationReason'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'mitigationScope': { name: 'mitigationScope'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'outcome': { name: 'outcome'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'prefixTag': { name: 'prefixTag'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'protocolState': { name: 'protocolState'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ruleId': { name: 'ruleId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ruleName': { name: 'ruleName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'rulesetId': { name: 'rulesetId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'rulesetOverrideId': { name: 'rulesetOverrideId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'sourceAsn': { name: 'sourceAsn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'sourceAsnName': { name: 'sourceAsnName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sourceCountry': { name: 'sourceCountry'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sourceGeohash': { name: 'sourceGeohash'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sourcePort': { name: 'sourcePort'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'tcpAcknowledgementNumber': { name: 'tcpAcknowledgementNumber'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'tcpChecksum': { name: 'tcpChecksum'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'tcpDataOffset': { name: 'tcpDataOffset'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'tcpFlags': { name: 'tcpFlags'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'tcpFlagsString': { name: 'tcpFlagsString'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'tcpMss': { name: 'tcpMss'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'tcpOptions': { name: 'tcpOptions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'tcpSackBlocks': { name: 'tcpSackBlocks'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'tcpSackPermitted': { name: 'tcpSackPermitted'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'tcpSequenceNumber': { name: 'tcpSequenceNumber'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'tcpTimestampEcr': { name: 'tcpTimestampEcr'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'tcpTimestampValue': { name: 'tcpTimestampValue'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'tcpUrgentPointer': { name: 'tcpUrgentPointer'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'tcpWindowScale': { name: 'tcpWindowScale'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'tcpWindowSize': { name: 'tcpWindowSize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'udpChecksum': { name: 'udpChecksum'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'udpPayloadLength': { name: 'udpPayloadLength'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'verdict': { name: 'verdict'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountDosdNetworkAnalyticsAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountDosdNetworkAnalyticsAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountDosdNetworkAnalyticsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountDosdNetworkAnalyticsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'applicationTag'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationTag_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationTag_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationTag_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'applicationTag_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationTag_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationTag_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationTag_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationTag_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'applicationTag_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'attackId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'attackId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackVector'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackVector_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackVector_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackVector_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'attackVector_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackVector_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackVector_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackVector_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackVector_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'attackVector_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCity_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCity_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCode_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCode_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCountry_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCountry_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloGeohash_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloGeohash_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeTenSeconds'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeTenSeconds_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationAsn'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationAsnName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationAsnName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsn_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'destinationAsn_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'destinationAsn_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationAsn_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'destinationAsn_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'destinationAsn_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'destinationAsn_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationCountry'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationCountry_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationCountry_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationGeohash_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationGeohash_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationPort'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationPort_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'direction'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'direction_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'direction_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ethertype'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ethertype_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ethertype_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ethertype_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ethertype_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ethertype_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ethertype_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ethertype_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'greChecksum'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greChecksum_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greChecksum_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greChecksum_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'greChecksum_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greChecksum_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greChecksum_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greChecksum_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'greEthertype'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greEthertype_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greEthertype_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greEthertype_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'greEthertype_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greEthertype_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greEthertype_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greEthertype_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'greHeaderLength'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greHeaderLength_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greHeaderLength_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greHeaderLength_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'greHeaderLength_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greHeaderLength_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greHeaderLength_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greHeaderLength_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'greKey'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greKey_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greKey_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greKey_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'greKey_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greKey_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greKey_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greKey_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'greSequenceNumber'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greSequenceNumber_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greSequenceNumber_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greSequenceNumber_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'greSequenceNumber_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greSequenceNumber_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greSequenceNumber_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greSequenceNumber_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'greVersion'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'greVersion_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'greVersion_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'greVersion_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'greVersion_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'greVersion_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'greVersion_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'greVersion_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'icmpChecksum'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'icmpChecksum_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'icmpChecksum_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'icmpChecksum_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'icmpChecksum_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'icmpChecksum_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'icmpChecksum_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'icmpChecksum_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'icmpCode'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpCode_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpCode_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpCode_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'icmpCode_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpCode_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpCode_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpCode_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'icmpType'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpType_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpType_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpType_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'icmpType_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpType_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpType_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpType_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipDestinationAddress_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipDestinationAddress_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipDestinationSubnet_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipDestinationSubnet_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipFragmentOffset'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipFragmentOffset_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipFragmentOffset_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipFragmentOffset_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipFragmentOffset_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipFragmentOffset_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipFragmentOffset_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipFragmentOffset_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipHeaderLength'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipHeaderLength_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipHeaderLength_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipHeaderLength_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipHeaderLength_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipHeaderLength_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipHeaderLength_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipHeaderLength_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipMoreFragments'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipMoreFragments_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipMoreFragments_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipMoreFragments_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipMoreFragments_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipMoreFragments_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipMoreFragments_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipMoreFragments_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipProtocolName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipProtocolName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipSourceAddress_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipSourceAddress_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipSourceSubnet_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipSourceSubnet_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLength'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLengthBuckets'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLengthBuckets_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLengthBuckets_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLengthBuckets_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipTotalLengthBuckets_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLengthBuckets_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLengthBuckets_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLengthBuckets_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipTotalLength_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLength_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLength_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipTotalLength_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLength_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLength_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLength_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipTtl'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipTtl_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtl_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtl_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipTtl_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtl_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtl_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtl_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv4Checksum'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Checksum_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Checksum_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Checksum_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv4Checksum_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Checksum_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Checksum_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Checksum_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv4DontFragment'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4DontFragment_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4DontFragment_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4DontFragment_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv4DontFragment_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4DontFragment_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4DontFragment_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4DontFragment_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv4Identification'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Identification_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Identification_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Identification_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv4Identification_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Identification_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Identification_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Identification_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv4Options'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4Options_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4Options_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4Options_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv4Options_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4Options_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4Options_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4Options_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4Options_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv4Options_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6FlowLabel'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6FlowLabel_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6FlowLabel_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6FlowLabel_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv6FlowLabel_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6FlowLabel_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6FlowLabel_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6FlowLabel_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv6Identification'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6Identification_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6Identification_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6Identification_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv6Identification_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6Identification_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6Identification_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6Identification_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'leaseTag'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leaseTag_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leaseTag_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leaseTag_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'leaseTag_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leaseTag_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leaseTag_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leaseTag_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leaseTag_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'leaseTag_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationReason'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationReason_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationReason_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationReason_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'mitigationReason_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationReason_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationReason_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationReason_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationReason_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'mitigationReason_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationScope'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationScope_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationScope_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationScope_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'mitigationScope_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationScope_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationScope_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationScope_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationScope_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'mitigationScope_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'outcome_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'outcome_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'prefixTag_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'prefixTag_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocolState'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocolState_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocolState_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocolState_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'protocolState_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocolState_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocolState_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocolState_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocolState_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'protocolState_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ruleId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ruleId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ruleName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ruleName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'rulesetId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'rulesetId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetOverrideId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetOverrideId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetOverrideId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetOverrideId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'rulesetOverrideId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetOverrideId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetOverrideId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetOverrideId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetOverrideId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'rulesetOverrideId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sampleInterval_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceAsn'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceAsnName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceAsnName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsn_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sourceAsn_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sourceAsn_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceAsn_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sourceAsn_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sourceAsn_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sourceAsn_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceCountry'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceCountry_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceCountry_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceGeohash_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceGeohash_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourcePort'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourcePort_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpChecksum'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpChecksum_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpChecksum_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpChecksum_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpChecksum_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpChecksum_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpChecksum_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpChecksum_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpDataOffset'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpDataOffset_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpDataOffset_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpDataOffset_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpDataOffset_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpDataOffset_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpDataOffset_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpDataOffset_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpFlags'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpFlagsString_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpFlagsString_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'tcpMss'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpMss_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpMss_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpMss_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpMss_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpMss_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpMss_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpMss_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpOptions'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpOptions_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpOptions_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpOptions_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpOptions_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpOptions_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpOptions_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpOptions_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpOptions_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpOptions_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpSackBlocks_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpSackBlocks_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'tcpSequenceNumber'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpSequenceNumber_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpSequenceNumber_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpSequenceNumber_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpSequenceNumber_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpSequenceNumber_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpSequenceNumber_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpSequenceNumber_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpTimestampEcr'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampEcr_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampEcr_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampEcr_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpTimestampEcr_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampEcr_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampEcr_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampEcr_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpTimestampValue'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampValue_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampValue_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampValue_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpTimestampValue_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampValue_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampValue_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampValue_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpUrgentPointer'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpUrgentPointer_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpUrgentPointer_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpUrgentPointer_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpUrgentPointer_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpUrgentPointer_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpUrgentPointer_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpUrgentPointer_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpWindowScale'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowScale_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowScale_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowScale_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpWindowScale_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowScale_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowScale_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowScale_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpWindowSize'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowSize_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowSize_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowSize_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpWindowSize_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowSize_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowSize_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowSize_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'udpChecksum'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpChecksum_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpChecksum_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpChecksum_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'udpChecksum_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpChecksum_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpChecksum_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpChecksum_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'udpPayloadLength'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpPayloadLength_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpPayloadLength_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpPayloadLength_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'udpPayloadLength_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpPayloadLength_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpPayloadLength_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpPayloadLength_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'verdict'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verdict_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verdict_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verdict_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'verdict_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verdict_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verdict_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verdict_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verdict_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'verdict_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountDosdNetworkAnalyticsAdaptiveGroupsOrderBy': { name: 'AccountDosdNetworkAnalyticsAdaptiveGroupsOrderBy'; enumValues: 'applicationTag_ASC' | 'applicationTag_DESC' | 'attackId_ASC' | 'attackId_DESC' | 'attackVector_ASC' | 'attackVector_DESC' | 'avg_bitRateDay_ASC' | 'avg_bitRateDay_DESC' | 'avg_bitRateFifteenMinutes_ASC' | 'avg_bitRateFifteenMinutes_DESC' | 'avg_bitRateFiveMinutes_ASC' | 'avg_bitRateFiveMinutes_DESC' | 'avg_bitRateHour_ASC' | 'avg_bitRateHour_DESC' | 'avg_bitRateMinute_ASC' | 'avg_bitRateMinute_DESC' | 'avg_bitRateTenSeconds_ASC' | 'avg_bitRateTenSeconds_DESC' | 'avg_bitRate_ASC' | 'avg_bitRate_DESC' | 'avg_packetRateDay_ASC' | 'avg_packetRateDay_DESC' | 'avg_packetRateFifteenMinutes_ASC' | 'avg_packetRateFifteenMinutes_DESC' | 'avg_packetRateFiveMinutes_ASC' | 'avg_packetRateFiveMinutes_DESC' | 'avg_packetRateHour_ASC' | 'avg_packetRateHour_DESC' | 'avg_packetRateMinute_ASC' | 'avg_packetRateMinute_DESC' | 'avg_packetRateTenSeconds_ASC' | 'avg_packetRateTenSeconds_DESC' | 'avg_packetRate_ASC' | 'avg_packetRate_DESC' | 'coloCity_ASC' | 'coloCity_DESC' | 'coloCode_ASC' | 'coloCode_DESC' | 'coloCountry_ASC' | 'coloCountry_DESC' | 'coloGeohash_ASC' | 'coloGeohash_DESC' | 'coloName_ASC' | 'coloName_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetimeTenSeconds_ASC' | 'datetimeTenSeconds_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'destinationAsnName_ASC' | 'destinationAsnName_DESC' | 'destinationAsn_ASC' | 'destinationAsn_DESC' | 'destinationCountry_ASC' | 'destinationCountry_DESC' | 'destinationGeohash_ASC' | 'destinationGeohash_DESC' | 'destinationPort_ASC' | 'destinationPort_DESC' | 'direction_ASC' | 'direction_DESC' | 'ethertype_ASC' | 'ethertype_DESC' | 'greChecksum_ASC' | 'greChecksum_DESC' | 'greEthertype_ASC' | 'greEthertype_DESC' | 'greHeaderLength_ASC' | 'greHeaderLength_DESC' | 'greKey_ASC' | 'greKey_DESC' | 'greSequenceNumber_ASC' | 'greSequenceNumber_DESC' | 'greVersion_ASC' | 'greVersion_DESC' | 'icmpChecksum_ASC' | 'icmpChecksum_DESC' | 'icmpCode_ASC' | 'icmpCode_DESC' | 'icmpType_ASC' | 'icmpType_DESC' | 'ipDestinationAddress_ASC' | 'ipDestinationAddress_DESC' | 'ipDestinationSubnet_ASC' | 'ipDestinationSubnet_DESC' | 'ipFragmentOffset_ASC' | 'ipFragmentOffset_DESC' | 'ipHeaderLength_ASC' | 'ipHeaderLength_DESC' | 'ipMoreFragments_ASC' | 'ipMoreFragments_DESC' | 'ipProtocolName_ASC' | 'ipProtocolName_DESC' | 'ipProtocol_ASC' | 'ipProtocol_DESC' | 'ipSourceAddress_ASC' | 'ipSourceAddress_DESC' | 'ipSourceSubnet_ASC' | 'ipSourceSubnet_DESC' | 'ipTotalLengthBuckets_ASC' | 'ipTotalLengthBuckets_DESC' | 'ipTotalLength_ASC' | 'ipTotalLength_DESC' | 'ipTtlBuckets_ASC' | 'ipTtlBuckets_DESC' | 'ipTtl_ASC' | 'ipTtl_DESC' | 'ipv4Checksum_ASC' | 'ipv4Checksum_DESC' | 'ipv4DontFragment_ASC' | 'ipv4DontFragment_DESC' | 'ipv4Dscp_ASC' | 'ipv4Dscp_DESC' | 'ipv4Ecn_ASC' | 'ipv4Ecn_DESC' | 'ipv4Identification_ASC' | 'ipv4Identification_DESC' | 'ipv4Options_ASC' | 'ipv4Options_DESC' | 'ipv6Dscp_ASC' | 'ipv6Dscp_DESC' | 'ipv6Ecn_ASC' | 'ipv6Ecn_DESC' | 'ipv6ExtensionHeaders_ASC' | 'ipv6ExtensionHeaders_DESC' | 'ipv6FlowLabel_ASC' | 'ipv6FlowLabel_DESC' | 'ipv6Identification_ASC' | 'ipv6Identification_DESC' | 'leaseTag_ASC' | 'leaseTag_DESC' | 'mitigationReason_ASC' | 'mitigationReason_DESC' | 'mitigationScope_ASC' | 'mitigationScope_DESC' | 'outcome_ASC' | 'outcome_DESC' | 'prefixTag_ASC' | 'prefixTag_DESC' | 'protocolState_ASC' | 'protocolState_DESC' | 'ruleId_ASC' | 'ruleId_DESC' | 'ruleName_ASC' | 'ruleName_DESC' | 'rulesetId_ASC' | 'rulesetId_DESC' | 'rulesetOverrideId_ASC' | 'rulesetOverrideId_DESC' | 'sampleInterval_ASC' | 'sampleInterval_DESC' | 'sourceAsnName_ASC' | 'sourceAsnName_DESC' | 'sourceAsn_ASC' | 'sourceAsn_DESC' | 'sourceCountry_ASC' | 'sourceCountry_DESC' | 'sourceGeohash_ASC' | 'sourceGeohash_DESC' | 'sourcePort_ASC' | 'sourcePort_DESC' | 'sum_bits_ASC' | 'sum_bits_DESC' | 'sum_packets_ASC' | 'sum_packets_DESC' | 'system_ASC' | 'system_DESC' | 'tcpAcknowledgementNumber_ASC' | 'tcpAcknowledgementNumber_DESC' | 'tcpChecksum_ASC' | 'tcpChecksum_DESC' | 'tcpDataOffset_ASC' | 'tcpDataOffset_DESC' | 'tcpFlagsString_ASC' | 'tcpFlagsString_DESC' | 'tcpFlags_ASC' | 'tcpFlags_DESC' | 'tcpMss_ASC' | 'tcpMss_DESC' | 'tcpOptions_ASC' | 'tcpOptions_DESC' | 'tcpSackBlocks_ASC' | 'tcpSackBlocks_DESC' | 'tcpSackPermitted_ASC' | 'tcpSackPermitted_DESC' | 'tcpSequenceNumber_ASC' | 'tcpSequenceNumber_DESC' | 'tcpTimestampEcr_ASC' | 'tcpTimestampEcr_DESC' | 'tcpTimestampValue_ASC' | 'tcpTimestampValue_DESC' | 'tcpUrgentPointer_ASC' | 'tcpUrgentPointer_DESC' | 'tcpWindowScale_ASC' | 'tcpWindowScale_DESC' | 'tcpWindowSize_ASC' | 'tcpWindowSize_DESC' | 'udpChecksum_ASC' | 'udpChecksum_DESC' | 'udpPayloadLength_ASC' | 'udpPayloadLength_DESC' | 'verdict_ASC' | 'verdict_DESC'; }; + 'AccountDosdNetworkAnalyticsAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'AccountDosdNetworkAnalyticsAdaptiveGroupsSum'; fields: { 'bits': { name: 'bits'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packets': { name: 'packets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountDosdNetworkAnalyticsAdaptiveGroupsSumConfidence': { kind: 'OBJECT'; name: 'AccountDosdNetworkAnalyticsAdaptiveGroupsSumConfidence'; fields: { 'bits': { name: 'bits'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packets': { name: 'packets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountDurableObjectsInvocationsAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountDurableObjectsInvocationsAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountDurableObjectsInvocationsAdaptiveGroupsAvg'; ofType: null; } }; 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountDurableObjectsInvocationsAdaptiveGroupsConfidence'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountDurableObjectsInvocationsAdaptiveGroupsDimensions'; ofType: null; } }; 'max': { name: 'max'; type: { kind: 'OBJECT'; name: 'AccountDurableObjectsInvocationsAdaptiveGroupsMax'; ofType: null; } }; 'min': { name: 'min'; type: { kind: 'OBJECT'; name: 'AccountDurableObjectsInvocationsAdaptiveGroupsMin'; ofType: null; } }; 'quantiles': { name: 'quantiles'; type: { kind: 'OBJECT'; name: 'AccountDurableObjectsInvocationsAdaptiveGroupsQuantiles'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountDurableObjectsInvocationsAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'AccountDurableObjectsInvocationsAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'AccountDurableObjectsInvocationsAdaptiveGroupsAvg'; fields: { 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountDurableObjectsInvocationsAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountDurableObjectsInvocationsAdaptiveGroupsConfidence'; fields: { 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountDurableObjectsInvocationsAdaptiveGroupsSumConfidence'; ofType: null; } }; }; }; + 'AccountDurableObjectsInvocationsAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountDurableObjectsInvocationsAdaptiveGroupsDimensions'; fields: { 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeSixHours': { name: 'datetimeSixHours'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'environmentName': { name: 'environmentName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'namespaceId': { name: 'namespaceId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'objectId': { name: 'objectId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'scriptName': { name: 'scriptName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'status': { name: 'status'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountDurableObjectsInvocationsAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountDurableObjectsInvocationsAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountDurableObjectsInvocationsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountDurableObjectsInvocationsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'environmentName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'environmentName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'environmentName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'environmentName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'environmentName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'environmentName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'environmentName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'environmentName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'environmentName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'environmentName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'namespaceId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'namespaceId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'namespaceId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'namespaceId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'namespaceId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'namespaceId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'namespaceId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'namespaceId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'namespaceId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'namespaceId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'objectId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'objectId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'objectId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'objectId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'objectId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'objectId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'objectId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'objectId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'objectId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'objectId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'scriptName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'scriptName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'status_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'status_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountDurableObjectsInvocationsAdaptiveGroupsMax': { kind: 'OBJECT'; name: 'AccountDurableObjectsInvocationsAdaptiveGroupsMax'; fields: { 'responseBodySize': { name: 'responseBodySize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'wallTime': { name: 'wallTime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountDurableObjectsInvocationsAdaptiveGroupsMin': { kind: 'OBJECT'; name: 'AccountDurableObjectsInvocationsAdaptiveGroupsMin'; fields: { 'responseBodySize': { name: 'responseBodySize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'wallTime': { name: 'wallTime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountDurableObjectsInvocationsAdaptiveGroupsOrderBy': { name: 'AccountDurableObjectsInvocationsAdaptiveGroupsOrderBy'; enumValues: 'avg_sampleInterval_ASC' | 'avg_sampleInterval_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetimeSixHours_ASC' | 'datetimeSixHours_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'environmentName_ASC' | 'environmentName_DESC' | 'max_responseBodySize_ASC' | 'max_responseBodySize_DESC' | 'max_wallTime_ASC' | 'max_wallTime_DESC' | 'min_responseBodySize_ASC' | 'min_responseBodySize_DESC' | 'min_wallTime_ASC' | 'min_wallTime_DESC' | 'namespaceId_ASC' | 'namespaceId_DESC' | 'objectId_ASC' | 'objectId_DESC' | 'quantiles_responseBodySizeP25_ASC' | 'quantiles_responseBodySizeP25_DESC' | 'quantiles_responseBodySizeP50_ASC' | 'quantiles_responseBodySizeP50_DESC' | 'quantiles_responseBodySizeP75_ASC' | 'quantiles_responseBodySizeP75_DESC' | 'quantiles_responseBodySizeP90_ASC' | 'quantiles_responseBodySizeP90_DESC' | 'quantiles_responseBodySizeP999_ASC' | 'quantiles_responseBodySizeP999_DESC' | 'quantiles_responseBodySizeP99_ASC' | 'quantiles_responseBodySizeP99_DESC' | 'quantiles_wallTimeP25_ASC' | 'quantiles_wallTimeP25_DESC' | 'quantiles_wallTimeP50_ASC' | 'quantiles_wallTimeP50_DESC' | 'quantiles_wallTimeP75_ASC' | 'quantiles_wallTimeP75_DESC' | 'quantiles_wallTimeP90_ASC' | 'quantiles_wallTimeP90_DESC' | 'quantiles_wallTimeP999_ASC' | 'quantiles_wallTimeP999_DESC' | 'quantiles_wallTimeP99_ASC' | 'quantiles_wallTimeP99_DESC' | 'scriptName_ASC' | 'scriptName_DESC' | 'stableId_ASC' | 'stableId_DESC' | 'status_ASC' | 'status_DESC' | 'sum_errors_ASC' | 'sum_errors_DESC' | 'sum_requests_ASC' | 'sum_requests_DESC' | 'sum_responseBodySize_ASC' | 'sum_responseBodySize_DESC' | 'sum_wallTime_ASC' | 'sum_wallTime_DESC'; }; + 'AccountDurableObjectsInvocationsAdaptiveGroupsQuantiles': { kind: 'OBJECT'; name: 'AccountDurableObjectsInvocationsAdaptiveGroupsQuantiles'; fields: { 'responseBodySizeP25': { name: 'responseBodySizeP25'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'responseBodySizeP50': { name: 'responseBodySizeP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'responseBodySizeP75': { name: 'responseBodySizeP75'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'responseBodySizeP90': { name: 'responseBodySizeP90'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'responseBodySizeP99': { name: 'responseBodySizeP99'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'responseBodySizeP999': { name: 'responseBodySizeP999'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'wallTimeP25': { name: 'wallTimeP25'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'wallTimeP50': { name: 'wallTimeP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'wallTimeP75': { name: 'wallTimeP75'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'wallTimeP90': { name: 'wallTimeP90'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'wallTimeP99': { name: 'wallTimeP99'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'wallTimeP999': { name: 'wallTimeP999'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; }; }; + 'AccountDurableObjectsInvocationsAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'AccountDurableObjectsInvocationsAdaptiveGroupsSum'; fields: { 'errors': { name: 'errors'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'responseBodySize': { name: 'responseBodySize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'wallTime': { name: 'wallTime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountDurableObjectsInvocationsAdaptiveGroupsSumConfidence': { kind: 'OBJECT'; name: 'AccountDurableObjectsInvocationsAdaptiveGroupsSumConfidence'; fields: { 'errors': { name: 'errors'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'responseBodySize': { name: 'responseBodySize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'wallTime': { name: 'wallTime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountDurableObjectsPeriodicGroups': { kind: 'OBJECT'; name: 'AccountDurableObjectsPeriodicGroups'; fields: { 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountDurableObjectsPeriodicGroupsConfidence'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountDurableObjectsPeriodicGroupsDimensions'; ofType: null; } }; 'max': { name: 'max'; type: { kind: 'OBJECT'; name: 'AccountDurableObjectsPeriodicGroupsMax'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountDurableObjectsPeriodicGroupsSum'; ofType: null; } }; }; }; + 'AccountDurableObjectsPeriodicGroupsConfidence': { kind: 'OBJECT'; name: 'AccountDurableObjectsPeriodicGroupsConfidence'; fields: { 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountDurableObjectsPeriodicGroupsSumConfidence'; ofType: null; } }; }; }; + 'AccountDurableObjectsPeriodicGroupsDimensions': { kind: 'OBJECT'; name: 'AccountDurableObjectsPeriodicGroupsDimensions'; fields: { 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeSixHours': { name: 'datetimeSixHours'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'namespaceId': { name: 'namespaceId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'objectId': { name: 'objectId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountDurableObjectsPeriodicGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountDurableObjectsPeriodicGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountDurableObjectsPeriodicGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountDurableObjectsPeriodicGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'namespaceId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'namespaceId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'namespaceId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'namespaceId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'namespaceId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'namespaceId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'namespaceId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'namespaceId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'namespaceId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'namespaceId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'objectId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'objectId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'objectId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'objectId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'objectId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'objectId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'objectId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'objectId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'objectId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'objectId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountDurableObjectsPeriodicGroupsMax': { kind: 'OBJECT'; name: 'AccountDurableObjectsPeriodicGroupsMax'; fields: { 'activeWebsocketConnections': { name: 'activeWebsocketConnections'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; }; }; + 'AccountDurableObjectsPeriodicGroupsOrderBy': { name: 'AccountDurableObjectsPeriodicGroupsOrderBy'; enumValues: 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetimeSixHours_ASC' | 'datetimeSixHours_DESC' | 'max_activeWebsocketConnections_ASC' | 'max_activeWebsocketConnections_DESC' | 'namespaceId_ASC' | 'namespaceId_DESC' | 'objectId_ASC' | 'objectId_DESC' | 'sum_activeTime_ASC' | 'sum_activeTime_DESC' | 'sum_cpuTime_ASC' | 'sum_cpuTime_DESC' | 'sum_duration_ASC' | 'sum_duration_DESC' | 'sum_exceededCpuErrors_ASC' | 'sum_exceededCpuErrors_DESC' | 'sum_exceededMemoryErrors_ASC' | 'sum_exceededMemoryErrors_DESC' | 'sum_fatalInternalErrors_ASC' | 'sum_fatalInternalErrors_DESC' | 'sum_inboundWebsocketMsgCount_ASC' | 'sum_inboundWebsocketMsgCount_DESC' | 'sum_outboundWebsocketMsgCount_ASC' | 'sum_outboundWebsocketMsgCount_DESC' | 'sum_rowsRead_ASC' | 'sum_rowsRead_DESC' | 'sum_rowsWritten_ASC' | 'sum_rowsWritten_DESC' | 'sum_storageDeletes_ASC' | 'sum_storageDeletes_DESC' | 'sum_storageReadUnits_ASC' | 'sum_storageReadUnits_DESC' | 'sum_storageWriteUnits_ASC' | 'sum_storageWriteUnits_DESC' | 'sum_subrequests_ASC' | 'sum_subrequests_DESC'; }; + 'AccountDurableObjectsPeriodicGroupsSum': { kind: 'OBJECT'; name: 'AccountDurableObjectsPeriodicGroupsSum'; fields: { 'activeTime': { name: 'activeTime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'cpuTime': { name: 'cpuTime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'duration': { name: 'duration'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'exceededCpuErrors': { name: 'exceededCpuErrors'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'exceededMemoryErrors': { name: 'exceededMemoryErrors'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'fatalInternalErrors': { name: 'fatalInternalErrors'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'inboundWebsocketMsgCount': { name: 'inboundWebsocketMsgCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'outboundWebsocketMsgCount': { name: 'outboundWebsocketMsgCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'rowsRead': { name: 'rowsRead'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'rowsWritten': { name: 'rowsWritten'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'storageDeletes': { name: 'storageDeletes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'storageReadUnits': { name: 'storageReadUnits'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'storageWriteUnits': { name: 'storageWriteUnits'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'subrequests': { name: 'subrequests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountDurableObjectsPeriodicGroupsSumConfidence': { kind: 'OBJECT'; name: 'AccountDurableObjectsPeriodicGroupsSumConfidence'; fields: { 'activeTime': { name: 'activeTime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'cpuTime': { name: 'cpuTime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'duration': { name: 'duration'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'exceededCpuErrors': { name: 'exceededCpuErrors'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'exceededMemoryErrors': { name: 'exceededMemoryErrors'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'fatalInternalErrors': { name: 'fatalInternalErrors'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'inboundWebsocketMsgCount': { name: 'inboundWebsocketMsgCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'outboundWebsocketMsgCount': { name: 'outboundWebsocketMsgCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'rowsRead': { name: 'rowsRead'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'rowsWritten': { name: 'rowsWritten'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'storageDeletes': { name: 'storageDeletes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'storageWriteUnits': { name: 'storageWriteUnits'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'subrequests': { name: 'subrequests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountDurableObjectsSqlStorageGroups': { kind: 'OBJECT'; name: 'AccountDurableObjectsSqlStorageGroups'; fields: { 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountDurableObjectsSqlStorageGroupsDimensions'; ofType: null; } }; 'max': { name: 'max'; type: { kind: 'OBJECT'; name: 'AccountDurableObjectsSqlStorageGroupsMax'; ofType: null; } }; }; }; + 'AccountDurableObjectsSqlStorageGroupsDimensions': { kind: 'OBJECT'; name: 'AccountDurableObjectsSqlStorageGroupsDimensions'; fields: { 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'namespaceId': { name: 'namespaceId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountDurableObjectsSqlStorageGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountDurableObjectsSqlStorageGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountDurableObjectsSqlStorageGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountDurableObjectsSqlStorageGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'namespaceId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'namespaceId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'namespaceId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'namespaceId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'namespaceId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'namespaceId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'namespaceId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'namespaceId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'namespaceId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'namespaceId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountDurableObjectsSqlStorageGroupsMax': { kind: 'OBJECT'; name: 'AccountDurableObjectsSqlStorageGroupsMax'; fields: { 'storedBytes': { name: 'storedBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountDurableObjectsSqlStorageGroupsOrderBy': { name: 'AccountDurableObjectsSqlStorageGroupsOrderBy'; enumValues: 'date_ASC' | 'date_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'max_storedBytes_ASC' | 'max_storedBytes_DESC' | 'namespaceId_ASC' | 'namespaceId_DESC'; }; + 'AccountDurableObjectsStorageGroups': { kind: 'OBJECT'; name: 'AccountDurableObjectsStorageGroups'; fields: { 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountDurableObjectsStorageGroupsDimensions'; ofType: null; } }; 'max': { name: 'max'; type: { kind: 'OBJECT'; name: 'AccountDurableObjectsStorageGroupsMax'; ofType: null; } }; }; }; + 'AccountDurableObjectsStorageGroupsDimensions': { kind: 'OBJECT'; name: 'AccountDurableObjectsStorageGroupsDimensions'; fields: { 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; }; }; + 'AccountDurableObjectsStorageGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountDurableObjectsStorageGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountDurableObjectsStorageGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountDurableObjectsStorageGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }]; }; + 'AccountDurableObjectsStorageGroupsMax': { kind: 'OBJECT'; name: 'AccountDurableObjectsStorageGroupsMax'; fields: { 'storedBytes': { name: 'storedBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountDurableObjectsStorageGroupsOrderBy': { name: 'AccountDurableObjectsStorageGroupsOrderBy'; enumValues: 'date_ASC' | 'date_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'max_storedBytes_ASC' | 'max_storedBytes_DESC'; }; + 'AccountDurableObjectsSubrequestsAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountDurableObjectsSubrequestsAdaptiveGroups'; fields: { 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountDurableObjectsSubrequestsAdaptiveGroupsConfidence'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountDurableObjectsSubrequestsAdaptiveGroupsDimensions'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountDurableObjectsSubrequestsAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'AccountDurableObjectsSubrequestsAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountDurableObjectsSubrequestsAdaptiveGroupsConfidence'; fields: { 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountDurableObjectsSubrequestsAdaptiveGroupsSumConfidence'; ofType: null; } }; }; }; + 'AccountDurableObjectsSubrequestsAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountDurableObjectsSubrequestsAdaptiveGroupsDimensions'; fields: { 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeSixHours': { name: 'datetimeSixHours'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'environmentName': { name: 'environmentName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'namespaceId': { name: 'namespaceId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'objectId': { name: 'objectId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'scriptName': { name: 'scriptName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountDurableObjectsSubrequestsAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountDurableObjectsSubrequestsAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountDurableObjectsSubrequestsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountDurableObjectsSubrequestsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'environmentName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'environmentName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'environmentName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'environmentName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'environmentName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'environmentName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'environmentName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'environmentName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'environmentName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'environmentName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'namespaceId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'namespaceId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'namespaceId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'namespaceId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'namespaceId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'namespaceId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'namespaceId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'namespaceId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'namespaceId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'namespaceId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'objectId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'objectId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'objectId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'objectId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'objectId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'objectId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'objectId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'objectId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'objectId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'objectId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'scriptName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'scriptName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountDurableObjectsSubrequestsAdaptiveGroupsOrderBy': { name: 'AccountDurableObjectsSubrequestsAdaptiveGroupsOrderBy'; enumValues: 'date_ASC' | 'date_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetimeSixHours_ASC' | 'datetimeSixHours_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'environmentName_ASC' | 'environmentName_DESC' | 'namespaceId_ASC' | 'namespaceId_DESC' | 'objectId_ASC' | 'objectId_DESC' | 'scriptName_ASC' | 'scriptName_DESC' | 'sum_requestBodySizeUncached_ASC' | 'sum_requestBodySizeUncached_DESC'; }; + 'AccountDurableObjectsSubrequestsAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'AccountDurableObjectsSubrequestsAdaptiveGroupsSum'; fields: { 'requestBodySizeUncached': { name: 'requestBodySizeUncached'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountDurableObjectsSubrequestsAdaptiveGroupsSumConfidence': { kind: 'OBJECT'; name: 'AccountDurableObjectsSubrequestsAdaptiveGroupsSumConfidence'; fields: { 'requestBodySizeUncached': { name: 'requestBodySizeUncached'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountFbmAttackAnalyticsGroups': { kind: 'OBJECT'; name: 'AccountFbmAttackAnalyticsGroups'; fields: { 'attackId': { name: 'attackId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'attackType': { name: 'attackType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'attackVector': { name: 'attackVector'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'bits': { name: 'bits'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'commonTcpFlags': { name: 'commonTcpFlags'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'commonTcpFlagsNames': { name: 'commonTcpFlagsNames'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'destinationIp': { name: 'destinationIp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'destinationPort': { name: 'destinationPort'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'droppedBits': { name: 'droppedBits'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'droppedPackets': { name: 'droppedPackets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'endDatetime': { name: 'endDatetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'ipProtocol': { name: 'ipProtocol'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipProtocolName': { name: 'ipProtocolName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'mitigationReason': { name: 'mitigationReason'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'mitigationScope': { name: 'mitigationScope'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'mitigationType': { name: 'mitigationType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'packets': { name: 'packets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'ruleId': { name: 'ruleId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ruleName': { name: 'ruleName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'rulesetId': { name: 'rulesetId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'rulesetOverrideId': { name: 'rulesetOverrideId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sourceIp': { name: 'sourceIp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sourcePort': { name: 'sourcePort'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'startDatetime': { name: 'startDatetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'tcpFlags': { name: 'tcpFlags'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'tcpFlagsNames': { name: 'tcpFlagsNames'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountFbmAttackAnalyticsGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountFbmAttackAnalyticsGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountFbmAttackAnalyticsGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountFbmAttackAnalyticsGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'attackId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'attackId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'attackId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackType'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackType_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackType_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackType_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'attackType_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackType_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackType_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackType_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackType_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'attackType_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackVector'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackVector_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackVector_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackVector_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'attackVector_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackVector_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackVector_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackVector_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackVector_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'attackVector_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'bits'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'bits_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'bits_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'bits_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'bits_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'bits_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'bits_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'bits_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'commonTcpFlags'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'commonTcpFlagsNames'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'commonTcpFlagsNames_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'commonTcpFlagsNames_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'commonTcpFlagsNames_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'commonTcpFlagsNames_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'commonTcpFlagsNames_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'commonTcpFlagsNames_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'commonTcpFlagsNames_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'commonTcpFlagsNames_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'commonTcpFlagsNames_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'commonTcpFlags_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'commonTcpFlags_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'commonTcpFlags_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'commonTcpFlags_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'commonTcpFlags_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'commonTcpFlags_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'commonTcpFlags_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'destinationIp'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIp_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIp_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationIp_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIp_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIp_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIp_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIp_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationIp_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationPort'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationPort_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'droppedBits'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'droppedBits_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'droppedBits_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'droppedBits_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'droppedBits_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'droppedBits_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'droppedBits_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'droppedBits_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'droppedPackets'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'droppedPackets_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'droppedPackets_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'droppedPackets_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'droppedPackets_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'droppedPackets_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'droppedPackets_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'droppedPackets_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'endDatetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'endDatetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'endDatetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'endDatetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'endDatetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'endDatetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'endDatetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'endDatetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipProtocol'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipProtocolName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipProtocolName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'mitigationReason'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationReason_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationReason_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationReason_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'mitigationReason_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationReason_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationReason_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationReason_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationReason_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'mitigationReason_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationScope'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationScope_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationScope_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationScope_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'mitigationScope_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationScope_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationScope_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationScope_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationScope_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'mitigationScope_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationType'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationType_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationType_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationType_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'mitigationType_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationType_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationType_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationType_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationType_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'mitigationType_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'packets'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'packets_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'packets_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'packets_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'packets_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'packets_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'packets_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'packets_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'ruleId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ruleId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ruleId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ruleName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ruleName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'rulesetId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'rulesetId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetOverrideId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetOverrideId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetOverrideId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetOverrideId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'rulesetOverrideId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetOverrideId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetOverrideId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetOverrideId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetOverrideId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'rulesetOverrideId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIp'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIp_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIp_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceIp_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIp_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIp_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIp_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIp_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceIp_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourcePort'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourcePort_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'startDatetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'startDatetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'startDatetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'startDatetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'startDatetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'startDatetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'startDatetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'startDatetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpFlags'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsNames'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsNames_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsNames_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsNames_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpFlagsNames_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsNames_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsNames_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsNames_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsNames_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpFlagsNames_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }]; }; + 'AccountFbmAttackAnalyticsGroupsOrderBy': { name: 'AccountFbmAttackAnalyticsGroupsOrderBy'; enumValues: 'attackId_ASC' | 'attackId_DESC' | 'attackType_ASC' | 'attackType_DESC' | 'attackVector_ASC' | 'attackVector_DESC' | 'bits_ASC' | 'bits_DESC' | 'commonTcpFlagsNames_ASC' | 'commonTcpFlagsNames_DESC' | 'commonTcpFlags_ASC' | 'commonTcpFlags_DESC' | 'destinationIp_ASC' | 'destinationIp_DESC' | 'destinationPort_ASC' | 'destinationPort_DESC' | 'droppedBits_ASC' | 'droppedBits_DESC' | 'droppedPackets_ASC' | 'droppedPackets_DESC' | 'endDatetime_ASC' | 'endDatetime_DESC' | 'ipProtocolName_ASC' | 'ipProtocolName_DESC' | 'ipProtocol_ASC' | 'ipProtocol_DESC' | 'mitigationReason_ASC' | 'mitigationReason_DESC' | 'mitigationScope_ASC' | 'mitigationScope_DESC' | 'mitigationType_ASC' | 'mitigationType_DESC' | 'packets_ASC' | 'packets_DESC' | 'ruleId_ASC' | 'ruleId_DESC' | 'ruleName_ASC' | 'ruleName_DESC' | 'rulesetId_ASC' | 'rulesetId_DESC' | 'rulesetOverrideId_ASC' | 'rulesetOverrideId_DESC' | 'sourceIp_ASC' | 'sourceIp_DESC' | 'sourcePort_ASC' | 'sourcePort_DESC' | 'startDatetime_ASC' | 'startDatetime_DESC' | 'tcpFlagsNames_ASC' | 'tcpFlagsNames_DESC' | 'tcpFlags_ASC' | 'tcpFlags_DESC'; }; + 'AccountFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'accountTag'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; defaultValue: null }]; }; + 'AccountFirewallEventsAdaptive': { kind: 'OBJECT'; name: 'AccountFirewallEventsAdaptive'; fields: { 'action': { name: 'action'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'apiGatewayMatchedEndpoint': { name: 'apiGatewayMatchedEndpoint'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'apiGatewayMatchedHost': { name: 'apiGatewayMatchedHost'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'attackSignatureCategories': { name: 'attackSignatureCategories'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'attackSignatureRefs': { name: 'attackSignatureRefs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'botDetectionIds': { name: 'botDetectionIds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; } }; 'botDetectionTags': { name: 'botDetectionTags'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'botScore': { name: 'botScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'botScoreSrcName': { name: 'botScoreSrcName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientASNDescription': { name: 'clientASNDescription'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientAsn': { name: 'clientAsn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientCountryName': { name: 'clientCountryName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientIP': { name: 'clientIP'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientIPClass': { name: 'clientIPClass'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRefererHost': { name: 'clientRefererHost'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRefererPath': { name: 'clientRefererPath'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRefererQuery': { name: 'clientRefererQuery'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRefererScheme': { name: 'clientRefererScheme'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRequestHTTPHost': { name: 'clientRequestHTTPHost'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRequestHTTPMethodName': { name: 'clientRequestHTTPMethodName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRequestHTTPProtocol': { name: 'clientRequestHTTPProtocol'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRequestPath': { name: 'clientRequestPath'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRequestQuery': { name: 'clientRequestQuery'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRequestScheme': { name: 'clientRequestScheme'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'contentScanHasFailed': { name: 'contentScanHasFailed'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'contentScanNumMaliciousObj': { name: 'contentScanNumMaliciousObj'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'contentScanNumObj': { name: 'contentScanNumObj'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'contentScanObjResults': { name: 'contentScanObjResults'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'contentScanObjSizes': { name: 'contentScanObjSizes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; } }; 'contentScanObjTypes': { name: 'contentScanObjTypes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'description': { name: 'description'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'edgeColoName': { name: 'edgeColoName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'edgeResponseStatus': { name: 'edgeResponseStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'firewallForAiAnyPiiCategory': { name: 'firewallForAiAnyPiiCategory'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; } }; 'firewallForAiInjectionScore': { name: 'firewallForAiInjectionScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; } }; 'firewallForAiPiiCategories': { name: 'firewallForAiPiiCategories'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'firewallForAiUnsafeTopicCategories': { name: 'firewallForAiUnsafeTopicCategories'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'fraudAttack': { name: 'fraudAttack'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'fraudDetectionIds': { name: 'fraudDetectionIds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; } }; 'fraudDetectionTags': { name: 'fraudDetectionTags'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'fraudEmailRisk': { name: 'fraudEmailRisk'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'httpApplicationVersion': { name: 'httpApplicationVersion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'ja3Hash': { name: 'ja3Hash'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ja4': { name: 'ja4'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ja4Signals': { name: 'ja4Signals'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountFirewallEventsAdaptiveJa4SignalsElem'; ofType: null; }; }; }; } }; 'jsDetectionPassed': { name: 'jsDetectionPassed'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'kind': { name: 'kind'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'leakedCredentialCheckResult': { name: 'leakedCredentialCheckResult'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'matchIndex': { name: 'matchIndex'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'metadata': { name: 'metadata'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountFirewallEventsAdaptiveMetadataElem'; ofType: null; }; }; }; } }; 'originResponseStatus': { name: 'originResponseStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'originatorRayName': { name: 'originatorRayName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'rayName': { name: 'rayName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ref': { name: 'ref'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ruleId': { name: 'ruleId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'rulesetId': { name: 'rulesetId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'source': { name: 'source'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'userAgent': { name: 'userAgent'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'verifiedBotCategory': { name: 'verifiedBotCategory'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'wafAttackScore': { name: 'wafAttackScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'wafAttackScoreClass': { name: 'wafAttackScoreClass'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'wafMlAttackScore': { name: 'wafMlAttackScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'wafMlSqliAttackScore': { name: 'wafMlSqliAttackScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'wafMlXssAttackScore': { name: 'wafMlXssAttackScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'wafRceAttackScore': { name: 'wafRceAttackScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'wafSqliAttackScore': { name: 'wafSqliAttackScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'wafXssAttackScore': { name: 'wafXssAttackScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'zoneTag': { name: 'zoneTag'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'zoneVersion': { name: 'zoneVersion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountFirewallEventsAdaptiveFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountFirewallEventsAdaptiveFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountFirewallEventsAdaptiveFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountFirewallEventsAdaptiveFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'action'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'action_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'action_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackSignatureCategories_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackSignatureCategories_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'attackSignatureCategories_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'attackSignatureCategories_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'attackSignatureCategories_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackSignatureRefs_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackSignatureRefs_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'attackSignatureRefs_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'attackSignatureRefs_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'attackSignatureRefs_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botDetectionIds_has'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'botDetectionIds_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'botDetectionIds_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'botDetectionIds_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'botDetectionIds_nothas'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'botDetectionTags_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botDetectionTags_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'botDetectionTags_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'botDetectionTags_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'botDetectionTags_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScore'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'botScoreSrcName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'botScoreSrcName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScore_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScore_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScore_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'botScore_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScore_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScore_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScore_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientASNDescription_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientASNDescription_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientAsn_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientAsn_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientCountryName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientCountryName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPClass'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPClass_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPClass_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPClass_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientIPClass_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPClass_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPClass_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPClass_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPClass_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientIPClass_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientIP_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientIP_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRefererHost_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRefererHost_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererPath'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererPath_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererPath_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererPath_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRefererPath_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererPath_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererPath_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererPath_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererPath_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRefererPath_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererQuery'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererQuery_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererQuery_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererQuery_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRefererQuery_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererQuery_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererQuery_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererQuery_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererQuery_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRefererQuery_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererScheme'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererScheme_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererScheme_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererScheme_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRefererScheme_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererScheme_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererScheme_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererScheme_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererScheme_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRefererScheme_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestHTTPHost_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestHTTPHost_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestPath_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestPath_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestQuery_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestQuery_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestScheme_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestScheme_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjResults_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjResults_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'contentScanObjResults_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'contentScanObjResults_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjResults_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjSizes_has'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjSizes_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'contentScanObjSizes_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'contentScanObjSizes_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjSizes_nothas'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjTypes_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjTypes_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'contentScanObjTypes_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'contentScanObjTypes_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjTypes_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'description'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'description_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'description_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'description_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'description_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'description_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'description_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'description_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'description_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'description_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeColoName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeColoName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeResponseStatus_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory_geq'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory_gt'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory_leq'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory_lt'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory_neq'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiInjectionScore'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiInjectionScore_geq'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiInjectionScore_gt'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiInjectionScore_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiInjectionScore_leq'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiInjectionScore_lt'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiInjectionScore_neq'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiInjectionScore_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiPiiCategories_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiPiiCategories_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiPiiCategories_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiPiiCategories_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiPiiCategories_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiUnsafeTopicCategories_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiUnsafeTopicCategories_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiUnsafeTopicCategories_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiUnsafeTopicCategories_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiUnsafeTopicCategories_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudAttack_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudAttack_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudDetectionIds_has'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'fraudDetectionIds_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudDetectionIds_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudDetectionIds_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'fraudDetectionIds_nothas'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'fraudDetectionTags_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudDetectionTags_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudDetectionTags_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudDetectionTags_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'fraudDetectionTags_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudEmailRisk_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudEmailRisk_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'httpApplicationVersion_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'ja3Hash'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja3Hash_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja3Hash_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja3Hash_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ja3Hash_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja3Hash_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja3Hash_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja3Hash_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja3Hash_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ja3Hash_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ja4_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ja4_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'jsDetectionPassed_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'jsDetectionPassed_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'kind'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'kind_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'kind_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'kind_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'kind_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'kind_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'kind_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'kind_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'kind_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'kind_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leakedCredentialCheckResult'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leakedCredentialCheckResult_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leakedCredentialCheckResult_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leakedCredentialCheckResult_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'leakedCredentialCheckResult_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leakedCredentialCheckResult_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leakedCredentialCheckResult_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leakedCredentialCheckResult_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leakedCredentialCheckResult_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'leakedCredentialCheckResult_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'matchIndex'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'matchIndex_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'matchIndex_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'matchIndex_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'matchIndex_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'matchIndex_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'matchIndex_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'matchIndex_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'originResponseStatus'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'originResponseStatus_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'originResponseStatus_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'originResponseStatus_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'originResponseStatus_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'originResponseStatus_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'originResponseStatus_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'originResponseStatus_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'originatorRayName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originatorRayName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originatorRayName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originatorRayName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'originatorRayName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originatorRayName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originatorRayName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originatorRayName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originatorRayName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'originatorRayName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'rayName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'rayName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ref'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ref_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ref_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ref_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ref_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ref_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ref_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ref_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ref_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ref_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ruleId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ruleId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'rulesetId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'rulesetId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sampleInterval_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'source'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'source_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'source_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'source_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'source_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'source_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'source_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'source_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'source_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'source_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userAgent_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userAgent_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'verifiedBotCategory_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'verifiedBotCategory_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'wafAttackScoreClass_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'wafAttackScoreClass_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafMlAttackScore'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlAttackScore_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlAttackScore_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlAttackScore_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafMlAttackScore_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlAttackScore_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlAttackScore_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlAttackScore_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafMlSqliAttackScore'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlSqliAttackScore_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlSqliAttackScore_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlSqliAttackScore_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafMlSqliAttackScore_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlSqliAttackScore_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlSqliAttackScore_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlSqliAttackScore_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafMlXssAttackScore'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlXssAttackScore_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlXssAttackScore_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlXssAttackScore_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafMlXssAttackScore_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlXssAttackScore_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlXssAttackScore_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlXssAttackScore_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'zoneTag'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'zoneTag_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'zoneTag_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'zoneTag_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'zoneTag_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'zoneTag_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'zoneTag_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'zoneTag_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'zoneTag_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'zoneTag_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'zoneVersion_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }]; }; + 'AccountFirewallEventsAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountFirewallEventsAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountFirewallEventsAdaptiveGroupsAvg'; ofType: null; } }; 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountFirewallEventsAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountFirewallEventsAdaptiveGroupsDimensions'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountFirewallEventsAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'AccountFirewallEventsAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'AccountFirewallEventsAdaptiveGroupsAvg'; fields: { 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountFirewallEventsAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountFirewallEventsAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountFirewallEventsAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountFirewallEventsAdaptiveGroupsDimensions'; fields: { 'action': { name: 'action'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'apiGatewayMatchedEndpoint': { name: 'apiGatewayMatchedEndpoint'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'apiGatewayMatchedHost': { name: 'apiGatewayMatchedHost'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'attackSignatureCategories': { name: 'attackSignatureCategories'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'attackSignatureRefs': { name: 'attackSignatureRefs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'botDetectionIds': { name: 'botDetectionIds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; } }; 'botDetectionTags': { name: 'botDetectionTags'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'botScore': { name: 'botScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'botScoreSrcName': { name: 'botScoreSrcName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientASNDescription': { name: 'clientASNDescription'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientAsn': { name: 'clientAsn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientCountryName': { name: 'clientCountryName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientIP': { name: 'clientIP'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientIPClass': { name: 'clientIPClass'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRefererHost': { name: 'clientRefererHost'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRefererPath': { name: 'clientRefererPath'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRefererQuery': { name: 'clientRefererQuery'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRefererScheme': { name: 'clientRefererScheme'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRequestHTTPHost': { name: 'clientRequestHTTPHost'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRequestHTTPMethodName': { name: 'clientRequestHTTPMethodName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRequestHTTPProtocol': { name: 'clientRequestHTTPProtocol'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRequestPath': { name: 'clientRequestPath'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRequestQuery': { name: 'clientRequestQuery'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRequestScheme': { name: 'clientRequestScheme'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'contentScanHasFailed': { name: 'contentScanHasFailed'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'contentScanNumMaliciousObj': { name: 'contentScanNumMaliciousObj'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'contentScanNumObj': { name: 'contentScanNumObj'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'contentScanObjResults': { name: 'contentScanObjResults'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'contentScanObjSizes': { name: 'contentScanObjSizes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; } }; 'contentScanObjTypes': { name: 'contentScanObjTypes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'description': { name: 'description'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'edgeColoName': { name: 'edgeColoName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'edgeResponseStatus': { name: 'edgeResponseStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'firewallForAiAnyPiiCategory': { name: 'firewallForAiAnyPiiCategory'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; } }; 'firewallForAiInjectionScore': { name: 'firewallForAiInjectionScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; } }; 'firewallForAiPiiCategories': { name: 'firewallForAiPiiCategories'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'firewallForAiUnsafeTopicCategories': { name: 'firewallForAiUnsafeTopicCategories'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'fraudAttack': { name: 'fraudAttack'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'fraudDetectionIds': { name: 'fraudDetectionIds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; } }; 'fraudDetectionTags': { name: 'fraudDetectionTags'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'fraudEmailRisk': { name: 'fraudEmailRisk'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'httpApplicationVersion': { name: 'httpApplicationVersion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'ja3Hash': { name: 'ja3Hash'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ja4': { name: 'ja4'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'jsDetectionPassed': { name: 'jsDetectionPassed'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'kind': { name: 'kind'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'matchIndex': { name: 'matchIndex'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'originResponseStatus': { name: 'originResponseStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'originatorRayName': { name: 'originatorRayName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'rayName': { name: 'rayName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ref': { name: 'ref'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ruleId': { name: 'ruleId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'rulesetId': { name: 'rulesetId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'source': { name: 'source'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'userAgent': { name: 'userAgent'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'verifiedBotCategory': { name: 'verifiedBotCategory'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'wafAttackScore': { name: 'wafAttackScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'wafAttackScoreClass': { name: 'wafAttackScoreClass'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'wafMlAttackScore': { name: 'wafMlAttackScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'wafMlSqliAttackScore': { name: 'wafMlSqliAttackScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'wafMlXssAttackScore': { name: 'wafMlXssAttackScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'wafRceAttackScore': { name: 'wafRceAttackScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'wafSqliAttackScore': { name: 'wafSqliAttackScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'wafXssAttackScore': { name: 'wafXssAttackScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'zoneTag': { name: 'zoneTag'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'zoneVersion': { name: 'zoneVersion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountFirewallEventsAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountFirewallEventsAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountFirewallEventsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountFirewallEventsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'action'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'action_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'action_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackSignatureCategories_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackSignatureCategories_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'attackSignatureCategories_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'attackSignatureCategories_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'attackSignatureCategories_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackSignatureRefs_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackSignatureRefs_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'attackSignatureRefs_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'attackSignatureRefs_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'attackSignatureRefs_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botDetectionIds_has'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'botDetectionIds_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'botDetectionIds_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'botDetectionIds_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'botDetectionIds_nothas'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'botDetectionTags_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botDetectionTags_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'botDetectionTags_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'botDetectionTags_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'botDetectionTags_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScore'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'botScoreSrcName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'botScoreSrcName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScore_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScore_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScore_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'botScore_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScore_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScore_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScore_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientASNDescription_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientASNDescription_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientAsn_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientAsn_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientCountryName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientCountryName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPClass'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPClass_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPClass_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPClass_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientIPClass_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPClass_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPClass_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPClass_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPClass_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientIPClass_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientIP_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientIP_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRefererHost_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRefererHost_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererPath'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererPath_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererPath_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererPath_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRefererPath_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererPath_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererPath_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererPath_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererPath_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRefererPath_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererQuery'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererQuery_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererQuery_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererQuery_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRefererQuery_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererQuery_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererQuery_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererQuery_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererQuery_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRefererQuery_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererScheme'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererScheme_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererScheme_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererScheme_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRefererScheme_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererScheme_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererScheme_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererScheme_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererScheme_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRefererScheme_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestHTTPHost_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestHTTPHost_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestPath_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestPath_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestQuery_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestQuery_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestScheme_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestScheme_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjResults_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjResults_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'contentScanObjResults_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'contentScanObjResults_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjResults_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjSizes_has'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjSizes_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'contentScanObjSizes_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'contentScanObjSizes_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjSizes_nothas'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjTypes_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjTypes_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'contentScanObjTypes_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'contentScanObjTypes_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjTypes_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'description'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'description_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'description_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'description_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'description_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'description_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'description_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'description_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'description_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'description_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeColoName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeColoName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeResponseStatus_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory_geq'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory_gt'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory_leq'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory_lt'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory_neq'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiInjectionScore'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiInjectionScore_geq'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiInjectionScore_gt'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiInjectionScore_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiInjectionScore_leq'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiInjectionScore_lt'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiInjectionScore_neq'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiInjectionScore_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiPiiCategories_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiPiiCategories_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiPiiCategories_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiPiiCategories_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiPiiCategories_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiUnsafeTopicCategories_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiUnsafeTopicCategories_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiUnsafeTopicCategories_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiUnsafeTopicCategories_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiUnsafeTopicCategories_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudAttack_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudAttack_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudDetectionIds_has'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'fraudDetectionIds_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudDetectionIds_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudDetectionIds_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'fraudDetectionIds_nothas'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'fraudDetectionTags_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudDetectionTags_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudDetectionTags_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudDetectionTags_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'fraudDetectionTags_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudEmailRisk_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudEmailRisk_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'httpApplicationVersion_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'ja3Hash'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja3Hash_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja3Hash_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja3Hash_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ja3Hash_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja3Hash_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja3Hash_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja3Hash_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja3Hash_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ja3Hash_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ja4_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ja4_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'jsDetectionPassed_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'jsDetectionPassed_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'kind'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'kind_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'kind_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'kind_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'kind_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'kind_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'kind_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'kind_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'kind_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'kind_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'matchIndex'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'matchIndex_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'matchIndex_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'matchIndex_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'matchIndex_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'matchIndex_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'matchIndex_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'matchIndex_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'originResponseStatus'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'originResponseStatus_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'originResponseStatus_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'originResponseStatus_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'originResponseStatus_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'originResponseStatus_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'originResponseStatus_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'originResponseStatus_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'originatorRayName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originatorRayName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originatorRayName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originatorRayName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'originatorRayName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originatorRayName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originatorRayName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originatorRayName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originatorRayName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'originatorRayName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'rayName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'rayName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ref'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ref_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ref_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ref_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ref_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ref_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ref_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ref_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ref_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ref_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ruleId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ruleId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'rulesetId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'rulesetId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sampleInterval_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'source'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'source_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'source_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'source_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'source_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'source_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'source_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'source_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'source_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'source_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userAgent_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userAgent_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'verifiedBotCategory_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'verifiedBotCategory_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'wafAttackScoreClass_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'wafAttackScoreClass_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafMlAttackScore'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlAttackScore_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlAttackScore_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlAttackScore_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafMlAttackScore_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlAttackScore_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlAttackScore_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlAttackScore_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafMlSqliAttackScore'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlSqliAttackScore_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlSqliAttackScore_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlSqliAttackScore_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafMlSqliAttackScore_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlSqliAttackScore_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlSqliAttackScore_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlSqliAttackScore_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafMlXssAttackScore'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlXssAttackScore_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlXssAttackScore_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlXssAttackScore_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafMlXssAttackScore_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlXssAttackScore_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlXssAttackScore_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlXssAttackScore_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'zoneTag'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'zoneTag_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'zoneTag_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'zoneTag_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'zoneTag_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'zoneTag_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'zoneTag_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'zoneTag_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'zoneTag_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'zoneTag_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'zoneVersion_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }]; }; + 'AccountFirewallEventsAdaptiveGroupsOrderBy': { name: 'AccountFirewallEventsAdaptiveGroupsOrderBy'; enumValues: 'action_ASC' | 'action_DESC' | 'apiGatewayMatchedEndpoint_ASC' | 'apiGatewayMatchedEndpoint_DESC' | 'apiGatewayMatchedHost_ASC' | 'apiGatewayMatchedHost_DESC' | 'attackSignatureCategories_ASC' | 'attackSignatureCategories_DESC' | 'attackSignatureRefs_ASC' | 'attackSignatureRefs_DESC' | 'avg_sampleInterval_ASC' | 'avg_sampleInterval_DESC' | 'botDetectionIds_ASC' | 'botDetectionIds_DESC' | 'botDetectionTags_ASC' | 'botDetectionTags_DESC' | 'botScoreSrcName_ASC' | 'botScoreSrcName_DESC' | 'botScore_ASC' | 'botScore_DESC' | 'clientASNDescription_ASC' | 'clientASNDescription_DESC' | 'clientAsn_ASC' | 'clientAsn_DESC' | 'clientCountryName_ASC' | 'clientCountryName_DESC' | 'clientIPClass_ASC' | 'clientIPClass_DESC' | 'clientIP_ASC' | 'clientIP_DESC' | 'clientRefererHost_ASC' | 'clientRefererHost_DESC' | 'clientRefererPath_ASC' | 'clientRefererPath_DESC' | 'clientRefererQuery_ASC' | 'clientRefererQuery_DESC' | 'clientRefererScheme_ASC' | 'clientRefererScheme_DESC' | 'clientRequestHTTPHost_ASC' | 'clientRequestHTTPHost_DESC' | 'clientRequestHTTPMethodName_ASC' | 'clientRequestHTTPMethodName_DESC' | 'clientRequestHTTPProtocol_ASC' | 'clientRequestHTTPProtocol_DESC' | 'clientRequestPath_ASC' | 'clientRequestPath_DESC' | 'clientRequestQuery_ASC' | 'clientRequestQuery_DESC' | 'clientRequestScheme_ASC' | 'clientRequestScheme_DESC' | 'contentScanHasFailed_ASC' | 'contentScanHasFailed_DESC' | 'contentScanNumMaliciousObj_ASC' | 'contentScanNumMaliciousObj_DESC' | 'contentScanNumObj_ASC' | 'contentScanNumObj_DESC' | 'contentScanObjResults_ASC' | 'contentScanObjResults_DESC' | 'contentScanObjSizes_ASC' | 'contentScanObjSizes_DESC' | 'contentScanObjTypes_ASC' | 'contentScanObjTypes_DESC' | 'count_ASC' | 'count_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'description_ASC' | 'description_DESC' | 'edgeColoName_ASC' | 'edgeColoName_DESC' | 'edgeResponseStatus_ASC' | 'edgeResponseStatus_DESC' | 'firewallForAiAnyPiiCategory_ASC' | 'firewallForAiAnyPiiCategory_DESC' | 'firewallForAiInjectionScore_ASC' | 'firewallForAiInjectionScore_DESC' | 'firewallForAiPiiCategories_ASC' | 'firewallForAiPiiCategories_DESC' | 'firewallForAiUnsafeTopicCategories_ASC' | 'firewallForAiUnsafeTopicCategories_DESC' | 'fraudAttack_ASC' | 'fraudAttack_DESC' | 'fraudDetectionIds_ASC' | 'fraudDetectionIds_DESC' | 'fraudDetectionTags_ASC' | 'fraudDetectionTags_DESC' | 'fraudEmailRisk_ASC' | 'fraudEmailRisk_DESC' | 'httpApplicationVersion_ASC' | 'httpApplicationVersion_DESC' | 'ja3Hash_ASC' | 'ja3Hash_DESC' | 'ja4_ASC' | 'ja4_DESC' | 'jsDetectionPassed_ASC' | 'jsDetectionPassed_DESC' | 'kind_ASC' | 'kind_DESC' | 'matchIndex_ASC' | 'matchIndex_DESC' | 'originResponseStatus_ASC' | 'originResponseStatus_DESC' | 'originatorRayName_ASC' | 'originatorRayName_DESC' | 'rayName_ASC' | 'rayName_DESC' | 'ref_ASC' | 'ref_DESC' | 'ruleId_ASC' | 'ruleId_DESC' | 'rulesetId_ASC' | 'rulesetId_DESC' | 'sampleInterval_ASC' | 'sampleInterval_DESC' | 'source_ASC' | 'source_DESC' | 'sum_botDetectionIdArray_ASC' | 'sum_botDetectionIdArray_DESC' | 'sum_botDetectionIdCountArray_ASC' | 'sum_botDetectionIdCountArray_DESC' | 'sum_botDetectionTagArray_ASC' | 'sum_botDetectionTagArray_DESC' | 'sum_botDetectionTagCountArray_ASC' | 'sum_botDetectionTagCountArray_DESC' | 'sum_fraudDetectionIdArray_ASC' | 'sum_fraudDetectionIdArray_DESC' | 'sum_fraudDetectionIdCountArray_ASC' | 'sum_fraudDetectionIdCountArray_DESC' | 'sum_fraudDetectionTagArray_ASC' | 'sum_fraudDetectionTagArray_DESC' | 'sum_fraudDetectionTagCountArray_ASC' | 'sum_fraudDetectionTagCountArray_DESC' | 'userAgent_ASC' | 'userAgent_DESC' | 'verifiedBotCategory_ASC' | 'verifiedBotCategory_DESC' | 'visibility_ASC' | 'visibility_DESC' | 'wafAttackScoreClass_ASC' | 'wafAttackScoreClass_DESC' | 'wafAttackScore_ASC' | 'wafAttackScore_DESC' | 'wafMlAttackScore_ASC' | 'wafMlAttackScore_DESC' | 'wafMlSqliAttackScore_ASC' | 'wafMlSqliAttackScore_DESC' | 'wafMlXssAttackScore_ASC' | 'wafMlXssAttackScore_DESC' | 'wafRceAttackScore_ASC' | 'wafRceAttackScore_DESC' | 'wafSqliAttackScore_ASC' | 'wafSqliAttackScore_DESC' | 'wafXssAttackScore_ASC' | 'wafXssAttackScore_DESC' | 'zoneTag_ASC' | 'zoneTag_DESC' | 'zoneVersion_ASC' | 'zoneVersion_DESC'; }; + 'AccountFirewallEventsAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'AccountFirewallEventsAdaptiveGroupsSum'; fields: { 'botDetectionIdArray': { name: 'botDetectionIdArray'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; } }; 'botDetectionIdCountArray': { name: 'botDetectionIdCountArray'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; } }; 'botDetectionTagArray': { name: 'botDetectionTagArray'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'botDetectionTagCountArray': { name: 'botDetectionTagCountArray'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; } }; 'fraudDetectionIdArray': { name: 'fraudDetectionIdArray'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; } }; 'fraudDetectionIdCountArray': { name: 'fraudDetectionIdCountArray'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; } }; 'fraudDetectionTagArray': { name: 'fraudDetectionTagArray'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'fraudDetectionTagCountArray': { name: 'fraudDetectionTagCountArray'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; } }; }; }; + 'AccountFirewallEventsAdaptiveJa4SignalsElem': { kind: 'OBJECT'; name: 'AccountFirewallEventsAdaptiveJa4SignalsElem'; fields: { 'signalName': { name: 'signalName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'signalValue': { name: 'signalValue'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; }; }; + 'AccountFirewallEventsAdaptiveMetadataElem': { kind: 'OBJECT'; name: 'AccountFirewallEventsAdaptiveMetadataElem'; fields: { 'key': { name: 'key'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'value': { name: 'value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountFirewallEventsAdaptiveOrderBy': { name: 'AccountFirewallEventsAdaptiveOrderBy'; enumValues: 'action_ASC' | 'action_DESC' | 'apiGatewayMatchedEndpoint_ASC' | 'apiGatewayMatchedEndpoint_DESC' | 'apiGatewayMatchedHost_ASC' | 'apiGatewayMatchedHost_DESC' | 'attackSignatureCategories_ASC' | 'attackSignatureCategories_DESC' | 'attackSignatureRefs_ASC' | 'attackSignatureRefs_DESC' | 'botDetectionIds_ASC' | 'botDetectionIds_DESC' | 'botDetectionTags_ASC' | 'botDetectionTags_DESC' | 'botScoreSrcName_ASC' | 'botScoreSrcName_DESC' | 'botScore_ASC' | 'botScore_DESC' | 'clientASNDescription_ASC' | 'clientASNDescription_DESC' | 'clientAsn_ASC' | 'clientAsn_DESC' | 'clientCountryName_ASC' | 'clientCountryName_DESC' | 'clientIPClass_ASC' | 'clientIPClass_DESC' | 'clientIP_ASC' | 'clientIP_DESC' | 'clientRefererHost_ASC' | 'clientRefererHost_DESC' | 'clientRefererPath_ASC' | 'clientRefererPath_DESC' | 'clientRefererQuery_ASC' | 'clientRefererQuery_DESC' | 'clientRefererScheme_ASC' | 'clientRefererScheme_DESC' | 'clientRequestHTTPHost_ASC' | 'clientRequestHTTPHost_DESC' | 'clientRequestHTTPMethodName_ASC' | 'clientRequestHTTPMethodName_DESC' | 'clientRequestHTTPProtocol_ASC' | 'clientRequestHTTPProtocol_DESC' | 'clientRequestPath_ASC' | 'clientRequestPath_DESC' | 'clientRequestQuery_ASC' | 'clientRequestQuery_DESC' | 'clientRequestScheme_ASC' | 'clientRequestScheme_DESC' | 'contentScanHasFailed_ASC' | 'contentScanHasFailed_DESC' | 'contentScanNumMaliciousObj_ASC' | 'contentScanNumMaliciousObj_DESC' | 'contentScanNumObj_ASC' | 'contentScanNumObj_DESC' | 'contentScanObjResults_ASC' | 'contentScanObjResults_DESC' | 'contentScanObjSizes_ASC' | 'contentScanObjSizes_DESC' | 'contentScanObjTypes_ASC' | 'contentScanObjTypes_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'description_ASC' | 'description_DESC' | 'edgeColoName_ASC' | 'edgeColoName_DESC' | 'edgeResponseStatus_ASC' | 'edgeResponseStatus_DESC' | 'firewallForAiAnyPiiCategory_ASC' | 'firewallForAiAnyPiiCategory_DESC' | 'firewallForAiInjectionScore_ASC' | 'firewallForAiInjectionScore_DESC' | 'firewallForAiPiiCategories_ASC' | 'firewallForAiPiiCategories_DESC' | 'firewallForAiUnsafeTopicCategories_ASC' | 'firewallForAiUnsafeTopicCategories_DESC' | 'fraudAttack_ASC' | 'fraudAttack_DESC' | 'fraudDetectionIds_ASC' | 'fraudDetectionIds_DESC' | 'fraudDetectionTags_ASC' | 'fraudDetectionTags_DESC' | 'fraudEmailRisk_ASC' | 'fraudEmailRisk_DESC' | 'httpApplicationVersion_ASC' | 'httpApplicationVersion_DESC' | 'ja3Hash_ASC' | 'ja3Hash_DESC' | 'ja4_ASC' | 'ja4_DESC' | 'jsDetectionPassed_ASC' | 'jsDetectionPassed_DESC' | 'kind_ASC' | 'kind_DESC' | 'leakedCredentialCheckResult_ASC' | 'leakedCredentialCheckResult_DESC' | 'matchIndex_ASC' | 'matchIndex_DESC' | 'originResponseStatus_ASC' | 'originResponseStatus_DESC' | 'originatorRayName_ASC' | 'originatorRayName_DESC' | 'rayName_ASC' | 'rayName_DESC' | 'ref_ASC' | 'ref_DESC' | 'ruleId_ASC' | 'ruleId_DESC' | 'rulesetId_ASC' | 'rulesetId_DESC' | 'sampleInterval_ASC' | 'sampleInterval_DESC' | 'source_ASC' | 'source_DESC' | 'userAgent_ASC' | 'userAgent_DESC' | 'verifiedBotCategory_ASC' | 'verifiedBotCategory_DESC' | 'visibility_ASC' | 'visibility_DESC' | 'wafAttackScoreClass_ASC' | 'wafAttackScoreClass_DESC' | 'wafAttackScore_ASC' | 'wafAttackScore_DESC' | 'wafMlAttackScore_ASC' | 'wafMlAttackScore_DESC' | 'wafMlSqliAttackScore_ASC' | 'wafMlSqliAttackScore_DESC' | 'wafMlXssAttackScore_ASC' | 'wafMlXssAttackScore_DESC' | 'wafRceAttackScore_ASC' | 'wafRceAttackScore_DESC' | 'wafSqliAttackScore_ASC' | 'wafSqliAttackScore_DESC' | 'wafXssAttackScore_ASC' | 'wafXssAttackScore_DESC' | 'zoneTag_ASC' | 'zoneTag_DESC' | 'zoneVersion_ASC' | 'zoneVersion_DESC'; }; + 'AccountFlowtrackdNetworkAnalyticsAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountFlowtrackdNetworkAnalyticsAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountFlowtrackdNetworkAnalyticsAdaptiveGroupsAvg'; ofType: null; } }; 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountFlowtrackdNetworkAnalyticsAdaptiveGroupsConfidence'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountFlowtrackdNetworkAnalyticsAdaptiveGroupsDimensions'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountFlowtrackdNetworkAnalyticsAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'AccountFlowtrackdNetworkAnalyticsAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'AccountFlowtrackdNetworkAnalyticsAdaptiveGroupsAvg'; fields: { 'bitRate': { name: 'bitRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'bitRateDay': { name: 'bitRateDay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'bitRateFifteenMinutes': { name: 'bitRateFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'bitRateFiveMinutes': { name: 'bitRateFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'bitRateHour': { name: 'bitRateHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'bitRateMinute': { name: 'bitRateMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'bitRateTenSeconds': { name: 'bitRateTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRate': { name: 'packetRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRateDay': { name: 'packetRateDay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRateFifteenMinutes': { name: 'packetRateFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRateFiveMinutes': { name: 'packetRateFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRateHour': { name: 'packetRateHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRateMinute': { name: 'packetRateMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRateTenSeconds': { name: 'packetRateTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountFlowtrackdNetworkAnalyticsAdaptiveGroupsAvgConfidence': { kind: 'OBJECT'; name: 'AccountFlowtrackdNetworkAnalyticsAdaptiveGroupsAvgConfidence'; fields: { 'bitRate': { name: 'bitRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateDay': { name: 'bitRateDay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateFifteenMinutes': { name: 'bitRateFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateFiveMinutes': { name: 'bitRateFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateHour': { name: 'bitRateHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateMinute': { name: 'bitRateMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateTenSeconds': { name: 'bitRateTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRate': { name: 'packetRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateDay': { name: 'packetRateDay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateFifteenMinutes': { name: 'packetRateFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateFiveMinutes': { name: 'packetRateFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateHour': { name: 'packetRateHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateMinute': { name: 'packetRateMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateTenSeconds': { name: 'packetRateTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountFlowtrackdNetworkAnalyticsAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountFlowtrackdNetworkAnalyticsAdaptiveGroupsConfidence'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountFlowtrackdNetworkAnalyticsAdaptiveGroupsAvgConfidence'; ofType: null; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountFlowtrackdNetworkAnalyticsAdaptiveGroupsSumConfidence'; ofType: null; } }; }; }; + 'AccountFlowtrackdNetworkAnalyticsAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountFlowtrackdNetworkAnalyticsAdaptiveGroupsDimensions'; fields: { 'applicationTag': { name: 'applicationTag'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'coloCity': { name: 'coloCity'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'coloCode': { name: 'coloCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'coloCountry': { name: 'coloCountry'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'coloGeohash': { name: 'coloGeohash'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'coloName': { name: 'coloName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeTenSeconds': { name: 'datetimeTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'destinationAsn': { name: 'destinationAsn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'destinationAsnName': { name: 'destinationAsnName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'destinationCountry': { name: 'destinationCountry'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'destinationGeohash': { name: 'destinationGeohash'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'destinationPort': { name: 'destinationPort'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'direction': { name: 'direction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ethertype': { name: 'ethertype'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'greChecksum': { name: 'greChecksum'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'greEthertype': { name: 'greEthertype'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'greHeaderLength': { name: 'greHeaderLength'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'greKey': { name: 'greKey'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'greSequenceNumber': { name: 'greSequenceNumber'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'greVersion': { name: 'greVersion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'icmpChecksum': { name: 'icmpChecksum'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'icmpCode': { name: 'icmpCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'icmpType': { name: 'icmpType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipDestinationAddress': { name: 'ipDestinationAddress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipDestinationSubnet': { name: 'ipDestinationSubnet'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipFragmentOffset': { name: 'ipFragmentOffset'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'ipHeaderLength': { name: 'ipHeaderLength'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'ipMoreFragments': { name: 'ipMoreFragments'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipProtocol': { name: 'ipProtocol'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipProtocolName': { name: 'ipProtocolName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipSourceAddress': { name: 'ipSourceAddress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipSourceSubnet': { name: 'ipSourceSubnet'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipTotalLength': { name: 'ipTotalLength'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'ipTotalLengthBuckets': { name: 'ipTotalLengthBuckets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'ipTtl': { name: 'ipTtl'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipTtlBuckets': { name: 'ipTtlBuckets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipv4Checksum': { name: 'ipv4Checksum'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'ipv4DontFragment': { name: 'ipv4DontFragment'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipv4Dscp': { name: 'ipv4Dscp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipv4Ecn': { name: 'ipv4Ecn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipv4Identification': { name: 'ipv4Identification'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'ipv4Options': { name: 'ipv4Options'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipv6Dscp': { name: 'ipv6Dscp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipv6Ecn': { name: 'ipv6Ecn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipv6ExtensionHeaders': { name: 'ipv6ExtensionHeaders'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipv6FlowLabel': { name: 'ipv6FlowLabel'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'ipv6Identification': { name: 'ipv6Identification'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'leaseTag': { name: 'leaseTag'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'mitigationReason': { name: 'mitigationReason'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'mitigationScope': { name: 'mitigationScope'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'outcome': { name: 'outcome'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'prefixTag': { name: 'prefixTag'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'protocolState': { name: 'protocolState'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'sourceAsn': { name: 'sourceAsn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'sourceAsnName': { name: 'sourceAsnName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sourceCountry': { name: 'sourceCountry'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sourceGeohash': { name: 'sourceGeohash'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sourcePort': { name: 'sourcePort'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'tcpAcknowledgementNumber': { name: 'tcpAcknowledgementNumber'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'tcpChecksum': { name: 'tcpChecksum'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'tcpDataOffset': { name: 'tcpDataOffset'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'tcpFlags': { name: 'tcpFlags'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'tcpFlagsString': { name: 'tcpFlagsString'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'tcpMss': { name: 'tcpMss'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'tcpOptions': { name: 'tcpOptions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'tcpSackBlocks': { name: 'tcpSackBlocks'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'tcpSackPermitted': { name: 'tcpSackPermitted'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'tcpSequenceNumber': { name: 'tcpSequenceNumber'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'tcpTimestampEcr': { name: 'tcpTimestampEcr'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'tcpTimestampValue': { name: 'tcpTimestampValue'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'tcpUrgentPointer': { name: 'tcpUrgentPointer'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'tcpWindowScale': { name: 'tcpWindowScale'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'tcpWindowSize': { name: 'tcpWindowSize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'udpChecksum': { name: 'udpChecksum'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'udpPayloadLength': { name: 'udpPayloadLength'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'verdict': { name: 'verdict'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountFlowtrackdNetworkAnalyticsAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountFlowtrackdNetworkAnalyticsAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountFlowtrackdNetworkAnalyticsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountFlowtrackdNetworkAnalyticsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'applicationTag'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationTag_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationTag_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationTag_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'applicationTag_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationTag_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationTag_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationTag_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationTag_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'applicationTag_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCity_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCity_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCode_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCode_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCountry_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCountry_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloGeohash_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloGeohash_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeTenSeconds'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeTenSeconds_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationAsn'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationAsnName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationAsnName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsn_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'destinationAsn_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'destinationAsn_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationAsn_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'destinationAsn_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'destinationAsn_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'destinationAsn_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationCountry'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationCountry_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationCountry_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationGeohash_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationGeohash_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationPort'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationPort_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'direction'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'direction_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'direction_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ethertype'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ethertype_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ethertype_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ethertype_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ethertype_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ethertype_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ethertype_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ethertype_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'greChecksum'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greChecksum_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greChecksum_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greChecksum_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'greChecksum_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greChecksum_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greChecksum_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greChecksum_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'greEthertype'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greEthertype_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greEthertype_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greEthertype_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'greEthertype_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greEthertype_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greEthertype_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greEthertype_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'greHeaderLength'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greHeaderLength_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greHeaderLength_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greHeaderLength_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'greHeaderLength_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greHeaderLength_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greHeaderLength_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greHeaderLength_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'greKey'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greKey_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greKey_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greKey_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'greKey_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greKey_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greKey_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greKey_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'greSequenceNumber'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greSequenceNumber_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greSequenceNumber_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greSequenceNumber_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'greSequenceNumber_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greSequenceNumber_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greSequenceNumber_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greSequenceNumber_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'greVersion'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'greVersion_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'greVersion_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'greVersion_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'greVersion_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'greVersion_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'greVersion_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'greVersion_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'icmpChecksum'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'icmpChecksum_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'icmpChecksum_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'icmpChecksum_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'icmpChecksum_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'icmpChecksum_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'icmpChecksum_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'icmpChecksum_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'icmpCode'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpCode_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpCode_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpCode_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'icmpCode_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpCode_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpCode_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpCode_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'icmpType'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpType_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpType_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpType_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'icmpType_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpType_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpType_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpType_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipDestinationAddress_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipDestinationAddress_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipDestinationSubnet_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipDestinationSubnet_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipFragmentOffset'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipFragmentOffset_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipFragmentOffset_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipFragmentOffset_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipFragmentOffset_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipFragmentOffset_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipFragmentOffset_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipFragmentOffset_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipHeaderLength'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipHeaderLength_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipHeaderLength_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipHeaderLength_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipHeaderLength_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipHeaderLength_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipHeaderLength_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipHeaderLength_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipMoreFragments'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipMoreFragments_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipMoreFragments_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipMoreFragments_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipMoreFragments_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipMoreFragments_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipMoreFragments_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipMoreFragments_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipProtocolName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipProtocolName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipSourceAddress_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipSourceAddress_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipSourceSubnet_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipSourceSubnet_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLength'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLengthBuckets'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLengthBuckets_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLengthBuckets_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLengthBuckets_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipTotalLengthBuckets_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLengthBuckets_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLengthBuckets_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLengthBuckets_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipTotalLength_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLength_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLength_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipTotalLength_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLength_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLength_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLength_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipTtl'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipTtl_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtl_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtl_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipTtl_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtl_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtl_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtl_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv4Checksum'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Checksum_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Checksum_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Checksum_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv4Checksum_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Checksum_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Checksum_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Checksum_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv4DontFragment'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4DontFragment_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4DontFragment_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4DontFragment_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv4DontFragment_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4DontFragment_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4DontFragment_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4DontFragment_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv4Identification'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Identification_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Identification_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Identification_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv4Identification_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Identification_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Identification_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Identification_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv4Options'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4Options_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4Options_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4Options_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv4Options_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4Options_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4Options_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4Options_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4Options_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv4Options_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6FlowLabel'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6FlowLabel_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6FlowLabel_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6FlowLabel_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv6FlowLabel_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6FlowLabel_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6FlowLabel_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6FlowLabel_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv6Identification'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6Identification_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6Identification_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6Identification_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv6Identification_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6Identification_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6Identification_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6Identification_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'leaseTag'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leaseTag_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leaseTag_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leaseTag_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'leaseTag_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leaseTag_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leaseTag_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leaseTag_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leaseTag_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'leaseTag_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationReason'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationReason_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationReason_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationReason_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'mitigationReason_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationReason_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationReason_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationReason_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationReason_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'mitigationReason_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationScope'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationScope_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationScope_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationScope_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'mitigationScope_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationScope_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationScope_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationScope_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationScope_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'mitigationScope_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'outcome_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'outcome_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'prefixTag_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'prefixTag_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocolState'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocolState_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocolState_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocolState_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'protocolState_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocolState_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocolState_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocolState_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocolState_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'protocolState_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sampleInterval_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceAsn'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceAsnName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceAsnName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsn_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sourceAsn_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sourceAsn_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceAsn_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sourceAsn_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sourceAsn_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sourceAsn_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceCountry'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceCountry_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceCountry_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceGeohash_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceGeohash_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourcePort'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourcePort_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpChecksum'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpChecksum_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpChecksum_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpChecksum_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpChecksum_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpChecksum_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpChecksum_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpChecksum_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpDataOffset'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpDataOffset_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpDataOffset_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpDataOffset_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpDataOffset_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpDataOffset_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpDataOffset_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpDataOffset_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpFlags'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpFlagsString_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpFlagsString_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'tcpMss'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpMss_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpMss_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpMss_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpMss_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpMss_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpMss_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpMss_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpOptions'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpOptions_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpOptions_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpOptions_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpOptions_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpOptions_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpOptions_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpOptions_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpOptions_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpOptions_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpSackBlocks_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpSackBlocks_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'tcpSequenceNumber'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpSequenceNumber_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpSequenceNumber_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpSequenceNumber_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpSequenceNumber_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpSequenceNumber_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpSequenceNumber_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpSequenceNumber_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpTimestampEcr'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampEcr_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampEcr_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampEcr_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpTimestampEcr_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampEcr_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampEcr_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampEcr_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpTimestampValue'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampValue_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampValue_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampValue_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpTimestampValue_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampValue_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampValue_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampValue_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpUrgentPointer'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpUrgentPointer_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpUrgentPointer_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpUrgentPointer_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpUrgentPointer_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpUrgentPointer_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpUrgentPointer_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpUrgentPointer_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpWindowScale'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowScale_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowScale_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowScale_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpWindowScale_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowScale_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowScale_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowScale_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpWindowSize'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowSize_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowSize_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowSize_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpWindowSize_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowSize_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowSize_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowSize_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'udpChecksum'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpChecksum_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpChecksum_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpChecksum_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'udpChecksum_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpChecksum_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpChecksum_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpChecksum_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'udpPayloadLength'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpPayloadLength_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpPayloadLength_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpPayloadLength_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'udpPayloadLength_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpPayloadLength_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpPayloadLength_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpPayloadLength_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'verdict'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verdict_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verdict_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verdict_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'verdict_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verdict_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verdict_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verdict_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verdict_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'verdict_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountFlowtrackdNetworkAnalyticsAdaptiveGroupsOrderBy': { name: 'AccountFlowtrackdNetworkAnalyticsAdaptiveGroupsOrderBy'; enumValues: 'applicationTag_ASC' | 'applicationTag_DESC' | 'avg_bitRateDay_ASC' | 'avg_bitRateDay_DESC' | 'avg_bitRateFifteenMinutes_ASC' | 'avg_bitRateFifteenMinutes_DESC' | 'avg_bitRateFiveMinutes_ASC' | 'avg_bitRateFiveMinutes_DESC' | 'avg_bitRateHour_ASC' | 'avg_bitRateHour_DESC' | 'avg_bitRateMinute_ASC' | 'avg_bitRateMinute_DESC' | 'avg_bitRateTenSeconds_ASC' | 'avg_bitRateTenSeconds_DESC' | 'avg_bitRate_ASC' | 'avg_bitRate_DESC' | 'avg_packetRateDay_ASC' | 'avg_packetRateDay_DESC' | 'avg_packetRateFifteenMinutes_ASC' | 'avg_packetRateFifteenMinutes_DESC' | 'avg_packetRateFiveMinutes_ASC' | 'avg_packetRateFiveMinutes_DESC' | 'avg_packetRateHour_ASC' | 'avg_packetRateHour_DESC' | 'avg_packetRateMinute_ASC' | 'avg_packetRateMinute_DESC' | 'avg_packetRateTenSeconds_ASC' | 'avg_packetRateTenSeconds_DESC' | 'avg_packetRate_ASC' | 'avg_packetRate_DESC' | 'coloCity_ASC' | 'coloCity_DESC' | 'coloCode_ASC' | 'coloCode_DESC' | 'coloCountry_ASC' | 'coloCountry_DESC' | 'coloGeohash_ASC' | 'coloGeohash_DESC' | 'coloName_ASC' | 'coloName_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetimeTenSeconds_ASC' | 'datetimeTenSeconds_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'destinationAsnName_ASC' | 'destinationAsnName_DESC' | 'destinationAsn_ASC' | 'destinationAsn_DESC' | 'destinationCountry_ASC' | 'destinationCountry_DESC' | 'destinationGeohash_ASC' | 'destinationGeohash_DESC' | 'destinationPort_ASC' | 'destinationPort_DESC' | 'direction_ASC' | 'direction_DESC' | 'ethertype_ASC' | 'ethertype_DESC' | 'greChecksum_ASC' | 'greChecksum_DESC' | 'greEthertype_ASC' | 'greEthertype_DESC' | 'greHeaderLength_ASC' | 'greHeaderLength_DESC' | 'greKey_ASC' | 'greKey_DESC' | 'greSequenceNumber_ASC' | 'greSequenceNumber_DESC' | 'greVersion_ASC' | 'greVersion_DESC' | 'icmpChecksum_ASC' | 'icmpChecksum_DESC' | 'icmpCode_ASC' | 'icmpCode_DESC' | 'icmpType_ASC' | 'icmpType_DESC' | 'ipDestinationAddress_ASC' | 'ipDestinationAddress_DESC' | 'ipDestinationSubnet_ASC' | 'ipDestinationSubnet_DESC' | 'ipFragmentOffset_ASC' | 'ipFragmentOffset_DESC' | 'ipHeaderLength_ASC' | 'ipHeaderLength_DESC' | 'ipMoreFragments_ASC' | 'ipMoreFragments_DESC' | 'ipProtocolName_ASC' | 'ipProtocolName_DESC' | 'ipProtocol_ASC' | 'ipProtocol_DESC' | 'ipSourceAddress_ASC' | 'ipSourceAddress_DESC' | 'ipSourceSubnet_ASC' | 'ipSourceSubnet_DESC' | 'ipTotalLengthBuckets_ASC' | 'ipTotalLengthBuckets_DESC' | 'ipTotalLength_ASC' | 'ipTotalLength_DESC' | 'ipTtlBuckets_ASC' | 'ipTtlBuckets_DESC' | 'ipTtl_ASC' | 'ipTtl_DESC' | 'ipv4Checksum_ASC' | 'ipv4Checksum_DESC' | 'ipv4DontFragment_ASC' | 'ipv4DontFragment_DESC' | 'ipv4Dscp_ASC' | 'ipv4Dscp_DESC' | 'ipv4Ecn_ASC' | 'ipv4Ecn_DESC' | 'ipv4Identification_ASC' | 'ipv4Identification_DESC' | 'ipv4Options_ASC' | 'ipv4Options_DESC' | 'ipv6Dscp_ASC' | 'ipv6Dscp_DESC' | 'ipv6Ecn_ASC' | 'ipv6Ecn_DESC' | 'ipv6ExtensionHeaders_ASC' | 'ipv6ExtensionHeaders_DESC' | 'ipv6FlowLabel_ASC' | 'ipv6FlowLabel_DESC' | 'ipv6Identification_ASC' | 'ipv6Identification_DESC' | 'leaseTag_ASC' | 'leaseTag_DESC' | 'mitigationReason_ASC' | 'mitigationReason_DESC' | 'mitigationScope_ASC' | 'mitigationScope_DESC' | 'outcome_ASC' | 'outcome_DESC' | 'prefixTag_ASC' | 'prefixTag_DESC' | 'protocolState_ASC' | 'protocolState_DESC' | 'sampleInterval_ASC' | 'sampleInterval_DESC' | 'sourceAsnName_ASC' | 'sourceAsnName_DESC' | 'sourceAsn_ASC' | 'sourceAsn_DESC' | 'sourceCountry_ASC' | 'sourceCountry_DESC' | 'sourceGeohash_ASC' | 'sourceGeohash_DESC' | 'sourcePort_ASC' | 'sourcePort_DESC' | 'sum_bits_ASC' | 'sum_bits_DESC' | 'sum_packets_ASC' | 'sum_packets_DESC' | 'system_ASC' | 'system_DESC' | 'tcpAcknowledgementNumber_ASC' | 'tcpAcknowledgementNumber_DESC' | 'tcpChecksum_ASC' | 'tcpChecksum_DESC' | 'tcpDataOffset_ASC' | 'tcpDataOffset_DESC' | 'tcpFlagsString_ASC' | 'tcpFlagsString_DESC' | 'tcpFlags_ASC' | 'tcpFlags_DESC' | 'tcpMss_ASC' | 'tcpMss_DESC' | 'tcpOptions_ASC' | 'tcpOptions_DESC' | 'tcpSackBlocks_ASC' | 'tcpSackBlocks_DESC' | 'tcpSackPermitted_ASC' | 'tcpSackPermitted_DESC' | 'tcpSequenceNumber_ASC' | 'tcpSequenceNumber_DESC' | 'tcpTimestampEcr_ASC' | 'tcpTimestampEcr_DESC' | 'tcpTimestampValue_ASC' | 'tcpTimestampValue_DESC' | 'tcpUrgentPointer_ASC' | 'tcpUrgentPointer_DESC' | 'tcpWindowScale_ASC' | 'tcpWindowScale_DESC' | 'tcpWindowSize_ASC' | 'tcpWindowSize_DESC' | 'udpChecksum_ASC' | 'udpChecksum_DESC' | 'udpPayloadLength_ASC' | 'udpPayloadLength_DESC' | 'verdict_ASC' | 'verdict_DESC'; }; + 'AccountFlowtrackdNetworkAnalyticsAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'AccountFlowtrackdNetworkAnalyticsAdaptiveGroupsSum'; fields: { 'bits': { name: 'bits'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packets': { name: 'packets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountFlowtrackdNetworkAnalyticsAdaptiveGroupsSumConfidence': { kind: 'OBJECT'; name: 'AccountFlowtrackdNetworkAnalyticsAdaptiveGroupsSumConfidence'; fields: { 'bits': { name: 'bits'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packets': { name: 'packets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountGatewayL4DownstreamSessionsAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountGatewayL4DownstreamSessionsAdaptiveGroups'; fields: { 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountGatewayL4DownstreamSessionsAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountGatewayL4DownstreamSessionsAdaptiveGroupsDimensions'; ofType: null; } }; 'quantiles': { name: 'quantiles'; type: { kind: 'OBJECT'; name: 'AccountGatewayL4DownstreamSessionsAdaptiveGroupsQuantiles'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountGatewayL4DownstreamSessionsAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'AccountGatewayL4DownstreamSessionsAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountGatewayL4DownstreamSessionsAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountGatewayL4DownstreamSessionsAdaptiveGroupsSumConfidence'; ofType: null; } }; }; }; + 'AccountGatewayL4DownstreamSessionsAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountGatewayL4DownstreamSessionsAdaptiveGroupsDimensions'; fields: { 'coloCode': { name: 'coloCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'coloCountry': { name: 'coloCountry'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'quicErrorCode': { name: 'quicErrorCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'rttUs': { name: 'rttUs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'sessionId': { name: 'sessionId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sourceIP': { name: 'sourceIP'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'tokenAuthStatus': { name: 'tokenAuthStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'tokenSigningRegion': { name: 'tokenSigningRegion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'transport': { name: 'transport'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'transportHandshakeDurationUs': { name: 'transportHandshakeDurationUs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'transportStatus': { name: 'transportStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountGatewayL4DownstreamSessionsAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountGatewayL4DownstreamSessionsAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountGatewayL4DownstreamSessionsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountGatewayL4DownstreamSessionsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCode'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCode_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCode_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCountry_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCountry_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'quicErrorCode'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'quicErrorCode_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'quicErrorCode_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'quicErrorCode_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'quicErrorCode_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'quicErrorCode_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'quicErrorCode_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'quicErrorCode_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'rttUs'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'rttUs_geq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'rttUs_gt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'rttUs_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'rttUs_leq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'rttUs_lt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'rttUs_neq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'rttUs_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIP'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIP_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIP_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIP_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceIP_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIP_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIP_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIP_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIP_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceIP_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tokenAuthStatus'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tokenAuthStatus_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tokenAuthStatus_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tokenAuthStatus_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tokenAuthStatus_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tokenAuthStatus_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tokenAuthStatus_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tokenAuthStatus_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tokenAuthStatus_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tokenAuthStatus_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tokenSigningRegion'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tokenSigningRegion_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tokenSigningRegion_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tokenSigningRegion_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tokenSigningRegion_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tokenSigningRegion_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tokenSigningRegion_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tokenSigningRegion_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tokenSigningRegion_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tokenSigningRegion_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'transport'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'transportHandshakeDurationUs'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'transportHandshakeDurationUs_geq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'transportHandshakeDurationUs_gt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'transportHandshakeDurationUs_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'transportHandshakeDurationUs_leq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'transportHandshakeDurationUs_lt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'transportHandshakeDurationUs_neq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'transportHandshakeDurationUs_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'transportStatus'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'transportStatus_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'transportStatus_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'transportStatus_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'transportStatus_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'transportStatus_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'transportStatus_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'transportStatus_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'transportStatus_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'transportStatus_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'transport_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'transport_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'transport_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'transport_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'transport_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'transport_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'transport_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'transport_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'transport_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountGatewayL4DownstreamSessionsAdaptiveGroupsOrderBy': { name: 'AccountGatewayL4DownstreamSessionsAdaptiveGroupsOrderBy'; enumValues: 'coloCode_ASC' | 'coloCode_DESC' | 'coloCountry_ASC' | 'coloCountry_DESC' | 'count_ASC' | 'count_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'quantiles_tokenAuthDurationUsP50_ASC' | 'quantiles_tokenAuthDurationUsP50_DESC' | 'quantiles_transportHandshakeDurationUsP50_ASC' | 'quantiles_transportHandshakeDurationUsP50_DESC' | 'quicErrorCode_ASC' | 'quicErrorCode_DESC' | 'rttUs_ASC' | 'rttUs_DESC' | 'sessionId_ASC' | 'sessionId_DESC' | 'sourceIP_ASC' | 'sourceIP_DESC' | 'sum_bytesRecvd_ASC' | 'sum_bytesRecvd_DESC' | 'sum_bytesSent_ASC' | 'sum_bytesSent_DESC' | 'sum_clientBytesRetransmitted_ASC' | 'sum_clientBytesRetransmitted_DESC' | 'sum_packetsRecvd_ASC' | 'sum_packetsRecvd_DESC' | 'sum_packetsSent_ASC' | 'sum_packetsSent_DESC' | 'sum_tokenAuthDurationUs_ASC' | 'sum_tokenAuthDurationUs_DESC' | 'tokenAuthStatus_ASC' | 'tokenAuthStatus_DESC' | 'tokenSigningRegion_ASC' | 'tokenSigningRegion_DESC' | 'transportHandshakeDurationUs_ASC' | 'transportHandshakeDurationUs_DESC' | 'transportStatus_ASC' | 'transportStatus_DESC' | 'transport_ASC' | 'transport_DESC'; }; + 'AccountGatewayL4DownstreamSessionsAdaptiveGroupsQuantiles': { kind: 'OBJECT'; name: 'AccountGatewayL4DownstreamSessionsAdaptiveGroupsQuantiles'; fields: { 'tokenAuthDurationUsP50': { name: 'tokenAuthDurationUsP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'transportHandshakeDurationUsP50': { name: 'transportHandshakeDurationUsP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; }; }; + 'AccountGatewayL4DownstreamSessionsAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'AccountGatewayL4DownstreamSessionsAdaptiveGroupsSum'; fields: { 'bytesRecvd': { name: 'bytesRecvd'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'bytesSent': { name: 'bytesSent'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'clientBytesRetransmitted': { name: 'clientBytesRetransmitted'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetsRecvd': { name: 'packetsRecvd'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetsSent': { name: 'packetsSent'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'tokenAuthDurationUs': { name: 'tokenAuthDurationUs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; }; }; + 'AccountGatewayL4DownstreamSessionsAdaptiveGroupsSumConfidence': { kind: 'OBJECT'; name: 'AccountGatewayL4DownstreamSessionsAdaptiveGroupsSumConfidence'; fields: { 'bytesRecvd': { name: 'bytesRecvd'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bytesSent': { name: 'bytesSent'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'clientBytesRetransmitted': { name: 'clientBytesRetransmitted'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetsRecvd': { name: 'packetsRecvd'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetsSent': { name: 'packetsSent'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'tokenAuthDurationUs': { name: 'tokenAuthDurationUs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountGatewayL4SessionsAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountGatewayL4SessionsAdaptiveGroups'; fields: { 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountGatewayL4SessionsAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountGatewayL4SessionsAdaptiveGroupsDimensions'; ofType: null; } }; }; }; + 'AccountGatewayL4SessionsAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountGatewayL4SessionsAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountGatewayL4SessionsAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountGatewayL4SessionsAdaptiveGroupsDimensions'; fields: { 'action': { name: 'action'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'applicationIds': { name: 'applicationIds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; } }; 'applicationNames': { name: 'applicationNames'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'categoryIds': { name: 'categoryIds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; } }; 'categoryNames': { name: 'categoryNames'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'coloCode': { name: 'coloCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'destinationIp': { name: 'destinationIp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'destinationPort': { name: 'destinationPort'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'detectedProtocol': { name: 'detectedProtocol'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'deviceId': { name: 'deviceId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'dstIpContinent': { name: 'dstIpContinent'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'dstIpCountry': { name: 'dstIpCountry'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'email': { name: 'email'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'proxyEndpoint': { name: 'proxyEndpoint'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sessionId': { name: 'sessionId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sni': { name: 'sni'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sourceInternalIp': { name: 'sourceInternalIp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sourceIp': { name: 'sourceIp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sourcePort': { name: 'sourcePort'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'srcIpContinent': { name: 'srcIpContinent'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'srcIpCountry': { name: 'srcIpCountry'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'transport': { name: 'transport'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'transportProtocol': { name: 'transportProtocol'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'userId': { name: 'userId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'virtualNetworkId': { name: 'virtualNetworkId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'virtualNetworkName': { name: 'virtualNetworkName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountGatewayL4SessionsAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountGatewayL4SessionsAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountGatewayL4SessionsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountGatewayL4SessionsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'action'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'action_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'action_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationIds_has'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'applicationIds_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'applicationIds_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'applicationIds_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'applicationIds_nothas'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'applicationNames_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationNames_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'applicationNames_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'applicationNames_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'applicationNames_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'categoryIds_has'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'categoryIds_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'categoryIds_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'categoryIds_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'categoryIds_nothas'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'categoryNames_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'categoryNames_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'categoryNames_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'categoryNames_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'categoryNames_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCode_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCode_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationIp'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIp_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIp_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationIp_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIp_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIp_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIp_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIp_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationIp_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationPort'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationPort_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'detectedProtocol'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'detectedProtocol_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'detectedProtocol_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'detectedProtocol_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'detectedProtocol_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'detectedProtocol_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'detectedProtocol_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'detectedProtocol_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'detectedProtocol_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'detectedProtocol_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dstIpContinent'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dstIpContinent_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dstIpContinent_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dstIpContinent_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'dstIpContinent_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dstIpContinent_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dstIpContinent_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dstIpContinent_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dstIpContinent_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'dstIpContinent_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dstIpCountry'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dstIpCountry_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dstIpCountry_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dstIpCountry_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'dstIpCountry_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dstIpCountry_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dstIpCountry_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dstIpCountry_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dstIpCountry_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'dstIpCountry_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'email'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'email_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'email_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'email_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'email_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'email_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'email_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'email_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'email_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'email_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'proxyEndpoint'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'proxyEndpoint_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'proxyEndpoint_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'proxyEndpoint_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'proxyEndpoint_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'proxyEndpoint_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'proxyEndpoint_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'proxyEndpoint_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'proxyEndpoint_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'proxyEndpoint_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sni'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sni_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sni_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sni_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sni_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sni_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sni_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sni_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sni_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sni_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceInternalIp'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceInternalIp_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceInternalIp_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceInternalIp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceInternalIp_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceInternalIp_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceInternalIp_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceInternalIp_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceInternalIp_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceInternalIp_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIp'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIp_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIp_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceIp_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIp_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIp_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIp_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIp_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceIp_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourcePort'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourcePort_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'srcIpContinent'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'srcIpContinent_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'srcIpContinent_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'srcIpContinent_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'srcIpContinent_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'srcIpContinent_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'srcIpContinent_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'srcIpContinent_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'srcIpContinent_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'srcIpContinent_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'srcIpCountry'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'srcIpCountry_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'srcIpCountry_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'srcIpCountry_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'srcIpCountry_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'srcIpCountry_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'srcIpCountry_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'srcIpCountry_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'srcIpCountry_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'srcIpCountry_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'transport'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'transportProtocol'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'transportProtocol_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'transportProtocol_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'transportProtocol_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'transportProtocol_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'transportProtocol_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'transportProtocol_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'transportProtocol_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'transport_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'transport_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'transport_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'transport_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'transport_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'transport_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'transport_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'userId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'virtualNetworkId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'virtualNetworkId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'virtualNetworkId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'virtualNetworkId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'virtualNetworkId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'virtualNetworkId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'virtualNetworkId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'virtualNetworkId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'virtualNetworkId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'virtualNetworkId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'virtualNetworkName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'virtualNetworkName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'virtualNetworkName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'virtualNetworkName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'virtualNetworkName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'virtualNetworkName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'virtualNetworkName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'virtualNetworkName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'virtualNetworkName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'virtualNetworkName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountGatewayL4SessionsAdaptiveGroupsOrderBy': { name: 'AccountGatewayL4SessionsAdaptiveGroupsOrderBy'; enumValues: 'action_ASC' | 'action_DESC' | 'applicationIds_ASC' | 'applicationIds_DESC' | 'applicationNames_ASC' | 'applicationNames_DESC' | 'categoryIds_ASC' | 'categoryIds_DESC' | 'categoryNames_ASC' | 'categoryNames_DESC' | 'coloCode_ASC' | 'coloCode_DESC' | 'count_ASC' | 'count_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'destinationIp_ASC' | 'destinationIp_DESC' | 'destinationPort_ASC' | 'destinationPort_DESC' | 'detectedProtocol_ASC' | 'detectedProtocol_DESC' | 'deviceId_ASC' | 'deviceId_DESC' | 'dstIpContinent_ASC' | 'dstIpContinent_DESC' | 'dstIpCountry_ASC' | 'dstIpCountry_DESC' | 'email_ASC' | 'email_DESC' | 'proxyEndpoint_ASC' | 'proxyEndpoint_DESC' | 'sessionId_ASC' | 'sessionId_DESC' | 'sni_ASC' | 'sni_DESC' | 'sourceInternalIp_ASC' | 'sourceInternalIp_DESC' | 'sourceIp_ASC' | 'sourceIp_DESC' | 'sourcePort_ASC' | 'sourcePort_DESC' | 'srcIpContinent_ASC' | 'srcIpContinent_DESC' | 'srcIpCountry_ASC' | 'srcIpCountry_DESC' | 'transportProtocol_ASC' | 'transportProtocol_DESC' | 'transport_ASC' | 'transport_DESC' | 'userId_ASC' | 'userId_DESC' | 'virtualNetworkId_ASC' | 'virtualNetworkId_DESC' | 'virtualNetworkName_ASC' | 'virtualNetworkName_DESC'; }; + 'AccountGatewayL4UpstreamSessionsAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountGatewayL4UpstreamSessionsAdaptiveGroups'; fields: { 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountGatewayL4UpstreamSessionsAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountGatewayL4UpstreamSessionsAdaptiveGroupsDimensions'; ofType: null; } }; 'quantiles': { name: 'quantiles'; type: { kind: 'OBJECT'; name: 'AccountGatewayL4UpstreamSessionsAdaptiveGroupsQuantiles'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountGatewayL4UpstreamSessionsAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'AccountGatewayL4UpstreamSessionsAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountGatewayL4UpstreamSessionsAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountGatewayL4UpstreamSessionsAdaptiveGroupsSumConfidence'; ofType: null; } }; }; }; + 'AccountGatewayL4UpstreamSessionsAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountGatewayL4UpstreamSessionsAdaptiveGroupsDimensions'; fields: { 'coloCode': { name: 'coloCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'coloCountry': { name: 'coloCountry'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'destinationIP': { name: 'destinationIP'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'domainName': { name: 'domainName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'downstreamSessionId': { name: 'downstreamSessionId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'httpConnectReqStatus': { name: 'httpConnectReqStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'quicErrorCode': { name: 'quicErrorCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'rttUs': { name: 'rttUs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'tokenSigningRegion': { name: 'tokenSigningRegion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'totalTunnelSetupDurationUs': { name: 'totalTunnelSetupDurationUs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'transport': { name: 'transport'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'transportStatus': { name: 'transportStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountGatewayL4UpstreamSessionsAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountGatewayL4UpstreamSessionsAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountGatewayL4UpstreamSessionsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountGatewayL4UpstreamSessionsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCode'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCode_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCode_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCountry_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCountry_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationIP'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIP_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIP_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIP_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationIP_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIP_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIP_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIP_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIP_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationIP_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'domainName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'domainName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'domainName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'domainName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'domainName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'domainName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'domainName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'domainName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'domainName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'domainName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'downstreamSessionId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'downstreamSessionId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'downstreamSessionId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'downstreamSessionId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'downstreamSessionId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'downstreamSessionId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'downstreamSessionId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'downstreamSessionId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'downstreamSessionId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'downstreamSessionId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'httpConnectReqStatus'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'httpConnectReqStatus_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'httpConnectReqStatus_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'httpConnectReqStatus_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'httpConnectReqStatus_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'httpConnectReqStatus_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'httpConnectReqStatus_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'httpConnectReqStatus_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'httpConnectReqStatus_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'httpConnectReqStatus_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'quicErrorCode'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'quicErrorCode_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'quicErrorCode_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'quicErrorCode_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'quicErrorCode_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'quicErrorCode_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'quicErrorCode_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'quicErrorCode_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'rttUs'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'rttUs_geq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'rttUs_gt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'rttUs_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'rttUs_leq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'rttUs_lt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'rttUs_neq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'rttUs_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'tokenSigningRegion'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tokenSigningRegion_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tokenSigningRegion_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tokenSigningRegion_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tokenSigningRegion_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tokenSigningRegion_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tokenSigningRegion_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tokenSigningRegion_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tokenSigningRegion_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tokenSigningRegion_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'totalTunnelSetupDurationUs'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'totalTunnelSetupDurationUs_geq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'totalTunnelSetupDurationUs_gt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'totalTunnelSetupDurationUs_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalTunnelSetupDurationUs_leq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'totalTunnelSetupDurationUs_lt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'totalTunnelSetupDurationUs_neq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'totalTunnelSetupDurationUs_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'transport'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'transportStatus'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'transportStatus_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'transportStatus_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'transportStatus_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'transportStatus_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'transportStatus_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'transportStatus_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'transportStatus_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'transportStatus_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'transportStatus_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'transport_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'transport_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'transport_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'transport_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'transport_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'transport_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'transport_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'transport_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'transport_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountGatewayL4UpstreamSessionsAdaptiveGroupsOrderBy': { name: 'AccountGatewayL4UpstreamSessionsAdaptiveGroupsOrderBy'; enumValues: 'coloCode_ASC' | 'coloCode_DESC' | 'coloCountry_ASC' | 'coloCountry_DESC' | 'count_ASC' | 'count_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'destinationIP_ASC' | 'destinationIP_DESC' | 'domainName_ASC' | 'domainName_DESC' | 'downstreamSessionId_ASC' | 'downstreamSessionId_DESC' | 'httpConnectReqStatus_ASC' | 'httpConnectReqStatus_DESC' | 'quantiles_connectReqHandlingDurationUsP50_ASC' | 'quantiles_connectReqHandlingDurationUsP50_DESC' | 'quantiles_totalTunnelSetupDurationUsP50_ASC' | 'quantiles_totalTunnelSetupDurationUsP50_DESC' | 'quantiles_tunnelSetupDurationUsP50_ASC' | 'quantiles_tunnelSetupDurationUsP50_DESC' | 'quicErrorCode_ASC' | 'quicErrorCode_DESC' | 'rttUs_ASC' | 'rttUs_DESC' | 'sum_bytesRecvd_ASC' | 'sum_bytesRecvd_DESC' | 'sum_bytesSent_ASC' | 'sum_bytesSent_DESC' | 'sum_connectReqHandlingDurationUs_ASC' | 'sum_connectReqHandlingDurationUs_DESC' | 'sum_originBytesRetransmitted_ASC' | 'sum_originBytesRetransmitted_DESC' | 'sum_packetsRecvd_ASC' | 'sum_packetsRecvd_DESC' | 'sum_packetsSent_ASC' | 'sum_packetsSent_DESC' | 'sum_totalTunnelSetupDurationUs_ASC' | 'sum_totalTunnelSetupDurationUs_DESC' | 'sum_tunnelSetupDurationUs_ASC' | 'sum_tunnelSetupDurationUs_DESC' | 'tokenSigningRegion_ASC' | 'tokenSigningRegion_DESC' | 'totalTunnelSetupDurationUs_ASC' | 'totalTunnelSetupDurationUs_DESC' | 'transportStatus_ASC' | 'transportStatus_DESC' | 'transport_ASC' | 'transport_DESC'; }; + 'AccountGatewayL4UpstreamSessionsAdaptiveGroupsQuantiles': { kind: 'OBJECT'; name: 'AccountGatewayL4UpstreamSessionsAdaptiveGroupsQuantiles'; fields: { 'connectReqHandlingDurationUsP50': { name: 'connectReqHandlingDurationUsP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'totalTunnelSetupDurationUsP50': { name: 'totalTunnelSetupDurationUsP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'tunnelSetupDurationUsP50': { name: 'tunnelSetupDurationUsP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; }; }; + 'AccountGatewayL4UpstreamSessionsAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'AccountGatewayL4UpstreamSessionsAdaptiveGroupsSum'; fields: { 'bytesRecvd': { name: 'bytesRecvd'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'bytesSent': { name: 'bytesSent'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'connectReqHandlingDurationUs': { name: 'connectReqHandlingDurationUs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'originBytesRetransmitted': { name: 'originBytesRetransmitted'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetsRecvd': { name: 'packetsRecvd'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetsSent': { name: 'packetsSent'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'totalTunnelSetupDurationUs': { name: 'totalTunnelSetupDurationUs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'tunnelSetupDurationUs': { name: 'tunnelSetupDurationUs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; }; }; + 'AccountGatewayL4UpstreamSessionsAdaptiveGroupsSumConfidence': { kind: 'OBJECT'; name: 'AccountGatewayL4UpstreamSessionsAdaptiveGroupsSumConfidence'; fields: { 'bytesRecvd': { name: 'bytesRecvd'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bytesSent': { name: 'bytesSent'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'connectReqHandlingDurationUs': { name: 'connectReqHandlingDurationUs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'originBytesRetransmitted': { name: 'originBytesRetransmitted'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetsRecvd': { name: 'packetsRecvd'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetsSent': { name: 'packetsSent'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'totalTunnelSetupDurationUs': { name: 'totalTunnelSetupDurationUs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'tunnelSetupDurationUs': { name: 'tunnelSetupDurationUs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountGatewayL7RequestsAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountGatewayL7RequestsAdaptiveGroups'; fields: { 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountGatewayL7RequestsAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountGatewayL7RequestsAdaptiveGroupsDimensions'; ofType: null; } }; }; }; + 'AccountGatewayL7RequestsAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountGatewayL7RequestsAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountGatewayL7RequestsAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountGatewayL7RequestsAdaptiveGroupsDimensions'; fields: { 'action': { name: 'action'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'applicationIds': { name: 'applicationIds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; } }; 'applicationNames': { name: 'applicationNames'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'categoryIds': { name: 'categoryIds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; } }; 'categoryNames': { name: 'categoryNames'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'coloCode': { name: 'coloCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'deviceId': { name: 'deviceId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'dstIpContinent': { name: 'dstIpContinent'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'dstIpCountry': { name: 'dstIpCountry'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'email': { name: 'email'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'httpHost': { name: 'httpHost'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'httpStatusCode': { name: 'httpStatusCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'isIsolated': { name: 'isIsolated'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'privateAppAUD': { name: 'privateAppAUD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'proxyEndpoint': { name: 'proxyEndpoint'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'quarantined': { name: 'quarantined'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'redirectTargetURI': { name: 'redirectTargetURI'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'requestId': { name: 'requestId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sourceInternalIp': { name: 'sourceInternalIp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'srcIpContinent': { name: 'srcIpContinent'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'srcIpCountry': { name: 'srcIpCountry'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'untrustedCertificateAction': { name: 'untrustedCertificateAction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'url': { name: 'url'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'userId': { name: 'userId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'virtualNetworkId': { name: 'virtualNetworkId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'virtualNetworkName': { name: 'virtualNetworkName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountGatewayL7RequestsAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountGatewayL7RequestsAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountGatewayL7RequestsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountGatewayL7RequestsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'action'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'action_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'action_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationIds_has'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'applicationIds_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'applicationIds_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'applicationIds_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'applicationIds_nothas'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'applicationNames_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationNames_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'applicationNames_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'applicationNames_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'applicationNames_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'categoryIds_has'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'categoryIds_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'categoryIds_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'categoryIds_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'categoryIds_nothas'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'categoryNames_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'categoryNames_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'categoryNames_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'categoryNames_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'categoryNames_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCode_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCode_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dstIpContinent'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dstIpContinent_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dstIpContinent_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dstIpContinent_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'dstIpContinent_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dstIpContinent_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dstIpContinent_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dstIpContinent_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dstIpContinent_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'dstIpContinent_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dstIpCountry'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dstIpCountry_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dstIpCountry_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dstIpCountry_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'dstIpCountry_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dstIpCountry_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dstIpCountry_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dstIpCountry_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dstIpCountry_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'dstIpCountry_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'email'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'email_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'email_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'email_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'email_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'email_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'email_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'email_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'email_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'email_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'httpHost'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'httpHost_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'httpHost_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'httpHost_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'httpHost_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'httpHost_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'httpHost_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'httpHost_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'httpHost_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'httpHost_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'httpStatusCode'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'httpStatusCode_geq'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'httpStatusCode_gt'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'httpStatusCode_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; }; }; defaultValue: null }, { name: 'httpStatusCode_leq'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'httpStatusCode_lt'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'httpStatusCode_neq'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'httpStatusCode_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; }; }; defaultValue: null }, { name: 'isIsolated'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'isIsolated_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'isIsolated_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'isIsolated_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'isIsolated_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'isIsolated_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'isIsolated_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'isIsolated_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'privateAppAUD'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'privateAppAUD_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'privateAppAUD_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'privateAppAUD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'privateAppAUD_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'privateAppAUD_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'privateAppAUD_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'privateAppAUD_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'privateAppAUD_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'privateAppAUD_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'proxyEndpoint'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'proxyEndpoint_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'proxyEndpoint_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'proxyEndpoint_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'proxyEndpoint_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'proxyEndpoint_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'proxyEndpoint_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'proxyEndpoint_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'proxyEndpoint_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'proxyEndpoint_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'quarantined'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'quarantined_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'quarantined_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'quarantined_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'quarantined_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'quarantined_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'quarantined_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'quarantined_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'redirectTargetURI'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'redirectTargetURI_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'redirectTargetURI_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'redirectTargetURI_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'redirectTargetURI_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'redirectTargetURI_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'redirectTargetURI_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'redirectTargetURI_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'redirectTargetURI_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'redirectTargetURI_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'requestId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'requestId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceInternalIp'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceInternalIp_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceInternalIp_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceInternalIp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceInternalIp_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceInternalIp_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceInternalIp_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceInternalIp_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceInternalIp_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceInternalIp_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'srcIpContinent'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'srcIpContinent_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'srcIpContinent_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'srcIpContinent_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'srcIpContinent_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'srcIpContinent_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'srcIpContinent_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'srcIpContinent_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'srcIpContinent_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'srcIpContinent_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'srcIpCountry'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'srcIpCountry_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'srcIpCountry_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'srcIpCountry_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'srcIpCountry_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'srcIpCountry_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'srcIpCountry_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'srcIpCountry_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'srcIpCountry_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'srcIpCountry_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'untrustedCertificateAction'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'untrustedCertificateAction_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'untrustedCertificateAction_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'untrustedCertificateAction_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'untrustedCertificateAction_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'untrustedCertificateAction_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'untrustedCertificateAction_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'untrustedCertificateAction_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'untrustedCertificateAction_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'untrustedCertificateAction_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'url'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'url_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'url_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'url_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'url_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'url_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'url_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'url_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'url_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'url_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'virtualNetworkId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'virtualNetworkId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'virtualNetworkId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'virtualNetworkId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'virtualNetworkId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'virtualNetworkId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'virtualNetworkId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'virtualNetworkId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'virtualNetworkId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'virtualNetworkId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'virtualNetworkName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'virtualNetworkName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'virtualNetworkName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'virtualNetworkName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'virtualNetworkName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'virtualNetworkName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'virtualNetworkName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'virtualNetworkName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'virtualNetworkName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'virtualNetworkName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountGatewayL7RequestsAdaptiveGroupsOrderBy': { name: 'AccountGatewayL7RequestsAdaptiveGroupsOrderBy'; enumValues: 'action_ASC' | 'action_DESC' | 'applicationIds_ASC' | 'applicationIds_DESC' | 'applicationNames_ASC' | 'applicationNames_DESC' | 'categoryIds_ASC' | 'categoryIds_DESC' | 'categoryNames_ASC' | 'categoryNames_DESC' | 'coloCode_ASC' | 'coloCode_DESC' | 'count_ASC' | 'count_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'deviceId_ASC' | 'deviceId_DESC' | 'dstIpContinent_ASC' | 'dstIpContinent_DESC' | 'dstIpCountry_ASC' | 'dstIpCountry_DESC' | 'email_ASC' | 'email_DESC' | 'httpHost_ASC' | 'httpHost_DESC' | 'httpStatusCode_ASC' | 'httpStatusCode_DESC' | 'isIsolated_ASC' | 'isIsolated_DESC' | 'privateAppAUD_ASC' | 'privateAppAUD_DESC' | 'proxyEndpoint_ASC' | 'proxyEndpoint_DESC' | 'quarantined_ASC' | 'quarantined_DESC' | 'redirectTargetURI_ASC' | 'redirectTargetURI_DESC' | 'requestId_ASC' | 'requestId_DESC' | 'sourceInternalIp_ASC' | 'sourceInternalIp_DESC' | 'srcIpContinent_ASC' | 'srcIpContinent_DESC' | 'srcIpCountry_ASC' | 'srcIpCountry_DESC' | 'untrustedCertificateAction_ASC' | 'untrustedCertificateAction_DESC' | 'url_ASC' | 'url_DESC' | 'userId_ASC' | 'userId_DESC' | 'virtualNetworkId_ASC' | 'virtualNetworkId_DESC' | 'virtualNetworkName_ASC' | 'virtualNetworkName_DESC'; }; + 'AccountGatewayResolverByCategoryAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountGatewayResolverByCategoryAdaptiveGroups'; fields: { 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountGatewayResolverByCategoryAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountGatewayResolverByCategoryAdaptiveGroupsDimensions'; ofType: null; } }; }; }; + 'AccountGatewayResolverByCategoryAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountGatewayResolverByCategoryAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountGatewayResolverByCategoryAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountGatewayResolverByCategoryAdaptiveGroupsDimensions'; fields: { 'authoritativeNameserverIps': { name: 'authoritativeNameserverIps'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'categoryId': { name: 'categoryId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'cnames': { name: 'cnames'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'customResolverAddress': { name: 'customResolverAddress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'customResolverCacheStatus': { name: 'customResolverCacheStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'customResolverResponseCode': { name: 'customResolverResponseCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'dohSubdomain': { name: 'dohSubdomain'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'dotSubdomain': { name: 'dotSubdomain'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'edeErrors': { name: 'edeErrors'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; } }; 'internalDnsFallbackStrategy': { name: 'internalDnsFallbackStrategy'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'internalDnsRCode': { name: 'internalDnsRCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'internalDnsViewId': { name: 'internalDnsViewId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'internalDnsZoneId': { name: 'internalDnsZoneId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'locationId': { name: 'locationId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'matchedApplicationId': { name: 'matchedApplicationId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'matchedApplicationName': { name: 'matchedApplicationName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'policyId': { name: 'policyId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'policyName': { name: 'policyName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'resolvedIpContinents': { name: 'resolvedIpContinents'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'resolvedIpCountries': { name: 'resolvedIpCountries'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'resolvedIps': { name: 'resolvedIps'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'resolverDecision': { name: 'resolverDecision'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'resolverPolicyId': { name: 'resolverPolicyId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'resolverPolicyName': { name: 'resolverPolicyName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'resourceRecordClasses': { name: 'resourceRecordClasses'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'resourceRecordNames': { name: 'resourceRecordNames'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'resourceRecordRDatas': { name: 'resourceRecordRDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'resourceRecordTTLs': { name: 'resourceRecordTTLs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; } }; 'resourceRecordTypes': { name: 'resourceRecordTypes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'srcIpContinent': { name: 'srcIpContinent'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'srcIpCountry': { name: 'srcIpCountry'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountGatewayResolverByCategoryAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountGatewayResolverByCategoryAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountGatewayResolverByCategoryAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountGatewayResolverByCategoryAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'authoritativeNameserverIps_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'authoritativeNameserverIps_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'authoritativeNameserverIps_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'authoritativeNameserverIps_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'authoritativeNameserverIps_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'categoryId'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'categoryId_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'categoryId_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'categoryId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'categoryId_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'categoryId_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'categoryId_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'categoryId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'cnames_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cnames_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'cnames_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'cnames_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'cnames_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'customResolverAddress'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'customResolverAddress_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'customResolverAddress_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'customResolverAddress_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'customResolverAddress_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'customResolverAddress_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'customResolverAddress_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'customResolverAddress_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'customResolverAddress_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'customResolverAddress_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'customResolverCacheStatus'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'customResolverCacheStatus_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'customResolverCacheStatus_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'customResolverCacheStatus_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'customResolverCacheStatus_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'customResolverCacheStatus_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'customResolverCacheStatus_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'customResolverCacheStatus_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'customResolverResponseCode'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'customResolverResponseCode_geq'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'customResolverResponseCode_gt'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'customResolverResponseCode_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; }; }; defaultValue: null }, { name: 'customResolverResponseCode_leq'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'customResolverResponseCode_lt'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'customResolverResponseCode_neq'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'customResolverResponseCode_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'dohSubdomain'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dohSubdomain_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dohSubdomain_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dohSubdomain_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'dohSubdomain_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dohSubdomain_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dohSubdomain_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dohSubdomain_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dohSubdomain_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'dohSubdomain_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dotSubdomain'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dotSubdomain_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dotSubdomain_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dotSubdomain_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'dotSubdomain_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dotSubdomain_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dotSubdomain_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dotSubdomain_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dotSubdomain_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'dotSubdomain_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edeErrors_has'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edeErrors_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'edeErrors_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'edeErrors_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'edeErrors_nothas'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'internalDnsFallbackStrategy'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'internalDnsFallbackStrategy_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'internalDnsFallbackStrategy_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'internalDnsFallbackStrategy_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'internalDnsFallbackStrategy_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'internalDnsFallbackStrategy_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'internalDnsFallbackStrategy_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'internalDnsFallbackStrategy_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'internalDnsFallbackStrategy_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'internalDnsFallbackStrategy_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'internalDnsRCode'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'internalDnsRCode_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'internalDnsRCode_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'internalDnsRCode_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'internalDnsRCode_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'internalDnsRCode_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'internalDnsRCode_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'internalDnsRCode_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'internalDnsViewId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'internalDnsViewId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'internalDnsViewId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'internalDnsViewId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'internalDnsViewId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'internalDnsViewId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'internalDnsViewId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'internalDnsViewId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'internalDnsViewId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'internalDnsViewId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'internalDnsZoneId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'internalDnsZoneId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'internalDnsZoneId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'internalDnsZoneId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'internalDnsZoneId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'internalDnsZoneId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'internalDnsZoneId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'internalDnsZoneId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'internalDnsZoneId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'internalDnsZoneId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'locationId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'locationId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'locationId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'locationId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'locationId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'locationId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'locationId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'locationId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'locationId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'locationId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'matchedApplicationId'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'matchedApplicationId_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'matchedApplicationId_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'matchedApplicationId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'matchedApplicationId_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'matchedApplicationId_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'matchedApplicationId_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'matchedApplicationId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'matchedApplicationName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'matchedApplicationName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'matchedApplicationName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'matchedApplicationName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'matchedApplicationName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'matchedApplicationName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'matchedApplicationName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'matchedApplicationName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'matchedApplicationName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'matchedApplicationName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policyId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policyId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policyId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policyId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'policyId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policyId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policyId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policyId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policyId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'policyId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policyName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policyName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policyName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policyName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'policyName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policyName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policyName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policyName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policyName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'policyName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resolvedIpContinents_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resolvedIpContinents_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'resolvedIpContinents_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'resolvedIpContinents_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'resolvedIpContinents_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resolvedIpCountries_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resolvedIpCountries_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'resolvedIpCountries_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'resolvedIpCountries_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'resolvedIpCountries_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resolvedIps_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resolvedIps_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'resolvedIps_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'resolvedIps_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'resolvedIps_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resolverDecision'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'resolverDecision_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'resolverDecision_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'resolverDecision_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'resolverDecision_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'resolverDecision_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'resolverDecision_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'resolverDecision_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'resolverPolicyId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resolverPolicyId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resolverPolicyId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resolverPolicyId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'resolverPolicyId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resolverPolicyId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resolverPolicyId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resolverPolicyId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resolverPolicyId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'resolverPolicyId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resolverPolicyName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resolverPolicyName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resolverPolicyName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resolverPolicyName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'resolverPolicyName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resolverPolicyName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resolverPolicyName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resolverPolicyName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resolverPolicyName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'resolverPolicyName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resourceRecordClasses_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resourceRecordClasses_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'resourceRecordClasses_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'resourceRecordClasses_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'resourceRecordClasses_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resourceRecordNames_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resourceRecordNames_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'resourceRecordNames_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'resourceRecordNames_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'resourceRecordNames_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resourceRecordRDatas_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resourceRecordRDatas_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'resourceRecordRDatas_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'resourceRecordRDatas_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'resourceRecordRDatas_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resourceRecordTTLs_has'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'resourceRecordTTLs_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'resourceRecordTTLs_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'resourceRecordTTLs_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'resourceRecordTTLs_nothas'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'resourceRecordTypes_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resourceRecordTypes_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'resourceRecordTypes_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'resourceRecordTypes_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'resourceRecordTypes_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'srcIpContinent'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'srcIpContinent_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'srcIpContinent_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'srcIpContinent_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'srcIpContinent_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'srcIpContinent_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'srcIpContinent_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'srcIpContinent_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'srcIpContinent_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'srcIpContinent_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'srcIpCountry'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'srcIpCountry_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'srcIpCountry_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'srcIpCountry_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'srcIpCountry_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'srcIpCountry_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'srcIpCountry_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'srcIpCountry_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'srcIpCountry_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'srcIpCountry_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountGatewayResolverByCategoryAdaptiveGroupsOrderBy': { name: 'AccountGatewayResolverByCategoryAdaptiveGroupsOrderBy'; enumValues: 'authoritativeNameserverIps_ASC' | 'authoritativeNameserverIps_DESC' | 'categoryId_ASC' | 'categoryId_DESC' | 'cnames_ASC' | 'cnames_DESC' | 'count_ASC' | 'count_DESC' | 'customResolverAddress_ASC' | 'customResolverAddress_DESC' | 'customResolverCacheStatus_ASC' | 'customResolverCacheStatus_DESC' | 'customResolverResponseCode_ASC' | 'customResolverResponseCode_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'dohSubdomain_ASC' | 'dohSubdomain_DESC' | 'dotSubdomain_ASC' | 'dotSubdomain_DESC' | 'edeErrors_ASC' | 'edeErrors_DESC' | 'internalDnsFallbackStrategy_ASC' | 'internalDnsFallbackStrategy_DESC' | 'internalDnsRCode_ASC' | 'internalDnsRCode_DESC' | 'internalDnsViewId_ASC' | 'internalDnsViewId_DESC' | 'internalDnsZoneId_ASC' | 'internalDnsZoneId_DESC' | 'locationId_ASC' | 'locationId_DESC' | 'matchedApplicationId_ASC' | 'matchedApplicationId_DESC' | 'matchedApplicationName_ASC' | 'matchedApplicationName_DESC' | 'policyId_ASC' | 'policyId_DESC' | 'policyName_ASC' | 'policyName_DESC' | 'resolvedIpContinents_ASC' | 'resolvedIpContinents_DESC' | 'resolvedIpCountries_ASC' | 'resolvedIpCountries_DESC' | 'resolvedIps_ASC' | 'resolvedIps_DESC' | 'resolverDecision_ASC' | 'resolverDecision_DESC' | 'resolverPolicyId_ASC' | 'resolverPolicyId_DESC' | 'resolverPolicyName_ASC' | 'resolverPolicyName_DESC' | 'resourceRecordClasses_ASC' | 'resourceRecordClasses_DESC' | 'resourceRecordNames_ASC' | 'resourceRecordNames_DESC' | 'resourceRecordRDatas_ASC' | 'resourceRecordRDatas_DESC' | 'resourceRecordTTLs_ASC' | 'resourceRecordTTLs_DESC' | 'resourceRecordTypes_ASC' | 'resourceRecordTypes_DESC' | 'srcIpContinent_ASC' | 'srcIpContinent_DESC' | 'srcIpCountry_ASC' | 'srcIpCountry_DESC'; }; + 'AccountGatewayResolverByCustomResolverGroups': { kind: 'OBJECT'; name: 'AccountGatewayResolverByCustomResolverGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountGatewayResolverByCustomResolverGroupsAvg'; ofType: null; } }; 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountGatewayResolverByCustomResolverGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountGatewayResolverByCustomResolverGroupsDimensions'; ofType: null; } }; 'max': { name: 'max'; type: { kind: 'OBJECT'; name: 'AccountGatewayResolverByCustomResolverGroupsMax'; ofType: null; } }; }; }; + 'AccountGatewayResolverByCustomResolverGroupsAvg': { kind: 'OBJECT'; name: 'AccountGatewayResolverByCustomResolverGroupsAvg'; fields: { 'customResolverTimeInMs': { name: 'customResolverTimeInMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountGatewayResolverByCustomResolverGroupsConfidence': { kind: 'OBJECT'; name: 'AccountGatewayResolverByCustomResolverGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountGatewayResolverByCustomResolverGroupsDimensions': { kind: 'OBJECT'; name: 'AccountGatewayResolverByCustomResolverGroupsDimensions'; fields: { 'cacheStatus': { name: 'cacheStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'customResolverAddress': { name: 'customResolverAddress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'customResolverResponseCode': { name: 'customResolverResponseCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'customResolverTimeInMs': { name: 'customResolverTimeInMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'locationId': { name: 'locationId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'queryName': { name: 'queryName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'resolverDecision': { name: 'resolverDecision'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; }; }; + 'AccountGatewayResolverByCustomResolverGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountGatewayResolverByCustomResolverGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountGatewayResolverByCustomResolverGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountGatewayResolverByCustomResolverGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'cacheStatus'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'cacheStatus_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'cacheStatus_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'cacheStatus_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'cacheStatus_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'cacheStatus_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'cacheStatus_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'cacheStatus_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'customResolverAddress'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'customResolverAddress_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'customResolverAddress_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'customResolverAddress_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'customResolverAddress_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'customResolverAddress_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'customResolverAddress_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'customResolverAddress_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'customResolverAddress_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'customResolverAddress_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'customResolverResponseCode'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'customResolverResponseCode_geq'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'customResolverResponseCode_gt'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'customResolverResponseCode_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; }; }; defaultValue: null }, { name: 'customResolverResponseCode_leq'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'customResolverResponseCode_lt'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'customResolverResponseCode_neq'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'customResolverResponseCode_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; }; }; defaultValue: null }, { name: 'customResolverTimeInMs'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'customResolverTimeInMs_geq'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'customResolverTimeInMs_gt'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'customResolverTimeInMs_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; }; }; defaultValue: null }, { name: 'customResolverTimeInMs_leq'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'customResolverTimeInMs_lt'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'customResolverTimeInMs_neq'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'customResolverTimeInMs_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'locationId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'locationId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'locationId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'locationId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'locationId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'locationId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'locationId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'locationId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'locationId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'locationId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'queryName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'queryName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resolverDecision'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'resolverDecision_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'resolverDecision_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'resolverDecision_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'resolverDecision_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'resolverDecision_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'resolverDecision_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'resolverDecision_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }]; }; + 'AccountGatewayResolverByCustomResolverGroupsMax': { kind: 'OBJECT'; name: 'AccountGatewayResolverByCustomResolverGroupsMax'; fields: { 'customResolverTimeInMs': { name: 'customResolverTimeInMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountGatewayResolverByCustomResolverGroupsOrderBy': { name: 'AccountGatewayResolverByCustomResolverGroupsOrderBy'; enumValues: 'avg_customResolverTimeInMs_ASC' | 'avg_customResolverTimeInMs_DESC' | 'avg_sampleInterval_ASC' | 'avg_sampleInterval_DESC' | 'cacheStatus_ASC' | 'cacheStatus_DESC' | 'count_ASC' | 'count_DESC' | 'customResolverAddress_ASC' | 'customResolverAddress_DESC' | 'customResolverResponseCode_ASC' | 'customResolverResponseCode_DESC' | 'customResolverTimeInMs_ASC' | 'customResolverTimeInMs_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'locationId_ASC' | 'locationId_DESC' | 'max_customResolverTimeInMs_ASC' | 'max_customResolverTimeInMs_DESC' | 'queryName_ASC' | 'queryName_DESC' | 'resolverDecision_ASC' | 'resolverDecision_DESC'; }; + 'AccountGatewayResolverByRuleExecutionPerformanceAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountGatewayResolverByRuleExecutionPerformanceAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountGatewayResolverByRuleExecutionPerformanceAdaptiveGroupsAvg'; ofType: null; } }; 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountGatewayResolverByRuleExecutionPerformanceAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountGatewayResolverByRuleExecutionPerformanceAdaptiveGroupsDimensions'; ofType: null; } }; 'max': { name: 'max'; type: { kind: 'OBJECT'; name: 'AccountGatewayResolverByRuleExecutionPerformanceAdaptiveGroupsMax'; ofType: null; } }; 'quantiles': { name: 'quantiles'; type: { kind: 'OBJECT'; name: 'AccountGatewayResolverByRuleExecutionPerformanceAdaptiveGroupsQuantiles'; ofType: null; } }; }; }; + 'AccountGatewayResolverByRuleExecutionPerformanceAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'AccountGatewayResolverByRuleExecutionPerformanceAdaptiveGroupsAvg'; fields: { 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountGatewayResolverByRuleExecutionPerformanceAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountGatewayResolverByRuleExecutionPerformanceAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountGatewayResolverByRuleExecutionPerformanceAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountGatewayResolverByRuleExecutionPerformanceAdaptiveGroupsDimensions'; fields: { 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMonth': { name: 'datetimeMonth'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; }; }; + 'AccountGatewayResolverByRuleExecutionPerformanceAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountGatewayResolverByRuleExecutionPerformanceAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountGatewayResolverByRuleExecutionPerformanceAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountGatewayResolverByRuleExecutionPerformanceAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMonth'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMonth_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMonth_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMonth_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMonth_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMonth_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMonth_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMonth_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }]; }; + 'AccountGatewayResolverByRuleExecutionPerformanceAdaptiveGroupsMax': { kind: 'OBJECT'; name: 'AccountGatewayResolverByRuleExecutionPerformanceAdaptiveGroupsMax'; fields: { 'executionTime': { name: 'executionTime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountGatewayResolverByRuleExecutionPerformanceAdaptiveGroupsOrderBy': { name: 'AccountGatewayResolverByRuleExecutionPerformanceAdaptiveGroupsOrderBy'; enumValues: 'avg_sampleInterval_ASC' | 'avg_sampleInterval_DESC' | 'count_ASC' | 'count_DESC' | 'datetimeMonth_ASC' | 'datetimeMonth_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'max_executionTime_ASC' | 'max_executionTime_DESC' | 'quantiles_executionTimeMsP25_ASC' | 'quantiles_executionTimeMsP25_DESC' | 'quantiles_executionTimeMsP50_ASC' | 'quantiles_executionTimeMsP50_DESC' | 'quantiles_executionTimeMsP75_ASC' | 'quantiles_executionTimeMsP75_DESC' | 'quantiles_executionTimeMsP90_ASC' | 'quantiles_executionTimeMsP90_DESC' | 'quantiles_executionTimeMsP95_ASC' | 'quantiles_executionTimeMsP95_DESC' | 'quantiles_executionTimeMsP98_ASC' | 'quantiles_executionTimeMsP98_DESC' | 'quantiles_executionTimeMsP99_ASC' | 'quantiles_executionTimeMsP99_DESC'; }; + 'AccountGatewayResolverByRuleExecutionPerformanceAdaptiveGroupsQuantiles': { kind: 'OBJECT'; name: 'AccountGatewayResolverByRuleExecutionPerformanceAdaptiveGroupsQuantiles'; fields: { 'executionTimeMsP25': { name: 'executionTimeMsP25'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'executionTimeMsP50': { name: 'executionTimeMsP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'executionTimeMsP75': { name: 'executionTimeMsP75'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'executionTimeMsP90': { name: 'executionTimeMsP90'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'executionTimeMsP95': { name: 'executionTimeMsP95'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'executionTimeMsP98': { name: 'executionTimeMsP98'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'executionTimeMsP99': { name: 'executionTimeMsP99'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountGatewayResolverQueriesAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountGatewayResolverQueriesAdaptiveGroups'; fields: { 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountGatewayResolverQueriesAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountGatewayResolverQueriesAdaptiveGroupsDimensions'; ofType: null; } }; }; }; + 'AccountGatewayResolverQueriesAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountGatewayResolverQueriesAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountGatewayResolverQueriesAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountGatewayResolverQueriesAdaptiveGroupsDimensions'; fields: { 'authoritativeNameserverIps': { name: 'authoritativeNameserverIps'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'categoryIds': { name: 'categoryIds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'categoryNames': { name: 'categoryNames'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'cnames': { name: 'cnames'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'customResolverAddress': { name: 'customResolverAddress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'customResolverCacheStatus': { name: 'customResolverCacheStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'customResolverResponseCode': { name: 'customResolverResponseCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'dohSubdomain': { name: 'dohSubdomain'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'dotSubdomain': { name: 'dotSubdomain'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'edeErrors': { name: 'edeErrors'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; } }; 'internalDnsFallbackStrategy': { name: 'internalDnsFallbackStrategy'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'internalDnsRCode': { name: 'internalDnsRCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'internalDnsViewId': { name: 'internalDnsViewId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'internalDnsZoneId': { name: 'internalDnsZoneId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'locationId': { name: 'locationId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'locationName': { name: 'locationName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'matchedApplicationId': { name: 'matchedApplicationId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'matchedApplicationName': { name: 'matchedApplicationName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'matchedIndicatorFeedIds': { name: 'matchedIndicatorFeedIds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'matchedIndicatorFeedNames': { name: 'matchedIndicatorFeedNames'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'policyId': { name: 'policyId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'policyName': { name: 'policyName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'queryName': { name: 'queryName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'queryNameReversed': { name: 'queryNameReversed'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'resolvedIpContinents': { name: 'resolvedIpContinents'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'resolvedIpCountries': { name: 'resolvedIpCountries'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'resolvedIps': { name: 'resolvedIps'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'resolverDecision': { name: 'resolverDecision'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'resolverPolicyId': { name: 'resolverPolicyId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'resolverPolicyName': { name: 'resolverPolicyName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'resourceRecordClasses': { name: 'resourceRecordClasses'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'resourceRecordNames': { name: 'resourceRecordNames'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'resourceRecordRDatas': { name: 'resourceRecordRDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'resourceRecordTTLs': { name: 'resourceRecordTTLs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; } }; 'resourceRecordTypes': { name: 'resourceRecordTypes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'scheduleInfo': { name: 'scheduleInfo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'srcIpContinent': { name: 'srcIpContinent'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'srcIpCountry': { name: 'srcIpCountry'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountGatewayResolverQueriesAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountGatewayResolverQueriesAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountGatewayResolverQueriesAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountGatewayResolverQueriesAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'authoritativeNameserverIps_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'authoritativeNameserverIps_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'authoritativeNameserverIps_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'authoritativeNameserverIps_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'authoritativeNameserverIps_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'categoryIds'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'categoryIds_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'categoryIds_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'categoryIds_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'categoryIds_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'categoryIds_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'categoryIds_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'categoryIds_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'categoryIds_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'categoryIds_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'categoryNames_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'categoryNames_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'categoryNames_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'categoryNames_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'categoryNames_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cnames_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cnames_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'cnames_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'cnames_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'cnames_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'customResolverAddress'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'customResolverAddress_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'customResolverAddress_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'customResolverAddress_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'customResolverAddress_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'customResolverAddress_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'customResolverAddress_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'customResolverAddress_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'customResolverAddress_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'customResolverAddress_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'customResolverCacheStatus'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'customResolverCacheStatus_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'customResolverCacheStatus_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'customResolverCacheStatus_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'customResolverCacheStatus_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'customResolverCacheStatus_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'customResolverCacheStatus_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'customResolverCacheStatus_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'customResolverResponseCode'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'customResolverResponseCode_geq'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'customResolverResponseCode_gt'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'customResolverResponseCode_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; }; }; defaultValue: null }, { name: 'customResolverResponseCode_leq'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'customResolverResponseCode_lt'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'customResolverResponseCode_neq'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'customResolverResponseCode_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'dohSubdomain'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dohSubdomain_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dohSubdomain_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dohSubdomain_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'dohSubdomain_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dohSubdomain_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dohSubdomain_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dohSubdomain_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dohSubdomain_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'dohSubdomain_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dotSubdomain'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dotSubdomain_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dotSubdomain_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dotSubdomain_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'dotSubdomain_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dotSubdomain_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dotSubdomain_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dotSubdomain_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dotSubdomain_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'dotSubdomain_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edeErrors_has'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edeErrors_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'edeErrors_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'edeErrors_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'edeErrors_nothas'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'internalDnsFallbackStrategy'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'internalDnsFallbackStrategy_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'internalDnsFallbackStrategy_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'internalDnsFallbackStrategy_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'internalDnsFallbackStrategy_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'internalDnsFallbackStrategy_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'internalDnsFallbackStrategy_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'internalDnsFallbackStrategy_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'internalDnsFallbackStrategy_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'internalDnsFallbackStrategy_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'internalDnsRCode'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'internalDnsRCode_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'internalDnsRCode_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'internalDnsRCode_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'internalDnsRCode_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'internalDnsRCode_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'internalDnsRCode_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'internalDnsRCode_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'internalDnsViewId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'internalDnsViewId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'internalDnsViewId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'internalDnsViewId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'internalDnsViewId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'internalDnsViewId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'internalDnsViewId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'internalDnsViewId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'internalDnsViewId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'internalDnsViewId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'internalDnsZoneId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'internalDnsZoneId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'internalDnsZoneId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'internalDnsZoneId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'internalDnsZoneId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'internalDnsZoneId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'internalDnsZoneId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'internalDnsZoneId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'internalDnsZoneId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'internalDnsZoneId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'locationId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'locationId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'locationId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'locationId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'locationId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'locationId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'locationId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'locationId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'locationId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'locationId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'locationName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'locationName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'locationName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'locationName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'locationName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'locationName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'locationName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'locationName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'locationName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'locationName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'matchedApplicationId'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'matchedApplicationId_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'matchedApplicationId_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'matchedApplicationId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'matchedApplicationId_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'matchedApplicationId_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'matchedApplicationId_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'matchedApplicationId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'matchedApplicationName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'matchedApplicationName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'matchedApplicationName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'matchedApplicationName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'matchedApplicationName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'matchedApplicationName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'matchedApplicationName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'matchedApplicationName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'matchedApplicationName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'matchedApplicationName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'matchedIndicatorFeedIds'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'matchedIndicatorFeedIds_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'matchedIndicatorFeedIds_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'matchedIndicatorFeedIds_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'matchedIndicatorFeedIds_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'matchedIndicatorFeedIds_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'matchedIndicatorFeedIds_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'matchedIndicatorFeedIds_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'matchedIndicatorFeedIds_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'matchedIndicatorFeedIds_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'matchedIndicatorFeedNames_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'matchedIndicatorFeedNames_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'matchedIndicatorFeedNames_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'matchedIndicatorFeedNames_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'matchedIndicatorFeedNames_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policyId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policyId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policyId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policyId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'policyId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policyId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policyId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policyId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policyId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'policyId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policyName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policyName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policyName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policyName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'policyName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policyName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policyName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policyName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policyName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'policyName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryNameReversed'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryNameReversed_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryNameReversed_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryNameReversed_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'queryNameReversed_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryNameReversed_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryNameReversed_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryNameReversed_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryNameReversed_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'queryNameReversed_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'queryName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'queryName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resolvedIpContinents_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resolvedIpContinents_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'resolvedIpContinents_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'resolvedIpContinents_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'resolvedIpContinents_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resolvedIpCountries_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resolvedIpCountries_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'resolvedIpCountries_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'resolvedIpCountries_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'resolvedIpCountries_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resolvedIps_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resolvedIps_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'resolvedIps_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'resolvedIps_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'resolvedIps_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resolverDecision'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'resolverDecision_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'resolverDecision_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'resolverDecision_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'resolverDecision_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'resolverDecision_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'resolverDecision_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'resolverDecision_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'resolverPolicyId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resolverPolicyId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resolverPolicyId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resolverPolicyId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'resolverPolicyId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resolverPolicyId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resolverPolicyId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resolverPolicyId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resolverPolicyId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'resolverPolicyId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resolverPolicyName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resolverPolicyName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resolverPolicyName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resolverPolicyName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'resolverPolicyName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resolverPolicyName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resolverPolicyName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resolverPolicyName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resolverPolicyName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'resolverPolicyName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resourceRecordClasses_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resourceRecordClasses_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'resourceRecordClasses_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'resourceRecordClasses_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'resourceRecordClasses_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resourceRecordNames_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resourceRecordNames_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'resourceRecordNames_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'resourceRecordNames_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'resourceRecordNames_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resourceRecordRDatas_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resourceRecordRDatas_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'resourceRecordRDatas_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'resourceRecordRDatas_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'resourceRecordRDatas_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resourceRecordTTLs_has'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'resourceRecordTTLs_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'resourceRecordTTLs_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'resourceRecordTTLs_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'resourceRecordTTLs_nothas'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'resourceRecordTypes_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resourceRecordTypes_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'resourceRecordTypes_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'resourceRecordTypes_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'resourceRecordTypes_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scheduleInfo'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scheduleInfo_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scheduleInfo_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scheduleInfo_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'scheduleInfo_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scheduleInfo_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scheduleInfo_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scheduleInfo_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scheduleInfo_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'scheduleInfo_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'srcIpContinent'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'srcIpContinent_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'srcIpContinent_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'srcIpContinent_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'srcIpContinent_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'srcIpContinent_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'srcIpContinent_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'srcIpContinent_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'srcIpContinent_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'srcIpContinent_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'srcIpCountry'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'srcIpCountry_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'srcIpCountry_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'srcIpCountry_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'srcIpCountry_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'srcIpCountry_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'srcIpCountry_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'srcIpCountry_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'srcIpCountry_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'srcIpCountry_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountGatewayResolverQueriesAdaptiveGroupsOrderBy': { name: 'AccountGatewayResolverQueriesAdaptiveGroupsOrderBy'; enumValues: 'authoritativeNameserverIps_ASC' | 'authoritativeNameserverIps_DESC' | 'categoryIds_ASC' | 'categoryIds_DESC' | 'categoryNames_ASC' | 'categoryNames_DESC' | 'cnames_ASC' | 'cnames_DESC' | 'count_ASC' | 'count_DESC' | 'customResolverAddress_ASC' | 'customResolverAddress_DESC' | 'customResolverCacheStatus_ASC' | 'customResolverCacheStatus_DESC' | 'customResolverResponseCode_ASC' | 'customResolverResponseCode_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'dohSubdomain_ASC' | 'dohSubdomain_DESC' | 'dotSubdomain_ASC' | 'dotSubdomain_DESC' | 'edeErrors_ASC' | 'edeErrors_DESC' | 'internalDnsFallbackStrategy_ASC' | 'internalDnsFallbackStrategy_DESC' | 'internalDnsRCode_ASC' | 'internalDnsRCode_DESC' | 'internalDnsViewId_ASC' | 'internalDnsViewId_DESC' | 'internalDnsZoneId_ASC' | 'internalDnsZoneId_DESC' | 'locationId_ASC' | 'locationId_DESC' | 'locationName_ASC' | 'locationName_DESC' | 'matchedApplicationId_ASC' | 'matchedApplicationId_DESC' | 'matchedApplicationName_ASC' | 'matchedApplicationName_DESC' | 'matchedIndicatorFeedIds_ASC' | 'matchedIndicatorFeedIds_DESC' | 'matchedIndicatorFeedNames_ASC' | 'matchedIndicatorFeedNames_DESC' | 'policyId_ASC' | 'policyId_DESC' | 'policyName_ASC' | 'policyName_DESC' | 'queryNameReversed_ASC' | 'queryNameReversed_DESC' | 'queryName_ASC' | 'queryName_DESC' | 'resolvedIpContinents_ASC' | 'resolvedIpContinents_DESC' | 'resolvedIpCountries_ASC' | 'resolvedIpCountries_DESC' | 'resolvedIps_ASC' | 'resolvedIps_DESC' | 'resolverDecision_ASC' | 'resolverDecision_DESC' | 'resolverPolicyId_ASC' | 'resolverPolicyId_DESC' | 'resolverPolicyName_ASC' | 'resolverPolicyName_DESC' | 'resourceRecordClasses_ASC' | 'resourceRecordClasses_DESC' | 'resourceRecordNames_ASC' | 'resourceRecordNames_DESC' | 'resourceRecordRDatas_ASC' | 'resourceRecordRDatas_DESC' | 'resourceRecordTTLs_ASC' | 'resourceRecordTTLs_DESC' | 'resourceRecordTypes_ASC' | 'resourceRecordTypes_DESC' | 'scheduleInfo_ASC' | 'scheduleInfo_DESC' | 'srcIpContinent_ASC' | 'srcIpContinent_DESC' | 'srcIpCountry_ASC' | 'srcIpCountry_DESC'; }; + 'AccountHttpRequests1dGroups': { kind: 'OBJECT'; name: 'AccountHttpRequests1dGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountHttpRequests1dGroupsAvg'; ofType: null; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountHttpRequests1dGroupsDimensions'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountHttpRequests1dGroupsSum'; ofType: null; } }; 'uniq': { name: 'uniq'; type: { kind: 'OBJECT'; name: 'AccountHttpRequests1dGroupsUniq'; ofType: null; } }; }; }; + 'AccountHttpRequests1dGroupsAvg': { kind: 'OBJECT'; name: 'AccountHttpRequests1dGroupsAvg'; fields: { 'bytes': { name: 'bytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'edgeRequestBytes': { name: 'edgeRequestBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountHttpRequests1dGroupsBrowserMapElem': { kind: 'OBJECT'; name: 'AccountHttpRequests1dGroupsBrowserMapElem'; fields: { 'pageViews': { name: 'pageViews'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'uaBrowserFamily': { name: 'uaBrowserFamily'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountHttpRequests1dGroupsClientHTTPVersionMapElem': { kind: 'OBJECT'; name: 'AccountHttpRequests1dGroupsClientHTTPVersionMapElem'; fields: { 'clientHTTPProtocol': { name: 'clientHTTPProtocol'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountHttpRequests1dGroupsClientSSLMapElem': { kind: 'OBJECT'; name: 'AccountHttpRequests1dGroupsClientSSLMapElem'; fields: { 'clientSSLProtocol': { name: 'clientSSLProtocol'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountHttpRequests1dGroupsContentTypeMapElem': { kind: 'OBJECT'; name: 'AccountHttpRequests1dGroupsContentTypeMapElem'; fields: { 'bytes': { name: 'bytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'edgeResponseContentTypeName': { name: 'edgeResponseContentTypeName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountHttpRequests1dGroupsCountryMapElem': { kind: 'OBJECT'; name: 'AccountHttpRequests1dGroupsCountryMapElem'; fields: { 'bytes': { name: 'bytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'clientCountryName': { name: 'clientCountryName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'threats': { name: 'threats'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountHttpRequests1dGroupsDimensions': { kind: 'OBJECT'; name: 'AccountHttpRequests1dGroupsDimensions'; fields: { 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; }; }; + 'AccountHttpRequests1dGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountHttpRequests1dGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountHttpRequests1dGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountHttpRequests1dGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }]; }; + 'AccountHttpRequests1dGroupsIpClassMapElem': { kind: 'OBJECT'; name: 'AccountHttpRequests1dGroupsIpClassMapElem'; fields: { 'ipType': { name: 'ipType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountHttpRequests1dGroupsOrderBy': { name: 'AccountHttpRequests1dGroupsOrderBy'; enumValues: 'avg_bytes_ASC' | 'avg_bytes_DESC' | 'avg_edgeRequestBytes_ASC' | 'avg_edgeRequestBytes_DESC' | 'avg_sampleInterval_ASC' | 'avg_sampleInterval_DESC' | 'date_ASC' | 'date_DESC' | 'sum_bytes_ASC' | 'sum_bytes_DESC' | 'sum_cachedBytes_ASC' | 'sum_cachedBytes_DESC' | 'sum_cachedRequests_ASC' | 'sum_cachedRequests_DESC' | 'sum_edgeRequestBytes_ASC' | 'sum_edgeRequestBytes_DESC' | 'sum_encryptedBytes_ASC' | 'sum_encryptedBytes_DESC' | 'sum_encryptedRequests_ASC' | 'sum_encryptedRequests_DESC' | 'sum_pageViews_ASC' | 'sum_pageViews_DESC' | 'sum_requests_ASC' | 'sum_requests_DESC' | 'sum_threats_ASC' | 'sum_threats_DESC' | 'uniq_uniques_ASC' | 'uniq_uniques_DESC'; }; + 'AccountHttpRequests1dGroupsResponseStatusMapElem': { kind: 'OBJECT'; name: 'AccountHttpRequests1dGroupsResponseStatusMapElem'; fields: { 'edgeResponseStatus': { name: 'edgeResponseStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountHttpRequests1dGroupsSum': { kind: 'OBJECT'; name: 'AccountHttpRequests1dGroupsSum'; fields: { 'browserMap': { name: 'browserMap'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountHttpRequests1dGroupsBrowserMapElem'; ofType: null; }; }; }; } }; 'bytes': { name: 'bytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'cachedBytes': { name: 'cachedBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'cachedRequests': { name: 'cachedRequests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'clientHTTPVersionMap': { name: 'clientHTTPVersionMap'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountHttpRequests1dGroupsClientHTTPVersionMapElem'; ofType: null; }; }; }; } }; 'clientSSLMap': { name: 'clientSSLMap'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountHttpRequests1dGroupsClientSSLMapElem'; ofType: null; }; }; }; } }; 'contentTypeMap': { name: 'contentTypeMap'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountHttpRequests1dGroupsContentTypeMapElem'; ofType: null; }; }; }; } }; 'countryMap': { name: 'countryMap'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountHttpRequests1dGroupsCountryMapElem'; ofType: null; }; }; }; } }; 'edgeRequestBytes': { name: 'edgeRequestBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'encryptedBytes': { name: 'encryptedBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'encryptedRequests': { name: 'encryptedRequests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'ipClassMap': { name: 'ipClassMap'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountHttpRequests1dGroupsIpClassMapElem'; ofType: null; }; }; }; } }; 'pageViews': { name: 'pageViews'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'responseStatusMap': { name: 'responseStatusMap'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountHttpRequests1dGroupsResponseStatusMapElem'; ofType: null; }; }; }; } }; 'threatPathingMap': { name: 'threatPathingMap'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountHttpRequests1dGroupsThreatPathingMapElem'; ofType: null; }; }; }; } }; 'threats': { name: 'threats'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountHttpRequests1dGroupsThreatPathingMapElem': { kind: 'OBJECT'; name: 'AccountHttpRequests1dGroupsThreatPathingMapElem'; fields: { 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'threatPathingName': { name: 'threatPathingName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountHttpRequests1dGroupsUniq': { kind: 'OBJECT'; name: 'AccountHttpRequests1dGroupsUniq'; fields: { 'uniques': { name: 'uniques'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountHttpRequests1hGroups': { kind: 'OBJECT'; name: 'AccountHttpRequests1hGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountHttpRequests1hGroupsAvg'; ofType: null; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountHttpRequests1hGroupsDimensions'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountHttpRequests1hGroupsSum'; ofType: null; } }; 'uniq': { name: 'uniq'; type: { kind: 'OBJECT'; name: 'AccountHttpRequests1hGroupsUniq'; ofType: null; } }; }; }; + 'AccountHttpRequests1hGroupsAvg': { kind: 'OBJECT'; name: 'AccountHttpRequests1hGroupsAvg'; fields: { 'bytes': { name: 'bytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'edgeRequestBytes': { name: 'edgeRequestBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountHttpRequests1hGroupsBrowserMapElem': { kind: 'OBJECT'; name: 'AccountHttpRequests1hGroupsBrowserMapElem'; fields: { 'pageViews': { name: 'pageViews'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'uaBrowserFamily': { name: 'uaBrowserFamily'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountHttpRequests1hGroupsClientHTTPVersionMapElem': { kind: 'OBJECT'; name: 'AccountHttpRequests1hGroupsClientHTTPVersionMapElem'; fields: { 'clientHTTPProtocol': { name: 'clientHTTPProtocol'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountHttpRequests1hGroupsClientSSLMapElem': { kind: 'OBJECT'; name: 'AccountHttpRequests1hGroupsClientSSLMapElem'; fields: { 'clientSSLProtocol': { name: 'clientSSLProtocol'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountHttpRequests1hGroupsContentTypeMapElem': { kind: 'OBJECT'; name: 'AccountHttpRequests1hGroupsContentTypeMapElem'; fields: { 'bytes': { name: 'bytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'edgeResponseContentTypeName': { name: 'edgeResponseContentTypeName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountHttpRequests1hGroupsCountryMapElem': { kind: 'OBJECT'; name: 'AccountHttpRequests1hGroupsCountryMapElem'; fields: { 'bytes': { name: 'bytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'clientCountryName': { name: 'clientCountryName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'threats': { name: 'threats'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountHttpRequests1hGroupsDimensions': { kind: 'OBJECT'; name: 'AccountHttpRequests1hGroupsDimensions'; fields: { 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; }; }; + 'AccountHttpRequests1hGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountHttpRequests1hGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountHttpRequests1hGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountHttpRequests1hGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }]; }; + 'AccountHttpRequests1hGroupsIpClassMapElem': { kind: 'OBJECT'; name: 'AccountHttpRequests1hGroupsIpClassMapElem'; fields: { 'ipType': { name: 'ipType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountHttpRequests1hGroupsOrderBy': { name: 'AccountHttpRequests1hGroupsOrderBy'; enumValues: 'avg_bytes_ASC' | 'avg_bytes_DESC' | 'avg_edgeRequestBytes_ASC' | 'avg_edgeRequestBytes_DESC' | 'avg_sampleInterval_ASC' | 'avg_sampleInterval_DESC' | 'date_ASC' | 'date_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'sum_bytes_ASC' | 'sum_bytes_DESC' | 'sum_cachedBytes_ASC' | 'sum_cachedBytes_DESC' | 'sum_cachedRequests_ASC' | 'sum_cachedRequests_DESC' | 'sum_edgeRequestBytes_ASC' | 'sum_edgeRequestBytes_DESC' | 'sum_encryptedBytes_ASC' | 'sum_encryptedBytes_DESC' | 'sum_encryptedRequests_ASC' | 'sum_encryptedRequests_DESC' | 'sum_pageViews_ASC' | 'sum_pageViews_DESC' | 'sum_requests_ASC' | 'sum_requests_DESC' | 'sum_threats_ASC' | 'sum_threats_DESC' | 'uniq_uniques_ASC' | 'uniq_uniques_DESC'; }; + 'AccountHttpRequests1hGroupsResponseStatusMapElem': { kind: 'OBJECT'; name: 'AccountHttpRequests1hGroupsResponseStatusMapElem'; fields: { 'edgeResponseStatus': { name: 'edgeResponseStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountHttpRequests1hGroupsSum': { kind: 'OBJECT'; name: 'AccountHttpRequests1hGroupsSum'; fields: { 'browserMap': { name: 'browserMap'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountHttpRequests1hGroupsBrowserMapElem'; ofType: null; }; }; }; } }; 'bytes': { name: 'bytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'cachedBytes': { name: 'cachedBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'cachedRequests': { name: 'cachedRequests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'clientHTTPVersionMap': { name: 'clientHTTPVersionMap'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountHttpRequests1hGroupsClientHTTPVersionMapElem'; ofType: null; }; }; }; } }; 'clientSSLMap': { name: 'clientSSLMap'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountHttpRequests1hGroupsClientSSLMapElem'; ofType: null; }; }; }; } }; 'contentTypeMap': { name: 'contentTypeMap'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountHttpRequests1hGroupsContentTypeMapElem'; ofType: null; }; }; }; } }; 'countryMap': { name: 'countryMap'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountHttpRequests1hGroupsCountryMapElem'; ofType: null; }; }; }; } }; 'edgeRequestBytes': { name: 'edgeRequestBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'encryptedBytes': { name: 'encryptedBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'encryptedRequests': { name: 'encryptedRequests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'ipClassMap': { name: 'ipClassMap'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountHttpRequests1hGroupsIpClassMapElem'; ofType: null; }; }; }; } }; 'pageViews': { name: 'pageViews'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'responseStatusMap': { name: 'responseStatusMap'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountHttpRequests1hGroupsResponseStatusMapElem'; ofType: null; }; }; }; } }; 'threatPathingMap': { name: 'threatPathingMap'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountHttpRequests1hGroupsThreatPathingMapElem'; ofType: null; }; }; }; } }; 'threats': { name: 'threats'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountHttpRequests1hGroupsThreatPathingMapElem': { kind: 'OBJECT'; name: 'AccountHttpRequests1hGroupsThreatPathingMapElem'; fields: { 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'threatPathingName': { name: 'threatPathingName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountHttpRequests1hGroupsUniq': { kind: 'OBJECT'; name: 'AccountHttpRequests1hGroupsUniq'; fields: { 'uniques': { name: 'uniques'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountHttpRequests1mGroups': { kind: 'OBJECT'; name: 'AccountHttpRequests1mGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountHttpRequests1mGroupsAvg'; ofType: null; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountHttpRequests1mGroupsDimensions'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountHttpRequests1mGroupsSum'; ofType: null; } }; 'uniq': { name: 'uniq'; type: { kind: 'OBJECT'; name: 'AccountHttpRequests1mGroupsUniq'; ofType: null; } }; }; }; + 'AccountHttpRequests1mGroupsAvg': { kind: 'OBJECT'; name: 'AccountHttpRequests1mGroupsAvg'; fields: { 'bytes': { name: 'bytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'edgeRequestBytes': { name: 'edgeRequestBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountHttpRequests1mGroupsBrowserMapElem': { kind: 'OBJECT'; name: 'AccountHttpRequests1mGroupsBrowserMapElem'; fields: { 'pageViews': { name: 'pageViews'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'uaBrowserFamily': { name: 'uaBrowserFamily'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountHttpRequests1mGroupsClientHTTPVersionMapElem': { kind: 'OBJECT'; name: 'AccountHttpRequests1mGroupsClientHTTPVersionMapElem'; fields: { 'clientHTTPProtocol': { name: 'clientHTTPProtocol'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountHttpRequests1mGroupsClientSSLMapElem': { kind: 'OBJECT'; name: 'AccountHttpRequests1mGroupsClientSSLMapElem'; fields: { 'clientSSLProtocol': { name: 'clientSSLProtocol'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountHttpRequests1mGroupsContentTypeMapElem': { kind: 'OBJECT'; name: 'AccountHttpRequests1mGroupsContentTypeMapElem'; fields: { 'bytes': { name: 'bytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'edgeResponseContentTypeName': { name: 'edgeResponseContentTypeName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountHttpRequests1mGroupsCountryMapElem': { kind: 'OBJECT'; name: 'AccountHttpRequests1mGroupsCountryMapElem'; fields: { 'bytes': { name: 'bytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'clientCountryName': { name: 'clientCountryName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'threats': { name: 'threats'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountHttpRequests1mGroupsDimensions': { kind: 'OBJECT'; name: 'AccountHttpRequests1mGroupsDimensions'; fields: { 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeDay': { name: 'datetimeDay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHalfOfHour': { name: 'datetimeHalfOfHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; }; }; + 'AccountHttpRequests1mGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountHttpRequests1mGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountHttpRequests1mGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountHttpRequests1mGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeDay'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeDay_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeDay_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeDay_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeDay_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeDay_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeDay_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeDay_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHalfOfHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHalfOfHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }]; }; + 'AccountHttpRequests1mGroupsIpClassMapElem': { kind: 'OBJECT'; name: 'AccountHttpRequests1mGroupsIpClassMapElem'; fields: { 'ipType': { name: 'ipType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountHttpRequests1mGroupsOrderBy': { name: 'AccountHttpRequests1mGroupsOrderBy'; enumValues: 'avg_bytes_ASC' | 'avg_bytes_DESC' | 'avg_edgeRequestBytes_ASC' | 'avg_edgeRequestBytes_DESC' | 'avg_sampleInterval_ASC' | 'avg_sampleInterval_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeDay_ASC' | 'datetimeDay_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHalfOfHour_ASC' | 'datetimeHalfOfHour_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'sum_bytes_ASC' | 'sum_bytes_DESC' | 'sum_cachedBytes_ASC' | 'sum_cachedBytes_DESC' | 'sum_cachedRequests_ASC' | 'sum_cachedRequests_DESC' | 'sum_edgeRequestBytes_ASC' | 'sum_edgeRequestBytes_DESC' | 'sum_encryptedBytes_ASC' | 'sum_encryptedBytes_DESC' | 'sum_encryptedRequests_ASC' | 'sum_encryptedRequests_DESC' | 'sum_pageViews_ASC' | 'sum_pageViews_DESC' | 'sum_requests_ASC' | 'sum_requests_DESC' | 'sum_threats_ASC' | 'sum_threats_DESC' | 'uniq_uniques_ASC' | 'uniq_uniques_DESC'; }; + 'AccountHttpRequests1mGroupsResponseStatusMapElem': { kind: 'OBJECT'; name: 'AccountHttpRequests1mGroupsResponseStatusMapElem'; fields: { 'edgeResponseStatus': { name: 'edgeResponseStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountHttpRequests1mGroupsSum': { kind: 'OBJECT'; name: 'AccountHttpRequests1mGroupsSum'; fields: { 'browserMap': { name: 'browserMap'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountHttpRequests1mGroupsBrowserMapElem'; ofType: null; }; }; }; } }; 'bytes': { name: 'bytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'cachedBytes': { name: 'cachedBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'cachedRequests': { name: 'cachedRequests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'clientHTTPVersionMap': { name: 'clientHTTPVersionMap'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountHttpRequests1mGroupsClientHTTPVersionMapElem'; ofType: null; }; }; }; } }; 'clientSSLMap': { name: 'clientSSLMap'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountHttpRequests1mGroupsClientSSLMapElem'; ofType: null; }; }; }; } }; 'contentTypeMap': { name: 'contentTypeMap'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountHttpRequests1mGroupsContentTypeMapElem'; ofType: null; }; }; }; } }; 'countryMap': { name: 'countryMap'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountHttpRequests1mGroupsCountryMapElem'; ofType: null; }; }; }; } }; 'edgeRequestBytes': { name: 'edgeRequestBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'encryptedBytes': { name: 'encryptedBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'encryptedRequests': { name: 'encryptedRequests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'ipClassMap': { name: 'ipClassMap'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountHttpRequests1mGroupsIpClassMapElem'; ofType: null; }; }; }; } }; 'pageViews': { name: 'pageViews'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'responseStatusMap': { name: 'responseStatusMap'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountHttpRequests1mGroupsResponseStatusMapElem'; ofType: null; }; }; }; } }; 'threatPathingMap': { name: 'threatPathingMap'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountHttpRequests1mGroupsThreatPathingMapElem'; ofType: null; }; }; }; } }; 'threats': { name: 'threats'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountHttpRequests1mGroupsThreatPathingMapElem': { kind: 'OBJECT'; name: 'AccountHttpRequests1mGroupsThreatPathingMapElem'; fields: { 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'threatPathingName': { name: 'threatPathingName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountHttpRequests1mGroupsUniq': { kind: 'OBJECT'; name: 'AccountHttpRequests1mGroupsUniq'; fields: { 'uniques': { name: 'uniques'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountHttpRequestsAdaptive': { kind: 'OBJECT'; name: 'AccountHttpRequestsAdaptive'; fields: { 'apiGatewayMatchedEndpoint': { name: 'apiGatewayMatchedEndpoint'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'apiGatewayMatchedHost': { name: 'apiGatewayMatchedHost'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'attackSignatureCategories': { name: 'attackSignatureCategories'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'attackSignatureRefs': { name: 'attackSignatureRefs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'botDetectionIds': { name: 'botDetectionIds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; } }; 'botDetectionTags': { name: 'botDetectionTags'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'botManagementDecision': { name: 'botManagementDecision'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'botScore': { name: 'botScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'botScoreBucketBy10': { name: 'botScoreBucketBy10'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'botScoreSrcName': { name: 'botScoreSrcName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'cacheReserveUsed': { name: 'cacheReserveUsed'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'cacheStatus': { name: 'cacheStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientASNDescription': { name: 'clientASNDescription'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientAsn': { name: 'clientAsn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientCountryName': { name: 'clientCountryName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientDeviceType': { name: 'clientDeviceType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientIP': { name: 'clientIP'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRefererHost': { name: 'clientRefererHost'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRequestHTTPHost': { name: 'clientRequestHTTPHost'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRequestHTTPMethodName': { name: 'clientRequestHTTPMethodName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRequestHTTPProtocol': { name: 'clientRequestHTTPProtocol'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRequestPath': { name: 'clientRequestPath'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRequestQuery': { name: 'clientRequestQuery'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRequestReferer': { name: 'clientRequestReferer'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRequestScheme': { name: 'clientRequestScheme'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientSSLProtocol': { name: 'clientSSLProtocol'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'coloCode': { name: 'coloCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'contentScanHasFailed': { name: 'contentScanHasFailed'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'contentScanNumMaliciousObj': { name: 'contentScanNumMaliciousObj'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'contentScanNumObj': { name: 'contentScanNumObj'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'contentScanObjResults': { name: 'contentScanObjResults'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'contentScanObjSizes': { name: 'contentScanObjSizes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; } }; 'contentScanObjTypes': { name: 'contentScanObjTypes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'edgeDnsResponseTimeMs': { name: 'edgeDnsResponseTimeMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'edgeResponseContentTypeName': { name: 'edgeResponseContentTypeName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'edgeResponseStatus': { name: 'edgeResponseStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'edgeTimeToFirstByteMs': { name: 'edgeTimeToFirstByteMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'firewallForAiAnyPiiCategory': { name: 'firewallForAiAnyPiiCategory'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; } }; 'firewallForAiInjectionScore': { name: 'firewallForAiInjectionScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; } }; 'firewallForAiPiiCategories': { name: 'firewallForAiPiiCategories'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'firewallForAiUnsafeTopicCategories': { name: 'firewallForAiUnsafeTopicCategories'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'fraudAttack': { name: 'fraudAttack'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'fraudDetectionIds': { name: 'fraudDetectionIds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; } }; 'fraudDetectionTags': { name: 'fraudDetectionTags'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'fraudEmailRisk': { name: 'fraudEmailRisk'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'httpApplicationVersion': { name: 'httpApplicationVersion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'isCrossZoneSubrequest': { name: 'isCrossZoneSubrequest'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ja3Hash': { name: 'ja3Hash'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ja4': { name: 'ja4'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ja4Signals': { name: 'ja4Signals'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountHttpRequestsAdaptiveJa4SignalsElem'; ofType: null; }; }; }; } }; 'jsDetectionPassed': { name: 'jsDetectionPassed'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'leakedCredentialCheckResult': { name: 'leakedCredentialCheckResult'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'originASN': { name: 'originASN'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'originASNDescription': { name: 'originASNDescription'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'originIP': { name: 'originIP'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'originResponseDurationMs': { name: 'originResponseDurationMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'originResponseStatus': { name: 'originResponseStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'payPerCrawlStatus': { name: 'payPerCrawlStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'rayName': { name: 'rayName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'requestSource': { name: 'requestSource'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'securityAction': { name: 'securityAction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'securitySource': { name: 'securitySource'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sessionIdHash': { name: 'sessionIdHash'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'upperTierColoName': { name: 'upperTierColoName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'userAgent': { name: 'userAgent'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'userAgentBrowser': { name: 'userAgentBrowser'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'userAgentOS': { name: 'userAgentOS'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'verifiedBotCategory': { name: 'verifiedBotCategory'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'wafAttackScore': { name: 'wafAttackScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'wafAttackScoreClass': { name: 'wafAttackScoreClass'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'wafRceAttackScore': { name: 'wafRceAttackScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'wafSqliAttackScore': { name: 'wafSqliAttackScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'wafXssAttackScore': { name: 'wafXssAttackScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'xRequestedWith': { name: 'xRequestedWith'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'zoneTag': { name: 'zoneTag'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'zoneVersion': { name: 'zoneVersion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountHttpRequestsAdaptiveFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountHttpRequestsAdaptiveFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountHttpRequestsAdaptiveFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountHttpRequestsAdaptiveFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackSignatureCategories_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackSignatureCategories_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'attackSignatureCategories_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'attackSignatureCategories_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'attackSignatureCategories_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackSignatureRefs_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackSignatureRefs_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'attackSignatureRefs_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'attackSignatureRefs_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'attackSignatureRefs_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botDetectionIds_has'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'botDetectionIds_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'botDetectionIds_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'botDetectionIds_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'botDetectionIds_nothas'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'botDetectionTags_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botDetectionTags_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'botDetectionTags_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'botDetectionTags_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'botDetectionTags_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botManagementDecision'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botManagementDecision_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botManagementDecision_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botManagementDecision_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'botManagementDecision_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botManagementDecision_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botManagementDecision_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botManagementDecision_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botManagementDecision_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'botManagementDecision_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScore'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScoreBucketBy10'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScoreBucketBy10_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScoreBucketBy10_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScoreBucketBy10_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'botScoreBucketBy10_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScoreBucketBy10_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScoreBucketBy10_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScoreBucketBy10_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'botScoreSrcName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'botScoreSrcName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScore_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScore_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScore_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'botScore_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScore_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScore_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScore_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'cacheReserveUsed'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'cacheReserveUsed_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'cacheReserveUsed_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'cacheReserveUsed_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'cacheReserveUsed_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'cacheReserveUsed_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'cacheReserveUsed_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'cacheReserveUsed_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'cacheStatus'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cacheStatus_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cacheStatus_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cacheStatus_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'cacheStatus_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cacheStatus_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cacheStatus_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cacheStatus_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cacheStatus_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'cacheStatus_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientASNDescription_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientASNDescription_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientAsn_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientAsn_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientCountryName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientCountryName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientDeviceType'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientDeviceType_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientDeviceType_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientDeviceType_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientDeviceType_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientDeviceType_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientDeviceType_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientDeviceType_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientDeviceType_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientDeviceType_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientIP_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientIP_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRefererHost_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRefererHost_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestHTTPHost_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestHTTPHost_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestPath_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestPath_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestQuery_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestQuery_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestReferer'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestReferer_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestReferer_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestReferer_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestReferer_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestReferer_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestReferer_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestReferer_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestReferer_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestReferer_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestScheme_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestScheme_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientSSLProtocol'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientSSLProtocol_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientSSLProtocol_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientSSLProtocol_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientSSLProtocol_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientSSLProtocol_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientSSLProtocol_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientSSLProtocol_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientSSLProtocol_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientSSLProtocol_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCode_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCode_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjResults_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjResults_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'contentScanObjResults_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'contentScanObjResults_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjResults_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjSizes_has'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjSizes_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'contentScanObjSizes_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'contentScanObjSizes_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjSizes_nothas'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjTypes_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjTypes_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'contentScanObjTypes_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'contentScanObjTypes_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjTypes_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeDnsResponseTimeMs'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeDnsResponseTimeMs_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeDnsResponseTimeMs_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeDnsResponseTimeMs_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeDnsResponseTimeMs_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeDnsResponseTimeMs_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeDnsResponseTimeMs_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeDnsResponseTimeMs_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeResponseContentTypeName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseContentTypeName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseContentTypeName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseContentTypeName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeResponseContentTypeName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseContentTypeName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseContentTypeName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseContentTypeName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseContentTypeName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeResponseContentTypeName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeResponseStatus_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeTimeToFirstByteMs'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeTimeToFirstByteMs_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeTimeToFirstByteMs_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeTimeToFirstByteMs_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeTimeToFirstByteMs_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeTimeToFirstByteMs_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeTimeToFirstByteMs_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeTimeToFirstByteMs_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory_geq'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory_gt'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory_leq'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory_lt'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory_neq'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiInjectionScore'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiInjectionScore_geq'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiInjectionScore_gt'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiInjectionScore_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiInjectionScore_leq'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiInjectionScore_lt'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiInjectionScore_neq'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiInjectionScore_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiPiiCategories_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiPiiCategories_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiPiiCategories_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiPiiCategories_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiPiiCategories_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiUnsafeTopicCategories_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiUnsafeTopicCategories_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiUnsafeTopicCategories_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiUnsafeTopicCategories_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiUnsafeTopicCategories_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudAttack_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudAttack_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudDetectionIds_has'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'fraudDetectionIds_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudDetectionIds_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudDetectionIds_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'fraudDetectionIds_nothas'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'fraudDetectionTags_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudDetectionTags_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudDetectionTags_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudDetectionTags_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'fraudDetectionTags_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudEmailRisk_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudEmailRisk_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'httpApplicationVersion_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'isCrossZoneSubrequest'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isCrossZoneSubrequest_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isCrossZoneSubrequest_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isCrossZoneSubrequest_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'isCrossZoneSubrequest_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isCrossZoneSubrequest_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isCrossZoneSubrequest_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isCrossZoneSubrequest_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ja3Hash'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja3Hash_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja3Hash_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja3Hash_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ja3Hash_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja3Hash_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja3Hash_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja3Hash_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja3Hash_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ja3Hash_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ja4_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ja4_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'jsDetectionPassed_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'jsDetectionPassed_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leakedCredentialCheckResult'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leakedCredentialCheckResult_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leakedCredentialCheckResult_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leakedCredentialCheckResult_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'leakedCredentialCheckResult_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leakedCredentialCheckResult_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leakedCredentialCheckResult_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leakedCredentialCheckResult_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leakedCredentialCheckResult_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'leakedCredentialCheckResult_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originASN'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'originASNDescription'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originASNDescription_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originASNDescription_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originASNDescription_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'originASNDescription_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originASNDescription_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originASNDescription_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originASNDescription_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originASNDescription_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'originASNDescription_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originASN_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'originASN_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'originASN_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'originASN_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'originASN_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'originASN_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'originASN_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'originIP'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originIP_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originIP_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originIP_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'originIP_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originIP_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originIP_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originIP_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originIP_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'originIP_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originResponseDurationMs'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'originResponseDurationMs_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'originResponseDurationMs_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'originResponseDurationMs_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'originResponseDurationMs_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'originResponseDurationMs_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'originResponseDurationMs_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'originResponseDurationMs_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'originResponseStatus'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'originResponseStatus_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'originResponseStatus_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'originResponseStatus_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'originResponseStatus_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'originResponseStatus_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'originResponseStatus_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'originResponseStatus_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'payPerCrawlStatus'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'payPerCrawlStatus_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'payPerCrawlStatus_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'payPerCrawlStatus_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'payPerCrawlStatus_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'payPerCrawlStatus_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'payPerCrawlStatus_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'payPerCrawlStatus_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'payPerCrawlStatus_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'payPerCrawlStatus_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'rayName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'rayName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestSource'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestSource_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestSource_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestSource_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'requestSource_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestSource_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestSource_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestSource_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestSource_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'requestSource_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'securityAction'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'securityAction_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'securityAction_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'securityAction_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'securityAction_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'securityAction_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'securityAction_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'securityAction_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'securityAction_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'securityAction_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'securitySource'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'securitySource_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'securitySource_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'securitySource_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'securitySource_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'securitySource_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'securitySource_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'securitySource_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'securitySource_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'securitySource_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionIdHash'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionIdHash_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionIdHash_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionIdHash_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionIdHash_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionIdHash_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionIdHash_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionIdHash_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionIdHash_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionIdHash_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upperTierColoName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upperTierColoName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upperTierColoName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upperTierColoName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'upperTierColoName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upperTierColoName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upperTierColoName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upperTierColoName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upperTierColoName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'upperTierColoName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userAgentBrowser_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userAgentBrowser_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentOS'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentOS_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentOS_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentOS_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userAgentOS_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentOS_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentOS_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentOS_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentOS_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userAgentOS_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userAgent_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userAgent_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'verifiedBotCategory_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'verifiedBotCategory_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'wafAttackScoreClass_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'wafAttackScoreClass_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'xRequestedWith'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'xRequestedWith_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'xRequestedWith_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'xRequestedWith_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'xRequestedWith_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'xRequestedWith_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'xRequestedWith_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'xRequestedWith_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'xRequestedWith_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'xRequestedWith_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'zoneTag'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'zoneTag_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'zoneTag_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'zoneTag_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'zoneTag_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'zoneTag_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'zoneTag_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'zoneTag_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'zoneTag_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'zoneTag_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'zoneVersion_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }]; }; + 'AccountHttpRequestsAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountHttpRequestsAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountHttpRequestsAdaptiveGroupsAvg'; ofType: null; } }; 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountHttpRequestsAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountHttpRequestsAdaptiveGroupsDimensions'; ofType: null; } }; 'quantiles': { name: 'quantiles'; type: { kind: 'OBJECT'; name: 'AccountHttpRequestsAdaptiveGroupsQuantiles'; ofType: null; } }; 'ratio': { name: 'ratio'; type: { kind: 'OBJECT'; name: 'AccountHttpRequestsAdaptiveGroupsRatio'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountHttpRequestsAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'AccountHttpRequestsAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'AccountHttpRequestsAdaptiveGroupsAvg'; fields: { 'crossZoneSubrequests': { name: 'crossZoneSubrequests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'edgeDnsResponseTimeMs': { name: 'edgeDnsResponseTimeMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'edgeTimeToFirstByteMs': { name: 'edgeTimeToFirstByteMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'originResponseDurationMs': { name: 'originResponseDurationMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountHttpRequestsAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountHttpRequestsAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountHttpRequestsAdaptiveGroupsSumConfidence'; ofType: null; } }; }; }; + 'AccountHttpRequestsAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountHttpRequestsAdaptiveGroupsDimensions'; fields: { 'apiGatewayMatchedEndpoint': { name: 'apiGatewayMatchedEndpoint'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'apiGatewayMatchedHost': { name: 'apiGatewayMatchedHost'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'attackSignatureCategories': { name: 'attackSignatureCategories'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'attackSignatureRefs': { name: 'attackSignatureRefs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'botDetectionIds': { name: 'botDetectionIds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; } }; 'botDetectionTags': { name: 'botDetectionTags'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'botManagementDecision': { name: 'botManagementDecision'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'botScore': { name: 'botScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'botScoreBucketBy10': { name: 'botScoreBucketBy10'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'botScoreSrcName': { name: 'botScoreSrcName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'cacheReserveUsed': { name: 'cacheReserveUsed'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'cacheStatus': { name: 'cacheStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientASNDescription': { name: 'clientASNDescription'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientAsn': { name: 'clientAsn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientCountryName': { name: 'clientCountryName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientDeviceType': { name: 'clientDeviceType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientIP': { name: 'clientIP'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRefererHost': { name: 'clientRefererHost'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRequestHTTPHost': { name: 'clientRequestHTTPHost'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRequestHTTPMethodName': { name: 'clientRequestHTTPMethodName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRequestHTTPProtocol': { name: 'clientRequestHTTPProtocol'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRequestPath': { name: 'clientRequestPath'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRequestQuery': { name: 'clientRequestQuery'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRequestReferer': { name: 'clientRequestReferer'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRequestScheme': { name: 'clientRequestScheme'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientSSLProtocol': { name: 'clientSSLProtocol'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'coloCode': { name: 'coloCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'contentScanHasFailed': { name: 'contentScanHasFailed'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'contentScanNumMaliciousObj': { name: 'contentScanNumMaliciousObj'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'contentScanNumObj': { name: 'contentScanNumObj'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'contentScanObjResults': { name: 'contentScanObjResults'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'contentScanObjSizes': { name: 'contentScanObjSizes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; } }; 'contentScanObjTypes': { name: 'contentScanObjTypes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'edgeDnsResponseTimeMs': { name: 'edgeDnsResponseTimeMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'edgeResponseContentTypeName': { name: 'edgeResponseContentTypeName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'edgeResponseStatus': { name: 'edgeResponseStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'edgeTimeToFirstByteMs': { name: 'edgeTimeToFirstByteMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'firewallForAiAnyPiiCategory': { name: 'firewallForAiAnyPiiCategory'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; } }; 'firewallForAiInjectionScore': { name: 'firewallForAiInjectionScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; } }; 'firewallForAiPiiCategories': { name: 'firewallForAiPiiCategories'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'firewallForAiUnsafeTopicCategories': { name: 'firewallForAiUnsafeTopicCategories'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'fraudAttack': { name: 'fraudAttack'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'fraudDetectionIds': { name: 'fraudDetectionIds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; } }; 'fraudDetectionTags': { name: 'fraudDetectionTags'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'fraudEmailRisk': { name: 'fraudEmailRisk'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'httpApplicationVersion': { name: 'httpApplicationVersion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'isCrossZoneSubrequest': { name: 'isCrossZoneSubrequest'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ja3Hash': { name: 'ja3Hash'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ja4': { name: 'ja4'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'jsDetectionPassed': { name: 'jsDetectionPassed'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'leakedCredentialCheckResult': { name: 'leakedCredentialCheckResult'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'originASN': { name: 'originASN'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'originASNDescription': { name: 'originASNDescription'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'originIP': { name: 'originIP'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'originResponseDurationMs': { name: 'originResponseDurationMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'originResponseStatus': { name: 'originResponseStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'payPerCrawlStatus': { name: 'payPerCrawlStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'requestSource': { name: 'requestSource'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'securityAction': { name: 'securityAction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'securitySource': { name: 'securitySource'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sessionIdHash': { name: 'sessionIdHash'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'upperTierColoName': { name: 'upperTierColoName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'userAgent': { name: 'userAgent'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'userAgentBrowser': { name: 'userAgentBrowser'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'userAgentOS': { name: 'userAgentOS'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'verifiedBotCategory': { name: 'verifiedBotCategory'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'wafAttackScore': { name: 'wafAttackScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'wafAttackScoreClass': { name: 'wafAttackScoreClass'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'wafRceAttackScore': { name: 'wafRceAttackScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'wafSqliAttackScore': { name: 'wafSqliAttackScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'wafXssAttackScore': { name: 'wafXssAttackScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'xRequestedWith': { name: 'xRequestedWith'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'zoneTag': { name: 'zoneTag'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'zoneVersion': { name: 'zoneVersion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountHttpRequestsAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountHttpRequestsAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountHttpRequestsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountHttpRequestsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackSignatureCategories_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackSignatureCategories_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'attackSignatureCategories_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'attackSignatureCategories_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'attackSignatureCategories_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackSignatureRefs_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackSignatureRefs_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'attackSignatureRefs_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'attackSignatureRefs_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'attackSignatureRefs_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botDetectionIds_has'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'botDetectionIds_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'botDetectionIds_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'botDetectionIds_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'botDetectionIds_nothas'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'botDetectionTags_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botDetectionTags_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'botDetectionTags_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'botDetectionTags_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'botDetectionTags_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botManagementDecision'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botManagementDecision_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botManagementDecision_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botManagementDecision_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'botManagementDecision_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botManagementDecision_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botManagementDecision_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botManagementDecision_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botManagementDecision_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'botManagementDecision_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScore'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScoreBucketBy10'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScoreBucketBy10_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScoreBucketBy10_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScoreBucketBy10_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'botScoreBucketBy10_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScoreBucketBy10_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScoreBucketBy10_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScoreBucketBy10_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'botScoreSrcName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'botScoreSrcName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScore_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScore_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScore_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'botScore_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScore_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScore_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScore_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'cacheReserveUsed'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'cacheReserveUsed_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'cacheReserveUsed_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'cacheReserveUsed_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'cacheReserveUsed_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'cacheReserveUsed_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'cacheReserveUsed_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'cacheReserveUsed_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'cacheStatus'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cacheStatus_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cacheStatus_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cacheStatus_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'cacheStatus_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cacheStatus_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cacheStatus_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cacheStatus_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cacheStatus_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'cacheStatus_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientASNDescription_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientASNDescription_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientAsn_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientAsn_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientCountryName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientCountryName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientDeviceType'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientDeviceType_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientDeviceType_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientDeviceType_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientDeviceType_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientDeviceType_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientDeviceType_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientDeviceType_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientDeviceType_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientDeviceType_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientIP_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientIP_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRefererHost_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRefererHost_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestHTTPHost_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestHTTPHost_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestPath_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestPath_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestQuery_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestQuery_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestReferer'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestReferer_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestReferer_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestReferer_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestReferer_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestReferer_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestReferer_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestReferer_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestReferer_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestReferer_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestScheme_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestScheme_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientSSLProtocol'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientSSLProtocol_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientSSLProtocol_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientSSLProtocol_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientSSLProtocol_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientSSLProtocol_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientSSLProtocol_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientSSLProtocol_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientSSLProtocol_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientSSLProtocol_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCode_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCode_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjResults_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjResults_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'contentScanObjResults_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'contentScanObjResults_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjResults_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjSizes_has'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjSizes_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'contentScanObjSizes_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'contentScanObjSizes_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjSizes_nothas'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjTypes_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjTypes_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'contentScanObjTypes_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'contentScanObjTypes_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjTypes_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeDnsResponseTimeMs'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeDnsResponseTimeMs_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeDnsResponseTimeMs_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeDnsResponseTimeMs_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeDnsResponseTimeMs_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeDnsResponseTimeMs_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeDnsResponseTimeMs_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeDnsResponseTimeMs_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeResponseContentTypeName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseContentTypeName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseContentTypeName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseContentTypeName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeResponseContentTypeName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseContentTypeName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseContentTypeName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseContentTypeName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseContentTypeName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeResponseContentTypeName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeResponseStatus_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeTimeToFirstByteMs'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeTimeToFirstByteMs_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeTimeToFirstByteMs_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeTimeToFirstByteMs_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeTimeToFirstByteMs_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeTimeToFirstByteMs_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeTimeToFirstByteMs_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeTimeToFirstByteMs_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory_geq'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory_gt'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory_leq'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory_lt'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory_neq'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiInjectionScore'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiInjectionScore_geq'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiInjectionScore_gt'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiInjectionScore_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiInjectionScore_leq'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiInjectionScore_lt'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiInjectionScore_neq'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiInjectionScore_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiPiiCategories_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiPiiCategories_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiPiiCategories_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiPiiCategories_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiPiiCategories_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiUnsafeTopicCategories_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiUnsafeTopicCategories_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiUnsafeTopicCategories_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiUnsafeTopicCategories_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiUnsafeTopicCategories_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudAttack_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudAttack_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudDetectionIds_has'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'fraudDetectionIds_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudDetectionIds_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudDetectionIds_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'fraudDetectionIds_nothas'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'fraudDetectionTags_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudDetectionTags_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudDetectionTags_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudDetectionTags_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'fraudDetectionTags_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudEmailRisk_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudEmailRisk_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'httpApplicationVersion_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'isCrossZoneSubrequest'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isCrossZoneSubrequest_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isCrossZoneSubrequest_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isCrossZoneSubrequest_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'isCrossZoneSubrequest_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isCrossZoneSubrequest_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isCrossZoneSubrequest_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isCrossZoneSubrequest_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ja3Hash'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja3Hash_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja3Hash_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja3Hash_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ja3Hash_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja3Hash_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja3Hash_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja3Hash_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja3Hash_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ja3Hash_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ja4_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ja4_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'jsDetectionPassed_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'jsDetectionPassed_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leakedCredentialCheckResult'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leakedCredentialCheckResult_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leakedCredentialCheckResult_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leakedCredentialCheckResult_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'leakedCredentialCheckResult_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leakedCredentialCheckResult_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leakedCredentialCheckResult_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leakedCredentialCheckResult_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leakedCredentialCheckResult_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'leakedCredentialCheckResult_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originASN'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'originASNDescription'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originASNDescription_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originASNDescription_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originASNDescription_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'originASNDescription_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originASNDescription_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originASNDescription_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originASNDescription_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originASNDescription_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'originASNDescription_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originASN_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'originASN_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'originASN_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'originASN_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'originASN_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'originASN_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'originASN_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'originIP'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originIP_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originIP_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originIP_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'originIP_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originIP_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originIP_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originIP_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originIP_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'originIP_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originResponseDurationMs'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'originResponseDurationMs_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'originResponseDurationMs_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'originResponseDurationMs_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'originResponseDurationMs_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'originResponseDurationMs_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'originResponseDurationMs_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'originResponseDurationMs_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'originResponseStatus'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'originResponseStatus_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'originResponseStatus_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'originResponseStatus_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'originResponseStatus_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'originResponseStatus_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'originResponseStatus_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'originResponseStatus_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'payPerCrawlStatus'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'payPerCrawlStatus_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'payPerCrawlStatus_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'payPerCrawlStatus_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'payPerCrawlStatus_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'payPerCrawlStatus_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'payPerCrawlStatus_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'payPerCrawlStatus_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'payPerCrawlStatus_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'payPerCrawlStatus_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'rayName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'rayName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestSource'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestSource_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestSource_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestSource_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'requestSource_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestSource_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestSource_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestSource_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestSource_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'requestSource_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sampleInterval_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'securityAction'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'securityAction_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'securityAction_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'securityAction_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'securityAction_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'securityAction_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'securityAction_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'securityAction_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'securityAction_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'securityAction_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'securitySource'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'securitySource_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'securitySource_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'securitySource_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'securitySource_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'securitySource_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'securitySource_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'securitySource_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'securitySource_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'securitySource_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionIdHash'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionIdHash_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionIdHash_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionIdHash_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionIdHash_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionIdHash_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionIdHash_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionIdHash_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionIdHash_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionIdHash_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upperTierColoName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upperTierColoName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upperTierColoName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upperTierColoName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'upperTierColoName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upperTierColoName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upperTierColoName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upperTierColoName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upperTierColoName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'upperTierColoName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userAgentBrowser_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userAgentBrowser_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentOS'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentOS_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentOS_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentOS_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userAgentOS_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentOS_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentOS_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentOS_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentOS_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userAgentOS_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userAgent_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userAgent_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'verifiedBotCategory_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'verifiedBotCategory_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'wafAttackScoreClass_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'wafAttackScoreClass_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'xRequestedWith'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'xRequestedWith_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'xRequestedWith_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'xRequestedWith_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'xRequestedWith_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'xRequestedWith_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'xRequestedWith_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'xRequestedWith_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'xRequestedWith_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'xRequestedWith_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'zoneTag'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'zoneTag_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'zoneTag_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'zoneTag_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'zoneTag_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'zoneTag_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'zoneTag_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'zoneTag_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'zoneTag_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'zoneTag_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'zoneVersion_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }]; }; + 'AccountHttpRequestsAdaptiveGroupsOrderBy': { name: 'AccountHttpRequestsAdaptiveGroupsOrderBy'; enumValues: 'apiGatewayMatchedEndpoint_ASC' | 'apiGatewayMatchedEndpoint_DESC' | 'apiGatewayMatchedHost_ASC' | 'apiGatewayMatchedHost_DESC' | 'attackSignatureCategories_ASC' | 'attackSignatureCategories_DESC' | 'attackSignatureRefs_ASC' | 'attackSignatureRefs_DESC' | 'avg_crossZoneSubrequests_ASC' | 'avg_crossZoneSubrequests_DESC' | 'avg_edgeDnsResponseTimeMs_ASC' | 'avg_edgeDnsResponseTimeMs_DESC' | 'avg_edgeTimeToFirstByteMs_ASC' | 'avg_edgeTimeToFirstByteMs_DESC' | 'avg_originResponseDurationMs_ASC' | 'avg_originResponseDurationMs_DESC' | 'avg_sampleInterval_ASC' | 'avg_sampleInterval_DESC' | 'botDetectionIds_ASC' | 'botDetectionIds_DESC' | 'botDetectionTags_ASC' | 'botDetectionTags_DESC' | 'botManagementDecision_ASC' | 'botManagementDecision_DESC' | 'botScoreBucketBy10_ASC' | 'botScoreBucketBy10_DESC' | 'botScoreSrcName_ASC' | 'botScoreSrcName_DESC' | 'botScore_ASC' | 'botScore_DESC' | 'cacheReserveUsed_ASC' | 'cacheReserveUsed_DESC' | 'cacheStatus_ASC' | 'cacheStatus_DESC' | 'clientASNDescription_ASC' | 'clientASNDescription_DESC' | 'clientAsn_ASC' | 'clientAsn_DESC' | 'clientCountryName_ASC' | 'clientCountryName_DESC' | 'clientDeviceType_ASC' | 'clientDeviceType_DESC' | 'clientIP_ASC' | 'clientIP_DESC' | 'clientRefererHost_ASC' | 'clientRefererHost_DESC' | 'clientRequestHTTPHost_ASC' | 'clientRequestHTTPHost_DESC' | 'clientRequestHTTPMethodName_ASC' | 'clientRequestHTTPMethodName_DESC' | 'clientRequestHTTPProtocol_ASC' | 'clientRequestHTTPProtocol_DESC' | 'clientRequestPath_ASC' | 'clientRequestPath_DESC' | 'clientRequestQuery_ASC' | 'clientRequestQuery_DESC' | 'clientRequestReferer_ASC' | 'clientRequestReferer_DESC' | 'clientRequestScheme_ASC' | 'clientRequestScheme_DESC' | 'clientSSLProtocol_ASC' | 'clientSSLProtocol_DESC' | 'coloCode_ASC' | 'coloCode_DESC' | 'contentScanHasFailed_ASC' | 'contentScanHasFailed_DESC' | 'contentScanNumMaliciousObj_ASC' | 'contentScanNumMaliciousObj_DESC' | 'contentScanNumObj_ASC' | 'contentScanNumObj_DESC' | 'contentScanObjResults_ASC' | 'contentScanObjResults_DESC' | 'contentScanObjSizes_ASC' | 'contentScanObjSizes_DESC' | 'contentScanObjTypes_ASC' | 'contentScanObjTypes_DESC' | 'count_ASC' | 'count_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'edgeDnsResponseTimeMs_ASC' | 'edgeDnsResponseTimeMs_DESC' | 'edgeResponseContentTypeName_ASC' | 'edgeResponseContentTypeName_DESC' | 'edgeResponseStatus_ASC' | 'edgeResponseStatus_DESC' | 'edgeTimeToFirstByteMs_ASC' | 'edgeTimeToFirstByteMs_DESC' | 'firewallForAiAnyPiiCategory_ASC' | 'firewallForAiAnyPiiCategory_DESC' | 'firewallForAiInjectionScore_ASC' | 'firewallForAiInjectionScore_DESC' | 'firewallForAiPiiCategories_ASC' | 'firewallForAiPiiCategories_DESC' | 'firewallForAiUnsafeTopicCategories_ASC' | 'firewallForAiUnsafeTopicCategories_DESC' | 'fraudAttack_ASC' | 'fraudAttack_DESC' | 'fraudDetectionIds_ASC' | 'fraudDetectionIds_DESC' | 'fraudDetectionTags_ASC' | 'fraudDetectionTags_DESC' | 'fraudEmailRisk_ASC' | 'fraudEmailRisk_DESC' | 'httpApplicationVersion_ASC' | 'httpApplicationVersion_DESC' | 'isCrossZoneSubrequest_ASC' | 'isCrossZoneSubrequest_DESC' | 'ja3Hash_ASC' | 'ja3Hash_DESC' | 'ja4_ASC' | 'ja4_DESC' | 'jsDetectionPassed_ASC' | 'jsDetectionPassed_DESC' | 'leakedCredentialCheckResult_ASC' | 'leakedCredentialCheckResult_DESC' | 'originASNDescription_ASC' | 'originASNDescription_DESC' | 'originASN_ASC' | 'originASN_DESC' | 'originIP_ASC' | 'originIP_DESC' | 'originResponseDurationMs_ASC' | 'originResponseDurationMs_DESC' | 'originResponseStatus_ASC' | 'originResponseStatus_DESC' | 'payPerCrawlStatus_ASC' | 'payPerCrawlStatus_DESC' | 'quantiles_edgeDnsResponseTimeMsP50_ASC' | 'quantiles_edgeDnsResponseTimeMsP50_DESC' | 'quantiles_edgeDnsResponseTimeMsP95_ASC' | 'quantiles_edgeDnsResponseTimeMsP95_DESC' | 'quantiles_edgeDnsResponseTimeMsP99_ASC' | 'quantiles_edgeDnsResponseTimeMsP99_DESC' | 'quantiles_edgeResponseBytesP50_ASC' | 'quantiles_edgeResponseBytesP50_DESC' | 'quantiles_edgeResponseBytesP95_ASC' | 'quantiles_edgeResponseBytesP95_DESC' | 'quantiles_edgeResponseBytesP99_ASC' | 'quantiles_edgeResponseBytesP99_DESC' | 'quantiles_edgeTimeToFirstByteMsP50_ASC' | 'quantiles_edgeTimeToFirstByteMsP50_DESC' | 'quantiles_edgeTimeToFirstByteMsP95_ASC' | 'quantiles_edgeTimeToFirstByteMsP95_DESC' | 'quantiles_edgeTimeToFirstByteMsP99_ASC' | 'quantiles_edgeTimeToFirstByteMsP99_DESC' | 'quantiles_originResponseDurationMsP50_ASC' | 'quantiles_originResponseDurationMsP50_DESC' | 'quantiles_originResponseDurationMsP95_ASC' | 'quantiles_originResponseDurationMsP95_DESC' | 'quantiles_originResponseDurationMsP99_ASC' | 'quantiles_originResponseDurationMsP99_DESC' | 'ratio_status4xx_ASC' | 'ratio_status4xx_DESC' | 'ratio_status5xx_ASC' | 'ratio_status5xx_DESC' | 'requestSource_ASC' | 'requestSource_DESC' | 'sampleInterval_ASC' | 'sampleInterval_DESC' | 'securityAction_ASC' | 'securityAction_DESC' | 'securitySource_ASC' | 'securitySource_DESC' | 'sessionIdHash_ASC' | 'sessionIdHash_DESC' | 'sum_botDetectionIdArray_ASC' | 'sum_botDetectionIdArray_DESC' | 'sum_botDetectionIdCountArray_ASC' | 'sum_botDetectionIdCountArray_DESC' | 'sum_botDetectionTagArray_ASC' | 'sum_botDetectionTagArray_DESC' | 'sum_botDetectionTagCountArray_ASC' | 'sum_botDetectionTagCountArray_DESC' | 'sum_crossZoneSubrequests_ASC' | 'sum_crossZoneSubrequests_DESC' | 'sum_edgeDnsResponseTimeMs_ASC' | 'sum_edgeDnsResponseTimeMs_DESC' | 'sum_edgeRequestBytes_ASC' | 'sum_edgeRequestBytes_DESC' | 'sum_edgeResponseBytes_ASC' | 'sum_edgeResponseBytes_DESC' | 'sum_edgeTimeToFirstByteMs_ASC' | 'sum_edgeTimeToFirstByteMs_DESC' | 'sum_fraudDetectionIdArray_ASC' | 'sum_fraudDetectionIdArray_DESC' | 'sum_fraudDetectionIdCountArray_ASC' | 'sum_fraudDetectionIdCountArray_DESC' | 'sum_fraudDetectionTagArray_ASC' | 'sum_fraudDetectionTagArray_DESC' | 'sum_fraudDetectionTagCountArray_ASC' | 'sum_fraudDetectionTagCountArray_DESC' | 'sum_originResponseDurationMs_ASC' | 'sum_originResponseDurationMs_DESC' | 'sum_visits_ASC' | 'sum_visits_DESC' | 'upperTierColoName_ASC' | 'upperTierColoName_DESC' | 'userAgentBrowser_ASC' | 'userAgentBrowser_DESC' | 'userAgentOS_ASC' | 'userAgentOS_DESC' | 'userAgent_ASC' | 'userAgent_DESC' | 'verifiedBotCategory_ASC' | 'verifiedBotCategory_DESC' | 'wafAttackScoreClass_ASC' | 'wafAttackScoreClass_DESC' | 'wafAttackScore_ASC' | 'wafAttackScore_DESC' | 'wafRceAttackScore_ASC' | 'wafRceAttackScore_DESC' | 'wafSqliAttackScore_ASC' | 'wafSqliAttackScore_DESC' | 'wafXssAttackScore_ASC' | 'wafXssAttackScore_DESC' | 'xRequestedWith_ASC' | 'xRequestedWith_DESC' | 'zoneTag_ASC' | 'zoneTag_DESC' | 'zoneVersion_ASC' | 'zoneVersion_DESC'; }; + 'AccountHttpRequestsAdaptiveGroupsQuantiles': { kind: 'OBJECT'; name: 'AccountHttpRequestsAdaptiveGroupsQuantiles'; fields: { 'edgeDnsResponseTimeMsP50': { name: 'edgeDnsResponseTimeMsP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'edgeDnsResponseTimeMsP95': { name: 'edgeDnsResponseTimeMsP95'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'edgeDnsResponseTimeMsP99': { name: 'edgeDnsResponseTimeMsP99'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'edgeResponseBytesP50': { name: 'edgeResponseBytesP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'edgeResponseBytesP95': { name: 'edgeResponseBytesP95'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'edgeResponseBytesP99': { name: 'edgeResponseBytesP99'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'edgeTimeToFirstByteMsP50': { name: 'edgeTimeToFirstByteMsP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'edgeTimeToFirstByteMsP95': { name: 'edgeTimeToFirstByteMsP95'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'edgeTimeToFirstByteMsP99': { name: 'edgeTimeToFirstByteMsP99'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'originResponseDurationMsP50': { name: 'originResponseDurationMsP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'originResponseDurationMsP95': { name: 'originResponseDurationMsP95'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'originResponseDurationMsP99': { name: 'originResponseDurationMsP99'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountHttpRequestsAdaptiveGroupsRatio': { kind: 'OBJECT'; name: 'AccountHttpRequestsAdaptiveGroupsRatio'; fields: { 'status4xx': { name: 'status4xx'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'status5xx': { name: 'status5xx'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountHttpRequestsAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'AccountHttpRequestsAdaptiveGroupsSum'; fields: { 'botDetectionIdArray': { name: 'botDetectionIdArray'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; } }; 'botDetectionIdCountArray': { name: 'botDetectionIdCountArray'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; } }; 'botDetectionTagArray': { name: 'botDetectionTagArray'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'botDetectionTagCountArray': { name: 'botDetectionTagCountArray'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; } }; 'crossZoneSubrequests': { name: 'crossZoneSubrequests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'edgeDnsResponseTimeMs': { name: 'edgeDnsResponseTimeMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'edgeRequestBytes': { name: 'edgeRequestBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'edgeResponseBytes': { name: 'edgeResponseBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'edgeTimeToFirstByteMs': { name: 'edgeTimeToFirstByteMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'fraudDetectionIdArray': { name: 'fraudDetectionIdArray'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; } }; 'fraudDetectionIdCountArray': { name: 'fraudDetectionIdCountArray'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; } }; 'fraudDetectionTagArray': { name: 'fraudDetectionTagArray'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'fraudDetectionTagCountArray': { name: 'fraudDetectionTagCountArray'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; } }; 'originResponseDurationMs': { name: 'originResponseDurationMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'visits': { name: 'visits'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountHttpRequestsAdaptiveGroupsSumConfidence': { kind: 'OBJECT'; name: 'AccountHttpRequestsAdaptiveGroupsSumConfidence'; fields: { 'crossZoneSubrequests': { name: 'crossZoneSubrequests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'edgeDnsResponseTimeMs': { name: 'edgeDnsResponseTimeMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'edgeRequestBytes': { name: 'edgeRequestBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'edgeResponseBytes': { name: 'edgeResponseBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'edgeTimeToFirstByteMs': { name: 'edgeTimeToFirstByteMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'originResponseDurationMs': { name: 'originResponseDurationMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'visits': { name: 'visits'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountHttpRequestsAdaptiveJa4SignalsElem': { kind: 'OBJECT'; name: 'AccountHttpRequestsAdaptiveJa4SignalsElem'; fields: { 'signalName': { name: 'signalName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'signalValue': { name: 'signalValue'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; }; }; + 'AccountHttpRequestsAdaptiveOrderBy': { name: 'AccountHttpRequestsAdaptiveOrderBy'; enumValues: 'apiGatewayMatchedEndpoint_ASC' | 'apiGatewayMatchedEndpoint_DESC' | 'apiGatewayMatchedHost_ASC' | 'apiGatewayMatchedHost_DESC' | 'attackSignatureCategories_ASC' | 'attackSignatureCategories_DESC' | 'attackSignatureRefs_ASC' | 'attackSignatureRefs_DESC' | 'botDetectionIds_ASC' | 'botDetectionIds_DESC' | 'botDetectionTags_ASC' | 'botDetectionTags_DESC' | 'botManagementDecision_ASC' | 'botManagementDecision_DESC' | 'botScoreBucketBy10_ASC' | 'botScoreBucketBy10_DESC' | 'botScoreSrcName_ASC' | 'botScoreSrcName_DESC' | 'botScore_ASC' | 'botScore_DESC' | 'cacheReserveUsed_ASC' | 'cacheReserveUsed_DESC' | 'cacheStatus_ASC' | 'cacheStatus_DESC' | 'clientASNDescription_ASC' | 'clientASNDescription_DESC' | 'clientAsn_ASC' | 'clientAsn_DESC' | 'clientCountryName_ASC' | 'clientCountryName_DESC' | 'clientDeviceType_ASC' | 'clientDeviceType_DESC' | 'clientIP_ASC' | 'clientIP_DESC' | 'clientRefererHost_ASC' | 'clientRefererHost_DESC' | 'clientRequestHTTPHost_ASC' | 'clientRequestHTTPHost_DESC' | 'clientRequestHTTPMethodName_ASC' | 'clientRequestHTTPMethodName_DESC' | 'clientRequestHTTPProtocol_ASC' | 'clientRequestHTTPProtocol_DESC' | 'clientRequestPath_ASC' | 'clientRequestPath_DESC' | 'clientRequestQuery_ASC' | 'clientRequestQuery_DESC' | 'clientRequestReferer_ASC' | 'clientRequestReferer_DESC' | 'clientRequestScheme_ASC' | 'clientRequestScheme_DESC' | 'clientSSLProtocol_ASC' | 'clientSSLProtocol_DESC' | 'coloCode_ASC' | 'coloCode_DESC' | 'contentScanHasFailed_ASC' | 'contentScanHasFailed_DESC' | 'contentScanNumMaliciousObj_ASC' | 'contentScanNumMaliciousObj_DESC' | 'contentScanNumObj_ASC' | 'contentScanNumObj_DESC' | 'contentScanObjResults_ASC' | 'contentScanObjResults_DESC' | 'contentScanObjSizes_ASC' | 'contentScanObjSizes_DESC' | 'contentScanObjTypes_ASC' | 'contentScanObjTypes_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'edgeDnsResponseTimeMs_ASC' | 'edgeDnsResponseTimeMs_DESC' | 'edgeResponseContentTypeName_ASC' | 'edgeResponseContentTypeName_DESC' | 'edgeResponseStatus_ASC' | 'edgeResponseStatus_DESC' | 'edgeTimeToFirstByteMs_ASC' | 'edgeTimeToFirstByteMs_DESC' | 'firewallForAiAnyPiiCategory_ASC' | 'firewallForAiAnyPiiCategory_DESC' | 'firewallForAiInjectionScore_ASC' | 'firewallForAiInjectionScore_DESC' | 'firewallForAiPiiCategories_ASC' | 'firewallForAiPiiCategories_DESC' | 'firewallForAiUnsafeTopicCategories_ASC' | 'firewallForAiUnsafeTopicCategories_DESC' | 'fraudAttack_ASC' | 'fraudAttack_DESC' | 'fraudDetectionIds_ASC' | 'fraudDetectionIds_DESC' | 'fraudDetectionTags_ASC' | 'fraudDetectionTags_DESC' | 'fraudEmailRisk_ASC' | 'fraudEmailRisk_DESC' | 'httpApplicationVersion_ASC' | 'httpApplicationVersion_DESC' | 'isCrossZoneSubrequest_ASC' | 'isCrossZoneSubrequest_DESC' | 'ja3Hash_ASC' | 'ja3Hash_DESC' | 'ja4_ASC' | 'ja4_DESC' | 'jsDetectionPassed_ASC' | 'jsDetectionPassed_DESC' | 'leakedCredentialCheckResult_ASC' | 'leakedCredentialCheckResult_DESC' | 'originASNDescription_ASC' | 'originASNDescription_DESC' | 'originASN_ASC' | 'originASN_DESC' | 'originIP_ASC' | 'originIP_DESC' | 'originResponseDurationMs_ASC' | 'originResponseDurationMs_DESC' | 'originResponseStatus_ASC' | 'originResponseStatus_DESC' | 'payPerCrawlStatus_ASC' | 'payPerCrawlStatus_DESC' | 'rayName_ASC' | 'rayName_DESC' | 'requestSource_ASC' | 'requestSource_DESC' | 'securityAction_ASC' | 'securityAction_DESC' | 'securitySource_ASC' | 'securitySource_DESC' | 'sessionIdHash_ASC' | 'sessionIdHash_DESC' | 'upperTierColoName_ASC' | 'upperTierColoName_DESC' | 'userAgentBrowser_ASC' | 'userAgentBrowser_DESC' | 'userAgentOS_ASC' | 'userAgentOS_DESC' | 'userAgent_ASC' | 'userAgent_DESC' | 'verifiedBotCategory_ASC' | 'verifiedBotCategory_DESC' | 'wafAttackScoreClass_ASC' | 'wafAttackScoreClass_DESC' | 'wafAttackScore_ASC' | 'wafAttackScore_DESC' | 'wafRceAttackScore_ASC' | 'wafRceAttackScore_DESC' | 'wafSqliAttackScore_ASC' | 'wafSqliAttackScore_DESC' | 'wafXssAttackScore_ASC' | 'wafXssAttackScore_DESC' | 'xRequestedWith_ASC' | 'xRequestedWith_DESC' | 'zoneTag_ASC' | 'zoneTag_DESC' | 'zoneVersion_ASC' | 'zoneVersion_DESC'; }; + 'AccountHttpRequestsOverviewAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountHttpRequestsOverviewAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountHttpRequestsOverviewAdaptiveGroupsAvg'; ofType: null; } }; 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountHttpRequestsOverviewAdaptiveGroupsConfidence'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountHttpRequestsOverviewAdaptiveGroupsDimensions'; ofType: null; } }; 'ratio': { name: 'ratio'; type: { kind: 'OBJECT'; name: 'AccountHttpRequestsOverviewAdaptiveGroupsRatio'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountHttpRequestsOverviewAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'AccountHttpRequestsOverviewAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'AccountHttpRequestsOverviewAdaptiveGroupsAvg'; fields: { 'originResponseDurationMs': { name: 'originResponseDurationMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountHttpRequestsOverviewAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountHttpRequestsOverviewAdaptiveGroupsConfidence'; fields: { 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountHttpRequestsOverviewAdaptiveGroupsSumConfidence'; ofType: null; } }; }; }; + 'AccountHttpRequestsOverviewAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountHttpRequestsOverviewAdaptiveGroupsDimensions'; fields: { 'clientCountryName': { name: 'clientCountryName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRequestHTTPProtocol': { name: 'clientRequestHTTPProtocol'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientSSLProtocol': { name: 'clientSSLProtocol'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'edgeResponseContentTypeName': { name: 'edgeResponseContentTypeName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'edgeResponseStatus': { name: 'edgeResponseStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'httpApplicationVersion': { name: 'httpApplicationVersion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'userAgentBrowser': { name: 'userAgentBrowser'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'zoneVersion': { name: 'zoneVersion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountHttpRequestsOverviewAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountHttpRequestsOverviewAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountHttpRequestsOverviewAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountHttpRequestsOverviewAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientCountryName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientCountryName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientCountryName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientSSLProtocol'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientSSLProtocol_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientSSLProtocol_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientSSLProtocol_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientSSLProtocol_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientSSLProtocol_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientSSLProtocol_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientSSLProtocol_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientSSLProtocol_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientSSLProtocol_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeResponseContentTypeName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseContentTypeName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseContentTypeName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseContentTypeName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeResponseContentTypeName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseContentTypeName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseContentTypeName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseContentTypeName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseContentTypeName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeResponseContentTypeName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeResponseStatus_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'httpApplicationVersion'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'httpApplicationVersion_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'rayName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'rayName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'rayName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userAgentBrowser_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userAgentBrowser_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'zoneVersion_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }]; }; + 'AccountHttpRequestsOverviewAdaptiveGroupsOrderBy': { name: 'AccountHttpRequestsOverviewAdaptiveGroupsOrderBy'; enumValues: 'avg_originResponseDurationMs_ASC' | 'avg_originResponseDurationMs_DESC' | 'avg_sampleInterval_ASC' | 'avg_sampleInterval_DESC' | 'clientCountryName_ASC' | 'clientCountryName_DESC' | 'clientRequestHTTPProtocol_ASC' | 'clientRequestHTTPProtocol_DESC' | 'clientSSLProtocol_ASC' | 'clientSSLProtocol_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'edgeResponseContentTypeName_ASC' | 'edgeResponseContentTypeName_DESC' | 'edgeResponseStatus_ASC' | 'edgeResponseStatus_DESC' | 'httpApplicationVersion_ASC' | 'httpApplicationVersion_DESC' | 'ratio_cachedBytes_ASC' | 'ratio_cachedBytes_DESC' | 'ratio_cachedRequests_ASC' | 'ratio_cachedRequests_DESC' | 'ratio_encryptedBytes_ASC' | 'ratio_encryptedBytes_DESC' | 'ratio_encryptedRequests_ASC' | 'ratio_encryptedRequests_DESC' | 'ratio_status4xx_ASC' | 'ratio_status4xx_DESC' | 'ratio_status5xx_ASC' | 'ratio_status5xx_DESC' | 'requestSource_ASC' | 'requestSource_DESC' | 'sum_bytes_ASC' | 'sum_bytes_DESC' | 'sum_cachedBytes_ASC' | 'sum_cachedBytes_DESC' | 'sum_cachedRequests_ASC' | 'sum_cachedRequests_DESC' | 'sum_pageViews_ASC' | 'sum_pageViews_DESC' | 'sum_requests_ASC' | 'sum_requests_DESC' | 'sum_visits_ASC' | 'sum_visits_DESC' | 'userAgentBrowser_ASC' | 'userAgentBrowser_DESC' | 'zoneVersion_ASC' | 'zoneVersion_DESC'; }; + 'AccountHttpRequestsOverviewAdaptiveGroupsRatio': { kind: 'OBJECT'; name: 'AccountHttpRequestsOverviewAdaptiveGroupsRatio'; fields: { 'cachedBytes': { name: 'cachedBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'cachedRequests': { name: 'cachedRequests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'encryptedBytes': { name: 'encryptedBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'encryptedRequests': { name: 'encryptedRequests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'status4xx': { name: 'status4xx'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'status5xx': { name: 'status5xx'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountHttpRequestsOverviewAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'AccountHttpRequestsOverviewAdaptiveGroupsSum'; fields: { 'bytes': { name: 'bytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'cachedBytes': { name: 'cachedBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'cachedRequests': { name: 'cachedRequests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'pageViews': { name: 'pageViews'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'visits': { name: 'visits'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountHttpRequestsOverviewAdaptiveGroupsSumConfidence': { kind: 'OBJECT'; name: 'AccountHttpRequestsOverviewAdaptiveGroupsSumConfidence'; fields: { 'bytes': { name: 'bytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'cachedBytes': { name: 'cachedBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'cachedRequests': { name: 'cachedRequests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'pageViews': { name: 'pageViews'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'visits': { name: 'visits'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountHyperdriveQueriesAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountHyperdriveQueriesAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountHyperdriveQueriesAdaptiveGroupsAvg'; ofType: null; } }; 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountHyperdriveQueriesAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountHyperdriveQueriesAdaptiveGroupsDimensions'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountHyperdriveQueriesAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'AccountHyperdriveQueriesAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'AccountHyperdriveQueriesAdaptiveGroupsAvg'; fields: { 'connectionLatency': { name: 'connectionLatency'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'queryBytes': { name: 'queryBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'queryLatency': { name: 'queryLatency'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'resultBytes': { name: 'resultBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountHyperdriveQueriesAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountHyperdriveQueriesAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountHyperdriveQueriesAdaptiveGroupsSumConfidence'; ofType: null; } }; }; }; + 'AccountHyperdriveQueriesAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountHyperdriveQueriesAdaptiveGroupsDimensions'; fields: { 'cacheStatus': { name: 'cacheStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'coloCode': { name: 'coloCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'configId': { name: 'configId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'eventStatus': { name: 'eventStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'isFree': { name: 'isFree'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountHyperdriveQueriesAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountHyperdriveQueriesAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountHyperdriveQueriesAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountHyperdriveQueriesAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'cacheStatus'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cacheStatus_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cacheStatus_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cacheStatus_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'cacheStatus_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cacheStatus_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cacheStatus_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cacheStatus_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cacheStatus_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'cacheStatus_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCode_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCode_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'configId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'configId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'configId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'configId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'configId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'configId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'configId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'configId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'configId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'configId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'eventStatus'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventStatus_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventStatus_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventStatus_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'eventStatus_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventStatus_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventStatus_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventStatus_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventStatus_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'eventStatus_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'isFree'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'isFree_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'isFree_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'isFree_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'isFree_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'isFree_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'isFree_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'isFree_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'isFree_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'isFree_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountHyperdriveQueriesAdaptiveGroupsOrderBy': { name: 'AccountHyperdriveQueriesAdaptiveGroupsOrderBy'; enumValues: 'avg_connectionLatency_ASC' | 'avg_connectionLatency_DESC' | 'avg_queryBytes_ASC' | 'avg_queryBytes_DESC' | 'avg_queryLatency_ASC' | 'avg_queryLatency_DESC' | 'avg_resultBytes_ASC' | 'avg_resultBytes_DESC' | 'avg_sampleInterval_ASC' | 'avg_sampleInterval_DESC' | 'cacheStatus_ASC' | 'cacheStatus_DESC' | 'coloCode_ASC' | 'coloCode_DESC' | 'configId_ASC' | 'configId_DESC' | 'count_ASC' | 'count_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'eventStatus_ASC' | 'eventStatus_DESC' | 'isFree_ASC' | 'isFree_DESC' | 'sum_clientWriteLatency_ASC' | 'sum_clientWriteLatency_DESC' | 'sum_connectionLatency_ASC' | 'sum_connectionLatency_DESC' | 'sum_originReadLatency_ASC' | 'sum_originReadLatency_DESC' | 'sum_originWriteLatency_ASC' | 'sum_originWriteLatency_DESC' | 'sum_queryBytes_ASC' | 'sum_queryBytes_DESC' | 'sum_queryLatency_ASC' | 'sum_queryLatency_DESC' | 'sum_resultBytes_ASC' | 'sum_resultBytes_DESC'; }; + 'AccountHyperdriveQueriesAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'AccountHyperdriveQueriesAdaptiveGroupsSum'; fields: { 'clientWriteLatency': { name: 'clientWriteLatency'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'connectionLatency': { name: 'connectionLatency'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'originReadLatency': { name: 'originReadLatency'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'originWriteLatency': { name: 'originWriteLatency'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'queryBytes': { name: 'queryBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'queryLatency': { name: 'queryLatency'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'resultBytes': { name: 'resultBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountHyperdriveQueriesAdaptiveGroupsSumConfidence': { kind: 'OBJECT'; name: 'AccountHyperdriveQueriesAdaptiveGroupsSumConfidence'; fields: { 'clientWriteLatency': { name: 'clientWriteLatency'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'connectionLatency': { name: 'connectionLatency'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'originReadLatency': { name: 'originReadLatency'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'originWriteLatency': { name: 'originWriteLatency'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'queryBytes': { name: 'queryBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'queryLatency': { name: 'queryLatency'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'resultBytes': { name: 'resultBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountImagesRequestsAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountImagesRequestsAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountImagesRequestsAdaptiveGroupsAvg'; ofType: null; } }; 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountImagesRequestsAdaptiveGroupsConfidence'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountImagesRequestsAdaptiveGroupsDimensions'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountImagesRequestsAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'AccountImagesRequestsAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'AccountImagesRequestsAdaptiveGroupsAvg'; fields: { 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountImagesRequestsAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountImagesRequestsAdaptiveGroupsConfidence'; fields: { 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountImagesRequestsAdaptiveGroupsSumConfidence'; ofType: null; } }; }; }; + 'AccountImagesRequestsAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountImagesRequestsAdaptiveGroupsDimensions'; fields: { 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; }; }; + 'AccountImagesRequestsAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountImagesRequestsAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountImagesRequestsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountImagesRequestsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }]; }; + 'AccountImagesRequestsAdaptiveGroupsOrderBy': { name: 'AccountImagesRequestsAdaptiveGroupsOrderBy'; enumValues: 'avg_sampleInterval_ASC' | 'avg_sampleInterval_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'edgeResponseBytes_ASC' | 'edgeResponseBytes_DESC' | 'edgeResponseStatus_ASC' | 'edgeResponseStatus_DESC' | 'sum_requests_ASC' | 'sum_requests_DESC'; }; + 'AccountImagesRequestsAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'AccountImagesRequestsAdaptiveGroupsSum'; fields: { 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountImagesRequestsAdaptiveGroupsSumConfidence': { kind: 'OBJECT'; name: 'AccountImagesRequestsAdaptiveGroupsSumConfidence'; fields: { 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountImagesUniqueTransformations': { kind: 'OBJECT'; name: 'AccountImagesUniqueTransformations'; fields: { 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'transformations': { name: 'transformations'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountImagesUniqueTransformationsAccumulatedSinceStartOfMonth': { kind: 'OBJECT'; name: 'AccountImagesUniqueTransformationsAccumulatedSinceStartOfMonth'; fields: { 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'transformations': { name: 'transformations'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountImagesUniqueTransformationsAccumulatedSinceStartOfMonthFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountImagesUniqueTransformationsAccumulatedSinceStartOfMonthFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountImagesUniqueTransformationsAccumulatedSinceStartOfMonthFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountImagesUniqueTransformationsAccumulatedSinceStartOfMonthFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }]; }; + 'AccountImagesUniqueTransformationsAccumulatedSinceStartOfMonthOrderBy': { name: 'AccountImagesUniqueTransformationsAccumulatedSinceStartOfMonthOrderBy'; enumValues: 'date_ASC' | 'date_DESC'; }; + 'AccountImagesUniqueTransformationsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountImagesUniqueTransformationsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountImagesUniqueTransformationsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountImagesUniqueTransformationsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }]; }; + 'AccountImagesUniqueTransformationsOrderBy': { name: 'AccountImagesUniqueTransformationsOrderBy'; enumValues: 'date_ASC' | 'date_DESC'; }; + 'AccountKvOperationsAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountKvOperationsAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountKvOperationsAdaptiveGroupsAvg'; ofType: null; } }; 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountKvOperationsAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountKvOperationsAdaptiveGroupsDimensions'; ofType: null; } }; 'max': { name: 'max'; type: { kind: 'OBJECT'; name: 'AccountKvOperationsAdaptiveGroupsMax'; ofType: null; } }; 'min': { name: 'min'; type: { kind: 'OBJECT'; name: 'AccountKvOperationsAdaptiveGroupsMin'; ofType: null; } }; 'quantiles': { name: 'quantiles'; type: { kind: 'OBJECT'; name: 'AccountKvOperationsAdaptiveGroupsQuantiles'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountKvOperationsAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'AccountKvOperationsAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'AccountKvOperationsAdaptiveGroupsAvg'; fields: { 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountKvOperationsAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountKvOperationsAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountKvOperationsAdaptiveGroupsSumConfidence'; ofType: null; } }; }; }; + 'AccountKvOperationsAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountKvOperationsAdaptiveGroupsDimensions'; fields: { 'actionType': { name: 'actionType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'namespaceId': { name: 'namespaceId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'responseStatusCode': { name: 'responseStatusCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'result': { name: 'result'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountKvOperationsAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountKvOperationsAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountKvOperationsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountKvOperationsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'actionType'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'actionType_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'actionType_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'actionType_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'actionType_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'actionType_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'actionType_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'actionType_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'actionType_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'actionType_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'namespaceId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'namespaceId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'namespaceId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'namespaceId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'namespaceId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'namespaceId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'namespaceId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'namespaceId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'namespaceId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'namespaceId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseStatusCode'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'responseStatusCode_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'responseStatusCode_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'responseStatusCode_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'responseStatusCode_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'responseStatusCode_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'responseStatusCode_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'responseStatusCode_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'result'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'result_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'result_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'result_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'result_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'result_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'result_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'result_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'result_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'result_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountKvOperationsAdaptiveGroupsMax': { kind: 'OBJECT'; name: 'AccountKvOperationsAdaptiveGroupsMax'; fields: { 'latencyMs': { name: 'latencyMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'objectBytes': { name: 'objectBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; }; }; + 'AccountKvOperationsAdaptiveGroupsMin': { kind: 'OBJECT'; name: 'AccountKvOperationsAdaptiveGroupsMin'; fields: { 'latencyMs': { name: 'latencyMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'objectBytes': { name: 'objectBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; }; }; + 'AccountKvOperationsAdaptiveGroupsOrderBy': { name: 'AccountKvOperationsAdaptiveGroupsOrderBy'; enumValues: 'actionType_ASC' | 'actionType_DESC' | 'avg_sampleInterval_ASC' | 'avg_sampleInterval_DESC' | 'clientType_ASC' | 'clientType_DESC' | 'count_ASC' | 'count_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'max_latencyMs_ASC' | 'max_latencyMs_DESC' | 'max_objectBytes_ASC' | 'max_objectBytes_DESC' | 'min_latencyMs_ASC' | 'min_latencyMs_DESC' | 'min_objectBytes_ASC' | 'min_objectBytes_DESC' | 'namespaceDeleted_ASC' | 'namespaceDeleted_DESC' | 'namespaceId_ASC' | 'namespaceId_DESC' | 'quantiles_latencyMsP25_ASC' | 'quantiles_latencyMsP25_DESC' | 'quantiles_latencyMsP50_ASC' | 'quantiles_latencyMsP50_DESC' | 'quantiles_latencyMsP75_ASC' | 'quantiles_latencyMsP75_DESC' | 'quantiles_latencyMsP90_ASC' | 'quantiles_latencyMsP90_DESC' | 'quantiles_latencyMsP999_ASC' | 'quantiles_latencyMsP999_DESC' | 'quantiles_latencyMsP99_ASC' | 'quantiles_latencyMsP99_DESC' | 'responseStatusCode_ASC' | 'responseStatusCode_DESC' | 'result_ASC' | 'result_DESC' | 'sum_objectBytes_ASC' | 'sum_objectBytes_DESC' | 'sum_requests_ASC' | 'sum_requests_DESC'; }; + 'AccountKvOperationsAdaptiveGroupsQuantiles': { kind: 'OBJECT'; name: 'AccountKvOperationsAdaptiveGroupsQuantiles'; fields: { 'latencyMsP25': { name: 'latencyMsP25'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'latencyMsP50': { name: 'latencyMsP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'latencyMsP75': { name: 'latencyMsP75'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'latencyMsP90': { name: 'latencyMsP90'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'latencyMsP99': { name: 'latencyMsP99'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'latencyMsP999': { name: 'latencyMsP999'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; }; }; + 'AccountKvOperationsAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'AccountKvOperationsAdaptiveGroupsSum'; fields: { 'objectBytes': { name: 'objectBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountKvOperationsAdaptiveGroupsSumConfidence': { kind: 'OBJECT'; name: 'AccountKvOperationsAdaptiveGroupsSumConfidence'; fields: { 'objectBytes': { name: 'objectBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountKvStorageAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountKvStorageAdaptiveGroups'; fields: { 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountKvStorageAdaptiveGroupsDimensions'; ofType: null; } }; 'max': { name: 'max'; type: { kind: 'OBJECT'; name: 'AccountKvStorageAdaptiveGroupsMax'; ofType: null; } }; }; }; + 'AccountKvStorageAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountKvStorageAdaptiveGroupsDimensions'; fields: { 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'namespaceId': { name: 'namespaceId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountKvStorageAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountKvStorageAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountKvStorageAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountKvStorageAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'namespaceId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'namespaceId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'namespaceId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'namespaceId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'namespaceId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'namespaceId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'namespaceId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'namespaceId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'namespaceId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'namespaceId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountKvStorageAdaptiveGroupsMax': { kind: 'OBJECT'; name: 'AccountKvStorageAdaptiveGroupsMax'; fields: { 'byteCount': { name: 'byteCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'keyCount': { name: 'keyCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountKvStorageAdaptiveGroupsOrderBy': { name: 'AccountKvStorageAdaptiveGroupsOrderBy'; enumValues: 'date_ASC' | 'date_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'max_byteCount_ASC' | 'max_byteCount_DESC' | 'max_keyCount_ASC' | 'max_keyCount_DESC' | 'namespaceId_ASC' | 'namespaceId_DESC'; }; + 'AccountLiveInputEventsAdaptive': { kind: 'OBJECT'; name: 'AccountLiveInputEventsAdaptive'; fields: { 'coloCode': { name: 'coloCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'eventCode': { name: 'eventCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'eventDescription': { name: 'eventDescription'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'inputId': { name: 'inputId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountLiveInputEventsAdaptiveFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountLiveInputEventsAdaptiveFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountLiveInputEventsAdaptiveFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountLiveInputEventsAdaptiveFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCode'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCode_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCode_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'eventCode'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventCode_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventCode_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventCode_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'eventCode_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventCode_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventCode_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventCode_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventCode_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'eventCode_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventDescription'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventDescription_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventDescription_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventDescription_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'eventDescription_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventDescription_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventDescription_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventDescription_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventDescription_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'eventDescription_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'inputId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'inputId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'inputId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'inputId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'inputId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'inputId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'inputId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'inputId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'inputId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'inputId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountLiveInputEventsAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountLiveInputEventsAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountLiveInputEventsAdaptiveGroupsAvg'; ofType: null; } }; 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountLiveInputEventsAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountLiveInputEventsAdaptiveGroupsDimensions'; ofType: null; } }; 'max': { name: 'max'; type: { kind: 'OBJECT'; name: 'AccountLiveInputEventsAdaptiveGroupsMax'; ofType: null; } }; 'min': { name: 'min'; type: { kind: 'OBJECT'; name: 'AccountLiveInputEventsAdaptiveGroupsMin'; ofType: null; } }; }; }; + 'AccountLiveInputEventsAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'AccountLiveInputEventsAdaptiveGroupsAvg'; fields: { 'bitRate': { name: 'bitRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'bitRateFifteenMinutes': { name: 'bitRateFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'bitRateFiveMinutes': { name: 'bitRateFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'bitRateHour': { name: 'bitRateHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'bitRateMinute': { name: 'bitRateMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'gopByteSize': { name: 'gopByteSize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'gopDuration': { name: 'gopDuration'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'gopUploadTime': { name: 'gopUploadTime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'uploadDurationRatio': { name: 'uploadDurationRatio'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountLiveInputEventsAdaptiveGroupsAvgConfidence': { kind: 'OBJECT'; name: 'AccountLiveInputEventsAdaptiveGroupsAvgConfidence'; fields: { 'bitRate': { name: 'bitRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateFifteenMinutes': { name: 'bitRateFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateFiveMinutes': { name: 'bitRateFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateHour': { name: 'bitRateHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateMinute': { name: 'bitRateMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountLiveInputEventsAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountLiveInputEventsAdaptiveGroupsConfidence'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountLiveInputEventsAdaptiveGroupsAvgConfidence'; ofType: null; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountLiveInputEventsAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountLiveInputEventsAdaptiveGroupsDimensions'; fields: { 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'eventCode': { name: 'eventCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'inputId': { name: 'inputId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountLiveInputEventsAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountLiveInputEventsAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountLiveInputEventsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountLiveInputEventsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'eventCode'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventCode_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventCode_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventCode_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'eventCode_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventCode_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventCode_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventCode_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventCode_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'eventCode_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'inputId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'inputId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'inputId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'inputId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'inputId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'inputId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'inputId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'inputId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'inputId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'inputId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountLiveInputEventsAdaptiveGroupsMax': { kind: 'OBJECT'; name: 'AccountLiveInputEventsAdaptiveGroupsMax'; fields: { 'gopByteSize': { name: 'gopByteSize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'gopDuration': { name: 'gopDuration'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'gopUploadTime': { name: 'gopUploadTime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'uploadDurationRatio': { name: 'uploadDurationRatio'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountLiveInputEventsAdaptiveGroupsMin': { kind: 'OBJECT'; name: 'AccountLiveInputEventsAdaptiveGroupsMin'; fields: { 'gopByteSize': { name: 'gopByteSize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'gopDuration': { name: 'gopDuration'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'gopUploadTime': { name: 'gopUploadTime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'uploadDurationRatio': { name: 'uploadDurationRatio'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountLiveInputEventsAdaptiveGroupsOrderBy': { name: 'AccountLiveInputEventsAdaptiveGroupsOrderBy'; enumValues: 'avg_bitRateFifteenMinutes_ASC' | 'avg_bitRateFifteenMinutes_DESC' | 'avg_bitRateFiveMinutes_ASC' | 'avg_bitRateFiveMinutes_DESC' | 'avg_bitRateHour_ASC' | 'avg_bitRateHour_DESC' | 'avg_bitRateMinute_ASC' | 'avg_bitRateMinute_DESC' | 'avg_bitRate_ASC' | 'avg_bitRate_DESC' | 'avg_gopByteSize_ASC' | 'avg_gopByteSize_DESC' | 'avg_gopDuration_ASC' | 'avg_gopDuration_DESC' | 'avg_gopUploadTime_ASC' | 'avg_gopUploadTime_DESC' | 'avg_uploadDurationRatio_ASC' | 'avg_uploadDurationRatio_DESC' | 'count_ASC' | 'count_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'eventCode_ASC' | 'eventCode_DESC' | 'inputId_ASC' | 'inputId_DESC' | 'max_gopByteSize_ASC' | 'max_gopByteSize_DESC' | 'max_gopDuration_ASC' | 'max_gopDuration_DESC' | 'max_gopUploadTime_ASC' | 'max_gopUploadTime_DESC' | 'max_uploadDurationRatio_ASC' | 'max_uploadDurationRatio_DESC' | 'min_gopByteSize_ASC' | 'min_gopByteSize_DESC' | 'min_gopDuration_ASC' | 'min_gopDuration_DESC' | 'min_gopUploadTime_ASC' | 'min_gopUploadTime_DESC' | 'min_uploadDurationRatio_ASC' | 'min_uploadDurationRatio_DESC'; }; + 'AccountLiveInputEventsAdaptiveOrderBy': { name: 'AccountLiveInputEventsAdaptiveOrderBy'; enumValues: 'coloCode_ASC' | 'coloCode_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'eventCode_ASC' | 'eventCode_DESC' | 'eventDescription_ASC' | 'eventDescription_DESC' | 'inputId_ASC' | 'inputId_DESC'; }; + 'AccountLogExplorerIngestionAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountLogExplorerIngestionAdaptiveGroups'; fields: { 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountLogExplorerIngestionAdaptiveGroupsConfidence'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountLogExplorerIngestionAdaptiveGroupsDimensions'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountLogExplorerIngestionAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'AccountLogExplorerIngestionAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountLogExplorerIngestionAdaptiveGroupsConfidence'; fields: { 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountLogExplorerIngestionAdaptiveGroupsSumConfidence'; ofType: null; } }; }; }; + 'AccountLogExplorerIngestionAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountLogExplorerIngestionAdaptiveGroupsDimensions'; fields: { 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; }; }; + 'AccountLogExplorerIngestionAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountLogExplorerIngestionAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountLogExplorerIngestionAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountLogExplorerIngestionAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }]; }; + 'AccountLogExplorerIngestionAdaptiveGroupsOrderBy': { name: 'AccountLogExplorerIngestionAdaptiveGroupsOrderBy'; enumValues: 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'sum_billableBytes_ASC' | 'sum_billableBytes_DESC' | 'sum_totalBytes_ASC' | 'sum_totalBytes_DESC'; }; + 'AccountLogExplorerIngestionAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'AccountLogExplorerIngestionAdaptiveGroupsSum'; fields: { 'billableBytes': { name: 'billableBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'totalBytes': { name: 'totalBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountLogExplorerIngestionAdaptiveGroupsSumConfidence': { kind: 'OBJECT'; name: 'AccountLogExplorerIngestionAdaptiveGroupsSumConfidence'; fields: { 'billableBytes': { name: 'billableBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'totalBytes': { name: 'totalBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountLogpushHealthAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountLogpushHealthAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountLogpushHealthAdaptiveGroupsAvg'; ofType: null; } }; 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountLogpushHealthAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountLogpushHealthAdaptiveGroupsDimensions'; ofType: null; } }; 'max': { name: 'max'; type: { kind: 'OBJECT'; name: 'AccountLogpushHealthAdaptiveGroupsMax'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountLogpushHealthAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'AccountLogpushHealthAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'AccountLogpushHealthAdaptiveGroupsAvg'; fields: { 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'uploadDuration': { name: 'uploadDuration'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountLogpushHealthAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountLogpushHealthAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountLogpushHealthAdaptiveGroupsSumConfidence'; ofType: null; } }; }; }; + 'AccountLogpushHealthAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountLogpushHealthAdaptiveGroupsDimensions'; fields: { 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'destinationType': { name: 'destinationType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'error': { name: 'error'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'final': { name: 'final'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'jobId': { name: 'jobId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'status': { name: 'status'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'success': { name: 'success'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; }; }; + 'AccountLogpushHealthAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountLogpushHealthAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountLogpushHealthAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountLogpushHealthAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationType'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationType_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationType_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationType_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationType_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationType_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationType_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationType_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationType_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationType_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'error'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'error_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'error_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'error_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'error_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'error_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'error_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'error_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'error_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'error_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'final'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'final_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'final_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'final_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'final_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'final_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'final_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'final_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'jobId'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'jobId_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'jobId_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'jobId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'jobId_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'jobId_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'jobId_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'jobId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'status'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'status_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'status_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'status_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'status_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'status_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'status_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'status_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'success'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'success_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'success_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'success_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'success_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'success_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'success_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'success_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }]; }; + 'AccountLogpushHealthAdaptiveGroupsMax': { kind: 'OBJECT'; name: 'AccountLogpushHealthAdaptiveGroupsMax'; fields: { 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; }; }; + 'AccountLogpushHealthAdaptiveGroupsOrderBy': { name: 'AccountLogpushHealthAdaptiveGroupsOrderBy'; enumValues: 'accountId_ASC' | 'accountId_DESC' | 'avg_sampleInterval_ASC' | 'avg_sampleInterval_DESC' | 'avg_uploadDuration_ASC' | 'avg_uploadDuration_DESC' | 'count_ASC' | 'count_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'destinationType_ASC' | 'destinationType_DESC' | 'error_ASC' | 'error_DESC' | 'final_ASC' | 'final_DESC' | 'jobId_ASC' | 'jobId_DESC' | 'max_timestamp_ASC' | 'max_timestamp_DESC' | 'objectType_ASC' | 'objectType_DESC' | 'status_ASC' | 'status_DESC' | 'success_ASC' | 'success_DESC' | 'sum_bytesCompressed_ASC' | 'sum_bytesCompressed_DESC' | 'sum_bytes_ASC' | 'sum_bytes_DESC' | 'sum_records_ASC' | 'sum_records_DESC' | 'sum_uploads_ASC' | 'sum_uploads_DESC'; }; + 'AccountLogpushHealthAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'AccountLogpushHealthAdaptiveGroupsSum'; fields: { 'bytes': { name: 'bytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'bytesCompressed': { name: 'bytesCompressed'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'records': { name: 'records'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'uploads': { name: 'uploads'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountLogpushHealthAdaptiveGroupsSumConfidence': { kind: 'OBJECT'; name: 'AccountLogpushHealthAdaptiveGroupsSumConfidence'; fields: { 'bytes': { name: 'bytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bytesCompressed': { name: 'bytesCompressed'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'records': { name: 'records'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'uploads': { name: 'uploads'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountMagicEndpointHealthCheckAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountMagicEndpointHealthCheckAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountMagicEndpointHealthCheckAdaptiveGroupsAvg'; ofType: null; } }; 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountMagicEndpointHealthCheckAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountMagicEndpointHealthCheckAdaptiveGroupsDimensions'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountMagicEndpointHealthCheckAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'AccountMagicEndpointHealthCheckAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'AccountMagicEndpointHealthCheckAdaptiveGroupsAvg'; fields: { 'lossPercentage': { name: 'lossPercentage'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountMagicEndpointHealthCheckAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountMagicEndpointHealthCheckAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountMagicEndpointHealthCheckAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountMagicEndpointHealthCheckAdaptiveGroupsDimensions'; fields: { 'checkId': { name: 'checkId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'checkType': { name: 'checkType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHalfOfHour': { name: 'datetimeHalfOfHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'endpoint': { name: 'endpoint'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountMagicEndpointHealthCheckAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountMagicEndpointHealthCheckAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountMagicEndpointHealthCheckAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountMagicEndpointHealthCheckAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'checkId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'checkId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'checkId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'checkId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'checkId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'checkId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'checkId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'checkId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'checkId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'checkId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'checkType'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'checkType_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'checkType_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'checkType_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'checkType_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'checkType_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'checkType_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'checkType_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'checkType_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'checkType_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHalfOfHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHalfOfHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'endpoint'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'endpoint_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'endpoint_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'endpoint_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'endpoint_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'endpoint_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'endpoint_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'endpoint_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'endpoint_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'endpoint_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'name_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'name_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'name_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'name_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'name_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'name_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'name_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'name_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'name_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountMagicEndpointHealthCheckAdaptiveGroupsOrderBy': { name: 'AccountMagicEndpointHealthCheckAdaptiveGroupsOrderBy'; enumValues: 'avg_lossPercentage_ASC' | 'avg_lossPercentage_DESC' | 'avg_sampleInterval_ASC' | 'avg_sampleInterval_DESC' | 'checkId_ASC' | 'checkId_DESC' | 'checkType_ASC' | 'checkType_DESC' | 'count_ASC' | 'count_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHalfOfHour_ASC' | 'datetimeHalfOfHour_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'endpoint_ASC' | 'endpoint_DESC' | 'name_ASC' | 'name_DESC' | 'sum_failures_ASC' | 'sum_failures_DESC' | 'sum_total_ASC' | 'sum_total_DESC'; }; + 'AccountMagicEndpointHealthCheckAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'AccountMagicEndpointHealthCheckAdaptiveGroupsSum'; fields: { 'failures': { name: 'failures'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountMagicFirewallNetworkAnalyticsAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountMagicFirewallNetworkAnalyticsAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountMagicFirewallNetworkAnalyticsAdaptiveGroupsAvg'; ofType: null; } }; 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountMagicFirewallNetworkAnalyticsAdaptiveGroupsConfidence'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountMagicFirewallNetworkAnalyticsAdaptiveGroupsDimensions'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountMagicFirewallNetworkAnalyticsAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'AccountMagicFirewallNetworkAnalyticsAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'AccountMagicFirewallNetworkAnalyticsAdaptiveGroupsAvg'; fields: { 'bitRate': { name: 'bitRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'bitRateDay': { name: 'bitRateDay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'bitRateFifteenMinutes': { name: 'bitRateFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'bitRateFiveMinutes': { name: 'bitRateFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'bitRateHour': { name: 'bitRateHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'bitRateMinute': { name: 'bitRateMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'bitRateTenSeconds': { name: 'bitRateTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRate': { name: 'packetRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRateDay': { name: 'packetRateDay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRateFifteenMinutes': { name: 'packetRateFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRateFiveMinutes': { name: 'packetRateFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRateHour': { name: 'packetRateHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRateMinute': { name: 'packetRateMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRateTenSeconds': { name: 'packetRateTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountMagicFirewallNetworkAnalyticsAdaptiveGroupsAvgConfidence': { kind: 'OBJECT'; name: 'AccountMagicFirewallNetworkAnalyticsAdaptiveGroupsAvgConfidence'; fields: { 'bitRate': { name: 'bitRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateDay': { name: 'bitRateDay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateFifteenMinutes': { name: 'bitRateFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateFiveMinutes': { name: 'bitRateFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateHour': { name: 'bitRateHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateMinute': { name: 'bitRateMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateTenSeconds': { name: 'bitRateTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRate': { name: 'packetRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateDay': { name: 'packetRateDay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateFifteenMinutes': { name: 'packetRateFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateFiveMinutes': { name: 'packetRateFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateHour': { name: 'packetRateHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateMinute': { name: 'packetRateMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateTenSeconds': { name: 'packetRateTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountMagicFirewallNetworkAnalyticsAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountMagicFirewallNetworkAnalyticsAdaptiveGroupsConfidence'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountMagicFirewallNetworkAnalyticsAdaptiveGroupsAvgConfidence'; ofType: null; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountMagicFirewallNetworkAnalyticsAdaptiveGroupsSumConfidence'; ofType: null; } }; }; }; + 'AccountMagicFirewallNetworkAnalyticsAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountMagicFirewallNetworkAnalyticsAdaptiveGroupsDimensions'; fields: { 'applicationTag': { name: 'applicationTag'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'coloCity': { name: 'coloCity'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'coloCode': { name: 'coloCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'coloCountry': { name: 'coloCountry'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'coloGeohash': { name: 'coloGeohash'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'coloName': { name: 'coloName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeTenSeconds': { name: 'datetimeTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'destinationAsn': { name: 'destinationAsn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'destinationAsnName': { name: 'destinationAsnName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'destinationCountry': { name: 'destinationCountry'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'destinationDeviceTag': { name: 'destinationDeviceTag'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'destinationGeohash': { name: 'destinationGeohash'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'destinationPort': { name: 'destinationPort'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'direction': { name: 'direction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ethertype': { name: 'ethertype'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'greChecksum': { name: 'greChecksum'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'greEthertype': { name: 'greEthertype'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'greHeaderLength': { name: 'greHeaderLength'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'greKey': { name: 'greKey'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'greSequenceNumber': { name: 'greSequenceNumber'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'greVersion': { name: 'greVersion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'icmpChecksum': { name: 'icmpChecksum'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'icmpCode': { name: 'icmpCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'icmpType': { name: 'icmpType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipDestinationAddress': { name: 'ipDestinationAddress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipDestinationSubnet': { name: 'ipDestinationSubnet'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipFragmentOffset': { name: 'ipFragmentOffset'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'ipHeaderLength': { name: 'ipHeaderLength'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'ipMoreFragments': { name: 'ipMoreFragments'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipProtocol': { name: 'ipProtocol'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipProtocolName': { name: 'ipProtocolName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipSourceAddress': { name: 'ipSourceAddress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipSourceSubnet': { name: 'ipSourceSubnet'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipTotalLength': { name: 'ipTotalLength'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'ipTotalLengthBuckets': { name: 'ipTotalLengthBuckets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'ipTtl': { name: 'ipTtl'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipTtlBuckets': { name: 'ipTtlBuckets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipv4Checksum': { name: 'ipv4Checksum'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'ipv4DontFragment': { name: 'ipv4DontFragment'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipv4Dscp': { name: 'ipv4Dscp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipv4Ecn': { name: 'ipv4Ecn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipv4Identification': { name: 'ipv4Identification'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'ipv4Options': { name: 'ipv4Options'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipv6Dscp': { name: 'ipv6Dscp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipv6Ecn': { name: 'ipv6Ecn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipv6ExtensionHeaders': { name: 'ipv6ExtensionHeaders'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipv6FlowLabel': { name: 'ipv6FlowLabel'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'ipv6Identification': { name: 'ipv6Identification'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'leaseTag': { name: 'leaseTag'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'outcome': { name: 'outcome'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'prefixTag': { name: 'prefixTag'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ruleId': { name: 'ruleId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'rulesetId': { name: 'rulesetId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'sourceAsn': { name: 'sourceAsn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'sourceAsnName': { name: 'sourceAsnName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sourceCountry': { name: 'sourceCountry'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sourceDeviceTag': { name: 'sourceDeviceTag'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sourceGeohash': { name: 'sourceGeohash'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sourcePort': { name: 'sourcePort'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'tcpAcknowledgementNumber': { name: 'tcpAcknowledgementNumber'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'tcpChecksum': { name: 'tcpChecksum'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'tcpDataOffset': { name: 'tcpDataOffset'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'tcpFlags': { name: 'tcpFlags'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'tcpFlagsString': { name: 'tcpFlagsString'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'tcpMss': { name: 'tcpMss'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'tcpOptions': { name: 'tcpOptions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'tcpSackBlocks': { name: 'tcpSackBlocks'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'tcpSackPermitted': { name: 'tcpSackPermitted'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'tcpSequenceNumber': { name: 'tcpSequenceNumber'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'tcpTimestampEcr': { name: 'tcpTimestampEcr'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'tcpTimestampValue': { name: 'tcpTimestampValue'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'tcpUrgentPointer': { name: 'tcpUrgentPointer'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'tcpWindowScale': { name: 'tcpWindowScale'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'tcpWindowSize': { name: 'tcpWindowSize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'udpChecksum': { name: 'udpChecksum'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'udpPayloadLength': { name: 'udpPayloadLength'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'verdict': { name: 'verdict'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountMagicFirewallNetworkAnalyticsAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountMagicFirewallNetworkAnalyticsAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountMagicFirewallNetworkAnalyticsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountMagicFirewallNetworkAnalyticsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'applicationTag'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationTag_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationTag_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationTag_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'applicationTag_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationTag_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationTag_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationTag_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationTag_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'applicationTag_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCity_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCity_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCode_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCode_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCountry_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCountry_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloGeohash_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloGeohash_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeTenSeconds'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeTenSeconds_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationAsn'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationAsnName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationAsnName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsn_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'destinationAsn_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'destinationAsn_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationAsn_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'destinationAsn_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'destinationAsn_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'destinationAsn_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationCountry'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationCountry_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationCountry_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationDeviceTag'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationDeviceTag_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationDeviceTag_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationDeviceTag_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationDeviceTag_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationDeviceTag_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationDeviceTag_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationDeviceTag_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationDeviceTag_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationDeviceTag_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationGeohash_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationGeohash_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationPort'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationPort_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'direction'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'direction_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'direction_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ethertype'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ethertype_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ethertype_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ethertype_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ethertype_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ethertype_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ethertype_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ethertype_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'greChecksum'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greChecksum_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greChecksum_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greChecksum_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'greChecksum_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greChecksum_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greChecksum_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greChecksum_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'greEthertype'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greEthertype_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greEthertype_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greEthertype_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'greEthertype_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greEthertype_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greEthertype_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greEthertype_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'greHeaderLength'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greHeaderLength_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greHeaderLength_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greHeaderLength_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'greHeaderLength_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greHeaderLength_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greHeaderLength_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greHeaderLength_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'greKey'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greKey_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greKey_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greKey_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'greKey_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greKey_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greKey_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greKey_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'greSequenceNumber'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greSequenceNumber_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greSequenceNumber_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greSequenceNumber_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'greSequenceNumber_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greSequenceNumber_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greSequenceNumber_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greSequenceNumber_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'greVersion'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'greVersion_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'greVersion_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'greVersion_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'greVersion_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'greVersion_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'greVersion_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'greVersion_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'icmpChecksum'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'icmpChecksum_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'icmpChecksum_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'icmpChecksum_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'icmpChecksum_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'icmpChecksum_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'icmpChecksum_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'icmpChecksum_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'icmpCode'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpCode_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpCode_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpCode_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'icmpCode_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpCode_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpCode_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpCode_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'icmpType'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpType_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpType_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpType_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'icmpType_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpType_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpType_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpType_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipDestinationAddress_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipDestinationAddress_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipDestinationSubnet_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipDestinationSubnet_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipFragmentOffset'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipFragmentOffset_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipFragmentOffset_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipFragmentOffset_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipFragmentOffset_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipFragmentOffset_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipFragmentOffset_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipFragmentOffset_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipHeaderLength'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipHeaderLength_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipHeaderLength_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipHeaderLength_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipHeaderLength_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipHeaderLength_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipHeaderLength_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipHeaderLength_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipMoreFragments'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipMoreFragments_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipMoreFragments_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipMoreFragments_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipMoreFragments_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipMoreFragments_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipMoreFragments_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipMoreFragments_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipProtocolName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipProtocolName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipSourceAddress_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipSourceAddress_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipSourceSubnet_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipSourceSubnet_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLength'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLengthBuckets'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLengthBuckets_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLengthBuckets_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLengthBuckets_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipTotalLengthBuckets_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLengthBuckets_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLengthBuckets_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLengthBuckets_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipTotalLength_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLength_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLength_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipTotalLength_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLength_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLength_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLength_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipTtl'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipTtl_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtl_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtl_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipTtl_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtl_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtl_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtl_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv4Checksum'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Checksum_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Checksum_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Checksum_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv4Checksum_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Checksum_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Checksum_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Checksum_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv4DontFragment'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4DontFragment_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4DontFragment_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4DontFragment_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv4DontFragment_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4DontFragment_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4DontFragment_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4DontFragment_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv4Identification'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Identification_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Identification_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Identification_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv4Identification_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Identification_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Identification_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Identification_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv4Options'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4Options_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4Options_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4Options_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv4Options_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4Options_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4Options_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4Options_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4Options_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv4Options_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6FlowLabel'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6FlowLabel_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6FlowLabel_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6FlowLabel_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv6FlowLabel_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6FlowLabel_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6FlowLabel_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6FlowLabel_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv6Identification'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6Identification_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6Identification_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6Identification_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv6Identification_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6Identification_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6Identification_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6Identification_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'leaseTag'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leaseTag_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leaseTag_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leaseTag_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'leaseTag_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leaseTag_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leaseTag_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leaseTag_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leaseTag_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'leaseTag_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'outcome_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'outcome_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'prefixTag_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'prefixTag_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ruleId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ruleId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'rulesetId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'rulesetId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sampleInterval_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceAsn'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceAsnName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceAsnName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsn_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sourceAsn_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sourceAsn_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceAsn_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sourceAsn_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sourceAsn_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sourceAsn_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceCountry'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceCountry_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceCountry_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceDeviceTag'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceDeviceTag_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceDeviceTag_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceDeviceTag_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceDeviceTag_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceDeviceTag_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceDeviceTag_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceDeviceTag_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceDeviceTag_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceDeviceTag_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceGeohash_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceGeohash_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourcePort'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourcePort_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpChecksum'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpChecksum_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpChecksum_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpChecksum_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpChecksum_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpChecksum_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpChecksum_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpChecksum_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpDataOffset'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpDataOffset_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpDataOffset_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpDataOffset_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpDataOffset_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpDataOffset_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpDataOffset_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpDataOffset_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpFlags'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpFlagsString_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpFlagsString_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'tcpMss'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpMss_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpMss_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpMss_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpMss_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpMss_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpMss_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpMss_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpOptions'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpOptions_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpOptions_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpOptions_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpOptions_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpOptions_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpOptions_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpOptions_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpOptions_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpOptions_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpSackBlocks_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpSackBlocks_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'tcpSequenceNumber'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpSequenceNumber_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpSequenceNumber_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpSequenceNumber_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpSequenceNumber_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpSequenceNumber_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpSequenceNumber_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpSequenceNumber_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpTimestampEcr'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampEcr_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampEcr_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampEcr_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpTimestampEcr_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampEcr_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampEcr_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampEcr_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpTimestampValue'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampValue_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampValue_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampValue_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpTimestampValue_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampValue_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampValue_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampValue_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpUrgentPointer'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpUrgentPointer_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpUrgentPointer_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpUrgentPointer_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpUrgentPointer_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpUrgentPointer_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpUrgentPointer_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpUrgentPointer_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpWindowScale'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowScale_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowScale_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowScale_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpWindowScale_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowScale_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowScale_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowScale_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpWindowSize'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowSize_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowSize_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowSize_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpWindowSize_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowSize_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowSize_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowSize_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'udpChecksum'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpChecksum_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpChecksum_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpChecksum_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'udpChecksum_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpChecksum_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpChecksum_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpChecksum_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'udpPayloadLength'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpPayloadLength_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpPayloadLength_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpPayloadLength_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'udpPayloadLength_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpPayloadLength_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpPayloadLength_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpPayloadLength_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'verdict'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verdict_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verdict_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verdict_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'verdict_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verdict_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verdict_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verdict_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verdict_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'verdict_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountMagicFirewallNetworkAnalyticsAdaptiveGroupsOrderBy': { name: 'AccountMagicFirewallNetworkAnalyticsAdaptiveGroupsOrderBy'; enumValues: 'applicationTag_ASC' | 'applicationTag_DESC' | 'avg_bitRateDay_ASC' | 'avg_bitRateDay_DESC' | 'avg_bitRateFifteenMinutes_ASC' | 'avg_bitRateFifteenMinutes_DESC' | 'avg_bitRateFiveMinutes_ASC' | 'avg_bitRateFiveMinutes_DESC' | 'avg_bitRateHour_ASC' | 'avg_bitRateHour_DESC' | 'avg_bitRateMinute_ASC' | 'avg_bitRateMinute_DESC' | 'avg_bitRateTenSeconds_ASC' | 'avg_bitRateTenSeconds_DESC' | 'avg_bitRate_ASC' | 'avg_bitRate_DESC' | 'avg_packetRateDay_ASC' | 'avg_packetRateDay_DESC' | 'avg_packetRateFifteenMinutes_ASC' | 'avg_packetRateFifteenMinutes_DESC' | 'avg_packetRateFiveMinutes_ASC' | 'avg_packetRateFiveMinutes_DESC' | 'avg_packetRateHour_ASC' | 'avg_packetRateHour_DESC' | 'avg_packetRateMinute_ASC' | 'avg_packetRateMinute_DESC' | 'avg_packetRateTenSeconds_ASC' | 'avg_packetRateTenSeconds_DESC' | 'avg_packetRate_ASC' | 'avg_packetRate_DESC' | 'coloCity_ASC' | 'coloCity_DESC' | 'coloCode_ASC' | 'coloCode_DESC' | 'coloCountry_ASC' | 'coloCountry_DESC' | 'coloGeohash_ASC' | 'coloGeohash_DESC' | 'coloName_ASC' | 'coloName_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetimeTenSeconds_ASC' | 'datetimeTenSeconds_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'destinationAsnName_ASC' | 'destinationAsnName_DESC' | 'destinationAsn_ASC' | 'destinationAsn_DESC' | 'destinationCountry_ASC' | 'destinationCountry_DESC' | 'destinationDeviceTag_ASC' | 'destinationDeviceTag_DESC' | 'destinationGeohash_ASC' | 'destinationGeohash_DESC' | 'destinationPort_ASC' | 'destinationPort_DESC' | 'direction_ASC' | 'direction_DESC' | 'ethertype_ASC' | 'ethertype_DESC' | 'greChecksum_ASC' | 'greChecksum_DESC' | 'greEthertype_ASC' | 'greEthertype_DESC' | 'greHeaderLength_ASC' | 'greHeaderLength_DESC' | 'greKey_ASC' | 'greKey_DESC' | 'greSequenceNumber_ASC' | 'greSequenceNumber_DESC' | 'greVersion_ASC' | 'greVersion_DESC' | 'icmpChecksum_ASC' | 'icmpChecksum_DESC' | 'icmpCode_ASC' | 'icmpCode_DESC' | 'icmpType_ASC' | 'icmpType_DESC' | 'ipDestinationAddress_ASC' | 'ipDestinationAddress_DESC' | 'ipDestinationSubnet_ASC' | 'ipDestinationSubnet_DESC' | 'ipFragmentOffset_ASC' | 'ipFragmentOffset_DESC' | 'ipHeaderLength_ASC' | 'ipHeaderLength_DESC' | 'ipMoreFragments_ASC' | 'ipMoreFragments_DESC' | 'ipProtocolName_ASC' | 'ipProtocolName_DESC' | 'ipProtocol_ASC' | 'ipProtocol_DESC' | 'ipSourceAddress_ASC' | 'ipSourceAddress_DESC' | 'ipSourceSubnet_ASC' | 'ipSourceSubnet_DESC' | 'ipTotalLengthBuckets_ASC' | 'ipTotalLengthBuckets_DESC' | 'ipTotalLength_ASC' | 'ipTotalLength_DESC' | 'ipTtlBuckets_ASC' | 'ipTtlBuckets_DESC' | 'ipTtl_ASC' | 'ipTtl_DESC' | 'ipv4Checksum_ASC' | 'ipv4Checksum_DESC' | 'ipv4DontFragment_ASC' | 'ipv4DontFragment_DESC' | 'ipv4Dscp_ASC' | 'ipv4Dscp_DESC' | 'ipv4Ecn_ASC' | 'ipv4Ecn_DESC' | 'ipv4Identification_ASC' | 'ipv4Identification_DESC' | 'ipv4Options_ASC' | 'ipv4Options_DESC' | 'ipv6Dscp_ASC' | 'ipv6Dscp_DESC' | 'ipv6Ecn_ASC' | 'ipv6Ecn_DESC' | 'ipv6ExtensionHeaders_ASC' | 'ipv6ExtensionHeaders_DESC' | 'ipv6FlowLabel_ASC' | 'ipv6FlowLabel_DESC' | 'ipv6Identification_ASC' | 'ipv6Identification_DESC' | 'leaseTag_ASC' | 'leaseTag_DESC' | 'outcome_ASC' | 'outcome_DESC' | 'prefixTag_ASC' | 'prefixTag_DESC' | 'ruleId_ASC' | 'ruleId_DESC' | 'rulesetId_ASC' | 'rulesetId_DESC' | 'sampleInterval_ASC' | 'sampleInterval_DESC' | 'sourceAsnName_ASC' | 'sourceAsnName_DESC' | 'sourceAsn_ASC' | 'sourceAsn_DESC' | 'sourceCountry_ASC' | 'sourceCountry_DESC' | 'sourceDeviceTag_ASC' | 'sourceDeviceTag_DESC' | 'sourceGeohash_ASC' | 'sourceGeohash_DESC' | 'sourcePort_ASC' | 'sourcePort_DESC' | 'sum_bits_ASC' | 'sum_bits_DESC' | 'sum_packets_ASC' | 'sum_packets_DESC' | 'system_ASC' | 'system_DESC' | 'tcpAcknowledgementNumber_ASC' | 'tcpAcknowledgementNumber_DESC' | 'tcpChecksum_ASC' | 'tcpChecksum_DESC' | 'tcpDataOffset_ASC' | 'tcpDataOffset_DESC' | 'tcpFlagsString_ASC' | 'tcpFlagsString_DESC' | 'tcpFlags_ASC' | 'tcpFlags_DESC' | 'tcpMss_ASC' | 'tcpMss_DESC' | 'tcpOptions_ASC' | 'tcpOptions_DESC' | 'tcpSackBlocks_ASC' | 'tcpSackBlocks_DESC' | 'tcpSackPermitted_ASC' | 'tcpSackPermitted_DESC' | 'tcpSequenceNumber_ASC' | 'tcpSequenceNumber_DESC' | 'tcpTimestampEcr_ASC' | 'tcpTimestampEcr_DESC' | 'tcpTimestampValue_ASC' | 'tcpTimestampValue_DESC' | 'tcpUrgentPointer_ASC' | 'tcpUrgentPointer_DESC' | 'tcpWindowScale_ASC' | 'tcpWindowScale_DESC' | 'tcpWindowSize_ASC' | 'tcpWindowSize_DESC' | 'udpChecksum_ASC' | 'udpChecksum_DESC' | 'udpPayloadLength_ASC' | 'udpPayloadLength_DESC' | 'verdict_ASC' | 'verdict_DESC'; }; + 'AccountMagicFirewallNetworkAnalyticsAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'AccountMagicFirewallNetworkAnalyticsAdaptiveGroupsSum'; fields: { 'bits': { name: 'bits'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packets': { name: 'packets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountMagicFirewallNetworkAnalyticsAdaptiveGroupsSumConfidence': { kind: 'OBJECT'; name: 'AccountMagicFirewallNetworkAnalyticsAdaptiveGroupsSumConfidence'; fields: { 'bits': { name: 'bits'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packets': { name: 'packets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountMagicFirewallRateLimitNetworkAnalyticsAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountMagicFirewallRateLimitNetworkAnalyticsAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountMagicFirewallRateLimitNetworkAnalyticsAdaptiveGroupsAvg'; ofType: null; } }; 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountMagicFirewallRateLimitNetworkAnalyticsAdaptiveGroupsConfidence'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountMagicFirewallRateLimitNetworkAnalyticsAdaptiveGroupsDimensions'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountMagicFirewallRateLimitNetworkAnalyticsAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'AccountMagicFirewallRateLimitNetworkAnalyticsAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'AccountMagicFirewallRateLimitNetworkAnalyticsAdaptiveGroupsAvg'; fields: { 'bitRate': { name: 'bitRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'bitRateDay': { name: 'bitRateDay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'bitRateFifteenMinutes': { name: 'bitRateFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'bitRateFiveMinutes': { name: 'bitRateFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'bitRateHour': { name: 'bitRateHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'bitRateMinute': { name: 'bitRateMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'bitRateTenSeconds': { name: 'bitRateTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRate': { name: 'packetRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRateDay': { name: 'packetRateDay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRateFifteenMinutes': { name: 'packetRateFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRateFiveMinutes': { name: 'packetRateFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRateHour': { name: 'packetRateHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRateMinute': { name: 'packetRateMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRateTenSeconds': { name: 'packetRateTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountMagicFirewallRateLimitNetworkAnalyticsAdaptiveGroupsAvgConfidence': { kind: 'OBJECT'; name: 'AccountMagicFirewallRateLimitNetworkAnalyticsAdaptiveGroupsAvgConfidence'; fields: { 'bitRate': { name: 'bitRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateDay': { name: 'bitRateDay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateFifteenMinutes': { name: 'bitRateFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateFiveMinutes': { name: 'bitRateFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateHour': { name: 'bitRateHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateMinute': { name: 'bitRateMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateTenSeconds': { name: 'bitRateTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRate': { name: 'packetRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateDay': { name: 'packetRateDay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateFifteenMinutes': { name: 'packetRateFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateFiveMinutes': { name: 'packetRateFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateHour': { name: 'packetRateHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateMinute': { name: 'packetRateMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateTenSeconds': { name: 'packetRateTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountMagicFirewallRateLimitNetworkAnalyticsAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountMagicFirewallRateLimitNetworkAnalyticsAdaptiveGroupsConfidence'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountMagicFirewallRateLimitNetworkAnalyticsAdaptiveGroupsAvgConfidence'; ofType: null; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountMagicFirewallRateLimitNetworkAnalyticsAdaptiveGroupsSumConfidence'; ofType: null; } }; }; }; + 'AccountMagicFirewallRateLimitNetworkAnalyticsAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountMagicFirewallRateLimitNetworkAnalyticsAdaptiveGroupsDimensions'; fields: { 'applicationTag': { name: 'applicationTag'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'coloCity': { name: 'coloCity'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'coloCode': { name: 'coloCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'coloCountry': { name: 'coloCountry'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'coloGeohash': { name: 'coloGeohash'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'coloName': { name: 'coloName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeTenSeconds': { name: 'datetimeTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'destinationAsn': { name: 'destinationAsn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'destinationAsnName': { name: 'destinationAsnName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'destinationCountry': { name: 'destinationCountry'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'destinationDeviceTag': { name: 'destinationDeviceTag'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'destinationGeohash': { name: 'destinationGeohash'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'destinationPort': { name: 'destinationPort'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'direction': { name: 'direction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ethertype': { name: 'ethertype'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'greChecksum': { name: 'greChecksum'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'greEthertype': { name: 'greEthertype'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'greHeaderLength': { name: 'greHeaderLength'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'greKey': { name: 'greKey'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'greSequenceNumber': { name: 'greSequenceNumber'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'greVersion': { name: 'greVersion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'icmpChecksum': { name: 'icmpChecksum'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'icmpCode': { name: 'icmpCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'icmpType': { name: 'icmpType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipDestinationAddress': { name: 'ipDestinationAddress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipDestinationSubnet': { name: 'ipDestinationSubnet'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipFragmentOffset': { name: 'ipFragmentOffset'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'ipHeaderLength': { name: 'ipHeaderLength'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'ipMoreFragments': { name: 'ipMoreFragments'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipProtocol': { name: 'ipProtocol'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipProtocolName': { name: 'ipProtocolName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipSourceAddress': { name: 'ipSourceAddress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipSourceSubnet': { name: 'ipSourceSubnet'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipTotalLength': { name: 'ipTotalLength'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'ipTotalLengthBuckets': { name: 'ipTotalLengthBuckets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'ipTtl': { name: 'ipTtl'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipTtlBuckets': { name: 'ipTtlBuckets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipv4Checksum': { name: 'ipv4Checksum'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'ipv4DontFragment': { name: 'ipv4DontFragment'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipv4Dscp': { name: 'ipv4Dscp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipv4Ecn': { name: 'ipv4Ecn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipv4Identification': { name: 'ipv4Identification'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'ipv4Options': { name: 'ipv4Options'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipv6Dscp': { name: 'ipv6Dscp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipv6Ecn': { name: 'ipv6Ecn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipv6ExtensionHeaders': { name: 'ipv6ExtensionHeaders'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipv6FlowLabel': { name: 'ipv6FlowLabel'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'ipv6Identification': { name: 'ipv6Identification'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'leaseTag': { name: 'leaseTag'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'outcome': { name: 'outcome'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'prefixTag': { name: 'prefixTag'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ruleId': { name: 'ruleId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'rulesetId': { name: 'rulesetId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'sourceAsn': { name: 'sourceAsn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'sourceAsnName': { name: 'sourceAsnName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sourceCountry': { name: 'sourceCountry'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sourceDeviceTag': { name: 'sourceDeviceTag'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sourceGeohash': { name: 'sourceGeohash'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sourcePort': { name: 'sourcePort'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'tcpAcknowledgementNumber': { name: 'tcpAcknowledgementNumber'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'tcpChecksum': { name: 'tcpChecksum'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'tcpDataOffset': { name: 'tcpDataOffset'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'tcpFlags': { name: 'tcpFlags'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'tcpFlagsString': { name: 'tcpFlagsString'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'tcpMss': { name: 'tcpMss'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'tcpOptions': { name: 'tcpOptions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'tcpSackBlocks': { name: 'tcpSackBlocks'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'tcpSackPermitted': { name: 'tcpSackPermitted'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'tcpSequenceNumber': { name: 'tcpSequenceNumber'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'tcpTimestampEcr': { name: 'tcpTimestampEcr'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'tcpTimestampValue': { name: 'tcpTimestampValue'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'tcpUrgentPointer': { name: 'tcpUrgentPointer'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'tcpWindowScale': { name: 'tcpWindowScale'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'tcpWindowSize': { name: 'tcpWindowSize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'udpChecksum': { name: 'udpChecksum'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'udpPayloadLength': { name: 'udpPayloadLength'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'verdict': { name: 'verdict'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountMagicFirewallRateLimitNetworkAnalyticsAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountMagicFirewallRateLimitNetworkAnalyticsAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountMagicFirewallRateLimitNetworkAnalyticsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountMagicFirewallRateLimitNetworkAnalyticsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'applicationTag'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationTag_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationTag_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationTag_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'applicationTag_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationTag_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationTag_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationTag_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationTag_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'applicationTag_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCity_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCity_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCode_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCode_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCountry_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCountry_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloGeohash_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloGeohash_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeTenSeconds'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeTenSeconds_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationAsn'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationAsnName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationAsnName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsn_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'destinationAsn_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'destinationAsn_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationAsn_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'destinationAsn_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'destinationAsn_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'destinationAsn_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationCountry'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationCountry_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationCountry_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationDeviceTag'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationDeviceTag_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationDeviceTag_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationDeviceTag_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationDeviceTag_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationDeviceTag_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationDeviceTag_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationDeviceTag_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationDeviceTag_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationDeviceTag_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationGeohash_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationGeohash_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationPort'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationPort_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'direction'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'direction_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'direction_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ethertype'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ethertype_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ethertype_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ethertype_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ethertype_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ethertype_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ethertype_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ethertype_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'greChecksum'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greChecksum_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greChecksum_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greChecksum_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'greChecksum_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greChecksum_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greChecksum_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greChecksum_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'greEthertype'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greEthertype_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greEthertype_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greEthertype_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'greEthertype_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greEthertype_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greEthertype_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greEthertype_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'greHeaderLength'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greHeaderLength_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greHeaderLength_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greHeaderLength_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'greHeaderLength_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greHeaderLength_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greHeaderLength_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greHeaderLength_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'greKey'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greKey_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greKey_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greKey_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'greKey_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greKey_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greKey_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greKey_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'greSequenceNumber'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greSequenceNumber_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greSequenceNumber_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greSequenceNumber_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'greSequenceNumber_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greSequenceNumber_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greSequenceNumber_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greSequenceNumber_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'greVersion'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'greVersion_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'greVersion_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'greVersion_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'greVersion_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'greVersion_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'greVersion_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'greVersion_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'icmpChecksum'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'icmpChecksum_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'icmpChecksum_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'icmpChecksum_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'icmpChecksum_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'icmpChecksum_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'icmpChecksum_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'icmpChecksum_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'icmpCode'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpCode_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpCode_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpCode_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'icmpCode_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpCode_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpCode_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpCode_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'icmpType'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpType_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpType_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpType_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'icmpType_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpType_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpType_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpType_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipDestinationAddress_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipDestinationAddress_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipDestinationSubnet_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipDestinationSubnet_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipFragmentOffset'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipFragmentOffset_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipFragmentOffset_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipFragmentOffset_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipFragmentOffset_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipFragmentOffset_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipFragmentOffset_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipFragmentOffset_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipHeaderLength'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipHeaderLength_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipHeaderLength_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipHeaderLength_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipHeaderLength_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipHeaderLength_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipHeaderLength_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipHeaderLength_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipMoreFragments'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipMoreFragments_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipMoreFragments_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipMoreFragments_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipMoreFragments_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipMoreFragments_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipMoreFragments_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipMoreFragments_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipProtocolName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipProtocolName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipSourceAddress_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipSourceAddress_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipSourceSubnet_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipSourceSubnet_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLength'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLengthBuckets'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLengthBuckets_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLengthBuckets_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLengthBuckets_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipTotalLengthBuckets_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLengthBuckets_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLengthBuckets_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLengthBuckets_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipTotalLength_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLength_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLength_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipTotalLength_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLength_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLength_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLength_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipTtl'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipTtl_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtl_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtl_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipTtl_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtl_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtl_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtl_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv4Checksum'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Checksum_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Checksum_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Checksum_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv4Checksum_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Checksum_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Checksum_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Checksum_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv4DontFragment'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4DontFragment_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4DontFragment_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4DontFragment_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv4DontFragment_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4DontFragment_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4DontFragment_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4DontFragment_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv4Identification'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Identification_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Identification_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Identification_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv4Identification_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Identification_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Identification_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Identification_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv4Options'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4Options_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4Options_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4Options_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv4Options_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4Options_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4Options_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4Options_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4Options_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv4Options_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6FlowLabel'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6FlowLabel_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6FlowLabel_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6FlowLabel_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv6FlowLabel_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6FlowLabel_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6FlowLabel_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6FlowLabel_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv6Identification'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6Identification_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6Identification_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6Identification_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv6Identification_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6Identification_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6Identification_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6Identification_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'leaseTag'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leaseTag_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leaseTag_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leaseTag_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'leaseTag_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leaseTag_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leaseTag_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leaseTag_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leaseTag_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'leaseTag_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'outcome_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'outcome_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'prefixTag_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'prefixTag_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ruleId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ruleId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'rulesetId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'rulesetId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sampleInterval_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceAsn'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceAsnName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceAsnName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsn_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sourceAsn_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sourceAsn_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceAsn_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sourceAsn_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sourceAsn_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sourceAsn_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceCountry'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceCountry_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceCountry_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceDeviceTag'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceDeviceTag_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceDeviceTag_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceDeviceTag_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceDeviceTag_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceDeviceTag_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceDeviceTag_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceDeviceTag_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceDeviceTag_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceDeviceTag_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceGeohash_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceGeohash_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourcePort'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourcePort_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpChecksum'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpChecksum_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpChecksum_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpChecksum_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpChecksum_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpChecksum_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpChecksum_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpChecksum_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpDataOffset'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpDataOffset_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpDataOffset_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpDataOffset_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpDataOffset_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpDataOffset_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpDataOffset_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpDataOffset_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpFlags'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpFlagsString_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpFlagsString_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'tcpMss'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpMss_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpMss_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpMss_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpMss_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpMss_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpMss_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpMss_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpOptions'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpOptions_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpOptions_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpOptions_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpOptions_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpOptions_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpOptions_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpOptions_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpOptions_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpOptions_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpSackBlocks_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpSackBlocks_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'tcpSequenceNumber'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpSequenceNumber_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpSequenceNumber_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpSequenceNumber_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpSequenceNumber_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpSequenceNumber_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpSequenceNumber_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpSequenceNumber_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpTimestampEcr'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampEcr_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampEcr_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampEcr_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpTimestampEcr_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampEcr_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampEcr_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampEcr_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpTimestampValue'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampValue_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampValue_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampValue_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpTimestampValue_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampValue_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampValue_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampValue_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpUrgentPointer'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpUrgentPointer_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpUrgentPointer_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpUrgentPointer_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpUrgentPointer_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpUrgentPointer_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpUrgentPointer_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpUrgentPointer_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpWindowScale'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowScale_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowScale_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowScale_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpWindowScale_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowScale_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowScale_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowScale_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpWindowSize'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowSize_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowSize_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowSize_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpWindowSize_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowSize_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowSize_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowSize_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'udpChecksum'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpChecksum_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpChecksum_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpChecksum_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'udpChecksum_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpChecksum_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpChecksum_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpChecksum_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'udpPayloadLength'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpPayloadLength_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpPayloadLength_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpPayloadLength_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'udpPayloadLength_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpPayloadLength_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpPayloadLength_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpPayloadLength_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'verdict'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verdict_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verdict_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verdict_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'verdict_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verdict_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verdict_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verdict_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verdict_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'verdict_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountMagicFirewallRateLimitNetworkAnalyticsAdaptiveGroupsOrderBy': { name: 'AccountMagicFirewallRateLimitNetworkAnalyticsAdaptiveGroupsOrderBy'; enumValues: 'applicationTag_ASC' | 'applicationTag_DESC' | 'avg_bitRateDay_ASC' | 'avg_bitRateDay_DESC' | 'avg_bitRateFifteenMinutes_ASC' | 'avg_bitRateFifteenMinutes_DESC' | 'avg_bitRateFiveMinutes_ASC' | 'avg_bitRateFiveMinutes_DESC' | 'avg_bitRateHour_ASC' | 'avg_bitRateHour_DESC' | 'avg_bitRateMinute_ASC' | 'avg_bitRateMinute_DESC' | 'avg_bitRateTenSeconds_ASC' | 'avg_bitRateTenSeconds_DESC' | 'avg_bitRate_ASC' | 'avg_bitRate_DESC' | 'avg_packetRateDay_ASC' | 'avg_packetRateDay_DESC' | 'avg_packetRateFifteenMinutes_ASC' | 'avg_packetRateFifteenMinutes_DESC' | 'avg_packetRateFiveMinutes_ASC' | 'avg_packetRateFiveMinutes_DESC' | 'avg_packetRateHour_ASC' | 'avg_packetRateHour_DESC' | 'avg_packetRateMinute_ASC' | 'avg_packetRateMinute_DESC' | 'avg_packetRateTenSeconds_ASC' | 'avg_packetRateTenSeconds_DESC' | 'avg_packetRate_ASC' | 'avg_packetRate_DESC' | 'coloCity_ASC' | 'coloCity_DESC' | 'coloCode_ASC' | 'coloCode_DESC' | 'coloCountry_ASC' | 'coloCountry_DESC' | 'coloGeohash_ASC' | 'coloGeohash_DESC' | 'coloName_ASC' | 'coloName_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetimeTenSeconds_ASC' | 'datetimeTenSeconds_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'destinationAsnName_ASC' | 'destinationAsnName_DESC' | 'destinationAsn_ASC' | 'destinationAsn_DESC' | 'destinationCountry_ASC' | 'destinationCountry_DESC' | 'destinationDeviceTag_ASC' | 'destinationDeviceTag_DESC' | 'destinationGeohash_ASC' | 'destinationGeohash_DESC' | 'destinationPort_ASC' | 'destinationPort_DESC' | 'direction_ASC' | 'direction_DESC' | 'ethertype_ASC' | 'ethertype_DESC' | 'greChecksum_ASC' | 'greChecksum_DESC' | 'greEthertype_ASC' | 'greEthertype_DESC' | 'greHeaderLength_ASC' | 'greHeaderLength_DESC' | 'greKey_ASC' | 'greKey_DESC' | 'greSequenceNumber_ASC' | 'greSequenceNumber_DESC' | 'greVersion_ASC' | 'greVersion_DESC' | 'icmpChecksum_ASC' | 'icmpChecksum_DESC' | 'icmpCode_ASC' | 'icmpCode_DESC' | 'icmpType_ASC' | 'icmpType_DESC' | 'ipDestinationAddress_ASC' | 'ipDestinationAddress_DESC' | 'ipDestinationSubnet_ASC' | 'ipDestinationSubnet_DESC' | 'ipFragmentOffset_ASC' | 'ipFragmentOffset_DESC' | 'ipHeaderLength_ASC' | 'ipHeaderLength_DESC' | 'ipMoreFragments_ASC' | 'ipMoreFragments_DESC' | 'ipProtocolName_ASC' | 'ipProtocolName_DESC' | 'ipProtocol_ASC' | 'ipProtocol_DESC' | 'ipSourceAddress_ASC' | 'ipSourceAddress_DESC' | 'ipSourceSubnet_ASC' | 'ipSourceSubnet_DESC' | 'ipTotalLengthBuckets_ASC' | 'ipTotalLengthBuckets_DESC' | 'ipTotalLength_ASC' | 'ipTotalLength_DESC' | 'ipTtlBuckets_ASC' | 'ipTtlBuckets_DESC' | 'ipTtl_ASC' | 'ipTtl_DESC' | 'ipv4Checksum_ASC' | 'ipv4Checksum_DESC' | 'ipv4DontFragment_ASC' | 'ipv4DontFragment_DESC' | 'ipv4Dscp_ASC' | 'ipv4Dscp_DESC' | 'ipv4Ecn_ASC' | 'ipv4Ecn_DESC' | 'ipv4Identification_ASC' | 'ipv4Identification_DESC' | 'ipv4Options_ASC' | 'ipv4Options_DESC' | 'ipv6Dscp_ASC' | 'ipv6Dscp_DESC' | 'ipv6Ecn_ASC' | 'ipv6Ecn_DESC' | 'ipv6ExtensionHeaders_ASC' | 'ipv6ExtensionHeaders_DESC' | 'ipv6FlowLabel_ASC' | 'ipv6FlowLabel_DESC' | 'ipv6Identification_ASC' | 'ipv6Identification_DESC' | 'leaseTag_ASC' | 'leaseTag_DESC' | 'outcome_ASC' | 'outcome_DESC' | 'prefixTag_ASC' | 'prefixTag_DESC' | 'ruleId_ASC' | 'ruleId_DESC' | 'rulesetId_ASC' | 'rulesetId_DESC' | 'sampleInterval_ASC' | 'sampleInterval_DESC' | 'sourceAsnName_ASC' | 'sourceAsnName_DESC' | 'sourceAsn_ASC' | 'sourceAsn_DESC' | 'sourceCountry_ASC' | 'sourceCountry_DESC' | 'sourceDeviceTag_ASC' | 'sourceDeviceTag_DESC' | 'sourceGeohash_ASC' | 'sourceGeohash_DESC' | 'sourcePort_ASC' | 'sourcePort_DESC' | 'sum_bits_ASC' | 'sum_bits_DESC' | 'sum_packets_ASC' | 'sum_packets_DESC' | 'system_ASC' | 'system_DESC' | 'tcpAcknowledgementNumber_ASC' | 'tcpAcknowledgementNumber_DESC' | 'tcpChecksum_ASC' | 'tcpChecksum_DESC' | 'tcpDataOffset_ASC' | 'tcpDataOffset_DESC' | 'tcpFlagsString_ASC' | 'tcpFlagsString_DESC' | 'tcpFlags_ASC' | 'tcpFlags_DESC' | 'tcpMss_ASC' | 'tcpMss_DESC' | 'tcpOptions_ASC' | 'tcpOptions_DESC' | 'tcpSackBlocks_ASC' | 'tcpSackBlocks_DESC' | 'tcpSackPermitted_ASC' | 'tcpSackPermitted_DESC' | 'tcpSequenceNumber_ASC' | 'tcpSequenceNumber_DESC' | 'tcpTimestampEcr_ASC' | 'tcpTimestampEcr_DESC' | 'tcpTimestampValue_ASC' | 'tcpTimestampValue_DESC' | 'tcpUrgentPointer_ASC' | 'tcpUrgentPointer_DESC' | 'tcpWindowScale_ASC' | 'tcpWindowScale_DESC' | 'tcpWindowSize_ASC' | 'tcpWindowSize_DESC' | 'udpChecksum_ASC' | 'udpChecksum_DESC' | 'udpPayloadLength_ASC' | 'udpPayloadLength_DESC' | 'verdict_ASC' | 'verdict_DESC'; }; + 'AccountMagicFirewallRateLimitNetworkAnalyticsAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'AccountMagicFirewallRateLimitNetworkAnalyticsAdaptiveGroupsSum'; fields: { 'bits': { name: 'bits'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packets': { name: 'packets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountMagicFirewallRateLimitNetworkAnalyticsAdaptiveGroupsSumConfidence': { kind: 'OBJECT'; name: 'AccountMagicFirewallRateLimitNetworkAnalyticsAdaptiveGroupsSumConfidence'; fields: { 'bits': { name: 'bits'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packets': { name: 'packets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountMagicFirewallSamplesAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountMagicFirewallSamplesAdaptiveGroups'; fields: { 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountMagicFirewallSamplesAdaptiveGroupsConfidence'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountMagicFirewallSamplesAdaptiveGroupsDimensions'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountMagicFirewallSamplesAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'AccountMagicFirewallSamplesAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountMagicFirewallSamplesAdaptiveGroupsConfidence'; fields: { 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountMagicFirewallSamplesAdaptiveGroupsSumConfidence'; ofType: null; } }; }; }; + 'AccountMagicFirewallSamplesAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountMagicFirewallSamplesAdaptiveGroupsDimensions'; fields: { 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinute': { name: 'datetimeFiveMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'ruleId': { name: 'ruleId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountMagicFirewallSamplesAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountMagicFirewallSamplesAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountMagicFirewallSamplesAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountMagicFirewallSamplesAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'ruleId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ruleId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ruleId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountMagicFirewallSamplesAdaptiveGroupsOrderBy': { name: 'AccountMagicFirewallSamplesAdaptiveGroupsOrderBy'; enumValues: 'datetimeFiveMinute_ASC' | 'datetimeFiveMinute_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'ruleId_ASC' | 'ruleId_DESC' | 'sum_bits_ASC' | 'sum_bits_DESC' | 'sum_packets_ASC' | 'sum_packets_DESC' | 'system_ASC' | 'system_DESC'; }; + 'AccountMagicFirewallSamplesAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'AccountMagicFirewallSamplesAdaptiveGroupsSum'; fields: { 'bits': { name: 'bits'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packets': { name: 'packets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountMagicFirewallSamplesAdaptiveGroupsSumConfidence': { kind: 'OBJECT'; name: 'AccountMagicFirewallSamplesAdaptiveGroupsSumConfidence'; fields: { 'bits': { name: 'bits'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packets': { name: 'packets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountMagicIDPSNetworkAnalyticsAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountMagicIDPSNetworkAnalyticsAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountMagicIDPSNetworkAnalyticsAdaptiveGroupsAvg'; ofType: null; } }; 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountMagicIDPSNetworkAnalyticsAdaptiveGroupsConfidence'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountMagicIDPSNetworkAnalyticsAdaptiveGroupsDimensions'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountMagicIDPSNetworkAnalyticsAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'AccountMagicIDPSNetworkAnalyticsAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'AccountMagicIDPSNetworkAnalyticsAdaptiveGroupsAvg'; fields: { 'bitRate': { name: 'bitRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'bitRateDay': { name: 'bitRateDay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'bitRateFifteenMinutes': { name: 'bitRateFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'bitRateFiveMinutes': { name: 'bitRateFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'bitRateHour': { name: 'bitRateHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'bitRateMinute': { name: 'bitRateMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'bitRateTenSeconds': { name: 'bitRateTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRate': { name: 'packetRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRateDay': { name: 'packetRateDay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRateFifteenMinutes': { name: 'packetRateFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRateFiveMinutes': { name: 'packetRateFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRateHour': { name: 'packetRateHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRateMinute': { name: 'packetRateMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRateTenSeconds': { name: 'packetRateTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountMagicIDPSNetworkAnalyticsAdaptiveGroupsAvgConfidence': { kind: 'OBJECT'; name: 'AccountMagicIDPSNetworkAnalyticsAdaptiveGroupsAvgConfidence'; fields: { 'bitRate': { name: 'bitRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateDay': { name: 'bitRateDay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateFifteenMinutes': { name: 'bitRateFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateFiveMinutes': { name: 'bitRateFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateHour': { name: 'bitRateHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateMinute': { name: 'bitRateMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateTenSeconds': { name: 'bitRateTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRate': { name: 'packetRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateDay': { name: 'packetRateDay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateFifteenMinutes': { name: 'packetRateFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateFiveMinutes': { name: 'packetRateFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateHour': { name: 'packetRateHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateMinute': { name: 'packetRateMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateTenSeconds': { name: 'packetRateTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountMagicIDPSNetworkAnalyticsAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountMagicIDPSNetworkAnalyticsAdaptiveGroupsConfidence'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountMagicIDPSNetworkAnalyticsAdaptiveGroupsAvgConfidence'; ofType: null; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountMagicIDPSNetworkAnalyticsAdaptiveGroupsSumConfidence'; ofType: null; } }; }; }; + 'AccountMagicIDPSNetworkAnalyticsAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountMagicIDPSNetworkAnalyticsAdaptiveGroupsDimensions'; fields: { 'coloCity': { name: 'coloCity'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'coloCode': { name: 'coloCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'coloCountry': { name: 'coloCountry'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'coloGeohash': { name: 'coloGeohash'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'coloName': { name: 'coloName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeTenSeconds': { name: 'datetimeTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'destinationAsn': { name: 'destinationAsn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'destinationAsnName': { name: 'destinationAsnName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'destinationCountry': { name: 'destinationCountry'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'destinationDeviceTag': { name: 'destinationDeviceTag'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'destinationGeohash': { name: 'destinationGeohash'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'destinationPort': { name: 'destinationPort'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'direction': { name: 'direction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ethertype': { name: 'ethertype'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'greChecksum': { name: 'greChecksum'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'greEthertype': { name: 'greEthertype'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'greHeaderLength': { name: 'greHeaderLength'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'greKey': { name: 'greKey'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'greSequenceNumber': { name: 'greSequenceNumber'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'greVersion': { name: 'greVersion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'icmpChecksum': { name: 'icmpChecksum'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'icmpCode': { name: 'icmpCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'icmpType': { name: 'icmpType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipDestinationAddress': { name: 'ipDestinationAddress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipDestinationSubnet': { name: 'ipDestinationSubnet'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipFragmentOffset': { name: 'ipFragmentOffset'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'ipHeaderLength': { name: 'ipHeaderLength'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'ipMoreFragments': { name: 'ipMoreFragments'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipProtocol': { name: 'ipProtocol'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipProtocolName': { name: 'ipProtocolName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipSourceAddress': { name: 'ipSourceAddress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipSourceSubnet': { name: 'ipSourceSubnet'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipTotalLength': { name: 'ipTotalLength'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'ipTotalLengthBuckets': { name: 'ipTotalLengthBuckets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'ipTtl': { name: 'ipTtl'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipTtlBuckets': { name: 'ipTtlBuckets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipv4Checksum': { name: 'ipv4Checksum'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'ipv4DontFragment': { name: 'ipv4DontFragment'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipv4Dscp': { name: 'ipv4Dscp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipv4Ecn': { name: 'ipv4Ecn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipv4Identification': { name: 'ipv4Identification'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'ipv4Options': { name: 'ipv4Options'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipv6Dscp': { name: 'ipv6Dscp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipv6Ecn': { name: 'ipv6Ecn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipv6ExtensionHeaders': { name: 'ipv6ExtensionHeaders'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipv6FlowLabel': { name: 'ipv6FlowLabel'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'ipv6Identification': { name: 'ipv6Identification'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'outcome': { name: 'outcome'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'sourceAsn': { name: 'sourceAsn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'sourceAsnName': { name: 'sourceAsnName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sourceCountry': { name: 'sourceCountry'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sourceDeviceTag': { name: 'sourceDeviceTag'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sourceGeohash': { name: 'sourceGeohash'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sourcePort': { name: 'sourcePort'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'tcpAcknowledgementNumber': { name: 'tcpAcknowledgementNumber'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'tcpChecksum': { name: 'tcpChecksum'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'tcpDataOffset': { name: 'tcpDataOffset'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'tcpFlags': { name: 'tcpFlags'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'tcpFlagsString': { name: 'tcpFlagsString'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'tcpMss': { name: 'tcpMss'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'tcpOptions': { name: 'tcpOptions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'tcpSackBlocks': { name: 'tcpSackBlocks'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'tcpSackPermitted': { name: 'tcpSackPermitted'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'tcpSequenceNumber': { name: 'tcpSequenceNumber'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'tcpTimestampEcr': { name: 'tcpTimestampEcr'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'tcpTimestampValue': { name: 'tcpTimestampValue'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'tcpUrgentPointer': { name: 'tcpUrgentPointer'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'tcpWindowScale': { name: 'tcpWindowScale'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'tcpWindowSize': { name: 'tcpWindowSize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'udpChecksum': { name: 'udpChecksum'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'udpPayloadLength': { name: 'udpPayloadLength'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'verdict': { name: 'verdict'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountMagicIDPSNetworkAnalyticsAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountMagicIDPSNetworkAnalyticsAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountMagicIDPSNetworkAnalyticsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountMagicIDPSNetworkAnalyticsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCity'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCity_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCity_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCode_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCode_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCountry_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCountry_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloGeohash_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloGeohash_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeTenSeconds'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeTenSeconds_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationAsn'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationAsnName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationAsnName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsn_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'destinationAsn_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'destinationAsn_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationAsn_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'destinationAsn_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'destinationAsn_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'destinationAsn_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationCountry'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationCountry_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationCountry_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationDeviceTag'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationDeviceTag_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationDeviceTag_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationDeviceTag_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationDeviceTag_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationDeviceTag_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationDeviceTag_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationDeviceTag_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationDeviceTag_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationDeviceTag_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationGeohash_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationGeohash_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationPort'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationPort_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'direction'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'direction_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'direction_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ethertype'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ethertype_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ethertype_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ethertype_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ethertype_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ethertype_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ethertype_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ethertype_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'greChecksum'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greChecksum_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greChecksum_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greChecksum_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'greChecksum_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greChecksum_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greChecksum_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greChecksum_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'greEthertype'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greEthertype_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greEthertype_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greEthertype_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'greEthertype_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greEthertype_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greEthertype_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greEthertype_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'greHeaderLength'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greHeaderLength_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greHeaderLength_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greHeaderLength_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'greHeaderLength_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greHeaderLength_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greHeaderLength_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greHeaderLength_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'greKey'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greKey_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greKey_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greKey_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'greKey_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greKey_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greKey_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greKey_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'greSequenceNumber'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greSequenceNumber_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greSequenceNumber_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greSequenceNumber_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'greSequenceNumber_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greSequenceNumber_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greSequenceNumber_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greSequenceNumber_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'greVersion'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'greVersion_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'greVersion_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'greVersion_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'greVersion_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'greVersion_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'greVersion_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'greVersion_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'icmpChecksum'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'icmpChecksum_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'icmpChecksum_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'icmpChecksum_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'icmpChecksum_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'icmpChecksum_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'icmpChecksum_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'icmpChecksum_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'icmpCode'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpCode_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpCode_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpCode_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'icmpCode_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpCode_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpCode_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpCode_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'icmpType'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpType_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpType_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpType_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'icmpType_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpType_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpType_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpType_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipDestinationAddress_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipDestinationAddress_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipDestinationSubnet_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipDestinationSubnet_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipFragmentOffset'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipFragmentOffset_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipFragmentOffset_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipFragmentOffset_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipFragmentOffset_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipFragmentOffset_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipFragmentOffset_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipFragmentOffset_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipHeaderLength'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipHeaderLength_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipHeaderLength_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipHeaderLength_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipHeaderLength_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipHeaderLength_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipHeaderLength_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipHeaderLength_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipMoreFragments'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipMoreFragments_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipMoreFragments_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipMoreFragments_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipMoreFragments_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipMoreFragments_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipMoreFragments_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipMoreFragments_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipProtocolName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipProtocolName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipSourceAddress_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipSourceAddress_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipSourceSubnet_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipSourceSubnet_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLength'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLengthBuckets'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLengthBuckets_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLengthBuckets_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLengthBuckets_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipTotalLengthBuckets_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLengthBuckets_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLengthBuckets_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLengthBuckets_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipTotalLength_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLength_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLength_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipTotalLength_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLength_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLength_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLength_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipTtl'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipTtl_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtl_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtl_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipTtl_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtl_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtl_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtl_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv4Checksum'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Checksum_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Checksum_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Checksum_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv4Checksum_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Checksum_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Checksum_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Checksum_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv4DontFragment'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4DontFragment_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4DontFragment_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4DontFragment_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv4DontFragment_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4DontFragment_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4DontFragment_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4DontFragment_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv4Identification'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Identification_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Identification_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Identification_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv4Identification_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Identification_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Identification_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Identification_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv4Options'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4Options_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4Options_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4Options_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv4Options_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4Options_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4Options_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4Options_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4Options_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv4Options_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6FlowLabel'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6FlowLabel_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6FlowLabel_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6FlowLabel_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv6FlowLabel_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6FlowLabel_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6FlowLabel_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6FlowLabel_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv6Identification'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6Identification_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6Identification_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6Identification_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv6Identification_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6Identification_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6Identification_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6Identification_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'outcome'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'outcome_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'outcome_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sampleInterval_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceAsn'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceAsnName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceAsnName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsn_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sourceAsn_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sourceAsn_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceAsn_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sourceAsn_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sourceAsn_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sourceAsn_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceCountry'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceCountry_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceCountry_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceDeviceTag'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceDeviceTag_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceDeviceTag_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceDeviceTag_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceDeviceTag_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceDeviceTag_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceDeviceTag_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceDeviceTag_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceDeviceTag_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceDeviceTag_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceGeohash_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceGeohash_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourcePort'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourcePort_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpChecksum'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpChecksum_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpChecksum_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpChecksum_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpChecksum_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpChecksum_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpChecksum_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpChecksum_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpDataOffset'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpDataOffset_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpDataOffset_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpDataOffset_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpDataOffset_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpDataOffset_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpDataOffset_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpDataOffset_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpFlags'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpFlagsString_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpFlagsString_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'tcpMss'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpMss_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpMss_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpMss_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpMss_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpMss_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpMss_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpMss_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpOptions'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpOptions_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpOptions_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpOptions_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpOptions_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpOptions_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpOptions_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpOptions_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpOptions_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpOptions_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpSackBlocks_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpSackBlocks_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'tcpSequenceNumber'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpSequenceNumber_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpSequenceNumber_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpSequenceNumber_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpSequenceNumber_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpSequenceNumber_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpSequenceNumber_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpSequenceNumber_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpTimestampEcr'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampEcr_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampEcr_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampEcr_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpTimestampEcr_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampEcr_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampEcr_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampEcr_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpTimestampValue'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampValue_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampValue_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampValue_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpTimestampValue_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampValue_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampValue_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampValue_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpUrgentPointer'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpUrgentPointer_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpUrgentPointer_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpUrgentPointer_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpUrgentPointer_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpUrgentPointer_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpUrgentPointer_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpUrgentPointer_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpWindowScale'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowScale_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowScale_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowScale_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpWindowScale_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowScale_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowScale_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowScale_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpWindowSize'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowSize_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowSize_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowSize_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpWindowSize_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowSize_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowSize_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowSize_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'udpChecksum'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpChecksum_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpChecksum_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpChecksum_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'udpChecksum_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpChecksum_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpChecksum_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpChecksum_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'udpPayloadLength'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpPayloadLength_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpPayloadLength_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpPayloadLength_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'udpPayloadLength_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpPayloadLength_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpPayloadLength_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpPayloadLength_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'verdict'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verdict_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verdict_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verdict_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'verdict_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verdict_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verdict_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verdict_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verdict_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'verdict_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountMagicIDPSNetworkAnalyticsAdaptiveGroupsOrderBy': { name: 'AccountMagicIDPSNetworkAnalyticsAdaptiveGroupsOrderBy'; enumValues: 'avg_bitRateDay_ASC' | 'avg_bitRateDay_DESC' | 'avg_bitRateFifteenMinutes_ASC' | 'avg_bitRateFifteenMinutes_DESC' | 'avg_bitRateFiveMinutes_ASC' | 'avg_bitRateFiveMinutes_DESC' | 'avg_bitRateHour_ASC' | 'avg_bitRateHour_DESC' | 'avg_bitRateMinute_ASC' | 'avg_bitRateMinute_DESC' | 'avg_bitRateTenSeconds_ASC' | 'avg_bitRateTenSeconds_DESC' | 'avg_bitRate_ASC' | 'avg_bitRate_DESC' | 'avg_packetRateDay_ASC' | 'avg_packetRateDay_DESC' | 'avg_packetRateFifteenMinutes_ASC' | 'avg_packetRateFifteenMinutes_DESC' | 'avg_packetRateFiveMinutes_ASC' | 'avg_packetRateFiveMinutes_DESC' | 'avg_packetRateHour_ASC' | 'avg_packetRateHour_DESC' | 'avg_packetRateMinute_ASC' | 'avg_packetRateMinute_DESC' | 'avg_packetRateTenSeconds_ASC' | 'avg_packetRateTenSeconds_DESC' | 'avg_packetRate_ASC' | 'avg_packetRate_DESC' | 'coloCity_ASC' | 'coloCity_DESC' | 'coloCode_ASC' | 'coloCode_DESC' | 'coloCountry_ASC' | 'coloCountry_DESC' | 'coloGeohash_ASC' | 'coloGeohash_DESC' | 'coloName_ASC' | 'coloName_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetimeTenSeconds_ASC' | 'datetimeTenSeconds_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'destinationAsnName_ASC' | 'destinationAsnName_DESC' | 'destinationAsn_ASC' | 'destinationAsn_DESC' | 'destinationCountry_ASC' | 'destinationCountry_DESC' | 'destinationDeviceTag_ASC' | 'destinationDeviceTag_DESC' | 'destinationGeohash_ASC' | 'destinationGeohash_DESC' | 'destinationPort_ASC' | 'destinationPort_DESC' | 'direction_ASC' | 'direction_DESC' | 'ethertype_ASC' | 'ethertype_DESC' | 'greChecksum_ASC' | 'greChecksum_DESC' | 'greEthertype_ASC' | 'greEthertype_DESC' | 'greHeaderLength_ASC' | 'greHeaderLength_DESC' | 'greKey_ASC' | 'greKey_DESC' | 'greSequenceNumber_ASC' | 'greSequenceNumber_DESC' | 'greVersion_ASC' | 'greVersion_DESC' | 'icmpChecksum_ASC' | 'icmpChecksum_DESC' | 'icmpCode_ASC' | 'icmpCode_DESC' | 'icmpType_ASC' | 'icmpType_DESC' | 'ipDestinationAddress_ASC' | 'ipDestinationAddress_DESC' | 'ipDestinationSubnet_ASC' | 'ipDestinationSubnet_DESC' | 'ipFragmentOffset_ASC' | 'ipFragmentOffset_DESC' | 'ipHeaderLength_ASC' | 'ipHeaderLength_DESC' | 'ipMoreFragments_ASC' | 'ipMoreFragments_DESC' | 'ipProtocolName_ASC' | 'ipProtocolName_DESC' | 'ipProtocol_ASC' | 'ipProtocol_DESC' | 'ipSourceAddress_ASC' | 'ipSourceAddress_DESC' | 'ipSourceSubnet_ASC' | 'ipSourceSubnet_DESC' | 'ipTotalLengthBuckets_ASC' | 'ipTotalLengthBuckets_DESC' | 'ipTotalLength_ASC' | 'ipTotalLength_DESC' | 'ipTtlBuckets_ASC' | 'ipTtlBuckets_DESC' | 'ipTtl_ASC' | 'ipTtl_DESC' | 'ipv4Checksum_ASC' | 'ipv4Checksum_DESC' | 'ipv4DontFragment_ASC' | 'ipv4DontFragment_DESC' | 'ipv4Dscp_ASC' | 'ipv4Dscp_DESC' | 'ipv4Ecn_ASC' | 'ipv4Ecn_DESC' | 'ipv4Identification_ASC' | 'ipv4Identification_DESC' | 'ipv4Options_ASC' | 'ipv4Options_DESC' | 'ipv6Dscp_ASC' | 'ipv6Dscp_DESC' | 'ipv6Ecn_ASC' | 'ipv6Ecn_DESC' | 'ipv6ExtensionHeaders_ASC' | 'ipv6ExtensionHeaders_DESC' | 'ipv6FlowLabel_ASC' | 'ipv6FlowLabel_DESC' | 'ipv6Identification_ASC' | 'ipv6Identification_DESC' | 'outcome_ASC' | 'outcome_DESC' | 'sampleInterval_ASC' | 'sampleInterval_DESC' | 'sourceAsnName_ASC' | 'sourceAsnName_DESC' | 'sourceAsn_ASC' | 'sourceAsn_DESC' | 'sourceCountry_ASC' | 'sourceCountry_DESC' | 'sourceDeviceTag_ASC' | 'sourceDeviceTag_DESC' | 'sourceGeohash_ASC' | 'sourceGeohash_DESC' | 'sourcePort_ASC' | 'sourcePort_DESC' | 'sum_bits_ASC' | 'sum_bits_DESC' | 'sum_packets_ASC' | 'sum_packets_DESC' | 'system_ASC' | 'system_DESC' | 'tcpAcknowledgementNumber_ASC' | 'tcpAcknowledgementNumber_DESC' | 'tcpChecksum_ASC' | 'tcpChecksum_DESC' | 'tcpDataOffset_ASC' | 'tcpDataOffset_DESC' | 'tcpFlagsString_ASC' | 'tcpFlagsString_DESC' | 'tcpFlags_ASC' | 'tcpFlags_DESC' | 'tcpMss_ASC' | 'tcpMss_DESC' | 'tcpOptions_ASC' | 'tcpOptions_DESC' | 'tcpSackBlocks_ASC' | 'tcpSackBlocks_DESC' | 'tcpSackPermitted_ASC' | 'tcpSackPermitted_DESC' | 'tcpSequenceNumber_ASC' | 'tcpSequenceNumber_DESC' | 'tcpTimestampEcr_ASC' | 'tcpTimestampEcr_DESC' | 'tcpTimestampValue_ASC' | 'tcpTimestampValue_DESC' | 'tcpUrgentPointer_ASC' | 'tcpUrgentPointer_DESC' | 'tcpWindowScale_ASC' | 'tcpWindowScale_DESC' | 'tcpWindowSize_ASC' | 'tcpWindowSize_DESC' | 'udpChecksum_ASC' | 'udpChecksum_DESC' | 'udpPayloadLength_ASC' | 'udpPayloadLength_DESC' | 'verdict_ASC' | 'verdict_DESC'; }; + 'AccountMagicIDPSNetworkAnalyticsAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'AccountMagicIDPSNetworkAnalyticsAdaptiveGroupsSum'; fields: { 'bits': { name: 'bits'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packets': { name: 'packets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountMagicIDPSNetworkAnalyticsAdaptiveGroupsSumConfidence': { kind: 'OBJECT'; name: 'AccountMagicIDPSNetworkAnalyticsAdaptiveGroupsSumConfidence'; fields: { 'bits': { name: 'bits'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packets': { name: 'packets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountMagicTransitNetworkAnalyticsAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountMagicTransitNetworkAnalyticsAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountMagicTransitNetworkAnalyticsAdaptiveGroupsAvg'; ofType: null; } }; 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountMagicTransitNetworkAnalyticsAdaptiveGroupsConfidence'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountMagicTransitNetworkAnalyticsAdaptiveGroupsDimensions'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountMagicTransitNetworkAnalyticsAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'AccountMagicTransitNetworkAnalyticsAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'AccountMagicTransitNetworkAnalyticsAdaptiveGroupsAvg'; fields: { 'bitRate': { name: 'bitRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'bitRateDay': { name: 'bitRateDay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'bitRateFifteenMinutes': { name: 'bitRateFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'bitRateFiveMinutes': { name: 'bitRateFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'bitRateHour': { name: 'bitRateHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'bitRateMinute': { name: 'bitRateMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'bitRateTenSeconds': { name: 'bitRateTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRate': { name: 'packetRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRateDay': { name: 'packetRateDay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRateFifteenMinutes': { name: 'packetRateFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRateFiveMinutes': { name: 'packetRateFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRateHour': { name: 'packetRateHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRateMinute': { name: 'packetRateMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRateTenSeconds': { name: 'packetRateTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountMagicTransitNetworkAnalyticsAdaptiveGroupsAvgConfidence': { kind: 'OBJECT'; name: 'AccountMagicTransitNetworkAnalyticsAdaptiveGroupsAvgConfidence'; fields: { 'bitRate': { name: 'bitRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateDay': { name: 'bitRateDay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateFifteenMinutes': { name: 'bitRateFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateFiveMinutes': { name: 'bitRateFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateHour': { name: 'bitRateHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateMinute': { name: 'bitRateMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateTenSeconds': { name: 'bitRateTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRate': { name: 'packetRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateDay': { name: 'packetRateDay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateFifteenMinutes': { name: 'packetRateFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateFiveMinutes': { name: 'packetRateFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateHour': { name: 'packetRateHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateMinute': { name: 'packetRateMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateTenSeconds': { name: 'packetRateTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountMagicTransitNetworkAnalyticsAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountMagicTransitNetworkAnalyticsAdaptiveGroupsConfidence'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountMagicTransitNetworkAnalyticsAdaptiveGroupsAvgConfidence'; ofType: null; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountMagicTransitNetworkAnalyticsAdaptiveGroupsSumConfidence'; ofType: null; } }; }; }; + 'AccountMagicTransitNetworkAnalyticsAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountMagicTransitNetworkAnalyticsAdaptiveGroupsDimensions'; fields: { 'applicationTag': { name: 'applicationTag'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'coloCity': { name: 'coloCity'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'coloCode': { name: 'coloCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'coloCountry': { name: 'coloCountry'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'coloGeohash': { name: 'coloGeohash'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'coloName': { name: 'coloName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeTenSeconds': { name: 'datetimeTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'destinationAsn': { name: 'destinationAsn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'destinationAsnName': { name: 'destinationAsnName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'destinationCountry': { name: 'destinationCountry'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'destinationGeohash': { name: 'destinationGeohash'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'destinationPort': { name: 'destinationPort'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'direction': { name: 'direction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'egressTunnelID': { name: 'egressTunnelID'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'egressTunnelName': { name: 'egressTunnelName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ethertype': { name: 'ethertype'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'greChecksum': { name: 'greChecksum'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'greEthertype': { name: 'greEthertype'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'greHeaderLength': { name: 'greHeaderLength'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'greKey': { name: 'greKey'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'greSequenceNumber': { name: 'greSequenceNumber'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'greVersion': { name: 'greVersion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'icmpChecksum': { name: 'icmpChecksum'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'icmpCode': { name: 'icmpCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'icmpType': { name: 'icmpType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ingressTunnelID': { name: 'ingressTunnelID'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ingressTunnelName': { name: 'ingressTunnelName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipDestinationAddress': { name: 'ipDestinationAddress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipDestinationSubnet': { name: 'ipDestinationSubnet'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipFragmentOffset': { name: 'ipFragmentOffset'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'ipHeaderLength': { name: 'ipHeaderLength'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'ipMoreFragments': { name: 'ipMoreFragments'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipProtocol': { name: 'ipProtocol'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipProtocolName': { name: 'ipProtocolName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipSourceAddress': { name: 'ipSourceAddress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipSourceSubnet': { name: 'ipSourceSubnet'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipTotalLength': { name: 'ipTotalLength'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'ipTotalLengthBuckets': { name: 'ipTotalLengthBuckets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'ipTtl': { name: 'ipTtl'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipTtlBuckets': { name: 'ipTtlBuckets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipv4Checksum': { name: 'ipv4Checksum'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'ipv4DontFragment': { name: 'ipv4DontFragment'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipv4Dscp': { name: 'ipv4Dscp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipv4Ecn': { name: 'ipv4Ecn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipv4Identification': { name: 'ipv4Identification'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'ipv4Options': { name: 'ipv4Options'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipv6Dscp': { name: 'ipv6Dscp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipv6Ecn': { name: 'ipv6Ecn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipv6ExtensionHeaders': { name: 'ipv6ExtensionHeaders'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipv6FlowLabel': { name: 'ipv6FlowLabel'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'ipv6Identification': { name: 'ipv6Identification'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'leaseTag': { name: 'leaseTag'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'mitigationSystem': { name: 'mitigationSystem'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'offRamp': { name: 'offRamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'onRamp': { name: 'onRamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'outcome': { name: 'outcome'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'prefixTag': { name: 'prefixTag'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'sourceAsn': { name: 'sourceAsn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'sourceAsnName': { name: 'sourceAsnName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sourceCountry': { name: 'sourceCountry'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sourceGeohash': { name: 'sourceGeohash'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sourcePort': { name: 'sourcePort'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'tcpAcknowledgementNumber': { name: 'tcpAcknowledgementNumber'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'tcpChecksum': { name: 'tcpChecksum'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'tcpDataOffset': { name: 'tcpDataOffset'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'tcpFlags': { name: 'tcpFlags'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'tcpFlagsString': { name: 'tcpFlagsString'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'tcpMss': { name: 'tcpMss'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'tcpOptions': { name: 'tcpOptions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'tcpSackBlocks': { name: 'tcpSackBlocks'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'tcpSackPermitted': { name: 'tcpSackPermitted'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'tcpSequenceNumber': { name: 'tcpSequenceNumber'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'tcpTimestampEcr': { name: 'tcpTimestampEcr'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'tcpTimestampValue': { name: 'tcpTimestampValue'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'tcpUrgentPointer': { name: 'tcpUrgentPointer'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'tcpWindowScale': { name: 'tcpWindowScale'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'tcpWindowSize': { name: 'tcpWindowSize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'trafficType': { name: 'trafficType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'udpChecksum': { name: 'udpChecksum'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'udpPayloadLength': { name: 'udpPayloadLength'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; }; }; + 'AccountMagicTransitNetworkAnalyticsAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountMagicTransitNetworkAnalyticsAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountMagicTransitNetworkAnalyticsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountMagicTransitNetworkAnalyticsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'applicationTag'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationTag_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationTag_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationTag_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'applicationTag_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationTag_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationTag_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationTag_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationTag_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'applicationTag_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCity_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCity_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCode_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCode_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCountry_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCountry_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloGeohash_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloGeohash_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeTenSeconds'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeTenSeconds_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationAsn'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationAsnName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationAsnName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsn_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'destinationAsn_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'destinationAsn_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationAsn_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'destinationAsn_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'destinationAsn_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'destinationAsn_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationCountry'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationCountry_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationCountry_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationGeohash_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationGeohash_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationPort'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationPort_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'direction'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'direction_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'direction_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'egressTunnelID'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'egressTunnelID_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'egressTunnelID_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'egressTunnelID_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'egressTunnelID_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'egressTunnelID_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'egressTunnelID_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'egressTunnelID_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'egressTunnelID_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'egressTunnelID_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'egressTunnelName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'egressTunnelName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'egressTunnelName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'egressTunnelName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'egressTunnelName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'egressTunnelName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'egressTunnelName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'egressTunnelName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'egressTunnelName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'egressTunnelName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ethertype'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ethertype_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ethertype_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ethertype_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ethertype_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ethertype_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ethertype_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ethertype_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'greChecksum'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greChecksum_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greChecksum_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greChecksum_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'greChecksum_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greChecksum_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greChecksum_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greChecksum_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'greEthertype'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greEthertype_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greEthertype_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greEthertype_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'greEthertype_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greEthertype_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greEthertype_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greEthertype_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'greHeaderLength'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greHeaderLength_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greHeaderLength_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greHeaderLength_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'greHeaderLength_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greHeaderLength_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greHeaderLength_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greHeaderLength_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'greKey'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greKey_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greKey_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greKey_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'greKey_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greKey_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greKey_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greKey_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'greSequenceNumber'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greSequenceNumber_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greSequenceNumber_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greSequenceNumber_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'greSequenceNumber_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greSequenceNumber_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greSequenceNumber_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greSequenceNumber_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'greVersion'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'greVersion_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'greVersion_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'greVersion_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'greVersion_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'greVersion_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'greVersion_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'greVersion_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'icmpChecksum'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'icmpChecksum_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'icmpChecksum_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'icmpChecksum_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'icmpChecksum_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'icmpChecksum_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'icmpChecksum_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'icmpChecksum_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'icmpCode'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpCode_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpCode_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpCode_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'icmpCode_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpCode_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpCode_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpCode_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'icmpType'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpType_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpType_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpType_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'icmpType_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpType_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpType_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpType_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ingressTunnelID'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ingressTunnelID_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ingressTunnelID_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ingressTunnelID_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ingressTunnelID_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ingressTunnelID_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ingressTunnelID_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ingressTunnelID_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ingressTunnelID_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ingressTunnelID_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ingressTunnelName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ingressTunnelName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ingressTunnelName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ingressTunnelName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ingressTunnelName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ingressTunnelName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ingressTunnelName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ingressTunnelName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ingressTunnelName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ingressTunnelName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipDestinationAddress_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipDestinationAddress_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipDestinationSubnet_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipDestinationSubnet_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipFragmentOffset'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipFragmentOffset_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipFragmentOffset_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipFragmentOffset_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipFragmentOffset_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipFragmentOffset_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipFragmentOffset_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipFragmentOffset_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipHeaderLength'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipHeaderLength_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipHeaderLength_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipHeaderLength_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipHeaderLength_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipHeaderLength_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipHeaderLength_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipHeaderLength_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipMoreFragments'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipMoreFragments_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipMoreFragments_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipMoreFragments_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipMoreFragments_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipMoreFragments_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipMoreFragments_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipMoreFragments_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipProtocolName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipProtocolName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipSourceAddress_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipSourceAddress_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipSourceSubnet_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipSourceSubnet_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLength'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLengthBuckets'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLengthBuckets_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLengthBuckets_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLengthBuckets_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipTotalLengthBuckets_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLengthBuckets_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLengthBuckets_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLengthBuckets_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipTotalLength_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLength_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLength_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipTotalLength_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLength_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLength_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLength_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipTtl'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipTtl_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtl_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtl_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipTtl_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtl_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtl_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtl_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv4Checksum'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Checksum_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Checksum_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Checksum_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv4Checksum_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Checksum_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Checksum_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Checksum_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv4DontFragment'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4DontFragment_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4DontFragment_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4DontFragment_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv4DontFragment_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4DontFragment_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4DontFragment_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4DontFragment_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv4Identification'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Identification_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Identification_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Identification_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv4Identification_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Identification_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Identification_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Identification_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv4Options'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4Options_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4Options_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4Options_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv4Options_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4Options_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4Options_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4Options_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4Options_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv4Options_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6FlowLabel'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6FlowLabel_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6FlowLabel_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6FlowLabel_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv6FlowLabel_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6FlowLabel_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6FlowLabel_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6FlowLabel_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv6Identification'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6Identification_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6Identification_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6Identification_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv6Identification_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6Identification_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6Identification_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6Identification_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'leaseTag'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leaseTag_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leaseTag_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leaseTag_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'leaseTag_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leaseTag_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leaseTag_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leaseTag_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leaseTag_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'leaseTag_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationSystem'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationSystem_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationSystem_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationSystem_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'mitigationSystem_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationSystem_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationSystem_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationSystem_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationSystem_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'mitigationSystem_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'offRamp'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'offRamp_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'offRamp_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'offRamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'offRamp_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'offRamp_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'offRamp_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'offRamp_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'offRamp_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'offRamp_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'onRamp'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'onRamp_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'onRamp_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'onRamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'onRamp_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'onRamp_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'onRamp_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'onRamp_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'onRamp_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'onRamp_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'outcome_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'outcome_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'prefixTag_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'prefixTag_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sampleInterval_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceAsn'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceAsnName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceAsnName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsn_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sourceAsn_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sourceAsn_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceAsn_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sourceAsn_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sourceAsn_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sourceAsn_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceCountry'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceCountry_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceCountry_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceGeohash_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceGeohash_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourcePort'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourcePort_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpChecksum'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpChecksum_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpChecksum_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpChecksum_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpChecksum_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpChecksum_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpChecksum_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpChecksum_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpDataOffset'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpDataOffset_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpDataOffset_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpDataOffset_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpDataOffset_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpDataOffset_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpDataOffset_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpDataOffset_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpFlags'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpFlagsString_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpFlagsString_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'tcpMss'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpMss_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpMss_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpMss_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpMss_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpMss_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpMss_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpMss_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpOptions'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpOptions_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpOptions_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpOptions_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpOptions_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpOptions_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpOptions_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpOptions_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpOptions_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpOptions_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpSackBlocks_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpSackBlocks_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'tcpSequenceNumber'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpSequenceNumber_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpSequenceNumber_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpSequenceNumber_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpSequenceNumber_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpSequenceNumber_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpSequenceNumber_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpSequenceNumber_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpTimestampEcr'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampEcr_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampEcr_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampEcr_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpTimestampEcr_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampEcr_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampEcr_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampEcr_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpTimestampValue'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampValue_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampValue_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampValue_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpTimestampValue_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampValue_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampValue_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampValue_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpUrgentPointer'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpUrgentPointer_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpUrgentPointer_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpUrgentPointer_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpUrgentPointer_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpUrgentPointer_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpUrgentPointer_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpUrgentPointer_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpWindowScale'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowScale_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowScale_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowScale_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpWindowScale_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowScale_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowScale_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowScale_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpWindowSize'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowSize_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowSize_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowSize_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpWindowSize_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowSize_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowSize_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowSize_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'trafficType'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trafficType_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trafficType_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trafficType_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'trafficType_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trafficType_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trafficType_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trafficType_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trafficType_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'trafficType_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'udpChecksum'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpChecksum_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpChecksum_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpChecksum_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'udpChecksum_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpChecksum_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpChecksum_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpChecksum_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'udpPayloadLength'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpPayloadLength_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpPayloadLength_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpPayloadLength_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'udpPayloadLength_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpPayloadLength_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpPayloadLength_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpPayloadLength_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }]; }; + 'AccountMagicTransitNetworkAnalyticsAdaptiveGroupsOrderBy': { name: 'AccountMagicTransitNetworkAnalyticsAdaptiveGroupsOrderBy'; enumValues: 'applicationTag_ASC' | 'applicationTag_DESC' | 'avg_bitRateDay_ASC' | 'avg_bitRateDay_DESC' | 'avg_bitRateFifteenMinutes_ASC' | 'avg_bitRateFifteenMinutes_DESC' | 'avg_bitRateFiveMinutes_ASC' | 'avg_bitRateFiveMinutes_DESC' | 'avg_bitRateHour_ASC' | 'avg_bitRateHour_DESC' | 'avg_bitRateMinute_ASC' | 'avg_bitRateMinute_DESC' | 'avg_bitRateTenSeconds_ASC' | 'avg_bitRateTenSeconds_DESC' | 'avg_bitRate_ASC' | 'avg_bitRate_DESC' | 'avg_packetRateDay_ASC' | 'avg_packetRateDay_DESC' | 'avg_packetRateFifteenMinutes_ASC' | 'avg_packetRateFifteenMinutes_DESC' | 'avg_packetRateFiveMinutes_ASC' | 'avg_packetRateFiveMinutes_DESC' | 'avg_packetRateHour_ASC' | 'avg_packetRateHour_DESC' | 'avg_packetRateMinute_ASC' | 'avg_packetRateMinute_DESC' | 'avg_packetRateTenSeconds_ASC' | 'avg_packetRateTenSeconds_DESC' | 'avg_packetRate_ASC' | 'avg_packetRate_DESC' | 'coloCity_ASC' | 'coloCity_DESC' | 'coloCode_ASC' | 'coloCode_DESC' | 'coloCountry_ASC' | 'coloCountry_DESC' | 'coloGeohash_ASC' | 'coloGeohash_DESC' | 'coloName_ASC' | 'coloName_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetimeTenSeconds_ASC' | 'datetimeTenSeconds_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'destinationAsnName_ASC' | 'destinationAsnName_DESC' | 'destinationAsn_ASC' | 'destinationAsn_DESC' | 'destinationCountry_ASC' | 'destinationCountry_DESC' | 'destinationGeohash_ASC' | 'destinationGeohash_DESC' | 'destinationPort_ASC' | 'destinationPort_DESC' | 'destinationService_ASC' | 'destinationService_DESC' | 'direction_ASC' | 'direction_DESC' | 'egressTunnelID_ASC' | 'egressTunnelID_DESC' | 'egressTunnelName_ASC' | 'egressTunnelName_DESC' | 'ethertype_ASC' | 'ethertype_DESC' | 'greChecksum_ASC' | 'greChecksum_DESC' | 'greEthertype_ASC' | 'greEthertype_DESC' | 'greHeaderLength_ASC' | 'greHeaderLength_DESC' | 'greKey_ASC' | 'greKey_DESC' | 'greSequenceNumber_ASC' | 'greSequenceNumber_DESC' | 'greVersion_ASC' | 'greVersion_DESC' | 'icmpChecksum_ASC' | 'icmpChecksum_DESC' | 'icmpCode_ASC' | 'icmpCode_DESC' | 'icmpType_ASC' | 'icmpType_DESC' | 'ingressTunnelID_ASC' | 'ingressTunnelID_DESC' | 'ingressTunnelName_ASC' | 'ingressTunnelName_DESC' | 'ipDestinationAddress_ASC' | 'ipDestinationAddress_DESC' | 'ipDestinationSubnet_ASC' | 'ipDestinationSubnet_DESC' | 'ipFragmentOffset_ASC' | 'ipFragmentOffset_DESC' | 'ipHeaderLength_ASC' | 'ipHeaderLength_DESC' | 'ipMoreFragments_ASC' | 'ipMoreFragments_DESC' | 'ipProtocolName_ASC' | 'ipProtocolName_DESC' | 'ipProtocol_ASC' | 'ipProtocol_DESC' | 'ipSourceAddress_ASC' | 'ipSourceAddress_DESC' | 'ipSourceSubnet_ASC' | 'ipSourceSubnet_DESC' | 'ipTotalLengthBuckets_ASC' | 'ipTotalLengthBuckets_DESC' | 'ipTotalLength_ASC' | 'ipTotalLength_DESC' | 'ipTtlBuckets_ASC' | 'ipTtlBuckets_DESC' | 'ipTtl_ASC' | 'ipTtl_DESC' | 'ipv4Checksum_ASC' | 'ipv4Checksum_DESC' | 'ipv4DontFragment_ASC' | 'ipv4DontFragment_DESC' | 'ipv4Dscp_ASC' | 'ipv4Dscp_DESC' | 'ipv4Ecn_ASC' | 'ipv4Ecn_DESC' | 'ipv4Identification_ASC' | 'ipv4Identification_DESC' | 'ipv4Options_ASC' | 'ipv4Options_DESC' | 'ipv6Dscp_ASC' | 'ipv6Dscp_DESC' | 'ipv6Ecn_ASC' | 'ipv6Ecn_DESC' | 'ipv6ExtensionHeaders_ASC' | 'ipv6ExtensionHeaders_DESC' | 'ipv6FlowLabel_ASC' | 'ipv6FlowLabel_DESC' | 'ipv6Identification_ASC' | 'ipv6Identification_DESC' | 'leaseTag_ASC' | 'leaseTag_DESC' | 'mitigationSystem_ASC' | 'mitigationSystem_DESC' | 'offRamp_ASC' | 'offRamp_DESC' | 'onRamp_ASC' | 'onRamp_DESC' | 'outcome_ASC' | 'outcome_DESC' | 'prefixTag_ASC' | 'prefixTag_DESC' | 'sampleInterval_ASC' | 'sampleInterval_DESC' | 'sourceAsnName_ASC' | 'sourceAsnName_DESC' | 'sourceAsn_ASC' | 'sourceAsn_DESC' | 'sourceCountry_ASC' | 'sourceCountry_DESC' | 'sourceGeohash_ASC' | 'sourceGeohash_DESC' | 'sourcePort_ASC' | 'sourcePort_DESC' | 'sourceService_ASC' | 'sourceService_DESC' | 'sum_bits_ASC' | 'sum_bits_DESC' | 'sum_packets_ASC' | 'sum_packets_DESC' | 'system_ASC' | 'system_DESC' | 'tcpAcknowledgementNumber_ASC' | 'tcpAcknowledgementNumber_DESC' | 'tcpChecksum_ASC' | 'tcpChecksum_DESC' | 'tcpDataOffset_ASC' | 'tcpDataOffset_DESC' | 'tcpFlagsString_ASC' | 'tcpFlagsString_DESC' | 'tcpFlags_ASC' | 'tcpFlags_DESC' | 'tcpMss_ASC' | 'tcpMss_DESC' | 'tcpOptions_ASC' | 'tcpOptions_DESC' | 'tcpSackBlocks_ASC' | 'tcpSackBlocks_DESC' | 'tcpSackPermitted_ASC' | 'tcpSackPermitted_DESC' | 'tcpSequenceNumber_ASC' | 'tcpSequenceNumber_DESC' | 'tcpTimestampEcr_ASC' | 'tcpTimestampEcr_DESC' | 'tcpTimestampValue_ASC' | 'tcpTimestampValue_DESC' | 'tcpUrgentPointer_ASC' | 'tcpUrgentPointer_DESC' | 'tcpWindowScale_ASC' | 'tcpWindowScale_DESC' | 'tcpWindowSize_ASC' | 'tcpWindowSize_DESC' | 'trafficType_ASC' | 'trafficType_DESC' | 'udpChecksum_ASC' | 'udpChecksum_DESC' | 'udpPayloadLength_ASC' | 'udpPayloadLength_DESC' | 'verdict_ASC' | 'verdict_DESC' | 'visibility_ASC' | 'visibility_DESC'; }; + 'AccountMagicTransitNetworkAnalyticsAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'AccountMagicTransitNetworkAnalyticsAdaptiveGroupsSum'; fields: { 'bits': { name: 'bits'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packets': { name: 'packets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountMagicTransitNetworkAnalyticsAdaptiveGroupsSumConfidence': { kind: 'OBJECT'; name: 'AccountMagicTransitNetworkAnalyticsAdaptiveGroupsSumConfidence'; fields: { 'bits': { name: 'bits'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packets': { name: 'packets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountMagicTransitTunnelHealthCheckSLOsAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountMagicTransitTunnelHealthCheckSLOsAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountMagicTransitTunnelHealthCheckSLOsAdaptiveGroupsAvg'; ofType: null; } }; 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountMagicTransitTunnelHealthCheckSLOsAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountMagicTransitTunnelHealthCheckSLOsAdaptiveGroupsDimensions'; ofType: null; } }; 'max': { name: 'max'; type: { kind: 'OBJECT'; name: 'AccountMagicTransitTunnelHealthCheckSLOsAdaptiveGroupsMax'; ofType: null; } }; }; }; + 'AccountMagicTransitTunnelHealthCheckSLOsAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'AccountMagicTransitTunnelHealthCheckSLOsAdaptiveGroupsAvg'; fields: { 'effectiveSlo': { name: 'effectiveSlo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'slo': { name: 'slo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountMagicTransitTunnelHealthCheckSLOsAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountMagicTransitTunnelHealthCheckSLOsAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountMagicTransitTunnelHealthCheckSLOsAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountMagicTransitTunnelHealthCheckSLOsAdaptiveGroupsDimensions'; fields: { 'alertType': { name: 'alertType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHalfOfHour': { name: 'datetimeHalfOfHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'policyId': { name: 'policyId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'siteName': { name: 'siteName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'status': { name: 'status'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'tunnelId': { name: 'tunnelId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'tunnelName': { name: 'tunnelName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountMagicTransitTunnelHealthCheckSLOsAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountMagicTransitTunnelHealthCheckSLOsAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountMagicTransitTunnelHealthCheckSLOsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountMagicTransitTunnelHealthCheckSLOsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'alertType'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'alertType_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'alertType_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'alertType_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'alertType_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'alertType_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'alertType_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'alertType_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'alertType_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'alertType_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHalfOfHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHalfOfHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'policyId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policyId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policyId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policyId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'policyId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policyId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policyId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policyId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policyId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'policyId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'siteName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'siteName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'siteName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'siteName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'siteName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'siteName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'siteName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'siteName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'siteName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'siteName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'status_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'status_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tunnelId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tunnelId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tunnelId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tunnelId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tunnelId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tunnelId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tunnelId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tunnelId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tunnelId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tunnelId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tunnelName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tunnelName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tunnelName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tunnelName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tunnelName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tunnelName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tunnelName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tunnelName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tunnelName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tunnelName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountMagicTransitTunnelHealthCheckSLOsAdaptiveGroupsMax': { kind: 'OBJECT'; name: 'AccountMagicTransitTunnelHealthCheckSLOsAdaptiveGroupsMax'; fields: { 'slo': { name: 'slo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountMagicTransitTunnelHealthCheckSLOsAdaptiveGroupsOrderBy': { name: 'AccountMagicTransitTunnelHealthCheckSLOsAdaptiveGroupsOrderBy'; enumValues: 'alertType_ASC' | 'alertType_DESC' | 'avg_effectiveSlo_ASC' | 'avg_effectiveSlo_DESC' | 'avg_sampleInterval_ASC' | 'avg_sampleInterval_DESC' | 'avg_slo_ASC' | 'avg_slo_DESC' | 'count_ASC' | 'count_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHalfOfHour_ASC' | 'datetimeHalfOfHour_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'max_slo_ASC' | 'max_slo_DESC' | 'policyId_ASC' | 'policyId_DESC' | 'siteName_ASC' | 'siteName_DESC' | 'status_ASC' | 'status_DESC' | 'tunnelId_ASC' | 'tunnelId_DESC' | 'tunnelName_ASC' | 'tunnelName_DESC'; }; + 'AccountMagicTransitTunnelHealthChecksAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountMagicTransitTunnelHealthChecksAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountMagicTransitTunnelHealthChecksAdaptiveGroupsAvg'; ofType: null; } }; 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountMagicTransitTunnelHealthChecksAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountMagicTransitTunnelHealthChecksAdaptiveGroupsDimensions'; ofType: null; } }; }; }; + 'AccountMagicTransitTunnelHealthChecksAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'AccountMagicTransitTunnelHealthChecksAdaptiveGroupsAvg'; fields: { 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'tunnelState': { name: 'tunnelState'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; }; }; + 'AccountMagicTransitTunnelHealthChecksAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountMagicTransitTunnelHealthChecksAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountMagicTransitTunnelHealthChecksAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountMagicTransitTunnelHealthChecksAdaptiveGroupsDimensions'; fields: { 'active': { name: 'active'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHalfOfHour': { name: 'datetimeHalfOfHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'edgeColoCity': { name: 'edgeColoCity'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'edgeColoCode': { name: 'edgeColoCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'edgeColoCountry': { name: 'edgeColoCountry'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'edgeColoName': { name: 'edgeColoName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'edgeColoRegion': { name: 'edgeColoRegion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'edgePopName': { name: 'edgePopName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'remoteTunnelIPv4': { name: 'remoteTunnelIPv4'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'resultStatus': { name: 'resultStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'siteName': { name: 'siteName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'tunnelName': { name: 'tunnelName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountMagicTransitTunnelHealthChecksAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountMagicTransitTunnelHealthChecksAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountMagicTransitTunnelHealthChecksAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountMagicTransitTunnelHealthChecksAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'active'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'active_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'active_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'active_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'active_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'active_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'active_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'active_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHalfOfHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHalfOfHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeColoCity'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoCity_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoCity_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoCity_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeColoCity_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoCity_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoCity_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoCity_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoCity_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeColoCity_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoCode'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoCode_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoCode_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoCode_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeColoCode_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoCode_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoCode_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoCode_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoCode_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeColoCode_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoCountry'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoCountry_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoCountry_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoCountry_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeColoCountry_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoCountry_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoCountry_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoCountry_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoCountry_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeColoCountry_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeColoName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeColoName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoRegion'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoRegion_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoRegion_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoRegion_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeColoRegion_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoRegion_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoRegion_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoRegion_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoRegion_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeColoRegion_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgePopName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgePopName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgePopName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgePopName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgePopName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgePopName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgePopName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgePopName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgePopName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgePopName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'remoteTunnelIPv4'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'remoteTunnelIPv4_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'remoteTunnelIPv4_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'remoteTunnelIPv4_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'remoteTunnelIPv4_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'remoteTunnelIPv4_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'remoteTunnelIPv4_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'remoteTunnelIPv4_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'remoteTunnelIPv4_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'remoteTunnelIPv4_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resultStatus'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resultStatus_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resultStatus_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resultStatus_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'resultStatus_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resultStatus_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resultStatus_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resultStatus_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resultStatus_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'resultStatus_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'siteName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'siteName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'siteName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'siteName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'siteName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'siteName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'siteName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'siteName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'siteName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'siteName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tunnelName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tunnelName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tunnelName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tunnelName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tunnelName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tunnelName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tunnelName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tunnelName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tunnelName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tunnelName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountMagicTransitTunnelHealthChecksAdaptiveGroupsOrderBy': { name: 'AccountMagicTransitTunnelHealthChecksAdaptiveGroupsOrderBy'; enumValues: 'active_ASC' | 'active_DESC' | 'avg_sampleInterval_ASC' | 'avg_sampleInterval_DESC' | 'avg_tunnelState_ASC' | 'avg_tunnelState_DESC' | 'coloStatus_ASC' | 'coloStatus_DESC' | 'count_ASC' | 'count_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHalfOfHour_ASC' | 'datetimeHalfOfHour_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'edgeColoCity_ASC' | 'edgeColoCity_DESC' | 'edgeColoCode_ASC' | 'edgeColoCode_DESC' | 'edgeColoCountry_ASC' | 'edgeColoCountry_DESC' | 'edgeColoName_ASC' | 'edgeColoName_DESC' | 'edgeColoRegion_ASC' | 'edgeColoRegion_DESC' | 'edgePopName_ASC' | 'edgePopName_DESC' | 'metalStatus_ASC' | 'metalStatus_DESC' | 'remoteTunnelIPv4_ASC' | 'remoteTunnelIPv4_DESC' | 'resultStatus_ASC' | 'resultStatus_DESC' | 'siteName_ASC' | 'siteName_DESC' | 'tunnelName_ASC' | 'tunnelName_DESC'; }; + 'AccountMagicTransitTunnelTrafficAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountMagicTransitTunnelTrafficAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountMagicTransitTunnelTrafficAdaptiveGroupsAvg'; ofType: null; } }; 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountMagicTransitTunnelTrafficAdaptiveGroupsConfidence'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountMagicTransitTunnelTrafficAdaptiveGroupsDimensions'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountMagicTransitTunnelTrafficAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'AccountMagicTransitTunnelTrafficAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'AccountMagicTransitTunnelTrafficAdaptiveGroupsAvg'; fields: { 'bitRate': { name: 'bitRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'bitRateDay': { name: 'bitRateDay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'bitRateFifteenMinutes': { name: 'bitRateFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'bitRateFiveMinutes': { name: 'bitRateFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'bitRateHour': { name: 'bitRateHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'bitRateMinute': { name: 'bitRateMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'bitRateTenSeconds': { name: 'bitRateTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRate': { name: 'packetRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRateDay': { name: 'packetRateDay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRateFifteenMinutes': { name: 'packetRateFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRateFiveMinutes': { name: 'packetRateFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRateHour': { name: 'packetRateHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRateMinute': { name: 'packetRateMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRateTenSeconds': { name: 'packetRateTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountMagicTransitTunnelTrafficAdaptiveGroupsAvgConfidence': { kind: 'OBJECT'; name: 'AccountMagicTransitTunnelTrafficAdaptiveGroupsAvgConfidence'; fields: { 'bitRate': { name: 'bitRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateDay': { name: 'bitRateDay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateFifteenMinutes': { name: 'bitRateFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateFiveMinutes': { name: 'bitRateFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateHour': { name: 'bitRateHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateMinute': { name: 'bitRateMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateTenSeconds': { name: 'bitRateTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRate': { name: 'packetRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateDay': { name: 'packetRateDay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateFifteenMinutes': { name: 'packetRateFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateFiveMinutes': { name: 'packetRateFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateHour': { name: 'packetRateHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateMinute': { name: 'packetRateMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateTenSeconds': { name: 'packetRateTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountMagicTransitTunnelTrafficAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountMagicTransitTunnelTrafficAdaptiveGroupsConfidence'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountMagicTransitTunnelTrafficAdaptiveGroupsAvgConfidence'; ofType: null; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountMagicTransitTunnelTrafficAdaptiveGroupsSumConfidence'; ofType: null; } }; }; }; + 'AccountMagicTransitTunnelTrafficAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountMagicTransitTunnelTrafficAdaptiveGroupsDimensions'; fields: { 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'direction': { name: 'direction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'edgeColoCity': { name: 'edgeColoCity'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'edgeColoCode': { name: 'edgeColoCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'edgeColoCountry': { name: 'edgeColoCountry'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'edgeColoGeohash': { name: 'edgeColoGeohash'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'edgeColoName': { name: 'edgeColoName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'edgePopName': { name: 'edgePopName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'egressTunnelID': { name: 'egressTunnelID'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'egressTunnelName': { name: 'egressTunnelName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ingressTunnelID': { name: 'ingressTunnelID'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ingressTunnelName': { name: 'ingressTunnelName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'offRamp': { name: 'offRamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'onRamp': { name: 'onRamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'tunnelName': { name: 'tunnelName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountMagicTransitTunnelTrafficAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountMagicTransitTunnelTrafficAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountMagicTransitTunnelTrafficAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountMagicTransitTunnelTrafficAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'direction'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'direction_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'direction_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoCity'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoCity_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoCity_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoCity_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeColoCity_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoCity_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoCity_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoCity_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoCity_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeColoCity_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoCode'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoCode_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoCode_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoCode_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeColoCode_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoCode_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoCode_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoCode_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoCode_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeColoCode_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoCountry'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoCountry_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoCountry_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoCountry_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeColoCountry_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoCountry_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoCountry_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoCountry_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoCountry_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeColoCountry_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoGeohash'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoGeohash_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoGeohash_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoGeohash_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeColoGeohash_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoGeohash_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoGeohash_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoGeohash_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoGeohash_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeColoGeohash_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeColoName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeColoName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgePopName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgePopName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgePopName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgePopName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgePopName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgePopName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgePopName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgePopName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgePopName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgePopName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'egressTunnelID'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'egressTunnelID_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'egressTunnelID_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'egressTunnelID_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'egressTunnelID_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'egressTunnelID_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'egressTunnelID_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'egressTunnelID_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'egressTunnelID_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'egressTunnelID_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'egressTunnelName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'egressTunnelName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'egressTunnelName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'egressTunnelName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'egressTunnelName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'egressTunnelName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'egressTunnelName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'egressTunnelName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'egressTunnelName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'egressTunnelName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ingressTunnelID'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ingressTunnelID_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ingressTunnelID_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ingressTunnelID_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ingressTunnelID_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ingressTunnelID_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ingressTunnelID_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ingressTunnelID_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ingressTunnelID_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ingressTunnelID_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ingressTunnelName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ingressTunnelName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ingressTunnelName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ingressTunnelName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ingressTunnelName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ingressTunnelName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ingressTunnelName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ingressTunnelName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ingressTunnelName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ingressTunnelName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'offRamp'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'offRamp_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'offRamp_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'offRamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'offRamp_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'offRamp_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'offRamp_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'offRamp_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'offRamp_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'offRamp_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'onRamp'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'onRamp_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'onRamp_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'onRamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'onRamp_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'onRamp_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'onRamp_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'onRamp_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'onRamp_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'onRamp_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tunnelName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tunnelName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tunnelName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tunnelName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tunnelName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tunnelName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tunnelName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tunnelName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tunnelName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tunnelName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountMagicTransitTunnelTrafficAdaptiveGroupsOrderBy': { name: 'AccountMagicTransitTunnelTrafficAdaptiveGroupsOrderBy'; enumValues: 'avg_bitRateDay_ASC' | 'avg_bitRateDay_DESC' | 'avg_bitRateFifteenMinutes_ASC' | 'avg_bitRateFifteenMinutes_DESC' | 'avg_bitRateFiveMinutes_ASC' | 'avg_bitRateFiveMinutes_DESC' | 'avg_bitRateHour_ASC' | 'avg_bitRateHour_DESC' | 'avg_bitRateMinute_ASC' | 'avg_bitRateMinute_DESC' | 'avg_bitRateTenSeconds_ASC' | 'avg_bitRateTenSeconds_DESC' | 'avg_bitRate_ASC' | 'avg_bitRate_DESC' | 'avg_packetRateDay_ASC' | 'avg_packetRateDay_DESC' | 'avg_packetRateFifteenMinutes_ASC' | 'avg_packetRateFifteenMinutes_DESC' | 'avg_packetRateFiveMinutes_ASC' | 'avg_packetRateFiveMinutes_DESC' | 'avg_packetRateHour_ASC' | 'avg_packetRateHour_DESC' | 'avg_packetRateMinute_ASC' | 'avg_packetRateMinute_DESC' | 'avg_packetRateTenSeconds_ASC' | 'avg_packetRateTenSeconds_DESC' | 'avg_packetRate_ASC' | 'avg_packetRate_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'direction_ASC' | 'direction_DESC' | 'edgeColoCity_ASC' | 'edgeColoCity_DESC' | 'edgeColoCode_ASC' | 'edgeColoCode_DESC' | 'edgeColoCountry_ASC' | 'edgeColoCountry_DESC' | 'edgeColoGeohash_ASC' | 'edgeColoGeohash_DESC' | 'edgeColoName_ASC' | 'edgeColoName_DESC' | 'edgePopName_ASC' | 'edgePopName_DESC' | 'egressTunnelID_ASC' | 'egressTunnelID_DESC' | 'egressTunnelName_ASC' | 'egressTunnelName_DESC' | 'ingressTunnelID_ASC' | 'ingressTunnelID_DESC' | 'ingressTunnelName_ASC' | 'ingressTunnelName_DESC' | 'offRamp_ASC' | 'offRamp_DESC' | 'onRamp_ASC' | 'onRamp_DESC' | 'sum_bits_ASC' | 'sum_bits_DESC' | 'sum_packets_ASC' | 'sum_packets_DESC' | 'system_ASC' | 'system_DESC' | 'tunnelName_ASC' | 'tunnelName_DESC' | 'visibility_ASC' | 'visibility_DESC'; }; + 'AccountMagicTransitTunnelTrafficAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'AccountMagicTransitTunnelTrafficAdaptiveGroupsSum'; fields: { 'bits': { name: 'bits'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packets': { name: 'packets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountMagicTransitTunnelTrafficAdaptiveGroupsSumConfidence': { kind: 'OBJECT'; name: 'AccountMagicTransitTunnelTrafficAdaptiveGroupsSumConfidence'; fields: { 'bits': { name: 'bits'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packets': { name: 'packets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountMagicWANConnectorMetricsAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountMagicWANConnectorMetricsAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountMagicWANConnectorMetricsAdaptiveGroupsAvg'; ofType: null; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountMagicWANConnectorMetricsAdaptiveGroupsDimensions'; ofType: null; } }; 'max': { name: 'max'; type: { kind: 'OBJECT'; name: 'AccountMagicWANConnectorMetricsAdaptiveGroupsMax'; ofType: null; } }; }; }; + 'AccountMagicWANConnectorMetricsAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'AccountMagicWANConnectorMetricsAdaptiveGroupsAvg'; fields: { 'cpuLoadPercentage': { name: 'cpuLoadPercentage'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'cpuTemperature': { name: 'cpuTemperature'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'diskUsagePercentage': { name: 'diskUsagePercentage'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'memoryUsagePercentage': { name: 'memoryUsagePercentage'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'rxBitrateFiveMinute': { name: 'rxBitrateFiveMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'rxBitrateMinute': { name: 'rxBitrateMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'rxPacketrateFiveMinute': { name: 'rxPacketrateFiveMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'rxPacketrateMinute': { name: 'rxPacketrateMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'txBitrateFiveMinute': { name: 'txBitrateFiveMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'txBitrateMinute': { name: 'txBitrateMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'txPacketrateFiveMinute': { name: 'txPacketrateFiveMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'txPacketrateMinute': { name: 'txPacketrateMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountMagicWANConnectorMetricsAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountMagicWANConnectorMetricsAdaptiveGroupsDimensions'; fields: { 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'mconnConnectorID': { name: 'mconnConnectorID'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'mconnInterfaceName': { name: 'mconnInterfaceName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'mconnInterfaceType': { name: 'mconnInterfaceType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'mconnSiteID': { name: 'mconnSiteID'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountMagicWANConnectorMetricsAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountMagicWANConnectorMetricsAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountMagicWANConnectorMetricsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountMagicWANConnectorMetricsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'mconnConnectorID'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mconnConnectorID_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mconnConnectorID_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mconnConnectorID_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'mconnConnectorID_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mconnConnectorID_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mconnConnectorID_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mconnConnectorID_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mconnConnectorID_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'mconnConnectorID_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mconnInterfaceName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mconnInterfaceName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mconnInterfaceName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mconnInterfaceName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'mconnInterfaceName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mconnInterfaceName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mconnInterfaceName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mconnInterfaceName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mconnInterfaceName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'mconnInterfaceName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mconnInterfaceType'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mconnInterfaceType_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mconnInterfaceType_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mconnInterfaceType_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'mconnInterfaceType_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mconnInterfaceType_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mconnInterfaceType_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mconnInterfaceType_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mconnInterfaceType_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'mconnInterfaceType_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mconnSiteID'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mconnSiteID_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mconnSiteID_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mconnSiteID_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'mconnSiteID_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mconnSiteID_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mconnSiteID_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mconnSiteID_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mconnSiteID_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'mconnSiteID_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountMagicWANConnectorMetricsAdaptiveGroupsMax': { kind: 'OBJECT'; name: 'AccountMagicWANConnectorMetricsAdaptiveGroupsMax'; fields: { 'haState': { name: 'haState'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'interfaceCount': { name: 'interfaceCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; }; }; + 'AccountMagicWANConnectorMetricsAdaptiveGroupsOrderBy': { name: 'AccountMagicWANConnectorMetricsAdaptiveGroupsOrderBy'; enumValues: 'avg_cpuLoadPercentage_ASC' | 'avg_cpuLoadPercentage_DESC' | 'avg_cpuTemperature_ASC' | 'avg_cpuTemperature_DESC' | 'avg_diskUsagePercentage_ASC' | 'avg_diskUsagePercentage_DESC' | 'avg_memoryUsagePercentage_ASC' | 'avg_memoryUsagePercentage_DESC' | 'avg_rxBitrateFiveMinute_ASC' | 'avg_rxBitrateFiveMinute_DESC' | 'avg_rxBitrateMinute_ASC' | 'avg_rxBitrateMinute_DESC' | 'avg_rxPacketrateFiveMinute_ASC' | 'avg_rxPacketrateFiveMinute_DESC' | 'avg_rxPacketrateMinute_ASC' | 'avg_rxPacketrateMinute_DESC' | 'avg_txBitrateFiveMinute_ASC' | 'avg_txBitrateFiveMinute_DESC' | 'avg_txBitrateMinute_ASC' | 'avg_txBitrateMinute_DESC' | 'avg_txPacketrateFiveMinute_ASC' | 'avg_txPacketrateFiveMinute_DESC' | 'avg_txPacketrateMinute_ASC' | 'avg_txPacketrateMinute_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'max_haState_ASC' | 'max_haState_DESC' | 'max_interfaceCount_ASC' | 'max_interfaceCount_DESC' | 'mconnConnectorID_ASC' | 'mconnConnectorID_DESC' | 'mconnInterfaceName_ASC' | 'mconnInterfaceName_DESC' | 'mconnInterfaceType_ASC' | 'mconnInterfaceType_DESC' | 'mconnSiteID_ASC' | 'mconnSiteID_DESC'; }; + 'AccountMconnTelemetryEventsAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountMconnTelemetryEventsAdaptiveGroups'; fields: { 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountMconnTelemetryEventsAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountMconnTelemetryEventsAdaptiveGroupsDimensions'; ofType: null; } }; }; }; + 'AccountMconnTelemetryEventsAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountMconnTelemetryEventsAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountMconnTelemetryEventsAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountMconnTelemetryEventsAdaptiveGroupsDimensions'; fields: { 'connectorId': { name: 'connectorId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeSixHours': { name: 'datetimeSixHours'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'kind': { name: 'kind'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountMconnTelemetryEventsAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountMconnTelemetryEventsAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountMconnTelemetryEventsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountMconnTelemetryEventsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'connectorId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'connectorId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'connectorId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'kind'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'kind_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'kind_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'kind_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'kind_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'kind_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'kind_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'kind_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'kind_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'kind_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountMconnTelemetryEventsAdaptiveGroupsOrderBy': { name: 'AccountMconnTelemetryEventsAdaptiveGroupsOrderBy'; enumValues: 'connectorId_ASC' | 'connectorId_DESC' | 'count_ASC' | 'count_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetimeSixHours_ASC' | 'datetimeSixHours_DESC' | 'kind_ASC' | 'kind_DESC'; }; + 'AccountMconnTelemetryEventsStagingAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountMconnTelemetryEventsStagingAdaptiveGroups'; fields: { 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountMconnTelemetryEventsStagingAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountMconnTelemetryEventsStagingAdaptiveGroupsDimensions'; ofType: null; } }; }; }; + 'AccountMconnTelemetryEventsStagingAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountMconnTelemetryEventsStagingAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountMconnTelemetryEventsStagingAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountMconnTelemetryEventsStagingAdaptiveGroupsDimensions'; fields: { 'connectorId': { name: 'connectorId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeSixHours': { name: 'datetimeSixHours'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'kind': { name: 'kind'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountMconnTelemetryEventsStagingAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountMconnTelemetryEventsStagingAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountMconnTelemetryEventsStagingAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountMconnTelemetryEventsStagingAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'connectorId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'connectorId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'connectorId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'kind'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'kind_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'kind_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'kind_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'kind_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'kind_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'kind_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'kind_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'kind_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'kind_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountMconnTelemetryEventsStagingAdaptiveGroupsOrderBy': { name: 'AccountMconnTelemetryEventsStagingAdaptiveGroupsOrderBy'; enumValues: 'connectorId_ASC' | 'connectorId_DESC' | 'count_ASC' | 'count_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetimeSixHours_ASC' | 'datetimeSixHours_DESC' | 'kind_ASC' | 'kind_DESC'; }; + 'AccountMconnTelemetrySnapshotDhcpLeasesAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotDhcpLeasesAdaptiveGroups'; fields: { 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotDhcpLeasesAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotDhcpLeasesAdaptiveGroupsDimensions'; ofType: null; } }; 'max': { name: 'max'; type: { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotDhcpLeasesAdaptiveGroupsMax'; ofType: null; } }; }; }; + 'AccountMconnTelemetrySnapshotDhcpLeasesAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotDhcpLeasesAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountMconnTelemetrySnapshotDhcpLeasesAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotDhcpLeasesAdaptiveGroupsDimensions'; fields: { 'clientId': { name: 'clientId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'connectorId': { name: 'connectorId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeSixHours': { name: 'datetimeSixHours'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'hostname': { name: 'hostname'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'interfaceName': { name: 'interfaceName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipAddress': { name: 'ipAddress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'macAddress': { name: 'macAddress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountMconnTelemetrySnapshotDhcpLeasesAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountMconnTelemetrySnapshotDhcpLeasesAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountMconnTelemetrySnapshotDhcpLeasesAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountMconnTelemetrySnapshotDhcpLeasesAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'connectorId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'connectorId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'hostname'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'hostname_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'hostname_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'hostname_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'hostname_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'hostname_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'hostname_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'hostname_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'hostname_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'hostname_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'interfaceName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'interfaceName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'interfaceName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'interfaceName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'interfaceName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'interfaceName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'interfaceName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'interfaceName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'interfaceName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'interfaceName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipAddress'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipAddress_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipAddress_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipAddress_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipAddress_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipAddress_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipAddress_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipAddress_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipAddress_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipAddress_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'macAddress'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'macAddress_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'macAddress_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'macAddress_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'macAddress_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'macAddress_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'macAddress_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'macAddress_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'macAddress_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'macAddress_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountMconnTelemetrySnapshotDhcpLeasesAdaptiveGroupsMax': { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotDhcpLeasesAdaptiveGroupsMax'; fields: { 'expiryTime': { name: 'expiryTime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountMconnTelemetrySnapshotDhcpLeasesAdaptiveGroupsOrderBy': { name: 'AccountMconnTelemetrySnapshotDhcpLeasesAdaptiveGroupsOrderBy'; enumValues: 'clientId_ASC' | 'clientId_DESC' | 'connectorId_ASC' | 'connectorId_DESC' | 'count_ASC' | 'count_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetimeSixHours_ASC' | 'datetimeSixHours_DESC' | 'hostname_ASC' | 'hostname_DESC' | 'interfaceName_ASC' | 'interfaceName_DESC' | 'ipAddress_ASC' | 'ipAddress_DESC' | 'macAddress_ASC' | 'macAddress_DESC' | 'max_expiryTime_ASC' | 'max_expiryTime_DESC'; }; + 'AccountMconnTelemetrySnapshotDhcpLeasesStagingAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotDhcpLeasesStagingAdaptiveGroups'; fields: { 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotDhcpLeasesStagingAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotDhcpLeasesStagingAdaptiveGroupsDimensions'; ofType: null; } }; 'max': { name: 'max'; type: { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotDhcpLeasesStagingAdaptiveGroupsMax'; ofType: null; } }; }; }; + 'AccountMconnTelemetrySnapshotDhcpLeasesStagingAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotDhcpLeasesStagingAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountMconnTelemetrySnapshotDhcpLeasesStagingAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotDhcpLeasesStagingAdaptiveGroupsDimensions'; fields: { 'clientId': { name: 'clientId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'connectorId': { name: 'connectorId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeSixHours': { name: 'datetimeSixHours'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'hostname': { name: 'hostname'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'interfaceName': { name: 'interfaceName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipAddress': { name: 'ipAddress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'macAddress': { name: 'macAddress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountMconnTelemetrySnapshotDhcpLeasesStagingAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountMconnTelemetrySnapshotDhcpLeasesStagingAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountMconnTelemetrySnapshotDhcpLeasesStagingAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountMconnTelemetrySnapshotDhcpLeasesStagingAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'connectorId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'connectorId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'hostname'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'hostname_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'hostname_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'hostname_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'hostname_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'hostname_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'hostname_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'hostname_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'hostname_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'hostname_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'interfaceName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'interfaceName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'interfaceName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'interfaceName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'interfaceName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'interfaceName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'interfaceName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'interfaceName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'interfaceName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'interfaceName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipAddress'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipAddress_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipAddress_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipAddress_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipAddress_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipAddress_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipAddress_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipAddress_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipAddress_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipAddress_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'macAddress'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'macAddress_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'macAddress_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'macAddress_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'macAddress_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'macAddress_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'macAddress_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'macAddress_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'macAddress_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'macAddress_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountMconnTelemetrySnapshotDhcpLeasesStagingAdaptiveGroupsMax': { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotDhcpLeasesStagingAdaptiveGroupsMax'; fields: { 'expiryTime': { name: 'expiryTime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountMconnTelemetrySnapshotDhcpLeasesStagingAdaptiveGroupsOrderBy': { name: 'AccountMconnTelemetrySnapshotDhcpLeasesStagingAdaptiveGroupsOrderBy'; enumValues: 'clientId_ASC' | 'clientId_DESC' | 'connectorId_ASC' | 'connectorId_DESC' | 'count_ASC' | 'count_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetimeSixHours_ASC' | 'datetimeSixHours_DESC' | 'hostname_ASC' | 'hostname_DESC' | 'interfaceName_ASC' | 'interfaceName_DESC' | 'ipAddress_ASC' | 'ipAddress_DESC' | 'macAddress_ASC' | 'macAddress_DESC' | 'max_expiryTime_ASC' | 'max_expiryTime_DESC'; }; + 'AccountMconnTelemetrySnapshotDisksAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotDisksAdaptiveGroups'; fields: { 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotDisksAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotDisksAdaptiveGroupsDimensions'; ofType: null; } }; 'max': { name: 'max'; type: { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotDisksAdaptiveGroupsMax'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotDisksAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'AccountMconnTelemetrySnapshotDisksAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotDisksAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountMconnTelemetrySnapshotDisksAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotDisksAdaptiveGroupsDimensions'; fields: { 'connectorId': { name: 'connectorId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeSixHours': { name: 'datetimeSixHours'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountMconnTelemetrySnapshotDisksAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountMconnTelemetrySnapshotDisksAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountMconnTelemetrySnapshotDisksAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountMconnTelemetrySnapshotDisksAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'connectorId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'connectorId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'connectorId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'name'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'name_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'name_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'name_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'name_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'name_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'name_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'name_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'name_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'name_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountMconnTelemetrySnapshotDisksAdaptiveGroupsMax': { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotDisksAdaptiveGroupsMax'; fields: { 'inProgress': { name: 'inProgress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'major': { name: 'major'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'minor': { name: 'minor'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountMconnTelemetrySnapshotDisksAdaptiveGroupsOrderBy': { name: 'AccountMconnTelemetrySnapshotDisksAdaptiveGroupsOrderBy'; enumValues: 'connectorId_ASC' | 'connectorId_DESC' | 'count_ASC' | 'count_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetimeSixHours_ASC' | 'datetimeSixHours_DESC' | 'max_inProgress_ASC' | 'max_inProgress_DESC' | 'max_major_ASC' | 'max_major_DESC' | 'max_minor_ASC' | 'max_minor_DESC' | 'name_ASC' | 'name_DESC' | 'sum_discardsMerged_ASC' | 'sum_discardsMerged_DESC' | 'sum_discards_ASC' | 'sum_discards_DESC' | 'sum_flushes_ASC' | 'sum_flushes_DESC' | 'sum_merged_ASC' | 'sum_merged_DESC' | 'sum_reads_ASC' | 'sum_reads_DESC' | 'sum_sectorsDiscarded_ASC' | 'sum_sectorsDiscarded_DESC' | 'sum_sectorsRead_ASC' | 'sum_sectorsRead_DESC' | 'sum_sectorsWritten_ASC' | 'sum_sectorsWritten_DESC' | 'sum_writesMerged_ASC' | 'sum_writesMerged_DESC' | 'sum_writes_ASC' | 'sum_writes_DESC'; }; + 'AccountMconnTelemetrySnapshotDisksAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotDisksAdaptiveGroupsSum'; fields: { 'discards': { name: 'discards'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'discardsMerged': { name: 'discardsMerged'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'flushes': { name: 'flushes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'merged': { name: 'merged'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'reads': { name: 'reads'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sectorsDiscarded': { name: 'sectorsDiscarded'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sectorsRead': { name: 'sectorsRead'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sectorsWritten': { name: 'sectorsWritten'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'writes': { name: 'writes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'writesMerged': { name: 'writesMerged'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountMconnTelemetrySnapshotDisksStagingAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotDisksStagingAdaptiveGroups'; fields: { 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotDisksStagingAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotDisksStagingAdaptiveGroupsDimensions'; ofType: null; } }; 'max': { name: 'max'; type: { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotDisksStagingAdaptiveGroupsMax'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotDisksStagingAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'AccountMconnTelemetrySnapshotDisksStagingAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotDisksStagingAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountMconnTelemetrySnapshotDisksStagingAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotDisksStagingAdaptiveGroupsDimensions'; fields: { 'connectorId': { name: 'connectorId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeSixHours': { name: 'datetimeSixHours'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountMconnTelemetrySnapshotDisksStagingAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountMconnTelemetrySnapshotDisksStagingAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountMconnTelemetrySnapshotDisksStagingAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountMconnTelemetrySnapshotDisksStagingAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'connectorId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'connectorId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'connectorId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'name'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'name_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'name_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'name_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'name_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'name_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'name_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'name_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'name_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'name_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountMconnTelemetrySnapshotDisksStagingAdaptiveGroupsMax': { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotDisksStagingAdaptiveGroupsMax'; fields: { 'inProgress': { name: 'inProgress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'major': { name: 'major'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'minor': { name: 'minor'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountMconnTelemetrySnapshotDisksStagingAdaptiveGroupsOrderBy': { name: 'AccountMconnTelemetrySnapshotDisksStagingAdaptiveGroupsOrderBy'; enumValues: 'connectorId_ASC' | 'connectorId_DESC' | 'count_ASC' | 'count_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetimeSixHours_ASC' | 'datetimeSixHours_DESC' | 'max_inProgress_ASC' | 'max_inProgress_DESC' | 'max_major_ASC' | 'max_major_DESC' | 'max_minor_ASC' | 'max_minor_DESC' | 'name_ASC' | 'name_DESC' | 'sum_discardsMerged_ASC' | 'sum_discardsMerged_DESC' | 'sum_discards_ASC' | 'sum_discards_DESC' | 'sum_flushes_ASC' | 'sum_flushes_DESC' | 'sum_merged_ASC' | 'sum_merged_DESC' | 'sum_reads_ASC' | 'sum_reads_DESC' | 'sum_sectorsDiscarded_ASC' | 'sum_sectorsDiscarded_DESC' | 'sum_sectorsRead_ASC' | 'sum_sectorsRead_DESC' | 'sum_sectorsWritten_ASC' | 'sum_sectorsWritten_DESC' | 'sum_writesMerged_ASC' | 'sum_writesMerged_DESC' | 'sum_writes_ASC' | 'sum_writes_DESC'; }; + 'AccountMconnTelemetrySnapshotDisksStagingAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotDisksStagingAdaptiveGroupsSum'; fields: { 'discards': { name: 'discards'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'discardsMerged': { name: 'discardsMerged'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'flushes': { name: 'flushes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'merged': { name: 'merged'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'reads': { name: 'reads'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sectorsDiscarded': { name: 'sectorsDiscarded'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sectorsRead': { name: 'sectorsRead'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sectorsWritten': { name: 'sectorsWritten'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'writes': { name: 'writes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'writesMerged': { name: 'writesMerged'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountMconnTelemetrySnapshotInterfaceAddressesAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotInterfaceAddressesAdaptiveGroups'; fields: { 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotInterfaceAddressesAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotInterfaceAddressesAdaptiveGroupsDimensions'; ofType: null; } }; }; }; + 'AccountMconnTelemetrySnapshotInterfaceAddressesAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotInterfaceAddressesAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountMconnTelemetrySnapshotInterfaceAddressesAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotInterfaceAddressesAdaptiveGroupsDimensions'; fields: { 'connectorId': { name: 'connectorId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeSixHours': { name: 'datetimeSixHours'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'interfaceName': { name: 'interfaceName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipAddress': { name: 'ipAddress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountMconnTelemetrySnapshotInterfaceAddressesAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountMconnTelemetrySnapshotInterfaceAddressesAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountMconnTelemetrySnapshotInterfaceAddressesAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountMconnTelemetrySnapshotInterfaceAddressesAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'connectorId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'connectorId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'connectorId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'interfaceName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'interfaceName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'interfaceName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'interfaceName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'interfaceName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'interfaceName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'interfaceName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'interfaceName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'interfaceName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'interfaceName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipAddress'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipAddress_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipAddress_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipAddress_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipAddress_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipAddress_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipAddress_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipAddress_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipAddress_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipAddress_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountMconnTelemetrySnapshotInterfaceAddressesAdaptiveGroupsOrderBy': { name: 'AccountMconnTelemetrySnapshotInterfaceAddressesAdaptiveGroupsOrderBy'; enumValues: 'connectorId_ASC' | 'connectorId_DESC' | 'count_ASC' | 'count_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetimeSixHours_ASC' | 'datetimeSixHours_DESC' | 'interfaceName_ASC' | 'interfaceName_DESC' | 'ipAddress_ASC' | 'ipAddress_DESC'; }; + 'AccountMconnTelemetrySnapshotInterfaceAddressesStagingAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotInterfaceAddressesStagingAdaptiveGroups'; fields: { 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotInterfaceAddressesStagingAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotInterfaceAddressesStagingAdaptiveGroupsDimensions'; ofType: null; } }; }; }; + 'AccountMconnTelemetrySnapshotInterfaceAddressesStagingAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotInterfaceAddressesStagingAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountMconnTelemetrySnapshotInterfaceAddressesStagingAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotInterfaceAddressesStagingAdaptiveGroupsDimensions'; fields: { 'connectorId': { name: 'connectorId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeSixHours': { name: 'datetimeSixHours'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'interfaceName': { name: 'interfaceName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipAddress': { name: 'ipAddress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountMconnTelemetrySnapshotInterfaceAddressesStagingAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountMconnTelemetrySnapshotInterfaceAddressesStagingAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountMconnTelemetrySnapshotInterfaceAddressesStagingAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountMconnTelemetrySnapshotInterfaceAddressesStagingAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'connectorId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'connectorId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'connectorId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'interfaceName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'interfaceName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'interfaceName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'interfaceName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'interfaceName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'interfaceName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'interfaceName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'interfaceName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'interfaceName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'interfaceName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipAddress'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipAddress_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipAddress_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipAddress_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipAddress_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipAddress_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipAddress_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipAddress_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipAddress_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipAddress_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountMconnTelemetrySnapshotInterfaceAddressesStagingAdaptiveGroupsOrderBy': { name: 'AccountMconnTelemetrySnapshotInterfaceAddressesStagingAdaptiveGroupsOrderBy'; enumValues: 'connectorId_ASC' | 'connectorId_DESC' | 'count_ASC' | 'count_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetimeSixHours_ASC' | 'datetimeSixHours_DESC' | 'interfaceName_ASC' | 'interfaceName_DESC' | 'ipAddress_ASC' | 'ipAddress_DESC'; }; + 'AccountMconnTelemetrySnapshotInterfacesAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotInterfacesAdaptiveGroups'; fields: { 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotInterfacesAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotInterfacesAdaptiveGroupsDimensions'; ofType: null; } }; 'max': { name: 'max'; type: { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotInterfacesAdaptiveGroupsMax'; ofType: null; } }; }; }; + 'AccountMconnTelemetrySnapshotInterfacesAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotInterfacesAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountMconnTelemetrySnapshotInterfacesAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotInterfacesAdaptiveGroupsDimensions'; fields: { 'connectorId': { name: 'connectorId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeSixHours': { name: 'datetimeSixHours'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'operstate': { name: 'operstate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountMconnTelemetrySnapshotInterfacesAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountMconnTelemetrySnapshotInterfacesAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountMconnTelemetrySnapshotInterfacesAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountMconnTelemetrySnapshotInterfacesAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'connectorId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'connectorId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'connectorId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'name'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'name_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'name_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'name_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'name_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'name_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'name_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'name_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'name_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'name_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'operstate'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'operstate_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'operstate_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'operstate_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'operstate_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'operstate_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'operstate_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'operstate_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'operstate_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'operstate_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountMconnTelemetrySnapshotInterfacesAdaptiveGroupsMax': { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotInterfacesAdaptiveGroupsMax'; fields: { 'speed': { name: 'speed'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountMconnTelemetrySnapshotInterfacesAdaptiveGroupsOrderBy': { name: 'AccountMconnTelemetrySnapshotInterfacesAdaptiveGroupsOrderBy'; enumValues: 'connectorId_ASC' | 'connectorId_DESC' | 'count_ASC' | 'count_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetimeSixHours_ASC' | 'datetimeSixHours_DESC' | 'max_speed_ASC' | 'max_speed_DESC' | 'name_ASC' | 'name_DESC' | 'operstate_ASC' | 'operstate_DESC'; }; + 'AccountMconnTelemetrySnapshotInterfacesStagingAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotInterfacesStagingAdaptiveGroups'; fields: { 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotInterfacesStagingAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotInterfacesStagingAdaptiveGroupsDimensions'; ofType: null; } }; 'max': { name: 'max'; type: { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotInterfacesStagingAdaptiveGroupsMax'; ofType: null; } }; }; }; + 'AccountMconnTelemetrySnapshotInterfacesStagingAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotInterfacesStagingAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountMconnTelemetrySnapshotInterfacesStagingAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotInterfacesStagingAdaptiveGroupsDimensions'; fields: { 'connectorId': { name: 'connectorId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeSixHours': { name: 'datetimeSixHours'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'operstate': { name: 'operstate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountMconnTelemetrySnapshotInterfacesStagingAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountMconnTelemetrySnapshotInterfacesStagingAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountMconnTelemetrySnapshotInterfacesStagingAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountMconnTelemetrySnapshotInterfacesStagingAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'connectorId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'connectorId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'connectorId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'name'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'name_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'name_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'name_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'name_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'name_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'name_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'name_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'name_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'name_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'operstate'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'operstate_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'operstate_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'operstate_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'operstate_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'operstate_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'operstate_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'operstate_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'operstate_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'operstate_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountMconnTelemetrySnapshotInterfacesStagingAdaptiveGroupsMax': { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotInterfacesStagingAdaptiveGroupsMax'; fields: { 'speed': { name: 'speed'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountMconnTelemetrySnapshotInterfacesStagingAdaptiveGroupsOrderBy': { name: 'AccountMconnTelemetrySnapshotInterfacesStagingAdaptiveGroupsOrderBy'; enumValues: 'connectorId_ASC' | 'connectorId_DESC' | 'count_ASC' | 'count_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetimeSixHours_ASC' | 'datetimeSixHours_DESC' | 'max_speed_ASC' | 'max_speed_DESC' | 'name_ASC' | 'name_DESC' | 'operstate_ASC' | 'operstate_DESC'; }; + 'AccountMconnTelemetrySnapshotMountsAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotMountsAdaptiveGroups'; fields: { 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotMountsAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotMountsAdaptiveGroupsDimensions'; ofType: null; } }; 'max': { name: 'max'; type: { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotMountsAdaptiveGroupsMax'; ofType: null; } }; }; }; + 'AccountMconnTelemetrySnapshotMountsAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotMountsAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountMconnTelemetrySnapshotMountsAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotMountsAdaptiveGroupsDimensions'; fields: { 'connectorId': { name: 'connectorId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeSixHours': { name: 'datetimeSixHours'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'fileSystem': { name: 'fileSystem'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'kind': { name: 'kind'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'mountPoint': { name: 'mountPoint'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountMconnTelemetrySnapshotMountsAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountMconnTelemetrySnapshotMountsAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountMconnTelemetrySnapshotMountsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountMconnTelemetrySnapshotMountsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'connectorId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'connectorId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'connectorId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'fileSystem'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fileSystem_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fileSystem_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fileSystem_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'fileSystem_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fileSystem_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fileSystem_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fileSystem_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fileSystem_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'fileSystem_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'kind'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'kind_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'kind_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'kind_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'kind_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'kind_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'kind_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'kind_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'kind_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'kind_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mountPoint'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mountPoint_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mountPoint_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mountPoint_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'mountPoint_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mountPoint_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mountPoint_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mountPoint_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mountPoint_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'mountPoint_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'name_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'name_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'name_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'name_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'name_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'name_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'name_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'name_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'name_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountMconnTelemetrySnapshotMountsAdaptiveGroupsMax': { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotMountsAdaptiveGroupsMax'; fields: { 'availableBytes': { name: 'availableBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'isReadOnly': { name: 'isReadOnly'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'isRemovable': { name: 'isRemovable'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'totalBytes': { name: 'totalBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountMconnTelemetrySnapshotMountsAdaptiveGroupsOrderBy': { name: 'AccountMconnTelemetrySnapshotMountsAdaptiveGroupsOrderBy'; enumValues: 'connectorId_ASC' | 'connectorId_DESC' | 'count_ASC' | 'count_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetimeSixHours_ASC' | 'datetimeSixHours_DESC' | 'fileSystem_ASC' | 'fileSystem_DESC' | 'kind_ASC' | 'kind_DESC' | 'max_availableBytes_ASC' | 'max_availableBytes_DESC' | 'max_isReadOnly_ASC' | 'max_isReadOnly_DESC' | 'max_isRemovable_ASC' | 'max_isRemovable_DESC' | 'max_totalBytes_ASC' | 'max_totalBytes_DESC' | 'mountPoint_ASC' | 'mountPoint_DESC' | 'name_ASC' | 'name_DESC'; }; + 'AccountMconnTelemetrySnapshotMountsStagingAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotMountsStagingAdaptiveGroups'; fields: { 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotMountsStagingAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotMountsStagingAdaptiveGroupsDimensions'; ofType: null; } }; 'max': { name: 'max'; type: { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotMountsStagingAdaptiveGroupsMax'; ofType: null; } }; }; }; + 'AccountMconnTelemetrySnapshotMountsStagingAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotMountsStagingAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountMconnTelemetrySnapshotMountsStagingAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotMountsStagingAdaptiveGroupsDimensions'; fields: { 'connectorId': { name: 'connectorId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeSixHours': { name: 'datetimeSixHours'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'fileSystem': { name: 'fileSystem'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'kind': { name: 'kind'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'mountPoint': { name: 'mountPoint'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountMconnTelemetrySnapshotMountsStagingAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountMconnTelemetrySnapshotMountsStagingAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountMconnTelemetrySnapshotMountsStagingAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountMconnTelemetrySnapshotMountsStagingAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'connectorId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'connectorId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'connectorId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'fileSystem'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fileSystem_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fileSystem_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fileSystem_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'fileSystem_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fileSystem_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fileSystem_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fileSystem_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fileSystem_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'fileSystem_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'kind'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'kind_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'kind_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'kind_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'kind_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'kind_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'kind_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'kind_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'kind_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'kind_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mountPoint'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mountPoint_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mountPoint_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mountPoint_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'mountPoint_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mountPoint_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mountPoint_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mountPoint_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mountPoint_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'mountPoint_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'name_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'name_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'name_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'name_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'name_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'name_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'name_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'name_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'name_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountMconnTelemetrySnapshotMountsStagingAdaptiveGroupsMax': { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotMountsStagingAdaptiveGroupsMax'; fields: { 'availableBytes': { name: 'availableBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'isReadOnly': { name: 'isReadOnly'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'isRemovable': { name: 'isRemovable'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'totalBytes': { name: 'totalBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountMconnTelemetrySnapshotMountsStagingAdaptiveGroupsOrderBy': { name: 'AccountMconnTelemetrySnapshotMountsStagingAdaptiveGroupsOrderBy'; enumValues: 'connectorId_ASC' | 'connectorId_DESC' | 'count_ASC' | 'count_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetimeSixHours_ASC' | 'datetimeSixHours_DESC' | 'fileSystem_ASC' | 'fileSystem_DESC' | 'kind_ASC' | 'kind_DESC' | 'max_availableBytes_ASC' | 'max_availableBytes_DESC' | 'max_isReadOnly_ASC' | 'max_isReadOnly_DESC' | 'max_isRemovable_ASC' | 'max_isRemovable_DESC' | 'max_totalBytes_ASC' | 'max_totalBytes_DESC' | 'mountPoint_ASC' | 'mountPoint_DESC' | 'name_ASC' | 'name_DESC'; }; + 'AccountMconnTelemetrySnapshotNetdevsAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotNetdevsAdaptiveGroups'; fields: { 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotNetdevsAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotNetdevsAdaptiveGroupsDimensions'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotNetdevsAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'AccountMconnTelemetrySnapshotNetdevsAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotNetdevsAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountMconnTelemetrySnapshotNetdevsAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotNetdevsAdaptiveGroupsDimensions'; fields: { 'connectorId': { name: 'connectorId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeSixHours': { name: 'datetimeSixHours'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountMconnTelemetrySnapshotNetdevsAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountMconnTelemetrySnapshotNetdevsAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountMconnTelemetrySnapshotNetdevsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountMconnTelemetrySnapshotNetdevsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'connectorId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'connectorId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'connectorId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'name'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'name_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'name_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'name_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'name_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'name_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'name_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'name_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'name_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'name_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountMconnTelemetrySnapshotNetdevsAdaptiveGroupsOrderBy': { name: 'AccountMconnTelemetrySnapshotNetdevsAdaptiveGroupsOrderBy'; enumValues: 'connectorId_ASC' | 'connectorId_DESC' | 'count_ASC' | 'count_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetimeSixHours_ASC' | 'datetimeSixHours_DESC' | 'name_ASC' | 'name_DESC' | 'sum_recvBytes_ASC' | 'sum_recvBytes_DESC' | 'sum_recvCompressed_ASC' | 'sum_recvCompressed_DESC' | 'sum_recvDrop_ASC' | 'sum_recvDrop_DESC' | 'sum_recvErrs_ASC' | 'sum_recvErrs_DESC' | 'sum_recvFifo_ASC' | 'sum_recvFifo_DESC' | 'sum_recvFrame_ASC' | 'sum_recvFrame_DESC' | 'sum_recvMulticast_ASC' | 'sum_recvMulticast_DESC' | 'sum_recvPackets_ASC' | 'sum_recvPackets_DESC' | 'sum_sentBytes_ASC' | 'sum_sentBytes_DESC' | 'sum_sentCarrier_ASC' | 'sum_sentCarrier_DESC' | 'sum_sentColls_ASC' | 'sum_sentColls_DESC' | 'sum_sentCompressed_ASC' | 'sum_sentCompressed_DESC' | 'sum_sentDrop_ASC' | 'sum_sentDrop_DESC' | 'sum_sentErrs_ASC' | 'sum_sentErrs_DESC' | 'sum_sentFifo_ASC' | 'sum_sentFifo_DESC' | 'sum_sentPackets_ASC' | 'sum_sentPackets_DESC'; }; + 'AccountMconnTelemetrySnapshotNetdevsAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotNetdevsAdaptiveGroupsSum'; fields: { 'recvBytes': { name: 'recvBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'recvCompressed': { name: 'recvCompressed'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'recvDrop': { name: 'recvDrop'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'recvErrs': { name: 'recvErrs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'recvFifo': { name: 'recvFifo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'recvFrame': { name: 'recvFrame'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'recvMulticast': { name: 'recvMulticast'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'recvPackets': { name: 'recvPackets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sentBytes': { name: 'sentBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sentCarrier': { name: 'sentCarrier'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sentColls': { name: 'sentColls'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sentCompressed': { name: 'sentCompressed'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sentDrop': { name: 'sentDrop'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sentErrs': { name: 'sentErrs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sentFifo': { name: 'sentFifo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sentPackets': { name: 'sentPackets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountMconnTelemetrySnapshotNetdevsStagingAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotNetdevsStagingAdaptiveGroups'; fields: { 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotNetdevsStagingAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotNetdevsStagingAdaptiveGroupsDimensions'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotNetdevsStagingAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'AccountMconnTelemetrySnapshotNetdevsStagingAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotNetdevsStagingAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountMconnTelemetrySnapshotNetdevsStagingAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotNetdevsStagingAdaptiveGroupsDimensions'; fields: { 'connectorId': { name: 'connectorId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeSixHours': { name: 'datetimeSixHours'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountMconnTelemetrySnapshotNetdevsStagingAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountMconnTelemetrySnapshotNetdevsStagingAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountMconnTelemetrySnapshotNetdevsStagingAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountMconnTelemetrySnapshotNetdevsStagingAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'connectorId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'connectorId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'connectorId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'name'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'name_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'name_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'name_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'name_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'name_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'name_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'name_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'name_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'name_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountMconnTelemetrySnapshotNetdevsStagingAdaptiveGroupsOrderBy': { name: 'AccountMconnTelemetrySnapshotNetdevsStagingAdaptiveGroupsOrderBy'; enumValues: 'connectorId_ASC' | 'connectorId_DESC' | 'count_ASC' | 'count_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetimeSixHours_ASC' | 'datetimeSixHours_DESC' | 'name_ASC' | 'name_DESC' | 'sum_recvBytes_ASC' | 'sum_recvBytes_DESC' | 'sum_recvCompressed_ASC' | 'sum_recvCompressed_DESC' | 'sum_recvDrop_ASC' | 'sum_recvDrop_DESC' | 'sum_recvErrs_ASC' | 'sum_recvErrs_DESC' | 'sum_recvFifo_ASC' | 'sum_recvFifo_DESC' | 'sum_recvFrame_ASC' | 'sum_recvFrame_DESC' | 'sum_recvMulticast_ASC' | 'sum_recvMulticast_DESC' | 'sum_recvPackets_ASC' | 'sum_recvPackets_DESC' | 'sum_sentBytes_ASC' | 'sum_sentBytes_DESC' | 'sum_sentCarrier_ASC' | 'sum_sentCarrier_DESC' | 'sum_sentColls_ASC' | 'sum_sentColls_DESC' | 'sum_sentCompressed_ASC' | 'sum_sentCompressed_DESC' | 'sum_sentDrop_ASC' | 'sum_sentDrop_DESC' | 'sum_sentErrs_ASC' | 'sum_sentErrs_DESC' | 'sum_sentFifo_ASC' | 'sum_sentFifo_DESC' | 'sum_sentPackets_ASC' | 'sum_sentPackets_DESC'; }; + 'AccountMconnTelemetrySnapshotNetdevsStagingAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotNetdevsStagingAdaptiveGroupsSum'; fields: { 'recvBytes': { name: 'recvBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'recvCompressed': { name: 'recvCompressed'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'recvDrop': { name: 'recvDrop'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'recvErrs': { name: 'recvErrs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'recvFifo': { name: 'recvFifo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'recvFrame': { name: 'recvFrame'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'recvMulticast': { name: 'recvMulticast'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'recvPackets': { name: 'recvPackets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sentBytes': { name: 'sentBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sentCarrier': { name: 'sentCarrier'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sentColls': { name: 'sentColls'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sentCompressed': { name: 'sentCompressed'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sentDrop': { name: 'sentDrop'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sentErrs': { name: 'sentErrs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sentFifo': { name: 'sentFifo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sentPackets': { name: 'sentPackets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountMconnTelemetrySnapshotThermalsAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotThermalsAdaptiveGroups'; fields: { 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotThermalsAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotThermalsAdaptiveGroupsDimensions'; ofType: null; } }; 'max': { name: 'max'; type: { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotThermalsAdaptiveGroupsMax'; ofType: null; } }; }; }; + 'AccountMconnTelemetrySnapshotThermalsAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotThermalsAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountMconnTelemetrySnapshotThermalsAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotThermalsAdaptiveGroupsDimensions'; fields: { 'connectorId': { name: 'connectorId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeSixHours': { name: 'datetimeSixHours'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'label': { name: 'label'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountMconnTelemetrySnapshotThermalsAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountMconnTelemetrySnapshotThermalsAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountMconnTelemetrySnapshotThermalsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountMconnTelemetrySnapshotThermalsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'connectorId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'connectorId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'connectorId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'label'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'label_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'label_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'label_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'label_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'label_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'label_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'label_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'label_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'label_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountMconnTelemetrySnapshotThermalsAdaptiveGroupsMax': { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotThermalsAdaptiveGroupsMax'; fields: { 'criticalCelcius': { name: 'criticalCelcius'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'currentCelcius': { name: 'currentCelcius'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'maxCelcius': { name: 'maxCelcius'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountMconnTelemetrySnapshotThermalsAdaptiveGroupsOrderBy': { name: 'AccountMconnTelemetrySnapshotThermalsAdaptiveGroupsOrderBy'; enumValues: 'connectorId_ASC' | 'connectorId_DESC' | 'count_ASC' | 'count_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetimeSixHours_ASC' | 'datetimeSixHours_DESC' | 'label_ASC' | 'label_DESC' | 'max_criticalCelcius_ASC' | 'max_criticalCelcius_DESC' | 'max_currentCelcius_ASC' | 'max_currentCelcius_DESC' | 'max_maxCelcius_ASC' | 'max_maxCelcius_DESC'; }; + 'AccountMconnTelemetrySnapshotThermalsStagingAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotThermalsStagingAdaptiveGroups'; fields: { 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotThermalsStagingAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotThermalsStagingAdaptiveGroupsDimensions'; ofType: null; } }; 'max': { name: 'max'; type: { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotThermalsStagingAdaptiveGroupsMax'; ofType: null; } }; }; }; + 'AccountMconnTelemetrySnapshotThermalsStagingAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotThermalsStagingAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountMconnTelemetrySnapshotThermalsStagingAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotThermalsStagingAdaptiveGroupsDimensions'; fields: { 'connectorId': { name: 'connectorId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeSixHours': { name: 'datetimeSixHours'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'label': { name: 'label'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountMconnTelemetrySnapshotThermalsStagingAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountMconnTelemetrySnapshotThermalsStagingAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountMconnTelemetrySnapshotThermalsStagingAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountMconnTelemetrySnapshotThermalsStagingAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'connectorId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'connectorId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'connectorId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'label'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'label_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'label_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'label_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'label_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'label_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'label_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'label_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'label_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'label_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountMconnTelemetrySnapshotThermalsStagingAdaptiveGroupsMax': { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotThermalsStagingAdaptiveGroupsMax'; fields: { 'criticalCelcius': { name: 'criticalCelcius'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'currentCelcius': { name: 'currentCelcius'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'maxCelcius': { name: 'maxCelcius'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountMconnTelemetrySnapshotThermalsStagingAdaptiveGroupsOrderBy': { name: 'AccountMconnTelemetrySnapshotThermalsStagingAdaptiveGroupsOrderBy'; enumValues: 'connectorId_ASC' | 'connectorId_DESC' | 'count_ASC' | 'count_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetimeSixHours_ASC' | 'datetimeSixHours_DESC' | 'label_ASC' | 'label_DESC' | 'max_criticalCelcius_ASC' | 'max_criticalCelcius_DESC' | 'max_currentCelcius_ASC' | 'max_currentCelcius_DESC' | 'max_maxCelcius_ASC' | 'max_maxCelcius_DESC'; }; + 'AccountMconnTelemetrySnapshotTunnelsAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotTunnelsAdaptiveGroups'; fields: { 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotTunnelsAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotTunnelsAdaptiveGroupsDimensions'; ofType: null; } }; 'max': { name: 'max'; type: { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotTunnelsAdaptiveGroupsMax'; ofType: null; } }; }; }; + 'AccountMconnTelemetrySnapshotTunnelsAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotTunnelsAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountMconnTelemetrySnapshotTunnelsAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotTunnelsAdaptiveGroupsDimensions'; fields: { 'connectorId': { name: 'connectorId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeSixHours': { name: 'datetimeSixHours'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'interfaceName': { name: 'interfaceName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'tunnelId': { name: 'tunnelId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountMconnTelemetrySnapshotTunnelsAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountMconnTelemetrySnapshotTunnelsAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountMconnTelemetrySnapshotTunnelsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountMconnTelemetrySnapshotTunnelsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'connectorId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'connectorId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'connectorId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'interfaceName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'interfaceName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'interfaceName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'interfaceName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'interfaceName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'interfaceName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'interfaceName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'interfaceName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'interfaceName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'interfaceName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tunnelId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tunnelId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tunnelId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tunnelId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tunnelId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tunnelId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tunnelId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tunnelId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tunnelId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tunnelId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountMconnTelemetrySnapshotTunnelsAdaptiveGroupsMax': { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotTunnelsAdaptiveGroupsMax'; fields: { 'healthValue': { name: 'healthValue'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountMconnTelemetrySnapshotTunnelsAdaptiveGroupsOrderBy': { name: 'AccountMconnTelemetrySnapshotTunnelsAdaptiveGroupsOrderBy'; enumValues: 'connectorId_ASC' | 'connectorId_DESC' | 'count_ASC' | 'count_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetimeSixHours_ASC' | 'datetimeSixHours_DESC' | 'interfaceName_ASC' | 'interfaceName_DESC' | 'max_healthValue_ASC' | 'max_healthValue_DESC' | 'tunnelId_ASC' | 'tunnelId_DESC'; }; + 'AccountMconnTelemetrySnapshotTunnelsStagingAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotTunnelsStagingAdaptiveGroups'; fields: { 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotTunnelsStagingAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotTunnelsStagingAdaptiveGroupsDimensions'; ofType: null; } }; 'max': { name: 'max'; type: { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotTunnelsStagingAdaptiveGroupsMax'; ofType: null; } }; }; }; + 'AccountMconnTelemetrySnapshotTunnelsStagingAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotTunnelsStagingAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountMconnTelemetrySnapshotTunnelsStagingAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotTunnelsStagingAdaptiveGroupsDimensions'; fields: { 'connectorId': { name: 'connectorId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeSixHours': { name: 'datetimeSixHours'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'interfaceName': { name: 'interfaceName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'tunnelId': { name: 'tunnelId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountMconnTelemetrySnapshotTunnelsStagingAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountMconnTelemetrySnapshotTunnelsStagingAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountMconnTelemetrySnapshotTunnelsStagingAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountMconnTelemetrySnapshotTunnelsStagingAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'connectorId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'connectorId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'connectorId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'interfaceName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'interfaceName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'interfaceName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'interfaceName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'interfaceName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'interfaceName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'interfaceName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'interfaceName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'interfaceName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'interfaceName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tunnelId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tunnelId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tunnelId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tunnelId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tunnelId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tunnelId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tunnelId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tunnelId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tunnelId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tunnelId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountMconnTelemetrySnapshotTunnelsStagingAdaptiveGroupsMax': { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotTunnelsStagingAdaptiveGroupsMax'; fields: { 'healthValue': { name: 'healthValue'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountMconnTelemetrySnapshotTunnelsStagingAdaptiveGroupsOrderBy': { name: 'AccountMconnTelemetrySnapshotTunnelsStagingAdaptiveGroupsOrderBy'; enumValues: 'connectorId_ASC' | 'connectorId_DESC' | 'count_ASC' | 'count_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetimeSixHours_ASC' | 'datetimeSixHours_DESC' | 'interfaceName_ASC' | 'interfaceName_DESC' | 'max_healthValue_ASC' | 'max_healthValue_DESC' | 'tunnelId_ASC' | 'tunnelId_DESC'; }; + 'AccountMconnTelemetrySnapshotsAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotsAdaptiveGroups'; fields: { 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotsAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotsAdaptiveGroupsDimensions'; ofType: null; } }; 'max': { name: 'max'; type: { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotsAdaptiveGroupsMax'; ofType: null; } }; }; }; + 'AccountMconnTelemetrySnapshotsAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotsAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountMconnTelemetrySnapshotsAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotsAdaptiveGroupsDimensions'; fields: { 'connectorId': { name: 'connectorId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeSixHours': { name: 'datetimeSixHours'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'version': { name: 'version'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountMconnTelemetrySnapshotsAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountMconnTelemetrySnapshotsAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountMconnTelemetrySnapshotsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountMconnTelemetrySnapshotsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'connectorId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'connectorId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'connectorId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'version'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'version_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'version_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'version_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'version_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'version_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'version_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'version_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'version_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'version_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountMconnTelemetrySnapshotsAdaptiveGroupsMax': { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotsAdaptiveGroupsMax'; fields: { 'cpuCount': { name: 'cpuCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'haValue': { name: 'haValue'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'kernelBtime': { name: 'kernelBtime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'kernelProcessesRunning': { name: 'kernelProcessesRunning'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'loadAverage15m': { name: 'loadAverage15m'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'loadAverage1m': { name: 'loadAverage1m'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'loadAverage5m': { name: 'loadAverage5m'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'memoryActiveBytes': { name: 'memoryActiveBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'memoryAvailableBytes': { name: 'memoryAvailableBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'memoryBuffersBytes': { name: 'memoryBuffersBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'memoryCachedBytes': { name: 'memoryCachedBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'memoryFreeBytes': { name: 'memoryFreeBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'memoryInactiveBytes': { name: 'memoryInactiveBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'memoryTotalBytes': { name: 'memoryTotalBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountMconnTelemetrySnapshotsAdaptiveGroupsOrderBy': { name: 'AccountMconnTelemetrySnapshotsAdaptiveGroupsOrderBy'; enumValues: 'connectorId_ASC' | 'connectorId_DESC' | 'count_ASC' | 'count_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetimeSixHours_ASC' | 'datetimeSixHours_DESC' | 'max_cpuCount_ASC' | 'max_cpuCount_DESC' | 'max_haValue_ASC' | 'max_haValue_DESC' | 'max_kernelBtime_ASC' | 'max_kernelBtime_DESC' | 'max_kernelProcessesRunning_ASC' | 'max_kernelProcessesRunning_DESC' | 'max_loadAverage15m_ASC' | 'max_loadAverage15m_DESC' | 'max_loadAverage1m_ASC' | 'max_loadAverage1m_DESC' | 'max_loadAverage5m_ASC' | 'max_loadAverage5m_DESC' | 'max_memoryActiveBytes_ASC' | 'max_memoryActiveBytes_DESC' | 'max_memoryAvailableBytes_ASC' | 'max_memoryAvailableBytes_DESC' | 'max_memoryBuffersBytes_ASC' | 'max_memoryBuffersBytes_DESC' | 'max_memoryCachedBytes_ASC' | 'max_memoryCachedBytes_DESC' | 'max_memoryFreeBytes_ASC' | 'max_memoryFreeBytes_DESC' | 'max_memoryInactiveBytes_ASC' | 'max_memoryInactiveBytes_DESC' | 'max_memoryTotalBytes_ASC' | 'max_memoryTotalBytes_DESC' | 'version_ASC' | 'version_DESC'; }; + 'AccountMconnTelemetrySnapshotsStagingAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotsStagingAdaptiveGroups'; fields: { 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotsStagingAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotsStagingAdaptiveGroupsDimensions'; ofType: null; } }; 'max': { name: 'max'; type: { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotsStagingAdaptiveGroupsMax'; ofType: null; } }; }; }; + 'AccountMconnTelemetrySnapshotsStagingAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotsStagingAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountMconnTelemetrySnapshotsStagingAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotsStagingAdaptiveGroupsDimensions'; fields: { 'connectorId': { name: 'connectorId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeSixHours': { name: 'datetimeSixHours'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'version': { name: 'version'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountMconnTelemetrySnapshotsStagingAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountMconnTelemetrySnapshotsStagingAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountMconnTelemetrySnapshotsStagingAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountMconnTelemetrySnapshotsStagingAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'connectorId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'connectorId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'connectorId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'connectorId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'version'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'version_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'version_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'version_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'version_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'version_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'version_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'version_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'version_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'version_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountMconnTelemetrySnapshotsStagingAdaptiveGroupsMax': { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotsStagingAdaptiveGroupsMax'; fields: { 'cpuCount': { name: 'cpuCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'haValue': { name: 'haValue'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'kernelBtime': { name: 'kernelBtime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'kernelProcessesRunning': { name: 'kernelProcessesRunning'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'loadAverage15m': { name: 'loadAverage15m'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'loadAverage1m': { name: 'loadAverage1m'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'loadAverage5m': { name: 'loadAverage5m'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'memoryActiveBytes': { name: 'memoryActiveBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'memoryAvailableBytes': { name: 'memoryAvailableBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'memoryBuffersBytes': { name: 'memoryBuffersBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'memoryCachedBytes': { name: 'memoryCachedBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'memoryFreeBytes': { name: 'memoryFreeBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'memoryInactiveBytes': { name: 'memoryInactiveBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'memoryTotalBytes': { name: 'memoryTotalBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountMconnTelemetrySnapshotsStagingAdaptiveGroupsOrderBy': { name: 'AccountMconnTelemetrySnapshotsStagingAdaptiveGroupsOrderBy'; enumValues: 'connectorId_ASC' | 'connectorId_DESC' | 'count_ASC' | 'count_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetimeSixHours_ASC' | 'datetimeSixHours_DESC' | 'max_cpuCount_ASC' | 'max_cpuCount_DESC' | 'max_haValue_ASC' | 'max_haValue_DESC' | 'max_kernelBtime_ASC' | 'max_kernelBtime_DESC' | 'max_kernelProcessesRunning_ASC' | 'max_kernelProcessesRunning_DESC' | 'max_loadAverage15m_ASC' | 'max_loadAverage15m_DESC' | 'max_loadAverage1m_ASC' | 'max_loadAverage1m_DESC' | 'max_loadAverage5m_ASC' | 'max_loadAverage5m_DESC' | 'max_memoryActiveBytes_ASC' | 'max_memoryActiveBytes_DESC' | 'max_memoryAvailableBytes_ASC' | 'max_memoryAvailableBytes_DESC' | 'max_memoryBuffersBytes_ASC' | 'max_memoryBuffersBytes_DESC' | 'max_memoryCachedBytes_ASC' | 'max_memoryCachedBytes_DESC' | 'max_memoryFreeBytes_ASC' | 'max_memoryFreeBytes_DESC' | 'max_memoryInactiveBytes_ASC' | 'max_memoryInactiveBytes_DESC' | 'max_memoryTotalBytes_ASC' | 'max_memoryTotalBytes_DESC' | 'version_ASC' | 'version_DESC'; }; + 'AccountMediaUniqueTransformations': { kind: 'OBJECT'; name: 'AccountMediaUniqueTransformations'; fields: { 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'transformations': { name: 'transformations'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountMediaUniqueTransformationsAccumulatedSinceStartOfMonth': { kind: 'OBJECT'; name: 'AccountMediaUniqueTransformationsAccumulatedSinceStartOfMonth'; fields: { 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'transformations': { name: 'transformations'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountMediaUniqueTransformationsAccumulatedSinceStartOfMonthFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountMediaUniqueTransformationsAccumulatedSinceStartOfMonthFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountMediaUniqueTransformationsAccumulatedSinceStartOfMonthFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountMediaUniqueTransformationsAccumulatedSinceStartOfMonthFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }]; }; + 'AccountMediaUniqueTransformationsAccumulatedSinceStartOfMonthOrderBy': { name: 'AccountMediaUniqueTransformationsAccumulatedSinceStartOfMonthOrderBy'; enumValues: 'date_ASC' | 'date_DESC'; }; + 'AccountMediaUniqueTransformationsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountMediaUniqueTransformationsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountMediaUniqueTransformationsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountMediaUniqueTransformationsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }]; }; + 'AccountMediaUniqueTransformationsOrderBy': { name: 'AccountMediaUniqueTransformationsOrderBy'; enumValues: 'date_ASC' | 'date_DESC'; }; + 'AccountMnmAWSVPCFlowDataAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountMnmAWSVPCFlowDataAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountMnmAWSVPCFlowDataAdaptiveGroupsAvg'; ofType: null; } }; 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountMnmAWSVPCFlowDataAdaptiveGroupsConfidence'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountMnmAWSVPCFlowDataAdaptiveGroupsDimensions'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountMnmAWSVPCFlowDataAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'AccountMnmAWSVPCFlowDataAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'AccountMnmAWSVPCFlowDataAdaptiveGroupsAvg'; fields: { 'bitRate': { name: 'bitRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'bitRateDay': { name: 'bitRateDay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'bitRateFifteenMinutes': { name: 'bitRateFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'bitRateFiveMinutes': { name: 'bitRateFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'bitRateHour': { name: 'bitRateHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'bitRateMinute': { name: 'bitRateMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'bitRateTenSeconds': { name: 'bitRateTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'egressBitRate': { name: 'egressBitRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'egressBitRateDay': { name: 'egressBitRateDay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'egressBitRateFifteenMinutes': { name: 'egressBitRateFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'egressBitRateFiveMinutes': { name: 'egressBitRateFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'egressBitRateHour': { name: 'egressBitRateHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'egressBitRateMinute': { name: 'egressBitRateMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'egressBitRateTenSeconds': { name: 'egressBitRateTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'egressPacketRate': { name: 'egressPacketRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'egressPacketRateDay': { name: 'egressPacketRateDay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'egressPacketRateFifteenMinutes': { name: 'egressPacketRateFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'egressPacketRateFiveMinutes': { name: 'egressPacketRateFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'egressPacketRateHour': { name: 'egressPacketRateHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'egressPacketRateMinute': { name: 'egressPacketRateMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'egressPacketRateTenSeconds': { name: 'egressPacketRateTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'packetRate': { name: 'packetRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'packetRateDay': { name: 'packetRateDay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'packetRateFifteenMinutes': { name: 'packetRateFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'packetRateFiveMinutes': { name: 'packetRateFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'packetRateHour': { name: 'packetRateHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'packetRateMinute': { name: 'packetRateMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'packetRateTenSeconds': { name: 'packetRateTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountMnmAWSVPCFlowDataAdaptiveGroupsAvgConfidence': { kind: 'OBJECT'; name: 'AccountMnmAWSVPCFlowDataAdaptiveGroupsAvgConfidence'; fields: { 'bitRate': { name: 'bitRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateDay': { name: 'bitRateDay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateFifteenMinutes': { name: 'bitRateFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateFiveMinutes': { name: 'bitRateFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateHour': { name: 'bitRateHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateMinute': { name: 'bitRateMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateTenSeconds': { name: 'bitRateTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'egressBitRate': { name: 'egressBitRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'egressBitRateDay': { name: 'egressBitRateDay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'egressBitRateFifteenMinutes': { name: 'egressBitRateFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'egressBitRateFiveMinutes': { name: 'egressBitRateFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'egressBitRateHour': { name: 'egressBitRateHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'egressBitRateMinute': { name: 'egressBitRateMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'egressBitRateTenSeconds': { name: 'egressBitRateTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'egressPacketRate': { name: 'egressPacketRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'egressPacketRateDay': { name: 'egressPacketRateDay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'egressPacketRateFifteenMinutes': { name: 'egressPacketRateFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'egressPacketRateFiveMinutes': { name: 'egressPacketRateFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'egressPacketRateHour': { name: 'egressPacketRateHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'egressPacketRateMinute': { name: 'egressPacketRateMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'egressPacketRateTenSeconds': { name: 'egressPacketRateTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRate': { name: 'packetRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateDay': { name: 'packetRateDay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateFifteenMinutes': { name: 'packetRateFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateFiveMinutes': { name: 'packetRateFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateHour': { name: 'packetRateHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateMinute': { name: 'packetRateMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateTenSeconds': { name: 'packetRateTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountMnmAWSVPCFlowDataAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountMnmAWSVPCFlowDataAdaptiveGroupsConfidence'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountMnmAWSVPCFlowDataAdaptiveGroupsAvgConfidence'; ofType: null; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountMnmAWSVPCFlowDataAdaptiveGroupsSumConfidence'; ofType: null; } }; }; }; + 'AccountMnmAWSVPCFlowDataAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountMnmAWSVPCFlowDataAdaptiveGroupsDimensions'; fields: { 'accountID': { name: 'accountID'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'action': { name: 'action'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'azID': { name: 'azID'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeTenSeconds': { name: 'datetimeTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'destinationAddress': { name: 'destinationAddress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'destinationPort': { name: 'destinationPort'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'ecsClusterArn': { name: 'ecsClusterArn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ecsClusterName': { name: 'ecsClusterName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ecsContainerID': { name: 'ecsContainerID'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ecsContainerInstanceArn': { name: 'ecsContainerInstanceArn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ecsContainerInstanceID': { name: 'ecsContainerInstanceID'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ecsSecondContainerID': { name: 'ecsSecondContainerID'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ecsServiceName': { name: 'ecsServiceName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ecsTaskArn': { name: 'ecsTaskArn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ecsTaskDefinitionArn': { name: 'ecsTaskDefinitionArn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ecsTaskID': { name: 'ecsTaskID'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'end': { name: 'end'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'ethertype': { name: 'ethertype'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'firehoseStream': { name: 'firehoseStream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'flowDirection': { name: 'flowDirection'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'instanceID': { name: 'instanceID'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'interfaceID': { name: 'interfaceID'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'logStatus': { name: 'logStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'pktDestinationAddress': { name: 'pktDestinationAddress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'pktDstAwsService': { name: 'pktDstAwsService'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'pktSourceAddress': { name: 'pktSourceAddress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'pktSrcAwsService': { name: 'pktSrcAwsService'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'protocol': { name: 'protocol'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'protocolString': { name: 'protocolString'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'region': { name: 'region'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'rejectReason': { name: 'rejectReason'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ruleIDs': { name: 'ruleIDs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'sourceAddress': { name: 'sourceAddress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sourcePort': { name: 'sourcePort'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'start': { name: 'start'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'sublocationID': { name: 'sublocationID'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sublocationType': { name: 'sublocationType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'subnetID': { name: 'subnetID'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'tcpFlags': { name: 'tcpFlags'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'tcpFlagsString': { name: 'tcpFlagsString'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'trafficPath': { name: 'trafficPath'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'version': { name: 'version'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'vpcFlowVersion': { name: 'vpcFlowVersion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'vpcID': { name: 'vpcID'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountMnmAWSVPCFlowDataAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountMnmAWSVPCFlowDataAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountMnmAWSVPCFlowDataAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountMnmAWSVPCFlowDataAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'accountID'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'accountID_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'accountID_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'accountID_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'accountID_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'accountID_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'accountID_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'accountID_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'accountID_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'accountID_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'action_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'action_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'azID'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'azID_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'azID_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'azID_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'azID_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'azID_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'azID_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'azID_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'azID_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'azID_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeTenSeconds'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeTenSeconds_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationAddress'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAddress_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAddress_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAddress_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationAddress_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAddress_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAddress_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAddress_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAddress_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationAddress_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationPort'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationPort_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ecsClusterArn'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsClusterArn_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsClusterArn_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsClusterArn_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ecsClusterArn_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsClusterArn_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsClusterArn_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsClusterArn_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsClusterArn_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ecsClusterArn_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsClusterName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsClusterName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsClusterName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsClusterName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ecsClusterName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsClusterName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsClusterName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsClusterName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsClusterName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ecsClusterName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsContainerID'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsContainerID_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsContainerID_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsContainerID_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ecsContainerID_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsContainerID_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsContainerID_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsContainerID_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsContainerID_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ecsContainerID_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsContainerInstanceArn'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsContainerInstanceArn_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsContainerInstanceArn_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsContainerInstanceArn_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ecsContainerInstanceArn_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsContainerInstanceArn_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsContainerInstanceArn_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsContainerInstanceArn_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsContainerInstanceArn_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ecsContainerInstanceArn_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsContainerInstanceID'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsContainerInstanceID_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsContainerInstanceID_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsContainerInstanceID_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ecsContainerInstanceID_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsContainerInstanceID_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsContainerInstanceID_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsContainerInstanceID_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsContainerInstanceID_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ecsContainerInstanceID_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsSecondContainerID'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsSecondContainerID_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsSecondContainerID_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsSecondContainerID_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ecsSecondContainerID_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsSecondContainerID_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsSecondContainerID_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsSecondContainerID_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsSecondContainerID_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ecsSecondContainerID_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsServiceName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsServiceName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsServiceName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsServiceName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ecsServiceName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsServiceName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsServiceName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsServiceName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsServiceName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ecsServiceName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsTaskArn'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsTaskArn_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsTaskArn_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsTaskArn_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ecsTaskArn_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsTaskArn_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsTaskArn_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsTaskArn_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsTaskArn_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ecsTaskArn_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsTaskDefinitionArn'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsTaskDefinitionArn_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsTaskDefinitionArn_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsTaskDefinitionArn_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ecsTaskDefinitionArn_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsTaskDefinitionArn_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsTaskDefinitionArn_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsTaskDefinitionArn_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsTaskDefinitionArn_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ecsTaskDefinitionArn_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsTaskID'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsTaskID_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsTaskID_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsTaskID_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ecsTaskID_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsTaskID_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsTaskID_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsTaskID_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ecsTaskID_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ecsTaskID_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'end'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'end_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'end_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'end_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'end_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'end_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'end_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'end_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'ethertype'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ethertype_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ethertype_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ethertype_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ethertype_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ethertype_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ethertype_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ethertype_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'firehoseStream'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'firehoseStream_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'firehoseStream_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'firehoseStream_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'firehoseStream_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'firehoseStream_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'firehoseStream_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'firehoseStream_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'firehoseStream_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'firehoseStream_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'flowDirection'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'flowDirection_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'flowDirection_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'flowDirection_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'flowDirection_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'flowDirection_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'flowDirection_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'flowDirection_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'flowDirection_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'flowDirection_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'instanceID'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'instanceID_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'instanceID_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'instanceID_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'instanceID_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'instanceID_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'instanceID_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'instanceID_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'instanceID_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'instanceID_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'interfaceID'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'interfaceID_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'interfaceID_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'interfaceID_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'interfaceID_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'interfaceID_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'interfaceID_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'interfaceID_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'interfaceID_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'interfaceID_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'logStatus'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'logStatus_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'logStatus_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'logStatus_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'logStatus_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'logStatus_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'logStatus_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'logStatus_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'logStatus_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'logStatus_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pktDestinationAddress'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pktDestinationAddress_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pktDestinationAddress_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pktDestinationAddress_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'pktDestinationAddress_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pktDestinationAddress_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pktDestinationAddress_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pktDestinationAddress_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pktDestinationAddress_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'pktDestinationAddress_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pktDstAwsService'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pktDstAwsService_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pktDstAwsService_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pktDstAwsService_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'pktDstAwsService_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pktDstAwsService_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pktDstAwsService_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pktDstAwsService_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pktDstAwsService_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'pktDstAwsService_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pktSourceAddress'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pktSourceAddress_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pktSourceAddress_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pktSourceAddress_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'pktSourceAddress_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pktSourceAddress_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pktSourceAddress_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pktSourceAddress_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pktSourceAddress_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'pktSourceAddress_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pktSrcAwsService'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pktSrcAwsService_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pktSrcAwsService_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pktSrcAwsService_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'pktSrcAwsService_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pktSrcAwsService_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pktSrcAwsService_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pktSrcAwsService_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pktSrcAwsService_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'pktSrcAwsService_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocol'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'protocolString'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocolString_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocolString_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocolString_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'protocolString_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocolString_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocolString_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocolString_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocolString_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'protocolString_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocol_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'protocol_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'protocol_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'protocol_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'protocol_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'protocol_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'protocol_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'region'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'region_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'region_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'region_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'region_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'region_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'region_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'region_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'region_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'region_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rejectReason'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rejectReason_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rejectReason_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rejectReason_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'rejectReason_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rejectReason_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rejectReason_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rejectReason_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rejectReason_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'rejectReason_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleIDs_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleIDs_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ruleIDs_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ruleIDs_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'ruleIDs_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAddress'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAddress_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAddress_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAddress_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceAddress_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAddress_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAddress_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAddress_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAddress_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceAddress_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourcePort'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourcePort_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'start'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'start_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'start_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'start_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'start_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'start_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'start_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'start_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'sublocationID'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sublocationID_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sublocationID_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sublocationID_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sublocationID_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sublocationID_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sublocationID_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sublocationID_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sublocationID_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sublocationID_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sublocationType'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sublocationType_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sublocationType_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sublocationType_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sublocationType_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sublocationType_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sublocationType_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sublocationType_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sublocationType_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sublocationType_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'subnetID'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'subnetID_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'subnetID_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'subnetID_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'subnetID_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'subnetID_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'subnetID_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'subnetID_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'subnetID_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'subnetID_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpFlagsString_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpFlagsString_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpFlags_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'trafficPath'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'trafficPath_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'trafficPath_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'trafficPath_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'trafficPath_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'trafficPath_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'trafficPath_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'trafficPath_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'version'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'version_geq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'version_gt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'version_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'version_leq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'version_lt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'version_neq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'version_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'vpcFlowVersion'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'vpcFlowVersion_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'vpcFlowVersion_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'vpcFlowVersion_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'vpcFlowVersion_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'vpcFlowVersion_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'vpcFlowVersion_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'vpcFlowVersion_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'vpcID'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'vpcID_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'vpcID_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'vpcID_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'vpcID_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'vpcID_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'vpcID_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'vpcID_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'vpcID_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'vpcID_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountMnmAWSVPCFlowDataAdaptiveGroupsOrderBy': { name: 'AccountMnmAWSVPCFlowDataAdaptiveGroupsOrderBy'; enumValues: 'accountID_ASC' | 'accountID_DESC' | 'action_ASC' | 'action_DESC' | 'avg_bitRateDay_ASC' | 'avg_bitRateDay_DESC' | 'avg_bitRateFifteenMinutes_ASC' | 'avg_bitRateFifteenMinutes_DESC' | 'avg_bitRateFiveMinutes_ASC' | 'avg_bitRateFiveMinutes_DESC' | 'avg_bitRateHour_ASC' | 'avg_bitRateHour_DESC' | 'avg_bitRateMinute_ASC' | 'avg_bitRateMinute_DESC' | 'avg_bitRateTenSeconds_ASC' | 'avg_bitRateTenSeconds_DESC' | 'avg_bitRate_ASC' | 'avg_bitRate_DESC' | 'avg_egressBitRateDay_ASC' | 'avg_egressBitRateDay_DESC' | 'avg_egressBitRateFifteenMinutes_ASC' | 'avg_egressBitRateFifteenMinutes_DESC' | 'avg_egressBitRateFiveMinutes_ASC' | 'avg_egressBitRateFiveMinutes_DESC' | 'avg_egressBitRateHour_ASC' | 'avg_egressBitRateHour_DESC' | 'avg_egressBitRateMinute_ASC' | 'avg_egressBitRateMinute_DESC' | 'avg_egressBitRateTenSeconds_ASC' | 'avg_egressBitRateTenSeconds_DESC' | 'avg_egressBitRate_ASC' | 'avg_egressBitRate_DESC' | 'avg_egressPacketRateDay_ASC' | 'avg_egressPacketRateDay_DESC' | 'avg_egressPacketRateFifteenMinutes_ASC' | 'avg_egressPacketRateFifteenMinutes_DESC' | 'avg_egressPacketRateFiveMinutes_ASC' | 'avg_egressPacketRateFiveMinutes_DESC' | 'avg_egressPacketRateHour_ASC' | 'avg_egressPacketRateHour_DESC' | 'avg_egressPacketRateMinute_ASC' | 'avg_egressPacketRateMinute_DESC' | 'avg_egressPacketRateTenSeconds_ASC' | 'avg_egressPacketRateTenSeconds_DESC' | 'avg_egressPacketRate_ASC' | 'avg_egressPacketRate_DESC' | 'avg_packetRateDay_ASC' | 'avg_packetRateDay_DESC' | 'avg_packetRateFifteenMinutes_ASC' | 'avg_packetRateFifteenMinutes_DESC' | 'avg_packetRateFiveMinutes_ASC' | 'avg_packetRateFiveMinutes_DESC' | 'avg_packetRateHour_ASC' | 'avg_packetRateHour_DESC' | 'avg_packetRateMinute_ASC' | 'avg_packetRateMinute_DESC' | 'avg_packetRateTenSeconds_ASC' | 'avg_packetRateTenSeconds_DESC' | 'avg_packetRate_ASC' | 'avg_packetRate_DESC' | 'avg_sampleInterval_ASC' | 'avg_sampleInterval_DESC' | 'azID_ASC' | 'azID_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetimeTenSeconds_ASC' | 'datetimeTenSeconds_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'destinationAddress_ASC' | 'destinationAddress_DESC' | 'destinationPort_ASC' | 'destinationPort_DESC' | 'ecsClusterArn_ASC' | 'ecsClusterArn_DESC' | 'ecsClusterName_ASC' | 'ecsClusterName_DESC' | 'ecsContainerID_ASC' | 'ecsContainerID_DESC' | 'ecsContainerInstanceArn_ASC' | 'ecsContainerInstanceArn_DESC' | 'ecsContainerInstanceID_ASC' | 'ecsContainerInstanceID_DESC' | 'ecsSecondContainerID_ASC' | 'ecsSecondContainerID_DESC' | 'ecsServiceName_ASC' | 'ecsServiceName_DESC' | 'ecsTaskArn_ASC' | 'ecsTaskArn_DESC' | 'ecsTaskDefinitionArn_ASC' | 'ecsTaskDefinitionArn_DESC' | 'ecsTaskID_ASC' | 'ecsTaskID_DESC' | 'end_ASC' | 'end_DESC' | 'ethertype_ASC' | 'ethertype_DESC' | 'firehoseStream_ASC' | 'firehoseStream_DESC' | 'flowDirection_ASC' | 'flowDirection_DESC' | 'instanceID_ASC' | 'instanceID_DESC' | 'interfaceID_ASC' | 'interfaceID_DESC' | 'logStatus_ASC' | 'logStatus_DESC' | 'pktDestinationAddress_ASC' | 'pktDestinationAddress_DESC' | 'pktDstAwsService_ASC' | 'pktDstAwsService_DESC' | 'pktSourceAddress_ASC' | 'pktSourceAddress_DESC' | 'pktSrcAwsService_ASC' | 'pktSrcAwsService_DESC' | 'protocolString_ASC' | 'protocolString_DESC' | 'protocol_ASC' | 'protocol_DESC' | 'region_ASC' | 'region_DESC' | 'rejectReason_ASC' | 'rejectReason_DESC' | 'ruleIDs_ASC' | 'ruleIDs_DESC' | 'sourceAddress_ASC' | 'sourceAddress_DESC' | 'sourcePort_ASC' | 'sourcePort_DESC' | 'start_ASC' | 'start_DESC' | 'sublocationID_ASC' | 'sublocationID_DESC' | 'sublocationType_ASC' | 'sublocationType_DESC' | 'subnetID_ASC' | 'subnetID_DESC' | 'sum_bits_ASC' | 'sum_bits_DESC' | 'sum_egressBits_ASC' | 'sum_egressBits_DESC' | 'sum_egressPackets_ASC' | 'sum_egressPackets_DESC' | 'sum_packets_ASC' | 'sum_packets_DESC' | 'tcpFlagsString_ASC' | 'tcpFlagsString_DESC' | 'tcpFlags_ASC' | 'tcpFlags_DESC' | 'trafficPath_ASC' | 'trafficPath_DESC' | 'version_ASC' | 'version_DESC' | 'vpcFlowVersion_ASC' | 'vpcFlowVersion_DESC' | 'vpcID_ASC' | 'vpcID_DESC'; }; + 'AccountMnmAWSVPCFlowDataAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'AccountMnmAWSVPCFlowDataAdaptiveGroupsSum'; fields: { 'bits': { name: 'bits'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'egressBits': { name: 'egressBits'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'egressPackets': { name: 'egressPackets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packets': { name: 'packets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountMnmAWSVPCFlowDataAdaptiveGroupsSumConfidence': { kind: 'OBJECT'; name: 'AccountMnmAWSVPCFlowDataAdaptiveGroupsSumConfidence'; fields: { 'bits': { name: 'bits'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'egressBits': { name: 'egressBits'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'egressPackets': { name: 'egressPackets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packets': { name: 'packets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountMnmFlowDataAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountMnmFlowDataAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountMnmFlowDataAdaptiveGroupsAvg'; ofType: null; } }; 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountMnmFlowDataAdaptiveGroupsConfidence'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountMnmFlowDataAdaptiveGroupsDimensions'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountMnmFlowDataAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'AccountMnmFlowDataAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'AccountMnmFlowDataAdaptiveGroupsAvg'; fields: { 'bitRate': { name: 'bitRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'bitRateDay': { name: 'bitRateDay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'bitRateFifteenMinutes': { name: 'bitRateFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'bitRateFiveMinutes': { name: 'bitRateFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'bitRateHour': { name: 'bitRateHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'bitRateMinute': { name: 'bitRateMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'bitRateTenSeconds': { name: 'bitRateTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'egressBitRate': { name: 'egressBitRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'egressBitRateDay': { name: 'egressBitRateDay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'egressBitRateFifteenMinutes': { name: 'egressBitRateFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'egressBitRateFiveMinutes': { name: 'egressBitRateFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'egressBitRateHour': { name: 'egressBitRateHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'egressBitRateMinute': { name: 'egressBitRateMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'egressBitRateTenSeconds': { name: 'egressBitRateTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'egressPacketRate': { name: 'egressPacketRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'egressPacketRateDay': { name: 'egressPacketRateDay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'egressPacketRateFifteenMinutes': { name: 'egressPacketRateFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'egressPacketRateFiveMinutes': { name: 'egressPacketRateFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'egressPacketRateHour': { name: 'egressPacketRateHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'egressPacketRateMinute': { name: 'egressPacketRateMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'egressPacketRateTenSeconds': { name: 'egressPacketRateTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'packetRate': { name: 'packetRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'packetRateDay': { name: 'packetRateDay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'packetRateFifteenMinutes': { name: 'packetRateFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'packetRateFiveMinutes': { name: 'packetRateFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'packetRateHour': { name: 'packetRateHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'packetRateMinute': { name: 'packetRateMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'packetRateTenSeconds': { name: 'packetRateTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountMnmFlowDataAdaptiveGroupsAvgConfidence': { kind: 'OBJECT'; name: 'AccountMnmFlowDataAdaptiveGroupsAvgConfidence'; fields: { 'bitRate': { name: 'bitRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateDay': { name: 'bitRateDay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateFifteenMinutes': { name: 'bitRateFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateFiveMinutes': { name: 'bitRateFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateHour': { name: 'bitRateHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateMinute': { name: 'bitRateMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateTenSeconds': { name: 'bitRateTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'egressBitRate': { name: 'egressBitRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'egressBitRateDay': { name: 'egressBitRateDay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'egressBitRateFifteenMinutes': { name: 'egressBitRateFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'egressBitRateFiveMinutes': { name: 'egressBitRateFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'egressBitRateHour': { name: 'egressBitRateHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'egressBitRateMinute': { name: 'egressBitRateMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'egressBitRateTenSeconds': { name: 'egressBitRateTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'egressPacketRate': { name: 'egressPacketRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'egressPacketRateDay': { name: 'egressPacketRateDay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'egressPacketRateFifteenMinutes': { name: 'egressPacketRateFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'egressPacketRateFiveMinutes': { name: 'egressPacketRateFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'egressPacketRateHour': { name: 'egressPacketRateHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'egressPacketRateMinute': { name: 'egressPacketRateMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'egressPacketRateTenSeconds': { name: 'egressPacketRateTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRate': { name: 'packetRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateDay': { name: 'packetRateDay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateFifteenMinutes': { name: 'packetRateFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateFiveMinutes': { name: 'packetRateFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateHour': { name: 'packetRateHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateMinute': { name: 'packetRateMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateTenSeconds': { name: 'packetRateTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountMnmFlowDataAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountMnmFlowDataAdaptiveGroupsConfidence'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountMnmFlowDataAdaptiveGroupsAvgConfidence'; ofType: null; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountMnmFlowDataAdaptiveGroupsSumConfidence'; ofType: null; } }; }; }; + 'AccountMnmFlowDataAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountMnmFlowDataAdaptiveGroupsDimensions'; fields: { 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeTenSeconds': { name: 'datetimeTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'destinationAS': { name: 'destinationAS'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'destinationAddress': { name: 'destinationAddress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'destinationPort': { name: 'destinationPort'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'deviceID': { name: 'deviceID'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ethertype': { name: 'ethertype'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'ipToS': { name: 'ipToS'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'ipToSEncap': { name: 'ipToSEncap'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'protocol': { name: 'protocol'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'protocolString': { name: 'protocolString'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'routerAddress': { name: 'routerAddress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ruleIDs': { name: 'ruleIDs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'sourceAS': { name: 'sourceAS'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'sourceAddress': { name: 'sourceAddress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sourcePort': { name: 'sourcePort'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'tcpFlags': { name: 'tcpFlags'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'tcpFlagsString': { name: 'tcpFlagsString'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'version': { name: 'version'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; }; }; + 'AccountMnmFlowDataAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountMnmFlowDataAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountMnmFlowDataAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountMnmFlowDataAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeTenSeconds'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeTenSeconds_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationAS'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'destinationAS_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'destinationAS_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'destinationAS_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationAS_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'destinationAS_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'destinationAS_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'destinationAS_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationAddress'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAddress_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAddress_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAddress_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationAddress_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAddress_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAddress_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAddress_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAddress_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationAddress_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationPort'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationPort_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceID'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceID_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceID_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceID_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceID_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceID_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceID_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceID_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceID_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceID_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ethertype'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ethertype_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ethertype_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ethertype_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ethertype_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ethertype_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ethertype_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ethertype_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipToS'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'ipToSEncap'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'ipToSEncap_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'ipToSEncap_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'ipToSEncap_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipToSEncap_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'ipToSEncap_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'ipToSEncap_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'ipToSEncap_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipToS_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'ipToS_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'ipToS_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipToS_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'ipToS_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'ipToS_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'ipToS_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'protocol'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'protocolString'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocolString_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocolString_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocolString_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'protocolString_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocolString_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocolString_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocolString_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocolString_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'protocolString_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocol_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'protocol_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'protocol_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'protocol_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'protocol_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'protocol_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'protocol_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'routerAddress'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'routerAddress_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'routerAddress_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'routerAddress_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'routerAddress_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'routerAddress_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'routerAddress_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'routerAddress_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'routerAddress_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'routerAddress_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleIDs_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleIDs_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ruleIDs_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ruleIDs_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'ruleIDs_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAS'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sourceAS_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sourceAS_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sourceAS_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceAS_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sourceAS_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sourceAS_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sourceAS_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceAddress'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAddress_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAddress_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAddress_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceAddress_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAddress_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAddress_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAddress_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAddress_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceAddress_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourcePort'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourcePort_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpFlags'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpFlagsString_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpFlagsString_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpFlags_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'version'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'version_geq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'version_gt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'version_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'version_leq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'version_lt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'version_neq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'version_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }]; }; + 'AccountMnmFlowDataAdaptiveGroupsOrderBy': { name: 'AccountMnmFlowDataAdaptiveGroupsOrderBy'; enumValues: 'avg_bitRateDay_ASC' | 'avg_bitRateDay_DESC' | 'avg_bitRateFifteenMinutes_ASC' | 'avg_bitRateFifteenMinutes_DESC' | 'avg_bitRateFiveMinutes_ASC' | 'avg_bitRateFiveMinutes_DESC' | 'avg_bitRateHour_ASC' | 'avg_bitRateHour_DESC' | 'avg_bitRateMinute_ASC' | 'avg_bitRateMinute_DESC' | 'avg_bitRateTenSeconds_ASC' | 'avg_bitRateTenSeconds_DESC' | 'avg_bitRate_ASC' | 'avg_bitRate_DESC' | 'avg_egressBitRateDay_ASC' | 'avg_egressBitRateDay_DESC' | 'avg_egressBitRateFifteenMinutes_ASC' | 'avg_egressBitRateFifteenMinutes_DESC' | 'avg_egressBitRateFiveMinutes_ASC' | 'avg_egressBitRateFiveMinutes_DESC' | 'avg_egressBitRateHour_ASC' | 'avg_egressBitRateHour_DESC' | 'avg_egressBitRateMinute_ASC' | 'avg_egressBitRateMinute_DESC' | 'avg_egressBitRateTenSeconds_ASC' | 'avg_egressBitRateTenSeconds_DESC' | 'avg_egressBitRate_ASC' | 'avg_egressBitRate_DESC' | 'avg_egressPacketRateDay_ASC' | 'avg_egressPacketRateDay_DESC' | 'avg_egressPacketRateFifteenMinutes_ASC' | 'avg_egressPacketRateFifteenMinutes_DESC' | 'avg_egressPacketRateFiveMinutes_ASC' | 'avg_egressPacketRateFiveMinutes_DESC' | 'avg_egressPacketRateHour_ASC' | 'avg_egressPacketRateHour_DESC' | 'avg_egressPacketRateMinute_ASC' | 'avg_egressPacketRateMinute_DESC' | 'avg_egressPacketRateTenSeconds_ASC' | 'avg_egressPacketRateTenSeconds_DESC' | 'avg_egressPacketRate_ASC' | 'avg_egressPacketRate_DESC' | 'avg_packetRateDay_ASC' | 'avg_packetRateDay_DESC' | 'avg_packetRateFifteenMinutes_ASC' | 'avg_packetRateFifteenMinutes_DESC' | 'avg_packetRateFiveMinutes_ASC' | 'avg_packetRateFiveMinutes_DESC' | 'avg_packetRateHour_ASC' | 'avg_packetRateHour_DESC' | 'avg_packetRateMinute_ASC' | 'avg_packetRateMinute_DESC' | 'avg_packetRateTenSeconds_ASC' | 'avg_packetRateTenSeconds_DESC' | 'avg_packetRate_ASC' | 'avg_packetRate_DESC' | 'avg_sampleInterval_ASC' | 'avg_sampleInterval_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetimeTenSeconds_ASC' | 'datetimeTenSeconds_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'destinationAS_ASC' | 'destinationAS_DESC' | 'destinationAddress_ASC' | 'destinationAddress_DESC' | 'destinationPort_ASC' | 'destinationPort_DESC' | 'deviceID_ASC' | 'deviceID_DESC' | 'ethertype_ASC' | 'ethertype_DESC' | 'ipToSEncap_ASC' | 'ipToSEncap_DESC' | 'ipToS_ASC' | 'ipToS_DESC' | 'protocolString_ASC' | 'protocolString_DESC' | 'protocol_ASC' | 'protocol_DESC' | 'routerAddress_ASC' | 'routerAddress_DESC' | 'ruleIDs_ASC' | 'ruleIDs_DESC' | 'sourceAS_ASC' | 'sourceAS_DESC' | 'sourceAddress_ASC' | 'sourceAddress_DESC' | 'sourcePort_ASC' | 'sourcePort_DESC' | 'sum_bits_ASC' | 'sum_bits_DESC' | 'sum_egressBits_ASC' | 'sum_egressBits_DESC' | 'sum_egressPackets_ASC' | 'sum_egressPackets_DESC' | 'sum_packets_ASC' | 'sum_packets_DESC' | 'tcpFlagsString_ASC' | 'tcpFlagsString_DESC' | 'tcpFlags_ASC' | 'tcpFlags_DESC' | 'version_ASC' | 'version_DESC'; }; + 'AccountMnmFlowDataAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'AccountMnmFlowDataAdaptiveGroupsSum'; fields: { 'bits': { name: 'bits'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'egressBits': { name: 'egressBits'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'egressPackets': { name: 'egressPackets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packets': { name: 'packets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountMnmFlowDataAdaptiveGroupsSumConfidence': { kind: 'OBJECT'; name: 'AccountMnmFlowDataAdaptiveGroupsSumConfidence'; fields: { 'bits': { name: 'bits'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'egressBits': { name: 'egressBits'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'egressPackets': { name: 'egressPackets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packets': { name: 'packets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountNelReportsAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountNelReportsAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountNelReportsAdaptiveGroupsAvg'; ofType: null; } }; 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountNelReportsAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountNelReportsAdaptiveGroupsDimensions'; ofType: null; } }; }; }; + 'AccountNelReportsAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'AccountNelReportsAdaptiveGroupsAvg'; fields: { 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountNelReportsAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountNelReportsAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountNelReportsAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountNelReportsAdaptiveGroupsDimensions'; fields: { 'clientIPASN': { name: 'clientIPASN'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'clientIPASNDescription': { name: 'clientIPASNDescription'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientIPCountry': { name: 'clientIPCountry'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientIPCountryCode': { name: 'clientIPCountryCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientIPVersion': { name: 'clientIPVersion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHalfOfHour': { name: 'datetimeHalfOfHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'lastKnownGoodColoCode': { name: 'lastKnownGoodColoCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'phase': { name: 'phase'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'protocol': { name: 'protocol'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'type': { name: 'type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountNelReportsAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountNelReportsAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountNelReportsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountNelReportsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientIPASN'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'clientIPASNDescription'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPASNDescription_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPASNDescription_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPASNDescription_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientIPASNDescription_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPASNDescription_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPASNDescription_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPASNDescription_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPASNDescription_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientIPASNDescription_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPASN_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'clientIPASN_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'clientIPASN_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientIPASN_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'clientIPASN_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'clientIPASN_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'clientIPASN_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientIPCountry'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPCountryCode'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPCountryCode_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPCountryCode_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPCountryCode_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientIPCountryCode_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPCountryCode_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPCountryCode_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPCountryCode_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPCountryCode_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientIPCountryCode_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPCountry_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPCountry_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPCountry_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientIPCountry_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPCountry_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPCountry_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPCountry_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPCountry_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientIPCountry_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPVersion'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'clientIPVersion_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'clientIPVersion_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'clientIPVersion_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'clientIPVersion_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'clientIPVersion_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'clientIPVersion_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'clientIPVersion_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHalfOfHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHalfOfHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'lastKnownGoodColoCode'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'lastKnownGoodColoCode_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'lastKnownGoodColoCode_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'lastKnownGoodColoCode_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'lastKnownGoodColoCode_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'lastKnownGoodColoCode_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'lastKnownGoodColoCode_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'lastKnownGoodColoCode_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'lastKnownGoodColoCode_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'lastKnownGoodColoCode_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'phase'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'phase_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'phase_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'phase_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'phase_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'phase_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'phase_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'phase_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'phase_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'phase_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocol'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocol_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocol_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocol_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'protocol_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocol_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocol_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocol_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocol_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'protocol_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'type_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'type_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'type_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'type_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'type_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'type_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'type_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'type_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'type_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountNelReportsAdaptiveGroupsOrderBy': { name: 'AccountNelReportsAdaptiveGroupsOrderBy'; enumValues: 'avg_sampleInterval_ASC' | 'avg_sampleInterval_DESC' | 'clientIPASNDescription_ASC' | 'clientIPASNDescription_DESC' | 'clientIPASN_ASC' | 'clientIPASN_DESC' | 'clientIPCountryCode_ASC' | 'clientIPCountryCode_DESC' | 'clientIPCountry_ASC' | 'clientIPCountry_DESC' | 'clientIPVersion_ASC' | 'clientIPVersion_DESC' | 'count_ASC' | 'count_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHalfOfHour_ASC' | 'datetimeHalfOfHour_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'lastKnownGoodColoCode_ASC' | 'lastKnownGoodColoCode_DESC' | 'phase_ASC' | 'phase_DESC' | 'protocol_ASC' | 'protocol_DESC' | 'type_ASC' | 'type_DESC'; }; + 'AccountOhttpMetricsAdaptive': { kind: 'OBJECT'; name: 'AccountOhttpMetricsAdaptive'; fields: { 'bytesToClient': { name: 'bytesToClient'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'bytesToGateway': { name: 'bytesToGateway'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'colo': { name: 'colo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'gatewayStatusCode': { name: 'gatewayStatusCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'relayStatusCode': { name: 'relayStatusCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; }; }; + 'AccountOhttpMetricsAdaptiveFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountOhttpMetricsAdaptiveFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountOhttpMetricsAdaptiveFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountOhttpMetricsAdaptiveFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'bytesToClient'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'bytesToClient_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'bytesToClient_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'bytesToClient_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'bytesToClient_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'bytesToClient_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'bytesToClient_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'bytesToClient_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'bytesToGateway'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'bytesToGateway_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'bytesToGateway_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'bytesToGateway_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'bytesToGateway_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'bytesToGateway_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'bytesToGateway_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'bytesToGateway_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'colo'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'colo_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'colo_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'colo_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'colo_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'colo_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'colo_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'colo_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'colo_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'colo_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'gatewayStatusCode'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'gatewayStatusCode_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'gatewayStatusCode_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'gatewayStatusCode_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'gatewayStatusCode_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'gatewayStatusCode_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'gatewayStatusCode_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'gatewayStatusCode_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'relayStatusCode'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'relayStatusCode_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'relayStatusCode_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'relayStatusCode_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'relayStatusCode_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'relayStatusCode_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'relayStatusCode_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'relayStatusCode_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }]; }; + 'AccountOhttpMetricsAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountOhttpMetricsAdaptiveGroups'; fields: { 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountOhttpMetricsAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountOhttpMetricsAdaptiveGroupsDimensions'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountOhttpMetricsAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'AccountOhttpMetricsAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountOhttpMetricsAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountOhttpMetricsAdaptiveGroupsSumConfidence'; ofType: null; } }; }; }; + 'AccountOhttpMetricsAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountOhttpMetricsAdaptiveGroupsDimensions'; fields: { 'colo': { name: 'colo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'endpoint': { name: 'endpoint'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'gatewayStatusCode': { name: 'gatewayStatusCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'relayStatusCode': { name: 'relayStatusCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; }; }; + 'AccountOhttpMetricsAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountOhttpMetricsAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountOhttpMetricsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountOhttpMetricsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'colo'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'colo_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'colo_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'colo_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'colo_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'colo_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'colo_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'colo_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'colo_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'colo_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'endpoint'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'endpoint_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'endpoint_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'endpoint_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'endpoint_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'endpoint_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'endpoint_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'endpoint_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'endpoint_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'endpoint_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'gatewayStatusCode'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'gatewayStatusCode_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'gatewayStatusCode_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'gatewayStatusCode_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'gatewayStatusCode_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'gatewayStatusCode_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'gatewayStatusCode_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'gatewayStatusCode_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'gatewayStatusCode_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'gatewayStatusCode_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'relayStatusCode'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'relayStatusCode_geq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'relayStatusCode_gt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'relayStatusCode_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'relayStatusCode_leq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'relayStatusCode_lt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'relayStatusCode_neq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'relayStatusCode_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }]; }; + 'AccountOhttpMetricsAdaptiveGroupsOrderBy': { name: 'AccountOhttpMetricsAdaptiveGroupsOrderBy'; enumValues: 'colo_ASC' | 'colo_DESC' | 'count_ASC' | 'count_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'endpoint_ASC' | 'endpoint_DESC' | 'gatewayStatusCode_ASC' | 'gatewayStatusCode_DESC' | 'relayStatusCode_ASC' | 'relayStatusCode_DESC' | 'sum_bytesToClient_ASC' | 'sum_bytesToClient_DESC' | 'sum_bytesToGateway_ASC' | 'sum_bytesToGateway_DESC' | 'sum_clientRequestErrors_ASC' | 'sum_clientRequestErrors_DESC' | 'sum_gatewayResponseErrors_ASC' | 'sum_gatewayResponseErrors_DESC'; }; + 'AccountOhttpMetricsAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'AccountOhttpMetricsAdaptiveGroupsSum'; fields: { 'bytesToClient': { name: 'bytesToClient'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'bytesToGateway': { name: 'bytesToGateway'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'clientRequestErrors': { name: 'clientRequestErrors'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'gatewayResponseErrors': { name: 'gatewayResponseErrors'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; }; }; + 'AccountOhttpMetricsAdaptiveGroupsSumConfidence': { kind: 'OBJECT'; name: 'AccountOhttpMetricsAdaptiveGroupsSumConfidence'; fields: { 'bytesToClient': { name: 'bytesToClient'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bytesToGateway': { name: 'bytesToGateway'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'clientRequestErrors': { name: 'clientRequestErrors'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'gatewayResponseErrors': { name: 'gatewayResponseErrors'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountOhttpMetricsAdaptiveOrderBy': { name: 'AccountOhttpMetricsAdaptiveOrderBy'; enumValues: 'bytesToClient_ASC' | 'bytesToClient_DESC' | 'bytesToGateway_ASC' | 'bytesToGateway_DESC' | 'colo_ASC' | 'colo_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'gatewayStatusCode_ASC' | 'gatewayStatusCode_DESC' | 'relayStatusCode_ASC' | 'relayStatusCode_DESC'; }; + 'AccountPagesFunctionsInvocationsAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountPagesFunctionsInvocationsAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountPagesFunctionsInvocationsAdaptiveGroupsAvg'; ofType: null; } }; 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountPagesFunctionsInvocationsAdaptiveGroupsConfidence'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountPagesFunctionsInvocationsAdaptiveGroupsDimensions'; ofType: null; } }; 'quantiles': { name: 'quantiles'; type: { kind: 'OBJECT'; name: 'AccountPagesFunctionsInvocationsAdaptiveGroupsQuantiles'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountPagesFunctionsInvocationsAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'AccountPagesFunctionsInvocationsAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'AccountPagesFunctionsInvocationsAdaptiveGroupsAvg'; fields: { 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountPagesFunctionsInvocationsAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountPagesFunctionsInvocationsAdaptiveGroupsConfidence'; fields: { 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountPagesFunctionsInvocationsAdaptiveGroupsSumConfidence'; ofType: null; } }; }; }; + 'AccountPagesFunctionsInvocationsAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountPagesFunctionsInvocationsAdaptiveGroupsDimensions'; fields: { 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeSixHours': { name: 'datetimeSixHours'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'scriptName': { name: 'scriptName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'status': { name: 'status'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'usageModel': { name: 'usageModel'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountPagesFunctionsInvocationsAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountPagesFunctionsInvocationsAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountPagesFunctionsInvocationsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountPagesFunctionsInvocationsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'scriptName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'scriptName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'scriptName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'status_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'status_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'usageModel'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'usageModel_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'usageModel_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'usageModel_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'usageModel_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'usageModel_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'usageModel_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'usageModel_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'usageModel_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'usageModel_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountPagesFunctionsInvocationsAdaptiveGroupsOrderBy': { name: 'AccountPagesFunctionsInvocationsAdaptiveGroupsOrderBy'; enumValues: 'avg_sampleInterval_ASC' | 'avg_sampleInterval_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetimeSixHours_ASC' | 'datetimeSixHours_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'quantiles_cpuTimeP50_ASC' | 'quantiles_cpuTimeP50_DESC' | 'quantiles_cpuTimeP75_ASC' | 'quantiles_cpuTimeP75_DESC' | 'quantiles_cpuTimeP999_ASC' | 'quantiles_cpuTimeP999_DESC' | 'quantiles_cpuTimeP99_ASC' | 'quantiles_cpuTimeP99_DESC' | 'quantiles_durationP50_ASC' | 'quantiles_durationP50_DESC' | 'quantiles_durationP75_ASC' | 'quantiles_durationP75_DESC' | 'quantiles_durationP999_ASC' | 'quantiles_durationP999_DESC' | 'quantiles_durationP99_ASC' | 'quantiles_durationP99_DESC' | 'scriptName_ASC' | 'scriptName_DESC' | 'stableId_ASC' | 'stableId_DESC' | 'status_ASC' | 'status_DESC' | 'sum_clientDisconnects_ASC' | 'sum_clientDisconnects_DESC' | 'sum_duration_ASC' | 'sum_duration_DESC' | 'sum_errors_ASC' | 'sum_errors_DESC' | 'sum_requests_ASC' | 'sum_requests_DESC' | 'sum_responseBodySize_ASC' | 'sum_responseBodySize_DESC' | 'sum_subrequests_ASC' | 'sum_subrequests_DESC' | 'sum_wallTime_ASC' | 'sum_wallTime_DESC' | 'usageModel_ASC' | 'usageModel_DESC'; }; + 'AccountPagesFunctionsInvocationsAdaptiveGroupsQuantiles': { kind: 'OBJECT'; name: 'AccountPagesFunctionsInvocationsAdaptiveGroupsQuantiles'; fields: { 'cpuTimeP50': { name: 'cpuTimeP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'cpuTimeP75': { name: 'cpuTimeP75'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'cpuTimeP99': { name: 'cpuTimeP99'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'cpuTimeP999': { name: 'cpuTimeP999'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'durationP50': { name: 'durationP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'durationP75': { name: 'durationP75'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'durationP99': { name: 'durationP99'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'durationP999': { name: 'durationP999'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; }; }; + 'AccountPagesFunctionsInvocationsAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'AccountPagesFunctionsInvocationsAdaptiveGroupsSum'; fields: { 'clientDisconnects': { name: 'clientDisconnects'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'duration': { name: 'duration'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'errors': { name: 'errors'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'responseBodySize': { name: 'responseBodySize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'subrequests': { name: 'subrequests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'wallTime': { name: 'wallTime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountPagesFunctionsInvocationsAdaptiveGroupsSumConfidence': { kind: 'OBJECT'; name: 'AccountPagesFunctionsInvocationsAdaptiveGroupsSumConfidence'; fields: { 'clientDisconnects': { name: 'clientDisconnects'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'duration': { name: 'duration'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'errors': { name: 'errors'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'responseBodySize': { name: 'responseBodySize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'subrequests': { name: 'subrequests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'wallTime': { name: 'wallTime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountPipelinesDeliveryAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountPipelinesDeliveryAdaptiveGroups'; fields: { 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountPipelinesDeliveryAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountPipelinesDeliveryAdaptiveGroupsDimensions'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountPipelinesDeliveryAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'AccountPipelinesDeliveryAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountPipelinesDeliveryAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountPipelinesDeliveryAdaptiveGroupsSumConfidence'; ofType: null; } }; }; }; + 'AccountPipelinesDeliveryAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountPipelinesDeliveryAdaptiveGroupsDimensions'; fields: { 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'pipelineId': { name: 'pipelineId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountPipelinesDeliveryAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountPipelinesDeliveryAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountPipelinesDeliveryAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountPipelinesDeliveryAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'pipelineId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pipelineId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pipelineId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pipelineId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'pipelineId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pipelineId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pipelineId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pipelineId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pipelineId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'pipelineId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountPipelinesDeliveryAdaptiveGroupsOrderBy': { name: 'AccountPipelinesDeliveryAdaptiveGroupsOrderBy'; enumValues: 'count_ASC' | 'count_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'pipelineId_ASC' | 'pipelineId_DESC' | 'sum_deliveredBytes_ASC' | 'sum_deliveredBytes_DESC'; }; + 'AccountPipelinesDeliveryAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'AccountPipelinesDeliveryAdaptiveGroupsSum'; fields: { 'deliveredBytes': { name: 'deliveredBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountPipelinesDeliveryAdaptiveGroupsSumConfidence': { kind: 'OBJECT'; name: 'AccountPipelinesDeliveryAdaptiveGroupsSumConfidence'; fields: { 'deliveredBytes': { name: 'deliveredBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountPipelinesIngestionAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountPipelinesIngestionAdaptiveGroups'; fields: { 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountPipelinesIngestionAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountPipelinesIngestionAdaptiveGroupsDimensions'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountPipelinesIngestionAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'AccountPipelinesIngestionAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountPipelinesIngestionAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountPipelinesIngestionAdaptiveGroupsSumConfidence'; ofType: null; } }; }; }; + 'AccountPipelinesIngestionAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountPipelinesIngestionAdaptiveGroupsDimensions'; fields: { 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'pipelineId': { name: 'pipelineId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountPipelinesIngestionAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountPipelinesIngestionAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountPipelinesIngestionAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountPipelinesIngestionAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'pipelineId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pipelineId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pipelineId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pipelineId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'pipelineId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pipelineId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pipelineId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pipelineId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pipelineId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'pipelineId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountPipelinesIngestionAdaptiveGroupsOrderBy': { name: 'AccountPipelinesIngestionAdaptiveGroupsOrderBy'; enumValues: 'count_ASC' | 'count_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'pipelineId_ASC' | 'pipelineId_DESC' | 'sum_ingestedBytes_ASC' | 'sum_ingestedBytes_DESC' | 'sum_ingestedRecords_ASC' | 'sum_ingestedRecords_DESC'; }; + 'AccountPipelinesIngestionAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'AccountPipelinesIngestionAdaptiveGroupsSum'; fields: { 'ingestedBytes': { name: 'ingestedBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'ingestedRecords': { name: 'ingestedRecords'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountPipelinesIngestionAdaptiveGroupsSumConfidence': { kind: 'OBJECT'; name: 'AccountPipelinesIngestionAdaptiveGroupsSumConfidence'; fields: { 'ingestedBytes': { name: 'ingestedBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'ingestedRecords': { name: 'ingestedRecords'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountPipelinesOperatorAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountPipelinesOperatorAdaptiveGroups'; fields: { 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountPipelinesOperatorAdaptiveGroupsConfidence'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountPipelinesOperatorAdaptiveGroupsDimensions'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountPipelinesOperatorAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'AccountPipelinesOperatorAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountPipelinesOperatorAdaptiveGroupsConfidence'; fields: { 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountPipelinesOperatorAdaptiveGroupsSumConfidence'; ofType: null; } }; }; }; + 'AccountPipelinesOperatorAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountPipelinesOperatorAdaptiveGroupsDimensions'; fields: { 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'pipelineId': { name: 'pipelineId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'streamId': { name: 'streamId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountPipelinesOperatorAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountPipelinesOperatorAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountPipelinesOperatorAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountPipelinesOperatorAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'pipelineId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pipelineId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pipelineId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pipelineId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'pipelineId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pipelineId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pipelineId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pipelineId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pipelineId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'pipelineId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'streamId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'streamId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'streamId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'streamId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'streamId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'streamId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'streamId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'streamId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'streamId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'streamId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountPipelinesOperatorAdaptiveGroupsOrderBy': { name: 'AccountPipelinesOperatorAdaptiveGroupsOrderBy'; enumValues: 'date_ASC' | 'date_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'pipelineId_ASC' | 'pipelineId_DESC' | 'streamId_ASC' | 'streamId_DESC' | 'sum_bytesIn_ASC' | 'sum_bytesIn_DESC' | 'sum_decodeErrors_ASC' | 'sum_decodeErrors_DESC' | 'sum_recordsIn_ASC' | 'sum_recordsIn_DESC'; }; + 'AccountPipelinesOperatorAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'AccountPipelinesOperatorAdaptiveGroupsSum'; fields: { 'bytesIn': { name: 'bytesIn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'decodeErrors': { name: 'decodeErrors'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'recordsIn': { name: 'recordsIn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; }; }; + 'AccountPipelinesOperatorAdaptiveGroupsSumConfidence': { kind: 'OBJECT'; name: 'AccountPipelinesOperatorAdaptiveGroupsSumConfidence'; fields: { 'bytesIn': { name: 'bytesIn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'decodeErrors': { name: 'decodeErrors'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'recordsIn': { name: 'recordsIn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountPipelinesOperatorStagingAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountPipelinesOperatorStagingAdaptiveGroups'; fields: { 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountPipelinesOperatorStagingAdaptiveGroupsConfidence'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountPipelinesOperatorStagingAdaptiveGroupsDimensions'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountPipelinesOperatorStagingAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'AccountPipelinesOperatorStagingAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountPipelinesOperatorStagingAdaptiveGroupsConfidence'; fields: { 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountPipelinesOperatorStagingAdaptiveGroupsSumConfidence'; ofType: null; } }; }; }; + 'AccountPipelinesOperatorStagingAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountPipelinesOperatorStagingAdaptiveGroupsDimensions'; fields: { 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'pipelineId': { name: 'pipelineId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'streamId': { name: 'streamId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountPipelinesOperatorStagingAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountPipelinesOperatorStagingAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountPipelinesOperatorStagingAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountPipelinesOperatorStagingAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'pipelineId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pipelineId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pipelineId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pipelineId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'pipelineId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pipelineId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pipelineId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pipelineId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pipelineId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'pipelineId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'streamId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'streamId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'streamId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'streamId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'streamId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'streamId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'streamId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'streamId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'streamId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'streamId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountPipelinesOperatorStagingAdaptiveGroupsOrderBy': { name: 'AccountPipelinesOperatorStagingAdaptiveGroupsOrderBy'; enumValues: 'date_ASC' | 'date_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'pipelineId_ASC' | 'pipelineId_DESC' | 'streamId_ASC' | 'streamId_DESC' | 'sum_bytesIn_ASC' | 'sum_bytesIn_DESC' | 'sum_decodeErrors_ASC' | 'sum_decodeErrors_DESC' | 'sum_messagesIn_ASC' | 'sum_messagesIn_DESC'; }; + 'AccountPipelinesOperatorStagingAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'AccountPipelinesOperatorStagingAdaptiveGroupsSum'; fields: { 'bytesIn': { name: 'bytesIn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'decodeErrors': { name: 'decodeErrors'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'messagesIn': { name: 'messagesIn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; }; }; + 'AccountPipelinesOperatorStagingAdaptiveGroupsSumConfidence': { kind: 'OBJECT'; name: 'AccountPipelinesOperatorStagingAdaptiveGroupsSumConfidence'; fields: { 'bytesIn': { name: 'bytesIn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'decodeErrors': { name: 'decodeErrors'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'messagesIn': { name: 'messagesIn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountPipelinesSinkAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountPipelinesSinkAdaptiveGroups'; fields: { 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountPipelinesSinkAdaptiveGroupsConfidence'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountPipelinesSinkAdaptiveGroupsDimensions'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountPipelinesSinkAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'AccountPipelinesSinkAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountPipelinesSinkAdaptiveGroupsConfidence'; fields: { 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountPipelinesSinkAdaptiveGroupsSumConfidence'; ofType: null; } }; }; }; + 'AccountPipelinesSinkAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountPipelinesSinkAdaptiveGroupsDimensions'; fields: { 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'pipelineId': { name: 'pipelineId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sinkId': { name: 'sinkId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountPipelinesSinkAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountPipelinesSinkAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountPipelinesSinkAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountPipelinesSinkAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'pipelineId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pipelineId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pipelineId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pipelineId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'pipelineId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pipelineId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pipelineId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pipelineId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pipelineId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'pipelineId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sinkId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sinkId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sinkId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sinkId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sinkId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sinkId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sinkId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sinkId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sinkId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sinkId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountPipelinesSinkAdaptiveGroupsOrderBy': { name: 'AccountPipelinesSinkAdaptiveGroupsOrderBy'; enumValues: 'date_ASC' | 'date_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'pipelineId_ASC' | 'pipelineId_DESC' | 'sinkId_ASC' | 'sinkId_DESC' | 'sum_bytesWritten_ASC' | 'sum_bytesWritten_DESC' | 'sum_filesWritten_ASC' | 'sum_filesWritten_DESC' | 'sum_recordsWritten_ASC' | 'sum_recordsWritten_DESC' | 'sum_rowGroupsWritten_ASC' | 'sum_rowGroupsWritten_DESC' | 'sum_uncompressedBytesWritten_ASC' | 'sum_uncompressedBytesWritten_DESC'; }; + 'AccountPipelinesSinkAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'AccountPipelinesSinkAdaptiveGroupsSum'; fields: { 'bytesWritten': { name: 'bytesWritten'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'filesWritten': { name: 'filesWritten'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'recordsWritten': { name: 'recordsWritten'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'rowGroupsWritten': { name: 'rowGroupsWritten'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'uncompressedBytesWritten': { name: 'uncompressedBytesWritten'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; }; }; + 'AccountPipelinesSinkAdaptiveGroupsSumConfidence': { kind: 'OBJECT'; name: 'AccountPipelinesSinkAdaptiveGroupsSumConfidence'; fields: { 'bytesWritten': { name: 'bytesWritten'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'filesWritten': { name: 'filesWritten'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'recordsWritten': { name: 'recordsWritten'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'rowGroupsWritten': { name: 'rowGroupsWritten'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'uncompressedBytesWritten': { name: 'uncompressedBytesWritten'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountPipelinesSinkStagingAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountPipelinesSinkStagingAdaptiveGroups'; fields: { 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountPipelinesSinkStagingAdaptiveGroupsConfidence'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountPipelinesSinkStagingAdaptiveGroupsDimensions'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountPipelinesSinkStagingAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'AccountPipelinesSinkStagingAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountPipelinesSinkStagingAdaptiveGroupsConfidence'; fields: { 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountPipelinesSinkStagingAdaptiveGroupsSumConfidence'; ofType: null; } }; }; }; + 'AccountPipelinesSinkStagingAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountPipelinesSinkStagingAdaptiveGroupsDimensions'; fields: { 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'pipelineId': { name: 'pipelineId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'streamId': { name: 'streamId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountPipelinesSinkStagingAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountPipelinesSinkStagingAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountPipelinesSinkStagingAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountPipelinesSinkStagingAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'pipelineId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pipelineId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pipelineId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pipelineId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'pipelineId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pipelineId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pipelineId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pipelineId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pipelineId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'pipelineId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'streamId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'streamId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'streamId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'streamId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'streamId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'streamId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'streamId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'streamId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'streamId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'streamId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountPipelinesSinkStagingAdaptiveGroupsOrderBy': { name: 'AccountPipelinesSinkStagingAdaptiveGroupsOrderBy'; enumValues: 'date_ASC' | 'date_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'pipelineId_ASC' | 'pipelineId_DESC' | 'streamId_ASC' | 'streamId_DESC' | 'sum_bytesWritten_ASC' | 'sum_bytesWritten_DESC' | 'sum_filesWritten_ASC' | 'sum_filesWritten_DESC' | 'sum_recordsWritten_ASC' | 'sum_recordsWritten_DESC' | 'sum_rowGroupsWritten_ASC' | 'sum_rowGroupsWritten_DESC' | 'sum_uncompressedBytesWritten_ASC' | 'sum_uncompressedBytesWritten_DESC'; }; + 'AccountPipelinesSinkStagingAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'AccountPipelinesSinkStagingAdaptiveGroupsSum'; fields: { 'bytesWritten': { name: 'bytesWritten'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'filesWritten': { name: 'filesWritten'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'recordsWritten': { name: 'recordsWritten'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'rowGroupsWritten': { name: 'rowGroupsWritten'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'uncompressedBytesWritten': { name: 'uncompressedBytesWritten'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; }; }; + 'AccountPipelinesSinkStagingAdaptiveGroupsSumConfidence': { kind: 'OBJECT'; name: 'AccountPipelinesSinkStagingAdaptiveGroupsSumConfidence'; fields: { 'bytesWritten': { name: 'bytesWritten'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'filesWritten': { name: 'filesWritten'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'recordsWritten': { name: 'recordsWritten'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'rowGroupsWritten': { name: 'rowGroupsWritten'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'uncompressedBytesWritten': { name: 'uncompressedBytesWritten'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountProgrammableFlowProtectionNetworkAnalyticsAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountProgrammableFlowProtectionNetworkAnalyticsAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountProgrammableFlowProtectionNetworkAnalyticsAdaptiveGroupsAvg'; ofType: null; } }; 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountProgrammableFlowProtectionNetworkAnalyticsAdaptiveGroupsConfidence'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountProgrammableFlowProtectionNetworkAnalyticsAdaptiveGroupsDimensions'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountProgrammableFlowProtectionNetworkAnalyticsAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'AccountProgrammableFlowProtectionNetworkAnalyticsAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'AccountProgrammableFlowProtectionNetworkAnalyticsAdaptiveGroupsAvg'; fields: { 'bitRate': { name: 'bitRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'bitRateDay': { name: 'bitRateDay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'bitRateFifteenMinutes': { name: 'bitRateFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'bitRateFiveMinutes': { name: 'bitRateFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'bitRateHour': { name: 'bitRateHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'bitRateMinute': { name: 'bitRateMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'bitRateTenSeconds': { name: 'bitRateTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRate': { name: 'packetRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRateDay': { name: 'packetRateDay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRateFifteenMinutes': { name: 'packetRateFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRateFiveMinutes': { name: 'packetRateFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRateHour': { name: 'packetRateHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRateMinute': { name: 'packetRateMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRateTenSeconds': { name: 'packetRateTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountProgrammableFlowProtectionNetworkAnalyticsAdaptiveGroupsAvgConfidence': { kind: 'OBJECT'; name: 'AccountProgrammableFlowProtectionNetworkAnalyticsAdaptiveGroupsAvgConfidence'; fields: { 'bitRate': { name: 'bitRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateDay': { name: 'bitRateDay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateFifteenMinutes': { name: 'bitRateFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateFiveMinutes': { name: 'bitRateFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateHour': { name: 'bitRateHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateMinute': { name: 'bitRateMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateTenSeconds': { name: 'bitRateTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRate': { name: 'packetRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateDay': { name: 'packetRateDay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateFifteenMinutes': { name: 'packetRateFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateFiveMinutes': { name: 'packetRateFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateHour': { name: 'packetRateHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateMinute': { name: 'packetRateMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateTenSeconds': { name: 'packetRateTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountProgrammableFlowProtectionNetworkAnalyticsAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountProgrammableFlowProtectionNetworkAnalyticsAdaptiveGroupsConfidence'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountProgrammableFlowProtectionNetworkAnalyticsAdaptiveGroupsAvgConfidence'; ofType: null; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountProgrammableFlowProtectionNetworkAnalyticsAdaptiveGroupsSumConfidence'; ofType: null; } }; }; }; + 'AccountProgrammableFlowProtectionNetworkAnalyticsAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountProgrammableFlowProtectionNetworkAnalyticsAdaptiveGroupsDimensions'; fields: { 'applicationTag': { name: 'applicationTag'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'coloCity': { name: 'coloCity'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'coloCode': { name: 'coloCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'coloCountry': { name: 'coloCountry'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'coloGeohash': { name: 'coloGeohash'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'coloName': { name: 'coloName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeTenSeconds': { name: 'datetimeTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'destinationAsn': { name: 'destinationAsn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'destinationAsnName': { name: 'destinationAsnName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'destinationCountry': { name: 'destinationCountry'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'destinationGeohash': { name: 'destinationGeohash'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'destinationPort': { name: 'destinationPort'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'direction': { name: 'direction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ethertype': { name: 'ethertype'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'greChecksum': { name: 'greChecksum'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'greEthertype': { name: 'greEthertype'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'greHeaderLength': { name: 'greHeaderLength'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'greKey': { name: 'greKey'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'greSequenceNumber': { name: 'greSequenceNumber'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'greVersion': { name: 'greVersion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'icmpChecksum': { name: 'icmpChecksum'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'icmpCode': { name: 'icmpCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'icmpType': { name: 'icmpType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipDestinationAddress': { name: 'ipDestinationAddress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipDestinationSubnet': { name: 'ipDestinationSubnet'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipFragmentOffset': { name: 'ipFragmentOffset'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'ipHeaderLength': { name: 'ipHeaderLength'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'ipMoreFragments': { name: 'ipMoreFragments'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipProtocol': { name: 'ipProtocol'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipProtocolName': { name: 'ipProtocolName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipSourceAddress': { name: 'ipSourceAddress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipSourceSubnet': { name: 'ipSourceSubnet'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipTotalLength': { name: 'ipTotalLength'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'ipTotalLengthBuckets': { name: 'ipTotalLengthBuckets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'ipTtl': { name: 'ipTtl'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipTtlBuckets': { name: 'ipTtlBuckets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipv4Checksum': { name: 'ipv4Checksum'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'ipv4DontFragment': { name: 'ipv4DontFragment'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipv4Dscp': { name: 'ipv4Dscp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipv4Ecn': { name: 'ipv4Ecn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipv4Identification': { name: 'ipv4Identification'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'ipv4Options': { name: 'ipv4Options'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipv6Dscp': { name: 'ipv6Dscp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipv6Ecn': { name: 'ipv6Ecn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipv6ExtensionHeaders': { name: 'ipv6ExtensionHeaders'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipv6FlowLabel': { name: 'ipv6FlowLabel'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'ipv6Identification': { name: 'ipv6Identification'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'leaseTag': { name: 'leaseTag'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'mitigationReason': { name: 'mitigationReason'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'mitigationScope': { name: 'mitigationScope'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'outcome': { name: 'outcome'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'prefixTag': { name: 'prefixTag'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'sourceAsn': { name: 'sourceAsn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'sourceAsnName': { name: 'sourceAsnName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sourceCountry': { name: 'sourceCountry'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sourceGeohash': { name: 'sourceGeohash'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sourcePort': { name: 'sourcePort'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'tcpAcknowledgementNumber': { name: 'tcpAcknowledgementNumber'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'tcpChecksum': { name: 'tcpChecksum'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'tcpDataOffset': { name: 'tcpDataOffset'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'tcpFlags': { name: 'tcpFlags'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'tcpFlagsString': { name: 'tcpFlagsString'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'tcpMss': { name: 'tcpMss'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'tcpOptions': { name: 'tcpOptions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'tcpSackBlocks': { name: 'tcpSackBlocks'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'tcpSackPermitted': { name: 'tcpSackPermitted'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'tcpSequenceNumber': { name: 'tcpSequenceNumber'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'tcpTimestampEcr': { name: 'tcpTimestampEcr'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'tcpTimestampValue': { name: 'tcpTimestampValue'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'tcpUrgentPointer': { name: 'tcpUrgentPointer'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'tcpWindowScale': { name: 'tcpWindowScale'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'tcpWindowSize': { name: 'tcpWindowSize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'udpChecksum': { name: 'udpChecksum'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'udpPayloadLength': { name: 'udpPayloadLength'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'verdict': { name: 'verdict'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountProgrammableFlowProtectionNetworkAnalyticsAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountProgrammableFlowProtectionNetworkAnalyticsAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountProgrammableFlowProtectionNetworkAnalyticsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountProgrammableFlowProtectionNetworkAnalyticsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'applicationTag'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationTag_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationTag_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationTag_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'applicationTag_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationTag_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationTag_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationTag_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationTag_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'applicationTag_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCity_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCity_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCode_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCode_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCountry_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCountry_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloGeohash_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloGeohash_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeTenSeconds'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeTenSeconds_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationAsn'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationAsnName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationAsnName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsn_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'destinationAsn_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'destinationAsn_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationAsn_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'destinationAsn_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'destinationAsn_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'destinationAsn_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationCountry'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationCountry_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationCountry_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationGeohash_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationGeohash_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationPort'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationPort_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'direction'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'direction_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'direction_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ethertype'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ethertype_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ethertype_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ethertype_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ethertype_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ethertype_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ethertype_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ethertype_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'greChecksum'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greChecksum_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greChecksum_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greChecksum_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'greChecksum_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greChecksum_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greChecksum_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greChecksum_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'greEthertype'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greEthertype_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greEthertype_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greEthertype_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'greEthertype_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greEthertype_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greEthertype_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greEthertype_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'greHeaderLength'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greHeaderLength_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greHeaderLength_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greHeaderLength_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'greHeaderLength_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greHeaderLength_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greHeaderLength_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greHeaderLength_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'greKey'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greKey_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greKey_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greKey_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'greKey_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greKey_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greKey_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greKey_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'greSequenceNumber'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greSequenceNumber_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greSequenceNumber_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greSequenceNumber_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'greSequenceNumber_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greSequenceNumber_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greSequenceNumber_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greSequenceNumber_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'greVersion'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'greVersion_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'greVersion_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'greVersion_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'greVersion_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'greVersion_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'greVersion_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'greVersion_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'icmpChecksum'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'icmpChecksum_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'icmpChecksum_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'icmpChecksum_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'icmpChecksum_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'icmpChecksum_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'icmpChecksum_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'icmpChecksum_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'icmpCode'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpCode_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpCode_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpCode_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'icmpCode_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpCode_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpCode_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpCode_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'icmpType'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpType_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpType_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpType_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'icmpType_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpType_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpType_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpType_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipDestinationAddress_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipDestinationAddress_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipDestinationSubnet_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipDestinationSubnet_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipFragmentOffset'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipFragmentOffset_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipFragmentOffset_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipFragmentOffset_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipFragmentOffset_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipFragmentOffset_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipFragmentOffset_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipFragmentOffset_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipHeaderLength'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipHeaderLength_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipHeaderLength_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipHeaderLength_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipHeaderLength_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipHeaderLength_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipHeaderLength_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipHeaderLength_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipMoreFragments'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipMoreFragments_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipMoreFragments_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipMoreFragments_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipMoreFragments_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipMoreFragments_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipMoreFragments_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipMoreFragments_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipProtocolName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipProtocolName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipSourceAddress_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipSourceAddress_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipSourceSubnet_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipSourceSubnet_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLength'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLengthBuckets'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLengthBuckets_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLengthBuckets_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLengthBuckets_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipTotalLengthBuckets_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLengthBuckets_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLengthBuckets_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLengthBuckets_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipTotalLength_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLength_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLength_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipTotalLength_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLength_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLength_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLength_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipTtl'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipTtl_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtl_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtl_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipTtl_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtl_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtl_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtl_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv4Checksum'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Checksum_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Checksum_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Checksum_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv4Checksum_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Checksum_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Checksum_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Checksum_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv4DontFragment'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4DontFragment_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4DontFragment_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4DontFragment_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv4DontFragment_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4DontFragment_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4DontFragment_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4DontFragment_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv4Identification'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Identification_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Identification_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Identification_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv4Identification_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Identification_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Identification_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Identification_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv4Options'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4Options_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4Options_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4Options_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv4Options_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4Options_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4Options_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4Options_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4Options_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv4Options_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6FlowLabel'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6FlowLabel_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6FlowLabel_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6FlowLabel_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv6FlowLabel_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6FlowLabel_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6FlowLabel_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6FlowLabel_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv6Identification'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6Identification_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6Identification_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6Identification_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv6Identification_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6Identification_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6Identification_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6Identification_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'leaseTag'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leaseTag_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leaseTag_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leaseTag_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'leaseTag_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leaseTag_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leaseTag_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leaseTag_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leaseTag_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'leaseTag_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationReason'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationReason_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationReason_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationReason_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'mitigationReason_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationReason_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationReason_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationReason_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationReason_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'mitigationReason_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationScope'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationScope_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationScope_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationScope_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'mitigationScope_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationScope_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationScope_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationScope_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationScope_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'mitigationScope_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'outcome_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'outcome_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'prefixTag_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'prefixTag_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sampleInterval_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceAsn'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceAsnName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceAsnName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsn_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sourceAsn_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sourceAsn_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceAsn_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sourceAsn_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sourceAsn_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sourceAsn_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceCountry'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceCountry_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceCountry_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceGeohash_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceGeohash_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourcePort'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourcePort_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpChecksum'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpChecksum_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpChecksum_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpChecksum_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpChecksum_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpChecksum_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpChecksum_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpChecksum_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpDataOffset'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpDataOffset_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpDataOffset_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpDataOffset_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpDataOffset_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpDataOffset_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpDataOffset_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpDataOffset_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpFlags'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpFlagsString_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpFlagsString_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'tcpMss'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpMss_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpMss_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpMss_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpMss_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpMss_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpMss_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpMss_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpOptions'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpOptions_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpOptions_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpOptions_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpOptions_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpOptions_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpOptions_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpOptions_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpOptions_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpOptions_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpSackBlocks_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpSackBlocks_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'tcpSequenceNumber'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpSequenceNumber_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpSequenceNumber_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpSequenceNumber_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpSequenceNumber_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpSequenceNumber_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpSequenceNumber_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpSequenceNumber_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpTimestampEcr'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampEcr_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampEcr_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampEcr_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpTimestampEcr_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampEcr_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampEcr_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampEcr_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpTimestampValue'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampValue_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampValue_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampValue_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpTimestampValue_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampValue_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampValue_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampValue_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpUrgentPointer'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpUrgentPointer_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpUrgentPointer_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpUrgentPointer_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpUrgentPointer_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpUrgentPointer_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpUrgentPointer_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpUrgentPointer_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpWindowScale'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowScale_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowScale_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowScale_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpWindowScale_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowScale_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowScale_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowScale_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpWindowSize'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowSize_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowSize_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowSize_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpWindowSize_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowSize_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowSize_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowSize_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'udpChecksum'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpChecksum_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpChecksum_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpChecksum_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'udpChecksum_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpChecksum_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpChecksum_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpChecksum_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'udpPayloadLength'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpPayloadLength_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpPayloadLength_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpPayloadLength_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'udpPayloadLength_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpPayloadLength_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpPayloadLength_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpPayloadLength_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'verdict'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verdict_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verdict_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verdict_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'verdict_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verdict_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verdict_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verdict_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verdict_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'verdict_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountProgrammableFlowProtectionNetworkAnalyticsAdaptiveGroupsOrderBy': { name: 'AccountProgrammableFlowProtectionNetworkAnalyticsAdaptiveGroupsOrderBy'; enumValues: 'applicationTag_ASC' | 'applicationTag_DESC' | 'avg_bitRateDay_ASC' | 'avg_bitRateDay_DESC' | 'avg_bitRateFifteenMinutes_ASC' | 'avg_bitRateFifteenMinutes_DESC' | 'avg_bitRateFiveMinutes_ASC' | 'avg_bitRateFiveMinutes_DESC' | 'avg_bitRateHour_ASC' | 'avg_bitRateHour_DESC' | 'avg_bitRateMinute_ASC' | 'avg_bitRateMinute_DESC' | 'avg_bitRateTenSeconds_ASC' | 'avg_bitRateTenSeconds_DESC' | 'avg_bitRate_ASC' | 'avg_bitRate_DESC' | 'avg_packetRateDay_ASC' | 'avg_packetRateDay_DESC' | 'avg_packetRateFifteenMinutes_ASC' | 'avg_packetRateFifteenMinutes_DESC' | 'avg_packetRateFiveMinutes_ASC' | 'avg_packetRateFiveMinutes_DESC' | 'avg_packetRateHour_ASC' | 'avg_packetRateHour_DESC' | 'avg_packetRateMinute_ASC' | 'avg_packetRateMinute_DESC' | 'avg_packetRateTenSeconds_ASC' | 'avg_packetRateTenSeconds_DESC' | 'avg_packetRate_ASC' | 'avg_packetRate_DESC' | 'coloCity_ASC' | 'coloCity_DESC' | 'coloCode_ASC' | 'coloCode_DESC' | 'coloCountry_ASC' | 'coloCountry_DESC' | 'coloGeohash_ASC' | 'coloGeohash_DESC' | 'coloName_ASC' | 'coloName_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetimeTenSeconds_ASC' | 'datetimeTenSeconds_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'destinationAsnName_ASC' | 'destinationAsnName_DESC' | 'destinationAsn_ASC' | 'destinationAsn_DESC' | 'destinationCountry_ASC' | 'destinationCountry_DESC' | 'destinationGeohash_ASC' | 'destinationGeohash_DESC' | 'destinationPort_ASC' | 'destinationPort_DESC' | 'direction_ASC' | 'direction_DESC' | 'ethertype_ASC' | 'ethertype_DESC' | 'greChecksum_ASC' | 'greChecksum_DESC' | 'greEthertype_ASC' | 'greEthertype_DESC' | 'greHeaderLength_ASC' | 'greHeaderLength_DESC' | 'greKey_ASC' | 'greKey_DESC' | 'greSequenceNumber_ASC' | 'greSequenceNumber_DESC' | 'greVersion_ASC' | 'greVersion_DESC' | 'icmpChecksum_ASC' | 'icmpChecksum_DESC' | 'icmpCode_ASC' | 'icmpCode_DESC' | 'icmpType_ASC' | 'icmpType_DESC' | 'ipDestinationAddress_ASC' | 'ipDestinationAddress_DESC' | 'ipDestinationSubnet_ASC' | 'ipDestinationSubnet_DESC' | 'ipFragmentOffset_ASC' | 'ipFragmentOffset_DESC' | 'ipHeaderLength_ASC' | 'ipHeaderLength_DESC' | 'ipMoreFragments_ASC' | 'ipMoreFragments_DESC' | 'ipProtocolName_ASC' | 'ipProtocolName_DESC' | 'ipProtocol_ASC' | 'ipProtocol_DESC' | 'ipSourceAddress_ASC' | 'ipSourceAddress_DESC' | 'ipSourceSubnet_ASC' | 'ipSourceSubnet_DESC' | 'ipTotalLengthBuckets_ASC' | 'ipTotalLengthBuckets_DESC' | 'ipTotalLength_ASC' | 'ipTotalLength_DESC' | 'ipTtlBuckets_ASC' | 'ipTtlBuckets_DESC' | 'ipTtl_ASC' | 'ipTtl_DESC' | 'ipv4Checksum_ASC' | 'ipv4Checksum_DESC' | 'ipv4DontFragment_ASC' | 'ipv4DontFragment_DESC' | 'ipv4Dscp_ASC' | 'ipv4Dscp_DESC' | 'ipv4Ecn_ASC' | 'ipv4Ecn_DESC' | 'ipv4Identification_ASC' | 'ipv4Identification_DESC' | 'ipv4Options_ASC' | 'ipv4Options_DESC' | 'ipv6Dscp_ASC' | 'ipv6Dscp_DESC' | 'ipv6Ecn_ASC' | 'ipv6Ecn_DESC' | 'ipv6ExtensionHeaders_ASC' | 'ipv6ExtensionHeaders_DESC' | 'ipv6FlowLabel_ASC' | 'ipv6FlowLabel_DESC' | 'ipv6Identification_ASC' | 'ipv6Identification_DESC' | 'leaseTag_ASC' | 'leaseTag_DESC' | 'mitigationReason_ASC' | 'mitigationReason_DESC' | 'mitigationScope_ASC' | 'mitigationScope_DESC' | 'outcome_ASC' | 'outcome_DESC' | 'prefixTag_ASC' | 'prefixTag_DESC' | 'sampleInterval_ASC' | 'sampleInterval_DESC' | 'sourceAsnName_ASC' | 'sourceAsnName_DESC' | 'sourceAsn_ASC' | 'sourceAsn_DESC' | 'sourceCountry_ASC' | 'sourceCountry_DESC' | 'sourceGeohash_ASC' | 'sourceGeohash_DESC' | 'sourcePort_ASC' | 'sourcePort_DESC' | 'sum_bits_ASC' | 'sum_bits_DESC' | 'sum_packets_ASC' | 'sum_packets_DESC' | 'system_ASC' | 'system_DESC' | 'tcpAcknowledgementNumber_ASC' | 'tcpAcknowledgementNumber_DESC' | 'tcpChecksum_ASC' | 'tcpChecksum_DESC' | 'tcpDataOffset_ASC' | 'tcpDataOffset_DESC' | 'tcpFlagsString_ASC' | 'tcpFlagsString_DESC' | 'tcpFlags_ASC' | 'tcpFlags_DESC' | 'tcpMss_ASC' | 'tcpMss_DESC' | 'tcpOptions_ASC' | 'tcpOptions_DESC' | 'tcpSackBlocks_ASC' | 'tcpSackBlocks_DESC' | 'tcpSackPermitted_ASC' | 'tcpSackPermitted_DESC' | 'tcpSequenceNumber_ASC' | 'tcpSequenceNumber_DESC' | 'tcpTimestampEcr_ASC' | 'tcpTimestampEcr_DESC' | 'tcpTimestampValue_ASC' | 'tcpTimestampValue_DESC' | 'tcpUrgentPointer_ASC' | 'tcpUrgentPointer_DESC' | 'tcpWindowScale_ASC' | 'tcpWindowScale_DESC' | 'tcpWindowSize_ASC' | 'tcpWindowSize_DESC' | 'udpChecksum_ASC' | 'udpChecksum_DESC' | 'udpPayloadLength_ASC' | 'udpPayloadLength_DESC' | 'verdict_ASC' | 'verdict_DESC'; }; + 'AccountProgrammableFlowProtectionNetworkAnalyticsAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'AccountProgrammableFlowProtectionNetworkAnalyticsAdaptiveGroupsSum'; fields: { 'bits': { name: 'bits'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packets': { name: 'packets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountProgrammableFlowProtectionNetworkAnalyticsAdaptiveGroupsSumConfidence': { kind: 'OBJECT'; name: 'AccountProgrammableFlowProtectionNetworkAnalyticsAdaptiveGroupsSumConfidence'; fields: { 'bits': { name: 'bits'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packets': { name: 'packets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountQueueBacklogAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountQueueBacklogAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountQueueBacklogAdaptiveGroupsAvg'; ofType: null; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountQueueBacklogAdaptiveGroupsDimensions'; ofType: null; } }; }; }; + 'AccountQueueBacklogAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'AccountQueueBacklogAdaptiveGroupsAvg'; fields: { 'bytes': { name: 'bytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'messages': { name: 'messages'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountQueueBacklogAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountQueueBacklogAdaptiveGroupsDimensions'; fields: { 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeSixHours': { name: 'datetimeSixHours'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'queueId': { name: 'queueId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountQueueBacklogAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountQueueBacklogAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountQueueBacklogAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountQueueBacklogAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'queueId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queueId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queueId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queueId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'queueId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queueId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queueId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queueId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queueId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'queueId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountQueueBacklogAdaptiveGroupsOrderBy': { name: 'AccountQueueBacklogAdaptiveGroupsOrderBy'; enumValues: 'avg_bytes_ASC' | 'avg_bytes_DESC' | 'avg_messages_ASC' | 'avg_messages_DESC' | 'avg_sampleInterval_ASC' | 'avg_sampleInterval_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetimeSixHours_ASC' | 'datetimeSixHours_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'queueId_ASC' | 'queueId_DESC'; }; + 'AccountQueueConsumerMetricsAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountQueueConsumerMetricsAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountQueueConsumerMetricsAdaptiveGroupsAvg'; ofType: null; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountQueueConsumerMetricsAdaptiveGroupsDimensions'; ofType: null; } }; }; }; + 'AccountQueueConsumerMetricsAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'AccountQueueConsumerMetricsAdaptiveGroupsAvg'; fields: { 'concurrency': { name: 'concurrency'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountQueueConsumerMetricsAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountQueueConsumerMetricsAdaptiveGroupsDimensions'; fields: { 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeSixHours': { name: 'datetimeSixHours'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'queueId': { name: 'queueId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountQueueConsumerMetricsAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountQueueConsumerMetricsAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountQueueConsumerMetricsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountQueueConsumerMetricsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'queueId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queueId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queueId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queueId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'queueId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queueId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queueId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queueId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queueId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'queueId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountQueueConsumerMetricsAdaptiveGroupsOrderBy': { name: 'AccountQueueConsumerMetricsAdaptiveGroupsOrderBy'; enumValues: 'avg_concurrency_ASC' | 'avg_concurrency_DESC' | 'avg_sampleInterval_ASC' | 'avg_sampleInterval_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetimeSixHours_ASC' | 'datetimeSixHours_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'queueId_ASC' | 'queueId_DESC'; }; + 'AccountQueueDelayedBacklogAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountQueueDelayedBacklogAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountQueueDelayedBacklogAdaptiveGroupsAvg'; ofType: null; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountQueueDelayedBacklogAdaptiveGroupsDimensions'; ofType: null; } }; }; }; + 'AccountQueueDelayedBacklogAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'AccountQueueDelayedBacklogAdaptiveGroupsAvg'; fields: { 'messages': { name: 'messages'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountQueueDelayedBacklogAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountQueueDelayedBacklogAdaptiveGroupsDimensions'; fields: { 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeSixHours': { name: 'datetimeSixHours'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'queueId': { name: 'queueId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountQueueDelayedBacklogAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountQueueDelayedBacklogAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountQueueDelayedBacklogAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountQueueDelayedBacklogAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'queueId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queueId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queueId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queueId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'queueId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queueId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queueId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queueId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queueId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'queueId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountQueueDelayedBacklogAdaptiveGroupsOrderBy': { name: 'AccountQueueDelayedBacklogAdaptiveGroupsOrderBy'; enumValues: 'avg_messages_ASC' | 'avg_messages_DESC' | 'avg_sampleInterval_ASC' | 'avg_sampleInterval_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetimeSixHours_ASC' | 'datetimeSixHours_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'queueId_ASC' | 'queueId_DESC'; }; + 'AccountQueueMessageOperationsAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountQueueMessageOperationsAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountQueueMessageOperationsAdaptiveGroupsAvg'; ofType: null; } }; 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountQueueMessageOperationsAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountQueueMessageOperationsAdaptiveGroupsDimensions'; ofType: null; } }; 'max': { name: 'max'; type: { kind: 'OBJECT'; name: 'AccountQueueMessageOperationsAdaptiveGroupsMax'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountQueueMessageOperationsAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'AccountQueueMessageOperationsAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'AccountQueueMessageOperationsAdaptiveGroupsAvg'; fields: { 'lagTime': { name: 'lagTime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'retryCount': { name: 'retryCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountQueueMessageOperationsAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountQueueMessageOperationsAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountQueueMessageOperationsAdaptiveGroupsSumConfidence'; ofType: null; } }; }; }; + 'AccountQueueMessageOperationsAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountQueueMessageOperationsAdaptiveGroupsDimensions'; fields: { 'actionType': { name: 'actionType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'consumerType': { name: 'consumerType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeSixHours': { name: 'datetimeSixHours'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'outcome': { name: 'outcome'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'queueId': { name: 'queueId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountQueueMessageOperationsAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountQueueMessageOperationsAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountQueueMessageOperationsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountQueueMessageOperationsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'actionType'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'actionType_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'actionType_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'actionType_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'actionType_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'actionType_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'actionType_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'actionType_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'actionType_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'actionType_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'consumerType'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'consumerType_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'consumerType_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'consumerType_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'consumerType_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'consumerType_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'consumerType_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'consumerType_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'consumerType_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'consumerType_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'outcome'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'outcome_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'outcome_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queueId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queueId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queueId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queueId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'queueId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queueId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queueId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queueId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queueId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'queueId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountQueueMessageOperationsAdaptiveGroupsMax': { kind: 'OBJECT'; name: 'AccountQueueMessageOperationsAdaptiveGroupsMax'; fields: { 'messageSize': { name: 'messageSize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; }; }; + 'AccountQueueMessageOperationsAdaptiveGroupsOrderBy': { name: 'AccountQueueMessageOperationsAdaptiveGroupsOrderBy'; enumValues: 'actionType_ASC' | 'actionType_DESC' | 'avg_lagTime_ASC' | 'avg_lagTime_DESC' | 'avg_retryCount_ASC' | 'avg_retryCount_DESC' | 'avg_sampleInterval_ASC' | 'avg_sampleInterval_DESC' | 'consumerType_ASC' | 'consumerType_DESC' | 'count_ASC' | 'count_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetimeSixHours_ASC' | 'datetimeSixHours_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'max_messageSize_ASC' | 'max_messageSize_DESC' | 'outcome_ASC' | 'outcome_DESC' | 'queueId_ASC' | 'queueId_DESC' | 'sum_billableOperations_ASC' | 'sum_billableOperations_DESC' | 'sum_bytes_ASC' | 'sum_bytes_DESC'; }; + 'AccountQueueMessageOperationsAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'AccountQueueMessageOperationsAdaptiveGroupsSum'; fields: { 'billableOperations': { name: 'billableOperations'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'bytes': { name: 'bytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountQueueMessageOperationsAdaptiveGroupsSumConfidence': { kind: 'OBJECT'; name: 'AccountQueueMessageOperationsAdaptiveGroupsSumConfidence'; fields: { 'billableOperations': { name: 'billableOperations'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bytes': { name: 'bytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountR2OperationsAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountR2OperationsAdaptiveGroups'; fields: { 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountR2OperationsAdaptiveGroupsConfidence'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountR2OperationsAdaptiveGroupsDimensions'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountR2OperationsAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'AccountR2OperationsAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountR2OperationsAdaptiveGroupsConfidence'; fields: { 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountR2OperationsAdaptiveGroupsSumConfidence'; ofType: null; } }; }; }; + 'AccountR2OperationsAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountR2OperationsAdaptiveGroupsDimensions'; fields: { 'actionStatus': { name: 'actionStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'actionType': { name: 'actionType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'bucketName': { name: 'bucketName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'eyeballRegion': { name: 'eyeballRegion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'objectName': { name: 'objectName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'responseStatusCode': { name: 'responseStatusCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'storageClass': { name: 'storageClass'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountR2OperationsAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountR2OperationsAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountR2OperationsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountR2OperationsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'actionStatus'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'actionStatus_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'actionStatus_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'actionStatus_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'actionStatus_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'actionStatus_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'actionStatus_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'actionStatus_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'actionStatus_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'actionStatus_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'actionType'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'actionType_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'actionType_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'actionType_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'actionType_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'actionType_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'actionType_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'actionType_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'actionType_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'actionType_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'bucketName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'bucketName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'bucketName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'bucketName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'bucketName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'bucketName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'bucketName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'bucketName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'bucketName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'bucketName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'eyeballRegion'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eyeballRegion_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eyeballRegion_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eyeballRegion_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'eyeballRegion_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eyeballRegion_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eyeballRegion_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eyeballRegion_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eyeballRegion_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'eyeballRegion_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'objectName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'objectName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'objectName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'objectName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'objectName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'objectName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'objectName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'objectName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'objectName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'objectName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseStatusCode'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'responseStatusCode_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'responseStatusCode_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'responseStatusCode_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'responseStatusCode_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'responseStatusCode_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'responseStatusCode_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'responseStatusCode_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'storageClass'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'storageClass_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'storageClass_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'storageClass_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'storageClass_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'storageClass_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'storageClass_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'storageClass_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'storageClass_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'storageClass_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountR2OperationsAdaptiveGroupsOrderBy': { name: 'AccountR2OperationsAdaptiveGroupsOrderBy'; enumValues: 'actionStatus_ASC' | 'actionStatus_DESC' | 'actionType_ASC' | 'actionType_DESC' | 'bucketName_ASC' | 'bucketName_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'eyeballRegion_ASC' | 'eyeballRegion_DESC' | 'objectName_ASC' | 'objectName_DESC' | 'responseStatusCode_ASC' | 'responseStatusCode_DESC' | 'storageClass_ASC' | 'storageClass_DESC' | 'sum_requests_ASC' | 'sum_requests_DESC' | 'sum_responseBytes_ASC' | 'sum_responseBytes_DESC' | 'sum_responseObjectSize_ASC' | 'sum_responseObjectSize_DESC'; }; + 'AccountR2OperationsAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'AccountR2OperationsAdaptiveGroupsSum'; fields: { 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'responseBytes': { name: 'responseBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'responseObjectSize': { name: 'responseObjectSize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountR2OperationsAdaptiveGroupsSumConfidence': { kind: 'OBJECT'; name: 'AccountR2OperationsAdaptiveGroupsSumConfidence'; fields: { 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'responseBytes': { name: 'responseBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'responseObjectSize': { name: 'responseObjectSize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountR2StorageAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountR2StorageAdaptiveGroups'; fields: { 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountR2StorageAdaptiveGroupsDimensions'; ofType: null; } }; 'max': { name: 'max'; type: { kind: 'OBJECT'; name: 'AccountR2StorageAdaptiveGroupsMax'; ofType: null; } }; }; }; + 'AccountR2StorageAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountR2StorageAdaptiveGroupsDimensions'; fields: { 'bucketName': { name: 'bucketName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'storageClass': { name: 'storageClass'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountR2StorageAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountR2StorageAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountR2StorageAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountR2StorageAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'bucketName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'bucketName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'bucketName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'bucketName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'bucketName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'bucketName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'bucketName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'bucketName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'bucketName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'bucketName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'storageClass'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'storageClass_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'storageClass_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'storageClass_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'storageClass_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'storageClass_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'storageClass_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'storageClass_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'storageClass_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'storageClass_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountR2StorageAdaptiveGroupsMax': { kind: 'OBJECT'; name: 'AccountR2StorageAdaptiveGroupsMax'; fields: { 'metadataSize': { name: 'metadataSize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'objectCount': { name: 'objectCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'payloadSize': { name: 'payloadSize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'uploadCount': { name: 'uploadCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountR2StorageAdaptiveGroupsOrderBy': { name: 'AccountR2StorageAdaptiveGroupsOrderBy'; enumValues: 'bucketName_ASC' | 'bucketName_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'max_metadataSize_ASC' | 'max_metadataSize_DESC' | 'max_objectCount_ASC' | 'max_objectCount_DESC' | 'max_payloadSize_ASC' | 'max_payloadSize_DESC' | 'max_uploadCount_ASC' | 'max_uploadCount_DESC' | 'storageClass_ASC' | 'storageClass_DESC'; }; + 'AccountRumPageloadEventsAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountRumPageloadEventsAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountRumPageloadEventsAdaptiveGroupsAvg'; ofType: null; } }; 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountRumPageloadEventsAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountRumPageloadEventsAdaptiveGroupsDimensions'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountRumPageloadEventsAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'AccountRumPageloadEventsAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'AccountRumPageloadEventsAdaptiveGroupsAvg'; fields: { 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountRumPageloadEventsAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountRumPageloadEventsAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountRumPageloadEventsAdaptiveGroupsSumConfidence'; ofType: null; } }; }; }; + 'AccountRumPageloadEventsAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountRumPageloadEventsAdaptiveGroupsDimensions'; fields: { 'bot': { name: 'bot'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'countryName': { name: 'countryName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'customTagInternalSxg': { name: 'customTagInternalSxg'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHalfOfHour': { name: 'datetimeHalfOfHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'deviceType': { name: 'deviceType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'refererHost': { name: 'refererHost'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'refererPath': { name: 'refererPath'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'refererScheme': { name: 'refererScheme'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'requestHost': { name: 'requestHost'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'requestPath': { name: 'requestPath'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'requestScheme': { name: 'requestScheme'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'siteTag': { name: 'siteTag'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'userAgentBrowser': { name: 'userAgentBrowser'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'userAgentOS': { name: 'userAgentOS'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountRumPageloadEventsAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountRumPageloadEventsAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountRumPageloadEventsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountRumPageloadEventsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'bot'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'bot_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'bot_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'bot_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'bot_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'bot_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'bot_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'bot_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'countryName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'countryName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'countryName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'countryName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'countryName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'countryName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'countryName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'countryName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'countryName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'countryName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'customTagInternalSxg'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'customTagInternalSxg_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'customTagInternalSxg_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'customTagInternalSxg_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'customTagInternalSxg_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'customTagInternalSxg_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'customTagInternalSxg_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'customTagInternalSxg_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'customTagInternalSxg_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'customTagInternalSxg_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHalfOfHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHalfOfHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceType'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceType_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceType_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererHost'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererHost_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererHost_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererHost_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'refererHost_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererHost_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererHost_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererHost_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererHost_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'refererHost_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererPath'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererPath_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererPath_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererPath_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'refererPath_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererPath_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererPath_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererPath_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererPath_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'refererPath_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererScheme'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererScheme_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererScheme_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererScheme_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'refererScheme_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererScheme_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererScheme_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererScheme_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererScheme_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'refererScheme_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestHost'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestHost_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestHost_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestHost_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'requestHost_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestHost_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestHost_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestHost_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestHost_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'requestHost_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestPath'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestPath_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestPath_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestPath_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'requestPath_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestPath_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestPath_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestPath_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestPath_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'requestPath_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestScheme'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestScheme_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestScheme_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestScheme_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'requestScheme_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestScheme_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestScheme_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestScheme_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestScheme_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'requestScheme_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'siteTag'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'siteTag_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'siteTag_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'siteTag_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'siteTag_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'siteTag_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'siteTag_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'siteTag_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'siteTag_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'siteTag_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userAgentBrowser_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userAgentBrowser_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentOS'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentOS_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentOS_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentOS_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userAgentOS_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentOS_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentOS_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentOS_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentOS_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userAgentOS_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountRumPageloadEventsAdaptiveGroupsOrderBy': { name: 'AccountRumPageloadEventsAdaptiveGroupsOrderBy'; enumValues: 'avg_sampleInterval_ASC' | 'avg_sampleInterval_DESC' | 'bot_ASC' | 'bot_DESC' | 'count_ASC' | 'count_DESC' | 'countryName_ASC' | 'countryName_DESC' | 'customTagInternalSxg_ASC' | 'customTagInternalSxg_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHalfOfHour_ASC' | 'datetimeHalfOfHour_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'deviceType_ASC' | 'deviceType_DESC' | 'refererHost_ASC' | 'refererHost_DESC' | 'refererPath_ASC' | 'refererPath_DESC' | 'refererScheme_ASC' | 'refererScheme_DESC' | 'requestHost_ASC' | 'requestHost_DESC' | 'requestPath_ASC' | 'requestPath_DESC' | 'requestScheme_ASC' | 'requestScheme_DESC' | 'siteTag_ASC' | 'siteTag_DESC' | 'sum_visits_ASC' | 'sum_visits_DESC' | 'userAgentBrowser_ASC' | 'userAgentBrowser_DESC' | 'userAgentOS_ASC' | 'userAgentOS_DESC'; }; + 'AccountRumPageloadEventsAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'AccountRumPageloadEventsAdaptiveGroupsSum'; fields: { 'visits': { name: 'visits'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountRumPageloadEventsAdaptiveGroupsSumConfidence': { kind: 'OBJECT'; name: 'AccountRumPageloadEventsAdaptiveGroupsSumConfidence'; fields: { 'visits': { name: 'visits'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountRumPerformanceEventsAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountRumPerformanceEventsAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountRumPerformanceEventsAdaptiveGroupsAvg'; ofType: null; } }; 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountRumPerformanceEventsAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountRumPerformanceEventsAdaptiveGroupsDimensions'; ofType: null; } }; 'quantiles': { name: 'quantiles'; type: { kind: 'OBJECT'; name: 'AccountRumPerformanceEventsAdaptiveGroupsQuantiles'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountRumPerformanceEventsAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'AccountRumPerformanceEventsAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'AccountRumPerformanceEventsAdaptiveGroupsAvg'; fields: { 'connectionTime': { name: 'connectionTime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dnsTime': { name: 'dnsTime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'firstContentfulPaint': { name: 'firstContentfulPaint'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'firstPaint': { name: 'firstPaint'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'loadEventTime': { name: 'loadEventTime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'pageLoadTime': { name: 'pageLoadTime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'pageRenderTime': { name: 'pageRenderTime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'requestTime': { name: 'requestTime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'responseTime': { name: 'responseTime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountRumPerformanceEventsAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountRumPerformanceEventsAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountRumPerformanceEventsAdaptiveGroupsSumConfidence'; ofType: null; } }; }; }; + 'AccountRumPerformanceEventsAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountRumPerformanceEventsAdaptiveGroupsDimensions'; fields: { 'bot': { name: 'bot'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'countryName': { name: 'countryName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'customTagInternalSxg': { name: 'customTagInternalSxg'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHalfOfHour': { name: 'datetimeHalfOfHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'deviceType': { name: 'deviceType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'refererHost': { name: 'refererHost'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'refererPath': { name: 'refererPath'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'refererScheme': { name: 'refererScheme'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'requestHost': { name: 'requestHost'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'requestPath': { name: 'requestPath'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'requestScheme': { name: 'requestScheme'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'siteTag': { name: 'siteTag'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'userAgentBrowser': { name: 'userAgentBrowser'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'userAgentOS': { name: 'userAgentOS'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountRumPerformanceEventsAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountRumPerformanceEventsAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountRumPerformanceEventsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountRumPerformanceEventsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'bot'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'bot_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'bot_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'bot_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'bot_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'bot_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'bot_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'bot_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'countryName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'countryName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'countryName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'countryName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'countryName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'countryName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'countryName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'countryName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'countryName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'countryName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'customTagInternalSxg'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'customTagInternalSxg_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'customTagInternalSxg_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'customTagInternalSxg_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'customTagInternalSxg_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'customTagInternalSxg_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'customTagInternalSxg_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'customTagInternalSxg_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'customTagInternalSxg_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'customTagInternalSxg_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHalfOfHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHalfOfHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceType'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceType_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceType_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererHost'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererHost_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererHost_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererHost_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'refererHost_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererHost_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererHost_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererHost_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererHost_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'refererHost_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererPath'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererPath_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererPath_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererPath_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'refererPath_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererPath_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererPath_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererPath_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererPath_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'refererPath_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererScheme'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererScheme_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererScheme_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererScheme_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'refererScheme_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererScheme_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererScheme_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererScheme_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererScheme_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'refererScheme_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestHost'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestHost_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestHost_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestHost_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'requestHost_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestHost_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestHost_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestHost_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestHost_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'requestHost_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestPath'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestPath_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestPath_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestPath_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'requestPath_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestPath_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestPath_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestPath_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestPath_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'requestPath_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestScheme'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestScheme_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestScheme_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestScheme_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'requestScheme_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestScheme_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestScheme_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestScheme_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestScheme_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'requestScheme_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'siteTag'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'siteTag_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'siteTag_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'siteTag_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'siteTag_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'siteTag_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'siteTag_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'siteTag_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'siteTag_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'siteTag_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userAgentBrowser_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userAgentBrowser_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentOS'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentOS_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentOS_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentOS_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userAgentOS_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentOS_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentOS_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentOS_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentOS_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userAgentOS_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountRumPerformanceEventsAdaptiveGroupsOrderBy': { name: 'AccountRumPerformanceEventsAdaptiveGroupsOrderBy'; enumValues: 'avg_connectionTime_ASC' | 'avg_connectionTime_DESC' | 'avg_dnsTime_ASC' | 'avg_dnsTime_DESC' | 'avg_firstContentfulPaint_ASC' | 'avg_firstContentfulPaint_DESC' | 'avg_firstPaint_ASC' | 'avg_firstPaint_DESC' | 'avg_loadEventTime_ASC' | 'avg_loadEventTime_DESC' | 'avg_pageLoadTime_ASC' | 'avg_pageLoadTime_DESC' | 'avg_pageRenderTime_ASC' | 'avg_pageRenderTime_DESC' | 'avg_requestTime_ASC' | 'avg_requestTime_DESC' | 'avg_responseTime_ASC' | 'avg_responseTime_DESC' | 'avg_sampleInterval_ASC' | 'avg_sampleInterval_DESC' | 'bot_ASC' | 'bot_DESC' | 'count_ASC' | 'count_DESC' | 'countryName_ASC' | 'countryName_DESC' | 'customTagInternalSxg_ASC' | 'customTagInternalSxg_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHalfOfHour_ASC' | 'datetimeHalfOfHour_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'deviceType_ASC' | 'deviceType_DESC' | 'quantiles_connectionTimeP50_ASC' | 'quantiles_connectionTimeP50_DESC' | 'quantiles_connectionTimeP75_ASC' | 'quantiles_connectionTimeP75_DESC' | 'quantiles_connectionTimeP90_ASC' | 'quantiles_connectionTimeP90_DESC' | 'quantiles_connectionTimeP99_ASC' | 'quantiles_connectionTimeP99_DESC' | 'quantiles_dnsTimeP50_ASC' | 'quantiles_dnsTimeP50_DESC' | 'quantiles_dnsTimeP75_ASC' | 'quantiles_dnsTimeP75_DESC' | 'quantiles_dnsTimeP90_ASC' | 'quantiles_dnsTimeP90_DESC' | 'quantiles_dnsTimeP99_ASC' | 'quantiles_dnsTimeP99_DESC' | 'quantiles_firstContentfulPaintP50_ASC' | 'quantiles_firstContentfulPaintP50_DESC' | 'quantiles_firstContentfulPaintP75_ASC' | 'quantiles_firstContentfulPaintP75_DESC' | 'quantiles_firstContentfulPaintP90_ASC' | 'quantiles_firstContentfulPaintP90_DESC' | 'quantiles_firstContentfulPaintP99_ASC' | 'quantiles_firstContentfulPaintP99_DESC' | 'quantiles_firstPaintP50_ASC' | 'quantiles_firstPaintP50_DESC' | 'quantiles_firstPaintP75_ASC' | 'quantiles_firstPaintP75_DESC' | 'quantiles_firstPaintP90_ASC' | 'quantiles_firstPaintP90_DESC' | 'quantiles_firstPaintP99_ASC' | 'quantiles_firstPaintP99_DESC' | 'quantiles_loadEventTimeP50_ASC' | 'quantiles_loadEventTimeP50_DESC' | 'quantiles_loadEventTimeP75_ASC' | 'quantiles_loadEventTimeP75_DESC' | 'quantiles_loadEventTimeP90_ASC' | 'quantiles_loadEventTimeP90_DESC' | 'quantiles_loadEventTimeP99_ASC' | 'quantiles_loadEventTimeP99_DESC' | 'quantiles_pageLoadTimeP50_ASC' | 'quantiles_pageLoadTimeP50_DESC' | 'quantiles_pageLoadTimeP75_ASC' | 'quantiles_pageLoadTimeP75_DESC' | 'quantiles_pageLoadTimeP90_ASC' | 'quantiles_pageLoadTimeP90_DESC' | 'quantiles_pageLoadTimeP99_ASC' | 'quantiles_pageLoadTimeP99_DESC' | 'quantiles_pageRenderTimeP50_ASC' | 'quantiles_pageRenderTimeP50_DESC' | 'quantiles_pageRenderTimeP75_ASC' | 'quantiles_pageRenderTimeP75_DESC' | 'quantiles_pageRenderTimeP90_ASC' | 'quantiles_pageRenderTimeP90_DESC' | 'quantiles_pageRenderTimeP99_ASC' | 'quantiles_pageRenderTimeP99_DESC' | 'quantiles_requestTimeP50_ASC' | 'quantiles_requestTimeP50_DESC' | 'quantiles_requestTimeP75_ASC' | 'quantiles_requestTimeP75_DESC' | 'quantiles_requestTimeP90_ASC' | 'quantiles_requestTimeP90_DESC' | 'quantiles_requestTimeP99_ASC' | 'quantiles_requestTimeP99_DESC' | 'quantiles_responseTimeP50_ASC' | 'quantiles_responseTimeP50_DESC' | 'quantiles_responseTimeP75_ASC' | 'quantiles_responseTimeP75_DESC' | 'quantiles_responseTimeP90_ASC' | 'quantiles_responseTimeP90_DESC' | 'quantiles_responseTimeP99_ASC' | 'quantiles_responseTimeP99_DESC' | 'refererHost_ASC' | 'refererHost_DESC' | 'refererPath_ASC' | 'refererPath_DESC' | 'refererScheme_ASC' | 'refererScheme_DESC' | 'requestHost_ASC' | 'requestHost_DESC' | 'requestPath_ASC' | 'requestPath_DESC' | 'requestScheme_ASC' | 'requestScheme_DESC' | 'siteTag_ASC' | 'siteTag_DESC' | 'sum_visits_ASC' | 'sum_visits_DESC' | 'userAgentBrowser_ASC' | 'userAgentBrowser_DESC' | 'userAgentOS_ASC' | 'userAgentOS_DESC'; }; + 'AccountRumPerformanceEventsAdaptiveGroupsQuantiles': { kind: 'OBJECT'; name: 'AccountRumPerformanceEventsAdaptiveGroupsQuantiles'; fields: { 'connectionTimeP50': { name: 'connectionTimeP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'connectionTimeP75': { name: 'connectionTimeP75'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'connectionTimeP90': { name: 'connectionTimeP90'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'connectionTimeP99': { name: 'connectionTimeP99'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dnsTimeP50': { name: 'dnsTimeP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dnsTimeP75': { name: 'dnsTimeP75'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dnsTimeP90': { name: 'dnsTimeP90'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dnsTimeP99': { name: 'dnsTimeP99'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'firstContentfulPaintP50': { name: 'firstContentfulPaintP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'firstContentfulPaintP75': { name: 'firstContentfulPaintP75'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'firstContentfulPaintP90': { name: 'firstContentfulPaintP90'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'firstContentfulPaintP99': { name: 'firstContentfulPaintP99'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'firstPaintP50': { name: 'firstPaintP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'firstPaintP75': { name: 'firstPaintP75'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'firstPaintP90': { name: 'firstPaintP90'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'firstPaintP99': { name: 'firstPaintP99'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'loadEventTimeP50': { name: 'loadEventTimeP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'loadEventTimeP75': { name: 'loadEventTimeP75'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'loadEventTimeP90': { name: 'loadEventTimeP90'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'loadEventTimeP99': { name: 'loadEventTimeP99'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'pageLoadTimeP50': { name: 'pageLoadTimeP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'pageLoadTimeP75': { name: 'pageLoadTimeP75'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'pageLoadTimeP90': { name: 'pageLoadTimeP90'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'pageLoadTimeP99': { name: 'pageLoadTimeP99'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'pageRenderTimeP50': { name: 'pageRenderTimeP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'pageRenderTimeP75': { name: 'pageRenderTimeP75'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'pageRenderTimeP90': { name: 'pageRenderTimeP90'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'pageRenderTimeP99': { name: 'pageRenderTimeP99'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'requestTimeP50': { name: 'requestTimeP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'requestTimeP75': { name: 'requestTimeP75'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'requestTimeP90': { name: 'requestTimeP90'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'requestTimeP99': { name: 'requestTimeP99'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'responseTimeP50': { name: 'responseTimeP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'responseTimeP75': { name: 'responseTimeP75'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'responseTimeP90': { name: 'responseTimeP90'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'responseTimeP99': { name: 'responseTimeP99'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountRumPerformanceEventsAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'AccountRumPerformanceEventsAdaptiveGroupsSum'; fields: { 'visits': { name: 'visits'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountRumPerformanceEventsAdaptiveGroupsSumConfidence': { kind: 'OBJECT'; name: 'AccountRumPerformanceEventsAdaptiveGroupsSumConfidence'; fields: { 'visits': { name: 'visits'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountRumWebVitalsEventsAdaptive': { kind: 'OBJECT'; name: 'AccountRumWebVitalsEventsAdaptive'; fields: { 'bot': { name: 'bot'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'countryName': { name: 'countryName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'cumulativeLayoutShift': { name: 'cumulativeLayoutShift'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'cumulativeLayoutShiftCurrentRect': { name: 'cumulativeLayoutShiftCurrentRect'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'cumulativeLayoutShiftElement': { name: 'cumulativeLayoutShiftElement'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'cumulativeLayoutShiftPath': { name: 'cumulativeLayoutShiftPath'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'cumulativeLayoutShiftPreviousRect': { name: 'cumulativeLayoutShiftPreviousRect'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'customTagInternalSxg': { name: 'customTagInternalSxg'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHalfOfHour': { name: 'datetimeHalfOfHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'deviceType': { name: 'deviceType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'refererHost': { name: 'refererHost'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'refererPath': { name: 'refererPath'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'refererScheme': { name: 'refererScheme'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'requestHost': { name: 'requestHost'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'requestPath': { name: 'requestPath'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'requestScheme': { name: 'requestScheme'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'siteTag': { name: 'siteTag'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'userAgentBrowser': { name: 'userAgentBrowser'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'userAgentOS': { name: 'userAgentOS'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountRumWebVitalsEventsAdaptiveFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountRumWebVitalsEventsAdaptiveFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountRumWebVitalsEventsAdaptiveFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountRumWebVitalsEventsAdaptiveFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'bot'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'bot_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'bot_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'bot_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'bot_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'bot_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'bot_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'bot_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'countryName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'countryName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'countryName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'countryName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'countryName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'countryName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'countryName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'countryName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'countryName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'countryName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cumulativeLayoutShift'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'cumulativeLayoutShiftCurrentRect'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cumulativeLayoutShiftCurrentRect_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cumulativeLayoutShiftCurrentRect_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cumulativeLayoutShiftCurrentRect_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'cumulativeLayoutShiftCurrentRect_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cumulativeLayoutShiftCurrentRect_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cumulativeLayoutShiftCurrentRect_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cumulativeLayoutShiftCurrentRect_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cumulativeLayoutShiftCurrentRect_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'cumulativeLayoutShiftCurrentRect_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cumulativeLayoutShiftElement'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cumulativeLayoutShiftElement_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cumulativeLayoutShiftElement_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cumulativeLayoutShiftElement_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'cumulativeLayoutShiftElement_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cumulativeLayoutShiftElement_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cumulativeLayoutShiftElement_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cumulativeLayoutShiftElement_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cumulativeLayoutShiftElement_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'cumulativeLayoutShiftElement_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cumulativeLayoutShiftPath'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cumulativeLayoutShiftPath_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cumulativeLayoutShiftPath_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cumulativeLayoutShiftPath_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'cumulativeLayoutShiftPath_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cumulativeLayoutShiftPath_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cumulativeLayoutShiftPath_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cumulativeLayoutShiftPath_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cumulativeLayoutShiftPath_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'cumulativeLayoutShiftPath_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cumulativeLayoutShiftPreviousRect'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cumulativeLayoutShiftPreviousRect_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cumulativeLayoutShiftPreviousRect_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cumulativeLayoutShiftPreviousRect_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'cumulativeLayoutShiftPreviousRect_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cumulativeLayoutShiftPreviousRect_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cumulativeLayoutShiftPreviousRect_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cumulativeLayoutShiftPreviousRect_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cumulativeLayoutShiftPreviousRect_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'cumulativeLayoutShiftPreviousRect_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cumulativeLayoutShift_geq'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'cumulativeLayoutShift_gt'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'cumulativeLayoutShift_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; }; }; defaultValue: null }, { name: 'cumulativeLayoutShift_leq'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'cumulativeLayoutShift_lt'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'cumulativeLayoutShift_neq'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'cumulativeLayoutShift_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; }; }; defaultValue: null }, { name: 'customTagInternalSxg'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'customTagInternalSxg_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'customTagInternalSxg_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'customTagInternalSxg_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'customTagInternalSxg_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'customTagInternalSxg_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'customTagInternalSxg_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'customTagInternalSxg_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'customTagInternalSxg_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'customTagInternalSxg_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHalfOfHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHalfOfHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceType'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceType_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceType_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererHost'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererHost_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererHost_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererHost_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'refererHost_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererHost_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererHost_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererHost_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererHost_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'refererHost_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererPath'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererPath_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererPath_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererPath_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'refererPath_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererPath_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererPath_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererPath_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererPath_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'refererPath_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererScheme'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererScheme_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererScheme_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererScheme_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'refererScheme_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererScheme_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererScheme_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererScheme_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererScheme_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'refererScheme_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestHost'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestHost_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestHost_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestHost_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'requestHost_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestHost_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestHost_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestHost_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestHost_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'requestHost_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestPath'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestPath_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestPath_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestPath_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'requestPath_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestPath_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestPath_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestPath_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestPath_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'requestPath_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestScheme'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestScheme_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestScheme_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestScheme_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'requestScheme_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestScheme_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestScheme_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestScheme_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestScheme_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'requestScheme_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sampleInterval_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'siteTag'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'siteTag_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'siteTag_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'siteTag_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'siteTag_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'siteTag_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'siteTag_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'siteTag_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'siteTag_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'siteTag_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userAgentBrowser_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userAgentBrowser_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentOS'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentOS_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentOS_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentOS_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userAgentOS_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentOS_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentOS_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentOS_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentOS_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userAgentOS_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountRumWebVitalsEventsAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountRumWebVitalsEventsAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountRumWebVitalsEventsAdaptiveGroupsAvg'; ofType: null; } }; 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountRumWebVitalsEventsAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountRumWebVitalsEventsAdaptiveGroupsDimensions'; ofType: null; } }; 'quantiles': { name: 'quantiles'; type: { kind: 'OBJECT'; name: 'AccountRumWebVitalsEventsAdaptiveGroupsQuantiles'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountRumWebVitalsEventsAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'AccountRumWebVitalsEventsAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'AccountRumWebVitalsEventsAdaptiveGroupsAvg'; fields: { 'cumulativeLayoutShift': { name: 'cumulativeLayoutShift'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'firstContentfulPaint': { name: 'firstContentfulPaint'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'firstInputDelay': { name: 'firstInputDelay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'interactionToNextPaint': { name: 'interactionToNextPaint'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'largestContentfulPaint': { name: 'largestContentfulPaint'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'lcpElementRenderDelay': { name: 'lcpElementRenderDelay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'lcpResourceLoadDelay': { name: 'lcpResourceLoadDelay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'lcpResourceLoadTime': { name: 'lcpResourceLoadTime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'timeToFirstByte': { name: 'timeToFirstByte'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; }; }; + 'AccountRumWebVitalsEventsAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountRumWebVitalsEventsAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountRumWebVitalsEventsAdaptiveGroupsSumConfidence'; ofType: null; } }; }; }; + 'AccountRumWebVitalsEventsAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountRumWebVitalsEventsAdaptiveGroupsDimensions'; fields: { 'bot': { name: 'bot'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'countryName': { name: 'countryName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'cumulativeLayoutShiftElement': { name: 'cumulativeLayoutShiftElement'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'cumulativeLayoutShiftPath': { name: 'cumulativeLayoutShiftPath'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'customTagInternalSxg': { name: 'customTagInternalSxg'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHalfOfHour': { name: 'datetimeHalfOfHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'deviceType': { name: 'deviceType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'firstInputDelayElement': { name: 'firstInputDelayElement'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'firstInputDelayName': { name: 'firstInputDelayName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'firstInputDelayPath': { name: 'firstInputDelayPath'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'interactionToNextPaintElement': { name: 'interactionToNextPaintElement'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'interactionToNextPaintName': { name: 'interactionToNextPaintName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'interactionToNextPaintPath': { name: 'interactionToNextPaintPath'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'largestContentfulPaintElement': { name: 'largestContentfulPaintElement'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'largestContentfulPaintObjectHost': { name: 'largestContentfulPaintObjectHost'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'largestContentfulPaintObjectPath': { name: 'largestContentfulPaintObjectPath'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'largestContentfulPaintObjectScheme': { name: 'largestContentfulPaintObjectScheme'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'largestContentfulPaintPath': { name: 'largestContentfulPaintPath'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'lcpFetchPriority': { name: 'lcpFetchPriority'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'lcpInitiatorType': { name: 'lcpInitiatorType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'refererHost': { name: 'refererHost'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'refererPath': { name: 'refererPath'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'refererScheme': { name: 'refererScheme'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'requestHost': { name: 'requestHost'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'requestPath': { name: 'requestPath'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'requestScheme': { name: 'requestScheme'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'siteTag': { name: 'siteTag'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'userAgentBrowser': { name: 'userAgentBrowser'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'userAgentOS': { name: 'userAgentOS'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountRumWebVitalsEventsAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountRumWebVitalsEventsAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountRumWebVitalsEventsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountRumWebVitalsEventsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'bot'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'bot_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'bot_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'bot_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'bot_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'bot_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'bot_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'bot_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'countryName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'countryName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'countryName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'countryName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'countryName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'countryName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'countryName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'countryName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'countryName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'countryName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cumulativeLayoutShift'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'cumulativeLayoutShiftElement'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cumulativeLayoutShiftElement_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cumulativeLayoutShiftElement_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cumulativeLayoutShiftElement_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'cumulativeLayoutShiftElement_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cumulativeLayoutShiftElement_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cumulativeLayoutShiftElement_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cumulativeLayoutShiftElement_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cumulativeLayoutShiftElement_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'cumulativeLayoutShiftElement_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cumulativeLayoutShiftPath'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cumulativeLayoutShiftPath_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cumulativeLayoutShiftPath_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cumulativeLayoutShiftPath_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'cumulativeLayoutShiftPath_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cumulativeLayoutShiftPath_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cumulativeLayoutShiftPath_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cumulativeLayoutShiftPath_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cumulativeLayoutShiftPath_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'cumulativeLayoutShiftPath_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cumulativeLayoutShift_geq'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'cumulativeLayoutShift_gt'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'cumulativeLayoutShift_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; }; }; defaultValue: null }, { name: 'cumulativeLayoutShift_leq'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'cumulativeLayoutShift_lt'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'cumulativeLayoutShift_neq'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'cumulativeLayoutShift_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; }; }; defaultValue: null }, { name: 'customTagInternalSxg'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'customTagInternalSxg_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'customTagInternalSxg_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'customTagInternalSxg_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'customTagInternalSxg_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'customTagInternalSxg_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'customTagInternalSxg_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'customTagInternalSxg_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'customTagInternalSxg_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'customTagInternalSxg_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHalfOfHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHalfOfHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceType'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceType_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceType_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'firstInputDelay'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'firstInputDelayElement'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'firstInputDelayElement_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'firstInputDelayElement_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'firstInputDelayElement_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'firstInputDelayElement_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'firstInputDelayElement_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'firstInputDelayElement_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'firstInputDelayElement_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'firstInputDelayElement_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'firstInputDelayElement_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'firstInputDelayName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'firstInputDelayName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'firstInputDelayName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'firstInputDelayName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'firstInputDelayName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'firstInputDelayName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'firstInputDelayName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'firstInputDelayName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'firstInputDelayName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'firstInputDelayName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'firstInputDelayPath'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'firstInputDelayPath_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'firstInputDelayPath_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'firstInputDelayPath_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'firstInputDelayPath_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'firstInputDelayPath_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'firstInputDelayPath_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'firstInputDelayPath_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'firstInputDelayPath_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'firstInputDelayPath_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'firstInputDelay_geq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'firstInputDelay_gt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'firstInputDelay_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'firstInputDelay_leq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'firstInputDelay_lt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'firstInputDelay_neq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'firstInputDelay_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'interactionToNextPaint'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'interactionToNextPaintElement'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'interactionToNextPaintElement_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'interactionToNextPaintElement_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'interactionToNextPaintElement_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'interactionToNextPaintElement_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'interactionToNextPaintElement_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'interactionToNextPaintElement_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'interactionToNextPaintElement_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'interactionToNextPaintElement_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'interactionToNextPaintElement_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'interactionToNextPaintName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'interactionToNextPaintName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'interactionToNextPaintName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'interactionToNextPaintName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'interactionToNextPaintName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'interactionToNextPaintName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'interactionToNextPaintName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'interactionToNextPaintName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'interactionToNextPaintName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'interactionToNextPaintName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'interactionToNextPaintPath'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'interactionToNextPaintPath_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'interactionToNextPaintPath_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'interactionToNextPaintPath_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'interactionToNextPaintPath_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'interactionToNextPaintPath_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'interactionToNextPaintPath_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'interactionToNextPaintPath_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'interactionToNextPaintPath_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'interactionToNextPaintPath_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'interactionToNextPaint_geq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'interactionToNextPaint_gt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'interactionToNextPaint_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'interactionToNextPaint_leq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'interactionToNextPaint_lt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'interactionToNextPaint_neq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'interactionToNextPaint_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'largestContentfulPaint'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'largestContentfulPaintElement'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'largestContentfulPaintElement_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'largestContentfulPaintElement_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'largestContentfulPaintElement_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'largestContentfulPaintElement_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'largestContentfulPaintElement_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'largestContentfulPaintElement_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'largestContentfulPaintElement_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'largestContentfulPaintElement_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'largestContentfulPaintElement_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'largestContentfulPaintObjectHost'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'largestContentfulPaintObjectHost_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'largestContentfulPaintObjectHost_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'largestContentfulPaintObjectHost_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'largestContentfulPaintObjectHost_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'largestContentfulPaintObjectHost_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'largestContentfulPaintObjectHost_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'largestContentfulPaintObjectHost_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'largestContentfulPaintObjectHost_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'largestContentfulPaintObjectHost_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'largestContentfulPaintObjectPath'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'largestContentfulPaintObjectPath_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'largestContentfulPaintObjectPath_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'largestContentfulPaintObjectPath_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'largestContentfulPaintObjectPath_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'largestContentfulPaintObjectPath_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'largestContentfulPaintObjectPath_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'largestContentfulPaintObjectPath_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'largestContentfulPaintObjectPath_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'largestContentfulPaintObjectPath_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'largestContentfulPaintObjectScheme'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'largestContentfulPaintObjectScheme_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'largestContentfulPaintObjectScheme_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'largestContentfulPaintObjectScheme_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'largestContentfulPaintObjectScheme_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'largestContentfulPaintObjectScheme_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'largestContentfulPaintObjectScheme_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'largestContentfulPaintObjectScheme_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'largestContentfulPaintObjectScheme_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'largestContentfulPaintObjectScheme_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'largestContentfulPaintPath'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'largestContentfulPaintPath_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'largestContentfulPaintPath_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'largestContentfulPaintPath_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'largestContentfulPaintPath_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'largestContentfulPaintPath_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'largestContentfulPaintPath_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'largestContentfulPaintPath_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'largestContentfulPaintPath_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'largestContentfulPaintPath_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'largestContentfulPaint_geq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'largestContentfulPaint_gt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'largestContentfulPaint_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'largestContentfulPaint_leq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'largestContentfulPaint_lt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'largestContentfulPaint_neq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'largestContentfulPaint_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'lcpFetchPriority'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'lcpFetchPriority_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'lcpFetchPriority_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'lcpFetchPriority_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'lcpFetchPriority_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'lcpFetchPriority_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'lcpFetchPriority_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'lcpFetchPriority_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'lcpFetchPriority_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'lcpFetchPriority_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'lcpInitiatorType'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'lcpInitiatorType_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'lcpInitiatorType_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'lcpInitiatorType_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'lcpInitiatorType_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'lcpInitiatorType_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'lcpInitiatorType_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'lcpInitiatorType_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'lcpInitiatorType_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'lcpInitiatorType_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererHost'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererHost_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererHost_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererHost_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'refererHost_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererHost_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererHost_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererHost_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererHost_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'refererHost_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererPath'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererPath_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererPath_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererPath_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'refererPath_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererPath_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererPath_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererPath_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererPath_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'refererPath_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererScheme'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererScheme_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererScheme_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererScheme_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'refererScheme_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererScheme_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererScheme_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererScheme_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'refererScheme_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'refererScheme_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestHost'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestHost_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestHost_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestHost_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'requestHost_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestHost_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestHost_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestHost_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestHost_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'requestHost_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestPath'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestPath_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestPath_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestPath_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'requestPath_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestPath_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestPath_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestPath_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestPath_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'requestPath_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestScheme'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestScheme_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestScheme_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestScheme_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'requestScheme_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestScheme_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestScheme_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestScheme_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestScheme_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'requestScheme_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'siteTag'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'siteTag_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'siteTag_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'siteTag_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'siteTag_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'siteTag_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'siteTag_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'siteTag_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'siteTag_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'siteTag_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userAgentBrowser_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userAgentBrowser_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentOS'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentOS_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentOS_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentOS_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userAgentOS_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentOS_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentOS_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentOS_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentOS_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userAgentOS_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountRumWebVitalsEventsAdaptiveGroupsOrderBy': { name: 'AccountRumWebVitalsEventsAdaptiveGroupsOrderBy'; enumValues: 'avg_cumulativeLayoutShift_ASC' | 'avg_cumulativeLayoutShift_DESC' | 'avg_firstContentfulPaint_ASC' | 'avg_firstContentfulPaint_DESC' | 'avg_firstInputDelay_ASC' | 'avg_firstInputDelay_DESC' | 'avg_interactionToNextPaint_ASC' | 'avg_interactionToNextPaint_DESC' | 'avg_largestContentfulPaint_ASC' | 'avg_largestContentfulPaint_DESC' | 'avg_lcpElementRenderDelay_ASC' | 'avg_lcpElementRenderDelay_DESC' | 'avg_lcpResourceLoadDelay_ASC' | 'avg_lcpResourceLoadDelay_DESC' | 'avg_lcpResourceLoadTime_ASC' | 'avg_lcpResourceLoadTime_DESC' | 'avg_sampleInterval_ASC' | 'avg_sampleInterval_DESC' | 'avg_timeToFirstByte_ASC' | 'avg_timeToFirstByte_DESC' | 'bot_ASC' | 'bot_DESC' | 'count_ASC' | 'count_DESC' | 'countryName_ASC' | 'countryName_DESC' | 'cumulativeLayoutShiftElement_ASC' | 'cumulativeLayoutShiftElement_DESC' | 'cumulativeLayoutShiftPath_ASC' | 'cumulativeLayoutShiftPath_DESC' | 'customTagInternalSxg_ASC' | 'customTagInternalSxg_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHalfOfHour_ASC' | 'datetimeHalfOfHour_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'deviceType_ASC' | 'deviceType_DESC' | 'firstInputDelayElement_ASC' | 'firstInputDelayElement_DESC' | 'firstInputDelayName_ASC' | 'firstInputDelayName_DESC' | 'firstInputDelayPath_ASC' | 'firstInputDelayPath_DESC' | 'interactionToNextPaintElement_ASC' | 'interactionToNextPaintElement_DESC' | 'interactionToNextPaintName_ASC' | 'interactionToNextPaintName_DESC' | 'interactionToNextPaintPath_ASC' | 'interactionToNextPaintPath_DESC' | 'largestContentfulPaintElement_ASC' | 'largestContentfulPaintElement_DESC' | 'largestContentfulPaintObjectHost_ASC' | 'largestContentfulPaintObjectHost_DESC' | 'largestContentfulPaintObjectPath_ASC' | 'largestContentfulPaintObjectPath_DESC' | 'largestContentfulPaintObjectScheme_ASC' | 'largestContentfulPaintObjectScheme_DESC' | 'largestContentfulPaintPath_ASC' | 'largestContentfulPaintPath_DESC' | 'lcpFetchPriority_ASC' | 'lcpFetchPriority_DESC' | 'lcpInitiatorType_ASC' | 'lcpInitiatorType_DESC' | 'quantiles_cumulativeLayoutShiftP50_ASC' | 'quantiles_cumulativeLayoutShiftP50_DESC' | 'quantiles_cumulativeLayoutShiftP75_ASC' | 'quantiles_cumulativeLayoutShiftP75_DESC' | 'quantiles_cumulativeLayoutShiftP90_ASC' | 'quantiles_cumulativeLayoutShiftP90_DESC' | 'quantiles_cumulativeLayoutShiftP99_ASC' | 'quantiles_cumulativeLayoutShiftP99_DESC' | 'quantiles_firstContentfulPaintP50_ASC' | 'quantiles_firstContentfulPaintP50_DESC' | 'quantiles_firstContentfulPaintP75_ASC' | 'quantiles_firstContentfulPaintP75_DESC' | 'quantiles_firstContentfulPaintP90_ASC' | 'quantiles_firstContentfulPaintP90_DESC' | 'quantiles_firstContentfulPaintP99_ASC' | 'quantiles_firstContentfulPaintP99_DESC' | 'quantiles_firstInputDelayP50_ASC' | 'quantiles_firstInputDelayP50_DESC' | 'quantiles_firstInputDelayP75_ASC' | 'quantiles_firstInputDelayP75_DESC' | 'quantiles_firstInputDelayP90_ASC' | 'quantiles_firstInputDelayP90_DESC' | 'quantiles_firstInputDelayP99_ASC' | 'quantiles_firstInputDelayP99_DESC' | 'quantiles_interactionToNextPaintP50_ASC' | 'quantiles_interactionToNextPaintP50_DESC' | 'quantiles_interactionToNextPaintP75_ASC' | 'quantiles_interactionToNextPaintP75_DESC' | 'quantiles_interactionToNextPaintP90_ASC' | 'quantiles_interactionToNextPaintP90_DESC' | 'quantiles_interactionToNextPaintP99_ASC' | 'quantiles_interactionToNextPaintP99_DESC' | 'quantiles_largestContentfulPaintP50_ASC' | 'quantiles_largestContentfulPaintP50_DESC' | 'quantiles_largestContentfulPaintP75_ASC' | 'quantiles_largestContentfulPaintP75_DESC' | 'quantiles_largestContentfulPaintP90_ASC' | 'quantiles_largestContentfulPaintP90_DESC' | 'quantiles_largestContentfulPaintP99_ASC' | 'quantiles_largestContentfulPaintP99_DESC' | 'quantiles_lcpElementRenderDelayP50_ASC' | 'quantiles_lcpElementRenderDelayP50_DESC' | 'quantiles_lcpElementRenderDelayP75_ASC' | 'quantiles_lcpElementRenderDelayP75_DESC' | 'quantiles_lcpElementRenderDelayP90_ASC' | 'quantiles_lcpElementRenderDelayP90_DESC' | 'quantiles_lcpElementRenderDelayP99_ASC' | 'quantiles_lcpElementRenderDelayP99_DESC' | 'quantiles_lcpResourceLoadDelayP50_ASC' | 'quantiles_lcpResourceLoadDelayP50_DESC' | 'quantiles_lcpResourceLoadDelayP75_ASC' | 'quantiles_lcpResourceLoadDelayP75_DESC' | 'quantiles_lcpResourceLoadDelayP90_ASC' | 'quantiles_lcpResourceLoadDelayP90_DESC' | 'quantiles_lcpResourceLoadDelayP99_ASC' | 'quantiles_lcpResourceLoadDelayP99_DESC' | 'quantiles_lcpResourceLoadTimeP50_ASC' | 'quantiles_lcpResourceLoadTimeP50_DESC' | 'quantiles_lcpResourceLoadTimeP75_ASC' | 'quantiles_lcpResourceLoadTimeP75_DESC' | 'quantiles_lcpResourceLoadTimeP90_ASC' | 'quantiles_lcpResourceLoadTimeP90_DESC' | 'quantiles_lcpResourceLoadTimeP99_ASC' | 'quantiles_lcpResourceLoadTimeP99_DESC' | 'quantiles_timeToFirstByteP50_ASC' | 'quantiles_timeToFirstByteP50_DESC' | 'quantiles_timeToFirstByteP75_ASC' | 'quantiles_timeToFirstByteP75_DESC' | 'quantiles_timeToFirstByteP90_ASC' | 'quantiles_timeToFirstByteP90_DESC' | 'quantiles_timeToFirstByteP99_ASC' | 'quantiles_timeToFirstByteP99_DESC' | 'refererHost_ASC' | 'refererHost_DESC' | 'refererPath_ASC' | 'refererPath_DESC' | 'refererScheme_ASC' | 'refererScheme_DESC' | 'requestHost_ASC' | 'requestHost_DESC' | 'requestPath_ASC' | 'requestPath_DESC' | 'requestScheme_ASC' | 'requestScheme_DESC' | 'siteTag_ASC' | 'siteTag_DESC' | 'sum_clsGood_ASC' | 'sum_clsGood_DESC' | 'sum_clsNeedsImprovement_ASC' | 'sum_clsNeedsImprovement_DESC' | 'sum_clsPoor_ASC' | 'sum_clsPoor_DESC' | 'sum_clsTotal_ASC' | 'sum_clsTotal_DESC' | 'sum_fcpGood_ASC' | 'sum_fcpGood_DESC' | 'sum_fcpNeedsImprovement_ASC' | 'sum_fcpNeedsImprovement_DESC' | 'sum_fcpPoor_ASC' | 'sum_fcpPoor_DESC' | 'sum_fcpTotal_ASC' | 'sum_fcpTotal_DESC' | 'sum_fidGood_ASC' | 'sum_fidGood_DESC' | 'sum_fidNeedsImprovement_ASC' | 'sum_fidNeedsImprovement_DESC' | 'sum_fidPoor_ASC' | 'sum_fidPoor_DESC' | 'sum_fidTotal_ASC' | 'sum_fidTotal_DESC' | 'sum_inpGood_ASC' | 'sum_inpGood_DESC' | 'sum_inpNeedsImprovement_ASC' | 'sum_inpNeedsImprovement_DESC' | 'sum_inpPoor_ASC' | 'sum_inpPoor_DESC' | 'sum_inpTotal_ASC' | 'sum_inpTotal_DESC' | 'sum_lcpGood_ASC' | 'sum_lcpGood_DESC' | 'sum_lcpNeedsImprovement_ASC' | 'sum_lcpNeedsImprovement_DESC' | 'sum_lcpPoor_ASC' | 'sum_lcpPoor_DESC' | 'sum_lcpTotal_ASC' | 'sum_lcpTotal_DESC' | 'sum_ttfbGood_ASC' | 'sum_ttfbGood_DESC' | 'sum_ttfbNeedsImprovement_ASC' | 'sum_ttfbNeedsImprovement_DESC' | 'sum_ttfbPoor_ASC' | 'sum_ttfbPoor_DESC' | 'sum_ttfbTotal_ASC' | 'sum_ttfbTotal_DESC' | 'sum_visits_ASC' | 'sum_visits_DESC' | 'userAgentBrowser_ASC' | 'userAgentBrowser_DESC' | 'userAgentOS_ASC' | 'userAgentOS_DESC'; }; + 'AccountRumWebVitalsEventsAdaptiveGroupsQuantiles': { kind: 'OBJECT'; name: 'AccountRumWebVitalsEventsAdaptiveGroupsQuantiles'; fields: { 'cumulativeLayoutShiftP50': { name: 'cumulativeLayoutShiftP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'cumulativeLayoutShiftP75': { name: 'cumulativeLayoutShiftP75'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'cumulativeLayoutShiftP90': { name: 'cumulativeLayoutShiftP90'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'cumulativeLayoutShiftP99': { name: 'cumulativeLayoutShiftP99'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'firstContentfulPaintP50': { name: 'firstContentfulPaintP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'firstContentfulPaintP75': { name: 'firstContentfulPaintP75'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'firstContentfulPaintP90': { name: 'firstContentfulPaintP90'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'firstContentfulPaintP99': { name: 'firstContentfulPaintP99'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'firstInputDelayP50': { name: 'firstInputDelayP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'firstInputDelayP75': { name: 'firstInputDelayP75'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'firstInputDelayP90': { name: 'firstInputDelayP90'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'firstInputDelayP99': { name: 'firstInputDelayP99'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'interactionToNextPaintP50': { name: 'interactionToNextPaintP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'interactionToNextPaintP75': { name: 'interactionToNextPaintP75'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'interactionToNextPaintP90': { name: 'interactionToNextPaintP90'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'interactionToNextPaintP99': { name: 'interactionToNextPaintP99'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'largestContentfulPaintP50': { name: 'largestContentfulPaintP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'largestContentfulPaintP75': { name: 'largestContentfulPaintP75'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'largestContentfulPaintP90': { name: 'largestContentfulPaintP90'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'largestContentfulPaintP99': { name: 'largestContentfulPaintP99'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'lcpElementRenderDelayP50': { name: 'lcpElementRenderDelayP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'lcpElementRenderDelayP75': { name: 'lcpElementRenderDelayP75'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'lcpElementRenderDelayP90': { name: 'lcpElementRenderDelayP90'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'lcpElementRenderDelayP99': { name: 'lcpElementRenderDelayP99'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'lcpResourceLoadDelayP50': { name: 'lcpResourceLoadDelayP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'lcpResourceLoadDelayP75': { name: 'lcpResourceLoadDelayP75'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'lcpResourceLoadDelayP90': { name: 'lcpResourceLoadDelayP90'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'lcpResourceLoadDelayP99': { name: 'lcpResourceLoadDelayP99'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'lcpResourceLoadTimeP50': { name: 'lcpResourceLoadTimeP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'lcpResourceLoadTimeP75': { name: 'lcpResourceLoadTimeP75'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'lcpResourceLoadTimeP90': { name: 'lcpResourceLoadTimeP90'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'lcpResourceLoadTimeP99': { name: 'lcpResourceLoadTimeP99'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'timeToFirstByteP50': { name: 'timeToFirstByteP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'timeToFirstByteP75': { name: 'timeToFirstByteP75'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'timeToFirstByteP90': { name: 'timeToFirstByteP90'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'timeToFirstByteP99': { name: 'timeToFirstByteP99'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; }; }; + 'AccountRumWebVitalsEventsAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'AccountRumWebVitalsEventsAdaptiveGroupsSum'; fields: { 'clsGood': { name: 'clsGood'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'clsNeedsImprovement': { name: 'clsNeedsImprovement'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'clsPoor': { name: 'clsPoor'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'clsTotal': { name: 'clsTotal'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'fcpGood': { name: 'fcpGood'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'fcpNeedsImprovement': { name: 'fcpNeedsImprovement'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'fcpPoor': { name: 'fcpPoor'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'fcpTotal': { name: 'fcpTotal'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'fidGood': { name: 'fidGood'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'fidNeedsImprovement': { name: 'fidNeedsImprovement'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'fidPoor': { name: 'fidPoor'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'fidTotal': { name: 'fidTotal'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'inpGood': { name: 'inpGood'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'inpNeedsImprovement': { name: 'inpNeedsImprovement'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'inpPoor': { name: 'inpPoor'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'inpTotal': { name: 'inpTotal'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'lcpGood': { name: 'lcpGood'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'lcpNeedsImprovement': { name: 'lcpNeedsImprovement'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'lcpPoor': { name: 'lcpPoor'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'lcpTotal': { name: 'lcpTotal'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'ttfbGood': { name: 'ttfbGood'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'ttfbNeedsImprovement': { name: 'ttfbNeedsImprovement'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'ttfbPoor': { name: 'ttfbPoor'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'ttfbTotal': { name: 'ttfbTotal'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'visits': { name: 'visits'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountRumWebVitalsEventsAdaptiveGroupsSumConfidence': { kind: 'OBJECT'; name: 'AccountRumWebVitalsEventsAdaptiveGroupsSumConfidence'; fields: { 'clsGood': { name: 'clsGood'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'clsNeedsImprovement': { name: 'clsNeedsImprovement'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'clsPoor': { name: 'clsPoor'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'clsTotal': { name: 'clsTotal'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'fcpGood': { name: 'fcpGood'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'fcpNeedsImprovement': { name: 'fcpNeedsImprovement'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'fcpPoor': { name: 'fcpPoor'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'fcpTotal': { name: 'fcpTotal'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'inpGood': { name: 'inpGood'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'inpNeedsImprovement': { name: 'inpNeedsImprovement'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'inpPoor': { name: 'inpPoor'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'inpTotal': { name: 'inpTotal'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'lcpGood': { name: 'lcpGood'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'lcpNeedsImprovement': { name: 'lcpNeedsImprovement'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'lcpPoor': { name: 'lcpPoor'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'lcpTotal': { name: 'lcpTotal'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'ttfbGood': { name: 'ttfbGood'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'ttfbNeedsImprovement': { name: 'ttfbNeedsImprovement'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'ttfbPoor': { name: 'ttfbPoor'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'ttfbTotal': { name: 'ttfbTotal'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'visits': { name: 'visits'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountRumWebVitalsEventsAdaptiveOrderBy': { name: 'AccountRumWebVitalsEventsAdaptiveOrderBy'; enumValues: 'bot_ASC' | 'bot_DESC' | 'countryName_ASC' | 'countryName_DESC' | 'cumulativeLayoutShiftCurrentRect_ASC' | 'cumulativeLayoutShiftCurrentRect_DESC' | 'cumulativeLayoutShiftElement_ASC' | 'cumulativeLayoutShiftElement_DESC' | 'cumulativeLayoutShiftPath_ASC' | 'cumulativeLayoutShiftPath_DESC' | 'cumulativeLayoutShiftPreviousRect_ASC' | 'cumulativeLayoutShiftPreviousRect_DESC' | 'cumulativeLayoutShift_ASC' | 'cumulativeLayoutShift_DESC' | 'customTagInternalSxg_ASC' | 'customTagInternalSxg_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHalfOfHour_ASC' | 'datetimeHalfOfHour_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'deviceType_ASC' | 'deviceType_DESC' | 'refererHost_ASC' | 'refererHost_DESC' | 'refererPath_ASC' | 'refererPath_DESC' | 'refererScheme_ASC' | 'refererScheme_DESC' | 'requestHost_ASC' | 'requestHost_DESC' | 'requestPath_ASC' | 'requestPath_DESC' | 'requestScheme_ASC' | 'requestScheme_DESC' | 'sampleInterval_ASC' | 'sampleInterval_DESC' | 'siteTag_ASC' | 'siteTag_DESC' | 'userAgentBrowser_ASC' | 'userAgentBrowser_DESC' | 'userAgentOS_ASC' | 'userAgentOS_DESC'; }; + 'AccountSettings': { kind: 'OBJECT'; name: 'AccountSettings'; fields: { 'MagicWANConnectorMetricsAdaptiveGroups': { name: 'MagicWANConnectorMetricsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'accessLoginRequestsAdaptiveGroups': { name: 'accessLoginRequestsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'advancedDnsProtectionNetworkAnalyticsAdaptiveGroups': { name: 'advancedDnsProtectionNetworkAnalyticsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'advancedTcpProtectionNetworkAnalyticsAdaptiveGroups': { name: 'advancedTcpProtectionNetworkAnalyticsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'aegisIpUtilizationAdaptiveGroups': { name: 'aegisIpUtilizationAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'aiGatewayCacheAdaptiveGroups': { name: 'aiGatewayCacheAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'aiGatewayErrorsAdaptiveGroups': { name: 'aiGatewayErrorsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'aiGatewayRequestsAdaptiveGroups': { name: 'aiGatewayRequestsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'aiGatewaySizeAdaptiveGroups': { name: 'aiGatewaySizeAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'aiInferenceAdaptive': { name: 'aiInferenceAdaptive'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'aiInferenceAdaptiveGroups': { name: 'aiInferenceAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'autoRAGConfigAPIAdaptiveGroups': { name: 'autoRAGConfigAPIAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'autoRAGEngineAdaptiveGroups': { name: 'autoRAGEngineAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'browserIsolationSessionsAdaptiveGroups': { name: 'browserIsolationSessionsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'browserIsolationUserActionsAdaptiveGroups': { name: 'browserIsolationUserActionsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'browserRenderingApiAdaptiveGroups': { name: 'browserRenderingApiAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'browserRenderingBindingSessionsAdaptiveGroups': { name: 'browserRenderingBindingSessionsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'browserRenderingBrowserTimeUsageAdaptiveGroups': { name: 'browserRenderingBrowserTimeUsageAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'browserRenderingEventsAdaptive': { name: 'browserRenderingEventsAdaptive'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'browserRenderingEventsAdaptiveGroups': { name: 'browserRenderingEventsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'callsStatusAdaptive': { name: 'callsStatusAdaptive'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'callsTurnUsageAdaptiveGroups': { name: 'callsTurnUsageAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'callsUsageAdaptiveGroups': { name: 'callsUsageAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'cdnNetworkAnalyticsAdaptiveGroups': { name: 'cdnNetworkAnalyticsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'cloudchamberMetricsAdaptiveGroups': { name: 'cloudchamberMetricsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'cloudflareTunnelsAnalyticsAdaptiveGroups': { name: 'cloudflareTunnelsAnalyticsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'containersMetricsAdaptiveGroups': { name: 'containersMetricsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'd1AnalyticsAdaptiveGroups': { name: 'd1AnalyticsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'd1QueriesAdaptiveGroups': { name: 'd1QueriesAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'd1StorageAdaptiveGroups': { name: 'd1StorageAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'dnsAnalyticsAdaptive': { name: 'dnsAnalyticsAdaptive'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'dnsAnalyticsAdaptiveGroups': { name: 'dnsAnalyticsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'dnsFirewallAnalyticsAdaptive': { name: 'dnsFirewallAnalyticsAdaptive'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'dnsFirewallAnalyticsAdaptiveGroups': { name: 'dnsFirewallAnalyticsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'dosdAttackAnalyticsGroups': { name: 'dosdAttackAnalyticsGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'dosdNetworkAnalyticsAdaptiveGroups': { name: 'dosdNetworkAnalyticsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'durableObjectsInvocationsAdaptiveGroups': { name: 'durableObjectsInvocationsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'durableObjectsPeriodicGroups': { name: 'durableObjectsPeriodicGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'durableObjectsSqlStorageGroups': { name: 'durableObjectsSqlStorageGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'durableObjectsStorageGroups': { name: 'durableObjectsStorageGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'durableObjectsSubrequestsAdaptiveGroups': { name: 'durableObjectsSubrequestsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'fbmAttackAnalyticsGroups': { name: 'fbmAttackAnalyticsGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'firewallEventsAdaptive': { name: 'firewallEventsAdaptive'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'firewallEventsAdaptiveGroups': { name: 'firewallEventsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'flowtrackdNetworkAnalyticsAdaptiveGroups': { name: 'flowtrackdNetworkAnalyticsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'gatewayL4DownstreamSessionsAdaptiveGroups': { name: 'gatewayL4DownstreamSessionsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'gatewayL4SessionsAdaptiveGroups': { name: 'gatewayL4SessionsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'gatewayL4UpstreamSessionsAdaptiveGroups': { name: 'gatewayL4UpstreamSessionsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'gatewayL7RequestsAdaptiveGroups': { name: 'gatewayL7RequestsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'gatewayResolverByCategoryAdaptiveGroups': { name: 'gatewayResolverByCategoryAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'gatewayResolverByCustomResolverGroups': { name: 'gatewayResolverByCustomResolverGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'gatewayResolverByRuleExecutionPerformanceAdaptiveGroups': { name: 'gatewayResolverByRuleExecutionPerformanceAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'gatewayResolverQueriesAdaptiveGroups': { name: 'gatewayResolverQueriesAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'httpRequests1dGroups': { name: 'httpRequests1dGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'httpRequests1hGroups': { name: 'httpRequests1hGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'httpRequests1mGroups': { name: 'httpRequests1mGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'httpRequestsAdaptive': { name: 'httpRequestsAdaptive'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'httpRequestsAdaptiveGroups': { name: 'httpRequestsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'httpRequestsOverviewAdaptiveGroups': { name: 'httpRequestsOverviewAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'hyperdriveQueriesAdaptiveGroups': { name: 'hyperdriveQueriesAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'imagesRequestsAdaptiveGroups': { name: 'imagesRequestsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'imagesUniqueTransformations': { name: 'imagesUniqueTransformations'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'imagesUniqueTransformationsAccumulatedSinceStartOfMonth': { name: 'imagesUniqueTransformationsAccumulatedSinceStartOfMonth'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'kvOperationsAdaptiveGroups': { name: 'kvOperationsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'kvStorageAdaptiveGroups': { name: 'kvStorageAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'liveInputEventsAdaptive': { name: 'liveInputEventsAdaptive'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'liveInputEventsAdaptiveGroups': { name: 'liveInputEventsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'logExplorerIngestionAdaptiveGroups': { name: 'logExplorerIngestionAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'logpushHealthAdaptiveGroups': { name: 'logpushHealthAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'magicEndpointHealthCheckAdaptiveGroups': { name: 'magicEndpointHealthCheckAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'magicFirewallNetworkAnalyticsAdaptiveGroups': { name: 'magicFirewallNetworkAnalyticsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'magicFirewallRateLimitNetworkAnalyticsAdaptiveGroups': { name: 'magicFirewallRateLimitNetworkAnalyticsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'magicFirewallSamplesAdaptiveGroups': { name: 'magicFirewallSamplesAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'magicIDPSNetworkAnalyticsAdaptiveGroups': { name: 'magicIDPSNetworkAnalyticsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'magicTransitNetworkAnalyticsAdaptiveGroups': { name: 'magicTransitNetworkAnalyticsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'magicTransitTunnelHealthCheckSLOsAdaptiveGroups': { name: 'magicTransitTunnelHealthCheckSLOsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'magicTransitTunnelHealthChecksAdaptiveGroups': { name: 'magicTransitTunnelHealthChecksAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'magicTransitTunnelTrafficAdaptiveGroups': { name: 'magicTransitTunnelTrafficAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'mconnTelemetryEventsAdaptiveGroups': { name: 'mconnTelemetryEventsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'mconnTelemetryEventsStagingAdaptiveGroups': { name: 'mconnTelemetryEventsStagingAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'mconnTelemetrySnapshotDhcpLeasesAdaptiveGroups': { name: 'mconnTelemetrySnapshotDhcpLeasesAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'mconnTelemetrySnapshotDhcpLeasesStagingAdaptiveGroups': { name: 'mconnTelemetrySnapshotDhcpLeasesStagingAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'mconnTelemetrySnapshotDisksAdaptiveGroups': { name: 'mconnTelemetrySnapshotDisksAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'mconnTelemetrySnapshotDisksStagingAdaptiveGroups': { name: 'mconnTelemetrySnapshotDisksStagingAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'mconnTelemetrySnapshotInterfaceAddressesAdaptiveGroups': { name: 'mconnTelemetrySnapshotInterfaceAddressesAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'mconnTelemetrySnapshotInterfaceAddressesStagingAdaptiveGroups': { name: 'mconnTelemetrySnapshotInterfaceAddressesStagingAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'mconnTelemetrySnapshotInterfacesAdaptiveGroups': { name: 'mconnTelemetrySnapshotInterfacesAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'mconnTelemetrySnapshotInterfacesStagingAdaptiveGroups': { name: 'mconnTelemetrySnapshotInterfacesStagingAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'mconnTelemetrySnapshotMountsAdaptiveGroups': { name: 'mconnTelemetrySnapshotMountsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'mconnTelemetrySnapshotMountsStagingAdaptiveGroups': { name: 'mconnTelemetrySnapshotMountsStagingAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'mconnTelemetrySnapshotNetdevsAdaptiveGroups': { name: 'mconnTelemetrySnapshotNetdevsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'mconnTelemetrySnapshotNetdevsStagingAdaptiveGroups': { name: 'mconnTelemetrySnapshotNetdevsStagingAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'mconnTelemetrySnapshotThermalsAdaptiveGroups': { name: 'mconnTelemetrySnapshotThermalsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'mconnTelemetrySnapshotThermalsStagingAdaptiveGroups': { name: 'mconnTelemetrySnapshotThermalsStagingAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'mconnTelemetrySnapshotTunnelsAdaptiveGroups': { name: 'mconnTelemetrySnapshotTunnelsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'mconnTelemetrySnapshotTunnelsStagingAdaptiveGroups': { name: 'mconnTelemetrySnapshotTunnelsStagingAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'mconnTelemetrySnapshotsAdaptiveGroups': { name: 'mconnTelemetrySnapshotsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'mconnTelemetrySnapshotsStagingAdaptiveGroups': { name: 'mconnTelemetrySnapshotsStagingAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'mediaUniqueTransformations': { name: 'mediaUniqueTransformations'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'mediaUniqueTransformationsAccumulatedSinceStartOfMonth': { name: 'mediaUniqueTransformationsAccumulatedSinceStartOfMonth'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'mnmAWSVPCFlowDataAdaptiveGroups': { name: 'mnmAWSVPCFlowDataAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'mnmFlowDataAdaptiveGroups': { name: 'mnmFlowDataAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'nelReportsAdaptiveGroups': { name: 'nelReportsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'ohttpMetricsAdaptive': { name: 'ohttpMetricsAdaptive'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'ohttpMetricsAdaptiveGroups': { name: 'ohttpMetricsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'pagesFunctionsInvocationsAdaptiveGroups': { name: 'pagesFunctionsInvocationsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'pipelinesDeliveryAdaptiveGroups': { name: 'pipelinesDeliveryAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'pipelinesIngestionAdaptiveGroups': { name: 'pipelinesIngestionAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'pipelinesOperatorAdaptiveGroups': { name: 'pipelinesOperatorAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'pipelinesOperatorStagingAdaptiveGroups': { name: 'pipelinesOperatorStagingAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'pipelinesSinkAdaptiveGroups': { name: 'pipelinesSinkAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'pipelinesSinkStagingAdaptiveGroups': { name: 'pipelinesSinkStagingAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'programmableFlowProtectionNetworkAnalyticsAdaptiveGroups': { name: 'programmableFlowProtectionNetworkAnalyticsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'queueBacklogAdaptiveGroups': { name: 'queueBacklogAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'queueConsumerMetricsAdaptiveGroups': { name: 'queueConsumerMetricsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'queueDelayedBacklogAdaptiveGroups': { name: 'queueDelayedBacklogAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'queueMessageOperationsAdaptiveGroups': { name: 'queueMessageOperationsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'r2OperationsAdaptiveGroups': { name: 'r2OperationsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'r2StorageAdaptiveGroups': { name: 'r2StorageAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'rumPageloadEventsAdaptiveGroups': { name: 'rumPageloadEventsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'rumPerformanceEventsAdaptiveGroups': { name: 'rumPerformanceEventsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'rumWebVitalsEventsAdaptive': { name: 'rumWebVitalsEventsAdaptive'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'rumWebVitalsEventsAdaptiveGroups': { name: 'rumWebVitalsEventsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'sinkholeRequestLogsAdaptive': { name: 'sinkholeRequestLogsAdaptive'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'sinkholeRequestLogsAdaptiveGroups': { name: 'sinkholeRequestLogsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'sippyOperationsAdaptiveGroups': { name: 'sippyOperationsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'spectrumNetworkAnalyticsAdaptiveGroups': { name: 'spectrumNetworkAnalyticsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'storageTraces': { name: 'storageTraces'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'streamCMCDAdaptiveGroups': { name: 'streamCMCDAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'streamMinutesViewedAdaptiveGroups': { name: 'streamMinutesViewedAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'toMarkdownConversionAdaptive': { name: 'toMarkdownConversionAdaptive'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'toMarkdownConversionAdaptiveGroups': { name: 'toMarkdownConversionAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'turnstileAdaptiveGroups': { name: 'turnstileAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'vectorizeQueriesAdaptiveGroups': { name: 'vectorizeQueriesAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'vectorizeStorageAdaptiveGroups': { name: 'vectorizeStorageAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'vectorizeV2OperationsAdaptiveGroups': { name: 'vectorizeV2OperationsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'vectorizeV2QueriesAdaptiveGroups': { name: 'vectorizeV2QueriesAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'vectorizeV2StorageAdaptiveGroups': { name: 'vectorizeV2StorageAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'vectorizeV2WritesAdaptiveGroups': { name: 'vectorizeV2WritesAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'videoBufferEventsAdaptiveGroups': { name: 'videoBufferEventsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'videoPlaybackEventsAdaptiveGroups': { name: 'videoPlaybackEventsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'videoQualityEventsAdaptiveGroups': { name: 'videoQualityEventsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'warpDeviceAdaptiveGroups': { name: 'warpDeviceAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'workerPlacementAdaptiveGroups': { name: 'workerPlacementAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'workersAnalyticsEngineAdaptiveGroups': { name: 'workersAnalyticsEngineAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'workersBuildsBuildMinutesAdaptiveGroups': { name: 'workersBuildsBuildMinutesAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'workersInvocationsAdaptive': { name: 'workersInvocationsAdaptive'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'workersInvocationsScheduled': { name: 'workersInvocationsScheduled'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'workersOverviewDataAdaptiveGroups': { name: 'workersOverviewDataAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'workersOverviewRequestsAdaptiveGroups': { name: 'workersOverviewRequestsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'workersSubrequestsAdaptiveGroups': { name: 'workersSubrequestsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'workersVpcConnectionAdaptiveGroups': { name: 'workersVpcConnectionAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'workflowsAdaptive': { name: 'workflowsAdaptive'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'workflowsAdaptiveGroups': { name: 'workflowsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'zarazTrackAdaptiveGroups': { name: 'zarazTrackAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'zarazTriggersAdaptiveGroups': { name: 'zarazTriggersAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'zeroTrustPrivateNetworkDiscoveryGroups': { name: 'zeroTrustPrivateNetworkDiscoveryGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; }; }; + 'AccountSinkholeRequestLogsAdaptive': { kind: 'OBJECT'; name: 'AccountSinkholeRequestLogsAdaptive'; fields: { 'body': { name: 'body'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'destinationAddress': { name: 'destinationAddress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'headers': { name: 'headers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'host': { name: 'host'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'method': { name: 'method'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'r2Path': { name: 'r2Path'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'referrer': { name: 'referrer'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'sinkholeId': { name: 'sinkholeId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sourceAddress': { name: 'sourceAddress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'uri': { name: 'uri'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'url': { name: 'url'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'userAgent': { name: 'userAgent'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountSinkholeRequestLogsAdaptiveFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountSinkholeRequestLogsAdaptiveFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountSinkholeRequestLogsAdaptiveFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountSinkholeRequestLogsAdaptiveFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'body'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'body_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'body_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'body_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'body_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'body_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'body_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'body_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'body_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'body_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationAddress'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAddress_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAddress_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAddress_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationAddress_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAddress_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAddress_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAddress_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAddress_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationAddress_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'headers'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'headers_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'headers_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'headers_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'headers_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'headers_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'headers_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'headers_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'headers_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'headers_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'host'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'host_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'host_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'host_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'host_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'host_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'host_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'host_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'host_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'host_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'method'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'method_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'method_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'method_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'method_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'method_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'method_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'method_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'method_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'method_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'r2Path'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'r2Path_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'r2Path_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'r2Path_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'r2Path_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'r2Path_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'r2Path_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'r2Path_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'r2Path_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'r2Path_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'referrer'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'referrer_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'referrer_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'referrer_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'referrer_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'referrer_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'referrer_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'referrer_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'referrer_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'referrer_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sampleInterval_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sinkholeId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sinkholeId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sinkholeId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sinkholeId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sinkholeId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sinkholeId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sinkholeId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sinkholeId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sinkholeId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sinkholeId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAddress'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAddress_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAddress_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAddress_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceAddress_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAddress_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAddress_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAddress_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAddress_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceAddress_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uri'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uri_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uri_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uri_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'uri_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uri_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uri_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uri_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uri_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'uri_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'url'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'url_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'url_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'url_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'url_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'url_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'url_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'url_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'url_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'url_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userAgent_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userAgent_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountSinkholeRequestLogsAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountSinkholeRequestLogsAdaptiveGroups'; fields: { 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountSinkholeRequestLogsAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountSinkholeRequestLogsAdaptiveGroupsDimensions'; ofType: null; } }; }; }; + 'AccountSinkholeRequestLogsAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountSinkholeRequestLogsAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountSinkholeRequestLogsAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountSinkholeRequestLogsAdaptiveGroupsDimensions'; fields: { 'body': { name: 'body'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'destinationAddress': { name: 'destinationAddress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'headers': { name: 'headers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'host': { name: 'host'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'method': { name: 'method'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'r2Path': { name: 'r2Path'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'referrer': { name: 'referrer'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sinkholeId': { name: 'sinkholeId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sourceAddress': { name: 'sourceAddress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'uri': { name: 'uri'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'url': { name: 'url'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'userAgent': { name: 'userAgent'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountSinkholeRequestLogsAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountSinkholeRequestLogsAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountSinkholeRequestLogsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountSinkholeRequestLogsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'body'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'body_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'body_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'body_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'body_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'body_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'body_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'body_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'body_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'body_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationAddress'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAddress_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAddress_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAddress_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationAddress_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAddress_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAddress_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAddress_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAddress_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationAddress_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'headers'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'headers_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'headers_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'headers_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'headers_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'headers_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'headers_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'headers_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'headers_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'headers_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'host'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'host_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'host_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'host_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'host_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'host_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'host_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'host_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'host_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'host_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'method'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'method_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'method_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'method_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'method_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'method_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'method_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'method_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'method_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'method_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'r2Path'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'r2Path_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'r2Path_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'r2Path_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'r2Path_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'r2Path_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'r2Path_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'r2Path_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'r2Path_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'r2Path_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'referrer'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'referrer_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'referrer_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'referrer_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'referrer_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'referrer_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'referrer_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'referrer_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'referrer_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'referrer_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sinkholeId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sinkholeId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sinkholeId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sinkholeId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sinkholeId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sinkholeId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sinkholeId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sinkholeId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sinkholeId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sinkholeId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAddress'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAddress_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAddress_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAddress_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceAddress_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAddress_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAddress_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAddress_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAddress_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceAddress_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uri'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uri_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uri_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uri_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'uri_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uri_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uri_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uri_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uri_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'uri_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'url'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'url_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'url_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'url_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'url_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'url_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'url_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'url_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'url_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'url_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userAgent_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userAgent_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountSinkholeRequestLogsAdaptiveGroupsOrderBy': { name: 'AccountSinkholeRequestLogsAdaptiveGroupsOrderBy'; enumValues: 'body_ASC' | 'body_DESC' | 'count_ASC' | 'count_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'destinationAddress_ASC' | 'destinationAddress_DESC' | 'headers_ASC' | 'headers_DESC' | 'host_ASC' | 'host_DESC' | 'method_ASC' | 'method_DESC' | 'r2Path_ASC' | 'r2Path_DESC' | 'referrer_ASC' | 'referrer_DESC' | 'sinkholeId_ASC' | 'sinkholeId_DESC' | 'sourceAddress_ASC' | 'sourceAddress_DESC' | 'uri_ASC' | 'uri_DESC' | 'url_ASC' | 'url_DESC' | 'userAgent_ASC' | 'userAgent_DESC'; }; + 'AccountSinkholeRequestLogsAdaptiveOrderBy': { name: 'AccountSinkholeRequestLogsAdaptiveOrderBy'; enumValues: 'body_ASC' | 'body_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'destinationAddress_ASC' | 'destinationAddress_DESC' | 'headers_ASC' | 'headers_DESC' | 'host_ASC' | 'host_DESC' | 'method_ASC' | 'method_DESC' | 'r2Path_ASC' | 'r2Path_DESC' | 'referrer_ASC' | 'referrer_DESC' | 'sampleInterval_ASC' | 'sampleInterval_DESC' | 'sinkholeId_ASC' | 'sinkholeId_DESC' | 'sourceAddress_ASC' | 'sourceAddress_DESC' | 'uri_ASC' | 'uri_DESC' | 'url_ASC' | 'url_DESC' | 'userAgent_ASC' | 'userAgent_DESC'; }; + 'AccountSippyOperationsAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountSippyOperationsAdaptiveGroups'; fields: { 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountSippyOperationsAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountSippyOperationsAdaptiveGroupsDimensions'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountSippyOperationsAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'AccountSippyOperationsAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountSippyOperationsAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountSippyOperationsAdaptiveGroupsSumConfidence'; ofType: null; } }; }; }; + 'AccountSippyOperationsAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountSippyOperationsAdaptiveGroupsDimensions'; fields: { 'action': { name: 'action'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'bucket': { name: 'bucket'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'initiator': { name: 'initiator'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'object': { name: 'object'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'size': { name: 'size'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'status': { name: 'status'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'target': { name: 'target'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountSippyOperationsAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountSippyOperationsAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountSippyOperationsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountSippyOperationsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'action'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'action_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'action_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'bucket'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'bucket_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'bucket_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'bucket_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'bucket_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'bucket_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'bucket_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'bucket_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'bucket_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'bucket_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'initiator'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'initiator_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'initiator_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'initiator_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'initiator_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'initiator_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'initiator_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'initiator_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'initiator_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'initiator_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'object'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'object_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'object_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'object_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'object_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'object_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'object_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'object_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'object_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'object_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'size'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'size_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'size_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'size_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'size_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'size_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'size_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'size_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'status'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'status_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'status_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'status_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'status_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'status_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'status_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'status_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'target'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'target_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'target_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'target_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'target_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'target_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'target_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'target_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'target_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'target_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountSippyOperationsAdaptiveGroupsOrderBy': { name: 'AccountSippyOperationsAdaptiveGroupsOrderBy'; enumValues: 'action_ASC' | 'action_DESC' | 'bucket_ASC' | 'bucket_DESC' | 'count_ASC' | 'count_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'initiator_ASC' | 'initiator_DESC' | 'object_ASC' | 'object_DESC' | 'size_ASC' | 'size_DESC' | 'status_ASC' | 'status_DESC' | 'sum_size_ASC' | 'sum_size_DESC' | 'target_ASC' | 'target_DESC'; }; + 'AccountSippyOperationsAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'AccountSippyOperationsAdaptiveGroupsSum'; fields: { 'size': { name: 'size'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountSippyOperationsAdaptiveGroupsSumConfidence': { kind: 'OBJECT'; name: 'AccountSippyOperationsAdaptiveGroupsSumConfidence'; fields: { 'size': { name: 'size'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountSpectrumNetworkAnalyticsAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountSpectrumNetworkAnalyticsAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountSpectrumNetworkAnalyticsAdaptiveGroupsAvg'; ofType: null; } }; 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountSpectrumNetworkAnalyticsAdaptiveGroupsConfidence'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountSpectrumNetworkAnalyticsAdaptiveGroupsDimensions'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountSpectrumNetworkAnalyticsAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'AccountSpectrumNetworkAnalyticsAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'AccountSpectrumNetworkAnalyticsAdaptiveGroupsAvg'; fields: { 'bitRate': { name: 'bitRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'bitRateDay': { name: 'bitRateDay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'bitRateFifteenMinutes': { name: 'bitRateFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'bitRateFiveMinutes': { name: 'bitRateFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'bitRateHour': { name: 'bitRateHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'bitRateMinute': { name: 'bitRateMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'bitRateTenSeconds': { name: 'bitRateTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRate': { name: 'packetRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRateDay': { name: 'packetRateDay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRateFifteenMinutes': { name: 'packetRateFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRateFiveMinutes': { name: 'packetRateFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRateHour': { name: 'packetRateHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRateMinute': { name: 'packetRateMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packetRateTenSeconds': { name: 'packetRateTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountSpectrumNetworkAnalyticsAdaptiveGroupsAvgConfidence': { kind: 'OBJECT'; name: 'AccountSpectrumNetworkAnalyticsAdaptiveGroupsAvgConfidence'; fields: { 'bitRate': { name: 'bitRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateDay': { name: 'bitRateDay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateFifteenMinutes': { name: 'bitRateFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateFiveMinutes': { name: 'bitRateFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateHour': { name: 'bitRateHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateMinute': { name: 'bitRateMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bitRateTenSeconds': { name: 'bitRateTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRate': { name: 'packetRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateDay': { name: 'packetRateDay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateFifteenMinutes': { name: 'packetRateFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateFiveMinutes': { name: 'packetRateFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateHour': { name: 'packetRateHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateMinute': { name: 'packetRateMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packetRateTenSeconds': { name: 'packetRateTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountSpectrumNetworkAnalyticsAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountSpectrumNetworkAnalyticsAdaptiveGroupsConfidence'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountSpectrumNetworkAnalyticsAdaptiveGroupsAvgConfidence'; ofType: null; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountSpectrumNetworkAnalyticsAdaptiveGroupsSumConfidence'; ofType: null; } }; }; }; + 'AccountSpectrumNetworkAnalyticsAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountSpectrumNetworkAnalyticsAdaptiveGroupsDimensions'; fields: { 'applicationTag': { name: 'applicationTag'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'coloCity': { name: 'coloCity'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'coloCode': { name: 'coloCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'coloCountry': { name: 'coloCountry'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'coloGeohash': { name: 'coloGeohash'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'coloName': { name: 'coloName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeTenSeconds': { name: 'datetimeTenSeconds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'destinationAsn': { name: 'destinationAsn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'destinationAsnName': { name: 'destinationAsnName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'destinationCountry': { name: 'destinationCountry'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'destinationGeohash': { name: 'destinationGeohash'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'destinationPort': { name: 'destinationPort'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'direction': { name: 'direction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ethertype': { name: 'ethertype'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'greChecksum': { name: 'greChecksum'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'greEthertype': { name: 'greEthertype'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'greHeaderLength': { name: 'greHeaderLength'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'greKey': { name: 'greKey'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'greSequenceNumber': { name: 'greSequenceNumber'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'greVersion': { name: 'greVersion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'icmpChecksum': { name: 'icmpChecksum'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'icmpCode': { name: 'icmpCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'icmpType': { name: 'icmpType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipDestinationAddress': { name: 'ipDestinationAddress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipDestinationSubnet': { name: 'ipDestinationSubnet'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipFragmentOffset': { name: 'ipFragmentOffset'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'ipHeaderLength': { name: 'ipHeaderLength'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'ipMoreFragments': { name: 'ipMoreFragments'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipProtocol': { name: 'ipProtocol'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipProtocolName': { name: 'ipProtocolName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipSourceAddress': { name: 'ipSourceAddress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipSourceSubnet': { name: 'ipSourceSubnet'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipTotalLength': { name: 'ipTotalLength'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'ipTotalLengthBuckets': { name: 'ipTotalLengthBuckets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'ipTtl': { name: 'ipTtl'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipTtlBuckets': { name: 'ipTtlBuckets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipv4Checksum': { name: 'ipv4Checksum'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'ipv4DontFragment': { name: 'ipv4DontFragment'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipv4Dscp': { name: 'ipv4Dscp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipv4Ecn': { name: 'ipv4Ecn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipv4Identification': { name: 'ipv4Identification'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'ipv4Options': { name: 'ipv4Options'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipv6Dscp': { name: 'ipv6Dscp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipv6Ecn': { name: 'ipv6Ecn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipv6ExtensionHeaders': { name: 'ipv6ExtensionHeaders'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipv6FlowLabel': { name: 'ipv6FlowLabel'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'ipv6Identification': { name: 'ipv6Identification'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'leaseTag': { name: 'leaseTag'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'mitigationSystem': { name: 'mitigationSystem'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'outcome': { name: 'outcome'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'prefixTag': { name: 'prefixTag'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'sourceAsn': { name: 'sourceAsn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'sourceAsnName': { name: 'sourceAsnName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sourceCountry': { name: 'sourceCountry'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sourceGeohash': { name: 'sourceGeohash'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sourcePort': { name: 'sourcePort'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'tcpAcknowledgementNumber': { name: 'tcpAcknowledgementNumber'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'tcpChecksum': { name: 'tcpChecksum'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'tcpDataOffset': { name: 'tcpDataOffset'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'tcpFlags': { name: 'tcpFlags'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'tcpFlagsString': { name: 'tcpFlagsString'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'tcpMss': { name: 'tcpMss'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'tcpOptions': { name: 'tcpOptions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'tcpSackBlocks': { name: 'tcpSackBlocks'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'tcpSackPermitted': { name: 'tcpSackPermitted'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'tcpSequenceNumber': { name: 'tcpSequenceNumber'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'tcpTimestampEcr': { name: 'tcpTimestampEcr'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'tcpTimestampValue': { name: 'tcpTimestampValue'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'tcpUrgentPointer': { name: 'tcpUrgentPointer'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'tcpWindowScale': { name: 'tcpWindowScale'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'tcpWindowSize': { name: 'tcpWindowSize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'udpChecksum': { name: 'udpChecksum'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'udpPayloadLength': { name: 'udpPayloadLength'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; }; }; + 'AccountSpectrumNetworkAnalyticsAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountSpectrumNetworkAnalyticsAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountSpectrumNetworkAnalyticsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountSpectrumNetworkAnalyticsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'applicationTag'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationTag_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationTag_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationTag_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'applicationTag_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationTag_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationTag_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationTag_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'applicationTag_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'applicationTag_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCity_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCity_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCity_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCode_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCode_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCountry_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCountry_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCountry_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloGeohash_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloGeohash_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloGeohash_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeTenSeconds'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeTenSeconds_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenSeconds_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationAsn'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationAsnName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsnName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationAsnName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationAsn_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'destinationAsn_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'destinationAsn_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationAsn_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'destinationAsn_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'destinationAsn_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'destinationAsn_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationCountry'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationCountry_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationCountry_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationCountry_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationGeohash_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationGeohash_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationGeohash_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationPort'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationPort_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'direction'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'direction_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'direction_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'direction_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ethertype'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ethertype_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ethertype_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ethertype_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ethertype_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ethertype_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ethertype_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ethertype_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'greChecksum'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greChecksum_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greChecksum_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greChecksum_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'greChecksum_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greChecksum_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greChecksum_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greChecksum_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'greEthertype'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greEthertype_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greEthertype_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greEthertype_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'greEthertype_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greEthertype_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greEthertype_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greEthertype_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'greHeaderLength'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greHeaderLength_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greHeaderLength_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greHeaderLength_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'greHeaderLength_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greHeaderLength_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greHeaderLength_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'greHeaderLength_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'greKey'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greKey_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greKey_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greKey_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'greKey_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greKey_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greKey_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greKey_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'greSequenceNumber'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greSequenceNumber_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greSequenceNumber_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greSequenceNumber_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'greSequenceNumber_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greSequenceNumber_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greSequenceNumber_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'greSequenceNumber_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'greVersion'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'greVersion_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'greVersion_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'greVersion_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'greVersion_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'greVersion_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'greVersion_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'greVersion_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'icmpChecksum'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'icmpChecksum_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'icmpChecksum_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'icmpChecksum_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'icmpChecksum_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'icmpChecksum_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'icmpChecksum_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'icmpChecksum_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'icmpCode'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpCode_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpCode_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpCode_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'icmpCode_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpCode_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpCode_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpCode_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'icmpType'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpType_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpType_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpType_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'icmpType_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpType_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpType_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'icmpType_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipDestinationAddress_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationAddress_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipDestinationAddress_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipDestinationSubnet_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipDestinationSubnet_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipDestinationSubnet_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipFragmentOffset'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipFragmentOffset_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipFragmentOffset_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipFragmentOffset_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipFragmentOffset_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipFragmentOffset_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipFragmentOffset_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipFragmentOffset_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipHeaderLength'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipHeaderLength_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipHeaderLength_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipHeaderLength_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipHeaderLength_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipHeaderLength_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipHeaderLength_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipHeaderLength_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipMoreFragments'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipMoreFragments_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipMoreFragments_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipMoreFragments_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipMoreFragments_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipMoreFragments_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipMoreFragments_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipMoreFragments_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipProtocolName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocolName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipProtocolName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipProtocol_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipSourceAddress_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceAddress_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipSourceAddress_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipSourceSubnet_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipSourceSubnet_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipSourceSubnet_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLength'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLengthBuckets'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLengthBuckets_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLengthBuckets_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLengthBuckets_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipTotalLengthBuckets_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLengthBuckets_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLengthBuckets_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLengthBuckets_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipTotalLength_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLength_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLength_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipTotalLength_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLength_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLength_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipTotalLength_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipTtl'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtlBuckets_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipTtl_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtl_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtl_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipTtl_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtl_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtl_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipTtl_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv4Checksum'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Checksum_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Checksum_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Checksum_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv4Checksum_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Checksum_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Checksum_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Checksum_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv4DontFragment'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4DontFragment_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4DontFragment_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4DontFragment_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv4DontFragment_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4DontFragment_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4DontFragment_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4DontFragment_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Dscp_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv4Ecn_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv4Identification'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Identification_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Identification_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Identification_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv4Identification_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Identification_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Identification_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'ipv4Identification_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv4Options'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4Options_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4Options_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4Options_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv4Options_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4Options_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4Options_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4Options_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4Options_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv4Options_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Dscp_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipv6Ecn_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv6ExtensionHeaders_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6FlowLabel'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6FlowLabel_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6FlowLabel_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6FlowLabel_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv6FlowLabel_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6FlowLabel_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6FlowLabel_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6FlowLabel_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv6Identification'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6Identification_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6Identification_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6Identification_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv6Identification_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6Identification_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6Identification_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'ipv6Identification_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'leaseTag'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leaseTag_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leaseTag_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leaseTag_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'leaseTag_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leaseTag_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leaseTag_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leaseTag_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leaseTag_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'leaseTag_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationSystem'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationSystem_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationSystem_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationSystem_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'mitigationSystem_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationSystem_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationSystem_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationSystem_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mitigationSystem_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'mitigationSystem_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'outcome_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outcome_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'outcome_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'prefixTag_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'prefixTag_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'prefixTag_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sampleInterval_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceAsn'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceAsnName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsnName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceAsnName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceAsn_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sourceAsn_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sourceAsn_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceAsn_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sourceAsn_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sourceAsn_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sourceAsn_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceCountry'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceCountry_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceCountry_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceCountry_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceGeohash_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceGeohash_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceGeohash_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourcePort'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourcePort_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'sourcePort_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpAcknowledgementNumber_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpChecksum'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpChecksum_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpChecksum_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpChecksum_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpChecksum_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpChecksum_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpChecksum_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpChecksum_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpDataOffset'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpDataOffset_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpDataOffset_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpDataOffset_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpDataOffset_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpDataOffset_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpDataOffset_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpDataOffset_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpFlags'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpFlagsString_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlagsString_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpFlagsString_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpFlags_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'tcpMss'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpMss_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpMss_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpMss_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpMss_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpMss_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpMss_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpMss_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpOptions'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpOptions_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpOptions_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpOptions_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpOptions_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpOptions_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpOptions_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpOptions_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpOptions_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpOptions_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpSackBlocks_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackBlocks_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpSackBlocks_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'tcpSackPermitted_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'tcpSequenceNumber'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpSequenceNumber_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpSequenceNumber_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpSequenceNumber_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpSequenceNumber_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpSequenceNumber_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpSequenceNumber_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpSequenceNumber_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpTimestampEcr'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampEcr_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampEcr_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampEcr_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpTimestampEcr_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampEcr_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampEcr_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampEcr_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpTimestampValue'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampValue_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampValue_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampValue_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpTimestampValue_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampValue_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampValue_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpTimestampValue_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpUrgentPointer'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpUrgentPointer_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpUrgentPointer_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpUrgentPointer_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpUrgentPointer_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpUrgentPointer_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpUrgentPointer_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpUrgentPointer_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpWindowScale'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowScale_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowScale_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowScale_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpWindowScale_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowScale_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowScale_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowScale_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpWindowSize'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowSize_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowSize_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowSize_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpWindowSize_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowSize_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowSize_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'tcpWindowSize_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'udpChecksum'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpChecksum_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpChecksum_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpChecksum_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'udpChecksum_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpChecksum_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpChecksum_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpChecksum_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'udpPayloadLength'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpPayloadLength_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpPayloadLength_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpPayloadLength_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'udpPayloadLength_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpPayloadLength_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpPayloadLength_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'udpPayloadLength_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }]; }; + 'AccountSpectrumNetworkAnalyticsAdaptiveGroupsOrderBy': { name: 'AccountSpectrumNetworkAnalyticsAdaptiveGroupsOrderBy'; enumValues: 'applicationTag_ASC' | 'applicationTag_DESC' | 'avg_bitRateDay_ASC' | 'avg_bitRateDay_DESC' | 'avg_bitRateFifteenMinutes_ASC' | 'avg_bitRateFifteenMinutes_DESC' | 'avg_bitRateFiveMinutes_ASC' | 'avg_bitRateFiveMinutes_DESC' | 'avg_bitRateHour_ASC' | 'avg_bitRateHour_DESC' | 'avg_bitRateMinute_ASC' | 'avg_bitRateMinute_DESC' | 'avg_bitRateTenSeconds_ASC' | 'avg_bitRateTenSeconds_DESC' | 'avg_bitRate_ASC' | 'avg_bitRate_DESC' | 'avg_packetRateDay_ASC' | 'avg_packetRateDay_DESC' | 'avg_packetRateFifteenMinutes_ASC' | 'avg_packetRateFifteenMinutes_DESC' | 'avg_packetRateFiveMinutes_ASC' | 'avg_packetRateFiveMinutes_DESC' | 'avg_packetRateHour_ASC' | 'avg_packetRateHour_DESC' | 'avg_packetRateMinute_ASC' | 'avg_packetRateMinute_DESC' | 'avg_packetRateTenSeconds_ASC' | 'avg_packetRateTenSeconds_DESC' | 'avg_packetRate_ASC' | 'avg_packetRate_DESC' | 'coloCity_ASC' | 'coloCity_DESC' | 'coloCode_ASC' | 'coloCode_DESC' | 'coloCountry_ASC' | 'coloCountry_DESC' | 'coloGeohash_ASC' | 'coloGeohash_DESC' | 'coloName_ASC' | 'coloName_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetimeTenSeconds_ASC' | 'datetimeTenSeconds_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'destinationAsnName_ASC' | 'destinationAsnName_DESC' | 'destinationAsn_ASC' | 'destinationAsn_DESC' | 'destinationCountry_ASC' | 'destinationCountry_DESC' | 'destinationGeohash_ASC' | 'destinationGeohash_DESC' | 'destinationPort_ASC' | 'destinationPort_DESC' | 'destinationService_ASC' | 'destinationService_DESC' | 'direction_ASC' | 'direction_DESC' | 'ethertype_ASC' | 'ethertype_DESC' | 'greChecksum_ASC' | 'greChecksum_DESC' | 'greEthertype_ASC' | 'greEthertype_DESC' | 'greHeaderLength_ASC' | 'greHeaderLength_DESC' | 'greKey_ASC' | 'greKey_DESC' | 'greSequenceNumber_ASC' | 'greSequenceNumber_DESC' | 'greVersion_ASC' | 'greVersion_DESC' | 'icmpChecksum_ASC' | 'icmpChecksum_DESC' | 'icmpCode_ASC' | 'icmpCode_DESC' | 'icmpType_ASC' | 'icmpType_DESC' | 'ipDestinationAddress_ASC' | 'ipDestinationAddress_DESC' | 'ipDestinationSubnet_ASC' | 'ipDestinationSubnet_DESC' | 'ipFragmentOffset_ASC' | 'ipFragmentOffset_DESC' | 'ipHeaderLength_ASC' | 'ipHeaderLength_DESC' | 'ipMoreFragments_ASC' | 'ipMoreFragments_DESC' | 'ipProtocolName_ASC' | 'ipProtocolName_DESC' | 'ipProtocol_ASC' | 'ipProtocol_DESC' | 'ipSourceAddress_ASC' | 'ipSourceAddress_DESC' | 'ipSourceSubnet_ASC' | 'ipSourceSubnet_DESC' | 'ipTotalLengthBuckets_ASC' | 'ipTotalLengthBuckets_DESC' | 'ipTotalLength_ASC' | 'ipTotalLength_DESC' | 'ipTtlBuckets_ASC' | 'ipTtlBuckets_DESC' | 'ipTtl_ASC' | 'ipTtl_DESC' | 'ipv4Checksum_ASC' | 'ipv4Checksum_DESC' | 'ipv4DontFragment_ASC' | 'ipv4DontFragment_DESC' | 'ipv4Dscp_ASC' | 'ipv4Dscp_DESC' | 'ipv4Ecn_ASC' | 'ipv4Ecn_DESC' | 'ipv4Identification_ASC' | 'ipv4Identification_DESC' | 'ipv4Options_ASC' | 'ipv4Options_DESC' | 'ipv6Dscp_ASC' | 'ipv6Dscp_DESC' | 'ipv6Ecn_ASC' | 'ipv6Ecn_DESC' | 'ipv6ExtensionHeaders_ASC' | 'ipv6ExtensionHeaders_DESC' | 'ipv6FlowLabel_ASC' | 'ipv6FlowLabel_DESC' | 'ipv6Identification_ASC' | 'ipv6Identification_DESC' | 'leaseTag_ASC' | 'leaseTag_DESC' | 'mitigationSystem_ASC' | 'mitigationSystem_DESC' | 'outcome_ASC' | 'outcome_DESC' | 'prefixTag_ASC' | 'prefixTag_DESC' | 'sampleInterval_ASC' | 'sampleInterval_DESC' | 'sourceAsnName_ASC' | 'sourceAsnName_DESC' | 'sourceAsn_ASC' | 'sourceAsn_DESC' | 'sourceCountry_ASC' | 'sourceCountry_DESC' | 'sourceGeohash_ASC' | 'sourceGeohash_DESC' | 'sourcePort_ASC' | 'sourcePort_DESC' | 'sourceService_ASC' | 'sourceService_DESC' | 'sum_bits_ASC' | 'sum_bits_DESC' | 'sum_packets_ASC' | 'sum_packets_DESC' | 'system_ASC' | 'system_DESC' | 'tcpAcknowledgementNumber_ASC' | 'tcpAcknowledgementNumber_DESC' | 'tcpChecksum_ASC' | 'tcpChecksum_DESC' | 'tcpDataOffset_ASC' | 'tcpDataOffset_DESC' | 'tcpFlagsString_ASC' | 'tcpFlagsString_DESC' | 'tcpFlags_ASC' | 'tcpFlags_DESC' | 'tcpMss_ASC' | 'tcpMss_DESC' | 'tcpOptions_ASC' | 'tcpOptions_DESC' | 'tcpSackBlocks_ASC' | 'tcpSackBlocks_DESC' | 'tcpSackPermitted_ASC' | 'tcpSackPermitted_DESC' | 'tcpSequenceNumber_ASC' | 'tcpSequenceNumber_DESC' | 'tcpTimestampEcr_ASC' | 'tcpTimestampEcr_DESC' | 'tcpTimestampValue_ASC' | 'tcpTimestampValue_DESC' | 'tcpUrgentPointer_ASC' | 'tcpUrgentPointer_DESC' | 'tcpWindowScale_ASC' | 'tcpWindowScale_DESC' | 'tcpWindowSize_ASC' | 'tcpWindowSize_DESC' | 'udpChecksum_ASC' | 'udpChecksum_DESC' | 'udpPayloadLength_ASC' | 'udpPayloadLength_DESC' | 'verdict_ASC' | 'verdict_DESC'; }; + 'AccountSpectrumNetworkAnalyticsAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'AccountSpectrumNetworkAnalyticsAdaptiveGroupsSum'; fields: { 'bits': { name: 'bits'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'packets': { name: 'packets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountSpectrumNetworkAnalyticsAdaptiveGroupsSumConfidence': { kind: 'OBJECT'; name: 'AccountSpectrumNetworkAnalyticsAdaptiveGroupsSumConfidence'; fields: { 'bits': { name: 'bits'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'packets': { name: 'packets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountStorageTraces': { kind: 'OBJECT'; name: 'AccountStorageTraces'; fields: { 'containerId': { name: 'containerId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'resourceId': { name: 'resourceId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'serviceId': { name: 'serviceId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'traceId': { name: 'traceId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'userAccountId': { name: 'userAccountId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountStorageTracesFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountStorageTracesFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountStorageTracesFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountStorageTracesFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'containerId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'containerId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'containerId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'containerId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'containerId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'containerId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'containerId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'containerId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'containerId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'containerId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'resourceId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resourceId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resourceId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resourceId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'resourceId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resourceId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resourceId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resourceId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resourceId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'resourceId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'serviceId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'serviceId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'serviceId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'serviceId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'serviceId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'serviceId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'serviceId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'serviceId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'serviceId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'serviceId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'traceId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'traceId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'traceId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'traceId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'traceId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'traceId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'traceId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'traceId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'traceId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'traceId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAccountId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAccountId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAccountId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAccountId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userAccountId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAccountId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAccountId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAccountId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAccountId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userAccountId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountStorageTracesOrderBy': { name: 'AccountStorageTracesOrderBy'; enumValues: 'containerId_ASC' | 'containerId_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'resourceId_ASC' | 'resourceId_DESC' | 'serviceId_ASC' | 'serviceId_DESC' | 'traceId_ASC' | 'traceId_DESC' | 'userAccountId_ASC' | 'userAccountId_DESC'; }; + 'AccountStreamCMCDAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountStreamCMCDAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountStreamCMCDAdaptiveGroupsAvg'; ofType: null; } }; 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountStreamCMCDAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountStreamCMCDAdaptiveGroupsDimensions'; ofType: null; } }; 'max': { name: 'max'; type: { kind: 'OBJECT'; name: 'AccountStreamCMCDAdaptiveGroupsMax'; ofType: null; } }; 'quantiles': { name: 'quantiles'; type: { kind: 'OBJECT'; name: 'AccountStreamCMCDAdaptiveGroupsQuantiles'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountStreamCMCDAdaptiveGroupsSum'; ofType: null; } }; 'uniq': { name: 'uniq'; type: { kind: 'OBJECT'; name: 'AccountStreamCMCDAdaptiveGroupsUniq'; ofType: null; } }; }; }; + 'AccountStreamCMCDAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'AccountStreamCMCDAdaptiveGroupsAvg'; fields: { 'bufferLength': { name: 'bufferLength'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'bufferStarvationDuration': { name: 'bufferStarvationDuration'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'encodedBitrate': { name: 'encodedBitrate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'initialBufferStarvationDuration': { name: 'initialBufferStarvationDuration'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'measuredThroughput': { name: 'measuredThroughput'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountStreamCMCDAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountStreamCMCDAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountStreamCMCDAdaptiveGroupsSumConfidence'; ofType: null; } }; }; }; + 'AccountStreamCMCDAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountStreamCMCDAdaptiveGroupsDimensions'; fields: { 'bufferLength': { name: 'bufferLength'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'bufferStarvation': { name: 'bufferStarvation'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'bufferStarvationDuration': { name: 'bufferStarvationDuration'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'contentId': { name: 'contentId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'country': { name: 'country'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'creatorId': { name: 'creatorId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeSixHours': { name: 'datetimeSixHours'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'encodedBitrate': { name: 'encodedBitrate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'hlsType': { name: 'hlsType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'initialBufferStarvationDuration': { name: 'initialBufferStarvationDuration'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'inputId': { name: 'inputId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'measuredThroughput': { name: 'measuredThroughput'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'objectDuration': { name: 'objectDuration'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'playbackRate': { name: 'playbackRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'resolution': { name: 'resolution'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sessionId': { name: 'sessionId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'startup': { name: 'startup'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'streamType': { name: 'streamType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'streamingFormat': { name: 'streamingFormat'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'topBitrate': { name: 'topBitrate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'videoId': { name: 'videoId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountStreamCMCDAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountStreamCMCDAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountStreamCMCDAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountStreamCMCDAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'bufferLength'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'bufferLength_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'bufferLength_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'bufferLength_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'bufferLength_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'bufferLength_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'bufferLength_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'bufferLength_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'bufferStarvation'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'bufferStarvationDuration'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'bufferStarvationDuration_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'bufferStarvationDuration_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'bufferStarvationDuration_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'bufferStarvationDuration_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'bufferStarvationDuration_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'bufferStarvationDuration_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'bufferStarvationDuration_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'bufferStarvation_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'bufferStarvation_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'bufferStarvation_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'bufferStarvation_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'bufferStarvation_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'bufferStarvation_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'bufferStarvation_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'contentId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'contentId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'contentId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'contentId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'contentId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'contentId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'contentId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'contentId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'contentId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'contentId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'country'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'country_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'country_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'country_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'country_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'country_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'country_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'country_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'country_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'country_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'creatorId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'creatorId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'creatorId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'creatorId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'creatorId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'creatorId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'creatorId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'creatorId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'creatorId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'creatorId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'encodedBitrate'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'encodedBitrate_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'encodedBitrate_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'encodedBitrate_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'encodedBitrate_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'encodedBitrate_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'encodedBitrate_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'encodedBitrate_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'hlsType'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'hlsType_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'hlsType_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'hlsType_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'hlsType_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'hlsType_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'hlsType_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'hlsType_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'hlsType_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'hlsType_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'initialBufferStarvationDuration'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'initialBufferStarvationDuration_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'initialBufferStarvationDuration_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'initialBufferStarvationDuration_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'initialBufferStarvationDuration_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'initialBufferStarvationDuration_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'initialBufferStarvationDuration_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'initialBufferStarvationDuration_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'inputId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'inputId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'inputId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'inputId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'inputId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'inputId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'inputId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'inputId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'inputId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'inputId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'measuredThroughput'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'measuredThroughput_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'measuredThroughput_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'measuredThroughput_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'measuredThroughput_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'measuredThroughput_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'measuredThroughput_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'measuredThroughput_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'objectDuration'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'objectDuration_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'objectDuration_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'objectDuration_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'objectDuration_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'objectDuration_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'objectDuration_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'objectDuration_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'playbackRate'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'playbackRate_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'playbackRate_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'playbackRate_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'playbackRate_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'playbackRate_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'playbackRate_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'playbackRate_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'resolution'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resolution_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resolution_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resolution_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'resolution_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resolution_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resolution_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resolution_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resolution_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'resolution_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'startup'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'startup_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'startup_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'startup_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'startup_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'startup_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'startup_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'startup_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'streamType'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'streamType_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'streamType_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'streamType_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'streamType_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'streamType_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'streamType_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'streamType_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'streamType_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'streamType_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'streamingFormat'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'streamingFormat_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'streamingFormat_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'streamingFormat_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'streamingFormat_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'streamingFormat_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'streamingFormat_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'streamingFormat_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'streamingFormat_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'streamingFormat_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'topBitrate'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'topBitrate_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'topBitrate_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'topBitrate_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'topBitrate_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'topBitrate_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'topBitrate_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'topBitrate_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'videoId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'videoId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'videoId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'videoId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'videoId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'videoId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'videoId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'videoId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'videoId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'videoId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountStreamCMCDAdaptiveGroupsMax': { kind: 'OBJECT'; name: 'AccountStreamCMCDAdaptiveGroupsMax'; fields: { 'latestDatetime': { name: 'latestDatetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; }; }; + 'AccountStreamCMCDAdaptiveGroupsOrderBy': { name: 'AccountStreamCMCDAdaptiveGroupsOrderBy'; enumValues: 'avg_bufferLength_ASC' | 'avg_bufferLength_DESC' | 'avg_bufferStarvationDuration_ASC' | 'avg_bufferStarvationDuration_DESC' | 'avg_encodedBitrate_ASC' | 'avg_encodedBitrate_DESC' | 'avg_initialBufferStarvationDuration_ASC' | 'avg_initialBufferStarvationDuration_DESC' | 'avg_measuredThroughput_ASC' | 'avg_measuredThroughput_DESC' | 'bufferLength_ASC' | 'bufferLength_DESC' | 'bufferStarvationDuration_ASC' | 'bufferStarvationDuration_DESC' | 'bufferStarvation_ASC' | 'bufferStarvation_DESC' | 'contentId_ASC' | 'contentId_DESC' | 'count_ASC' | 'count_DESC' | 'country_ASC' | 'country_DESC' | 'creatorId_ASC' | 'creatorId_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetimeSixHours_ASC' | 'datetimeSixHours_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'encodedBitrate_ASC' | 'encodedBitrate_DESC' | 'hlsType_ASC' | 'hlsType_DESC' | 'initialBufferStarvationDuration_ASC' | 'initialBufferStarvationDuration_DESC' | 'inputId_ASC' | 'inputId_DESC' | 'max_latestDatetime_ASC' | 'max_latestDatetime_DESC' | 'measuredThroughput_ASC' | 'measuredThroughput_DESC' | 'mediaType_ASC' | 'mediaType_DESC' | 'millisecondsViewed_ASC' | 'millisecondsViewed_DESC' | 'objectDuration_ASC' | 'objectDuration_DESC' | 'playbackRate_ASC' | 'playbackRate_DESC' | 'quantiles_bufferStarvationDurationP50_ASC' | 'quantiles_bufferStarvationDurationP50_DESC' | 'quantiles_bufferStarvationDurationP75_ASC' | 'quantiles_bufferStarvationDurationP75_DESC' | 'quantiles_bufferStarvationDurationP90_ASC' | 'quantiles_bufferStarvationDurationP90_DESC' | 'quantiles_bufferStarvationDurationP99_ASC' | 'quantiles_bufferStarvationDurationP99_DESC' | 'quantiles_initialBufferStarvationDurationP50_ASC' | 'quantiles_initialBufferStarvationDurationP50_DESC' | 'quantiles_initialBufferStarvationDurationP75_ASC' | 'quantiles_initialBufferStarvationDurationP75_DESC' | 'quantiles_initialBufferStarvationDurationP90_ASC' | 'quantiles_initialBufferStarvationDurationP90_DESC' | 'quantiles_initialBufferStarvationDurationP99_ASC' | 'quantiles_initialBufferStarvationDurationP99_DESC' | 'resolution_ASC' | 'resolution_DESC' | 'responseStatus_ASC' | 'responseStatus_DESC' | 'sessionId_ASC' | 'sessionId_DESC' | 'startup_ASC' | 'startup_DESC' | 'streamType_ASC' | 'streamType_DESC' | 'streamingFormat_ASC' | 'streamingFormat_DESC' | 'sum_millisecondsViewed_ASC' | 'sum_millisecondsViewed_DESC' | 'topBitrate_ASC' | 'topBitrate_DESC' | 'uniq_viewers_ASC' | 'uniq_viewers_DESC' | 'videoId_ASC' | 'videoId_DESC'; }; + 'AccountStreamCMCDAdaptiveGroupsQuantiles': { kind: 'OBJECT'; name: 'AccountStreamCMCDAdaptiveGroupsQuantiles'; fields: { 'bufferStarvationDurationP50': { name: 'bufferStarvationDurationP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'bufferStarvationDurationP75': { name: 'bufferStarvationDurationP75'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'bufferStarvationDurationP90': { name: 'bufferStarvationDurationP90'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'bufferStarvationDurationP99': { name: 'bufferStarvationDurationP99'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'initialBufferStarvationDurationP50': { name: 'initialBufferStarvationDurationP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'initialBufferStarvationDurationP75': { name: 'initialBufferStarvationDurationP75'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'initialBufferStarvationDurationP90': { name: 'initialBufferStarvationDurationP90'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'initialBufferStarvationDurationP99': { name: 'initialBufferStarvationDurationP99'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountStreamCMCDAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'AccountStreamCMCDAdaptiveGroupsSum'; fields: { 'millisecondsViewed': { name: 'millisecondsViewed'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountStreamCMCDAdaptiveGroupsSumConfidence': { kind: 'OBJECT'; name: 'AccountStreamCMCDAdaptiveGroupsSumConfidence'; fields: { 'millisecondsViewed': { name: 'millisecondsViewed'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountStreamCMCDAdaptiveGroupsUniq': { kind: 'OBJECT'; name: 'AccountStreamCMCDAdaptiveGroupsUniq'; fields: { 'viewers': { name: 'viewers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountStreamMinutesViewedAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountStreamMinutesViewedAdaptiveGroups'; fields: { 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountStreamMinutesViewedAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountStreamMinutesViewedAdaptiveGroupsDimensions'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountStreamMinutesViewedAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'AccountStreamMinutesViewedAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountStreamMinutesViewedAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountStreamMinutesViewedAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountStreamMinutesViewedAdaptiveGroupsDimensions'; fields: { 'clientCountryName': { name: 'clientCountryName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'creator': { name: 'creator'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'mediaType': { name: 'mediaType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'uid': { name: 'uid'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountStreamMinutesViewedAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountStreamMinutesViewedAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountStreamMinutesViewedAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountStreamMinutesViewedAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientCountryName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientCountryName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientCountryName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'creator'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'creator_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'creator_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'creator_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'creator_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'creator_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'creator_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'creator_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'creator_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'creator_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'mediaType'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mediaType_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mediaType_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mediaType_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'mediaType_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mediaType_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mediaType_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mediaType_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mediaType_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'mediaType_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uid'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uid_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uid_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uid_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'uid_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uid_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uid_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uid_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uid_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'uid_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountStreamMinutesViewedAdaptiveGroupsOrderBy': { name: 'AccountStreamMinutesViewedAdaptiveGroupsOrderBy'; enumValues: 'clientCountryName_ASC' | 'clientCountryName_DESC' | 'count_ASC' | 'count_DESC' | 'creator_ASC' | 'creator_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'mediaType_ASC' | 'mediaType_DESC' | 'sum_minutesViewed_ASC' | 'sum_minutesViewed_DESC' | 'uid_ASC' | 'uid_DESC'; }; + 'AccountStreamMinutesViewedAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'AccountStreamMinutesViewedAdaptiveGroupsSum'; fields: { 'minutesViewed': { name: 'minutesViewed'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountToMarkdownConversionAdaptive': { kind: 'OBJECT'; name: 'AccountToMarkdownConversionAdaptive'; fields: { 'conversionId': { name: 'conversionId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'durationMs': { name: 'durationMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'errorReason': { name: 'errorReason'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'fileName': { name: 'fileName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'fileSize': { name: 'fileSize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'mimeType': { name: 'mimeType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'options': { name: 'options'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'outputSize': { name: 'outputSize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'parentConversion': { name: 'parentConversion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'requestId': { name: 'requestId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'result': { name: 'result'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'service': { name: 'service'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'source': { name: 'source'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountToMarkdownConversionAdaptiveFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountToMarkdownConversionAdaptiveFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountToMarkdownConversionAdaptiveFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountToMarkdownConversionAdaptiveFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'conversionId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'conversionId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'conversionId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'conversionId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'conversionId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'conversionId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'conversionId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'conversionId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'conversionId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'conversionId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'durationMs'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'durationMs_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'durationMs_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'durationMs_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'durationMs_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'durationMs_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'durationMs_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'durationMs_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'errorReason'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'errorReason_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'errorReason_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'errorReason_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'errorReason_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'errorReason_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'errorReason_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'errorReason_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'errorReason_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'errorReason_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fileName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fileName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fileName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fileName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'fileName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fileName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fileName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fileName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fileName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'fileName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fileSize'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'fileSize_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'fileSize_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'fileSize_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'fileSize_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'fileSize_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'fileSize_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'fileSize_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'mimeType'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mimeType_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mimeType_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mimeType_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'mimeType_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mimeType_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mimeType_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mimeType_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mimeType_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'mimeType_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'options'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'options_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'options_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'options_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'options_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'options_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'options_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'options_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'options_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'options_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outputSize'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'outputSize_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'outputSize_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'outputSize_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'outputSize_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'outputSize_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'outputSize_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'outputSize_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'parentConversion'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'parentConversion_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'parentConversion_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'parentConversion_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'parentConversion_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'parentConversion_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'parentConversion_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'parentConversion_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'parentConversion_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'parentConversion_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'requestId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'requestId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'result'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'result_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'result_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'result_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'result_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'result_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'result_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'result_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'result_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'result_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'service'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'service_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'service_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'service_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'service_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'service_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'service_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'service_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'service_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'service_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'source'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'source_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'source_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'source_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'source_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'source_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'source_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'source_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'source_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'source_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountToMarkdownConversionAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountToMarkdownConversionAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountToMarkdownConversionAdaptiveGroupsAvg'; ofType: null; } }; 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountToMarkdownConversionAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountToMarkdownConversionAdaptiveGroupsDimensions'; ofType: null; } }; 'max': { name: 'max'; type: { kind: 'OBJECT'; name: 'AccountToMarkdownConversionAdaptiveGroupsMax'; ofType: null; } }; 'min': { name: 'min'; type: { kind: 'OBJECT'; name: 'AccountToMarkdownConversionAdaptiveGroupsMin'; ofType: null; } }; }; }; + 'AccountToMarkdownConversionAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'AccountToMarkdownConversionAdaptiveGroupsAvg'; fields: { 'completed': { name: 'completed'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'durationMs': { name: 'durationMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'fileSize': { name: 'fileSize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; }; }; + 'AccountToMarkdownConversionAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountToMarkdownConversionAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountToMarkdownConversionAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountToMarkdownConversionAdaptiveGroupsDimensions'; fields: { 'conversionId': { name: 'conversionId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'durationMs': { name: 'durationMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'errorReason': { name: 'errorReason'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'fileName': { name: 'fileName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'fileSize': { name: 'fileSize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'mimeType': { name: 'mimeType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'options': { name: 'options'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'outputSize': { name: 'outputSize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'parentConversion': { name: 'parentConversion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'requestId': { name: 'requestId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'result': { name: 'result'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'service': { name: 'service'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'source': { name: 'source'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountToMarkdownConversionAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountToMarkdownConversionAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountToMarkdownConversionAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountToMarkdownConversionAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'conversionId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'conversionId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'conversionId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'conversionId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'conversionId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'conversionId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'conversionId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'conversionId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'conversionId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'conversionId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'durationMs'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'durationMs_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'durationMs_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'durationMs_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'durationMs_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'durationMs_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'durationMs_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'durationMs_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'errorReason'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'errorReason_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'errorReason_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'errorReason_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'errorReason_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'errorReason_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'errorReason_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'errorReason_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'errorReason_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'errorReason_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fileName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fileName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fileName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fileName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'fileName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fileName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fileName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fileName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fileName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'fileName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fileSize'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'fileSize_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'fileSize_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'fileSize_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'fileSize_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'fileSize_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'fileSize_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'fileSize_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'mimeType'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mimeType_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mimeType_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mimeType_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'mimeType_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mimeType_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mimeType_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mimeType_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mimeType_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'mimeType_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'options'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'options_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'options_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'options_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'options_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'options_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'options_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'options_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'options_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'options_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'outputSize'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'outputSize_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'outputSize_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'outputSize_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'outputSize_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'outputSize_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'outputSize_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'outputSize_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'parentConversion'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'parentConversion_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'parentConversion_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'parentConversion_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'parentConversion_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'parentConversion_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'parentConversion_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'parentConversion_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'parentConversion_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'parentConversion_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'requestId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'requestId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'result'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'result_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'result_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'result_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'result_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'result_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'result_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'result_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'result_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'result_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'service'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'service_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'service_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'service_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'service_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'service_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'service_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'service_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'service_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'service_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'source'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'source_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'source_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'source_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'source_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'source_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'source_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'source_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'source_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'source_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountToMarkdownConversionAdaptiveGroupsMax': { kind: 'OBJECT'; name: 'AccountToMarkdownConversionAdaptiveGroupsMax'; fields: { 'completed': { name: 'completed'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'durationMs': { name: 'durationMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'fileSize': { name: 'fileSize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; }; }; + 'AccountToMarkdownConversionAdaptiveGroupsMin': { kind: 'OBJECT'; name: 'AccountToMarkdownConversionAdaptiveGroupsMin'; fields: { 'completed': { name: 'completed'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'durationMs': { name: 'durationMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'fileSize': { name: 'fileSize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; }; }; + 'AccountToMarkdownConversionAdaptiveGroupsOrderBy': { name: 'AccountToMarkdownConversionAdaptiveGroupsOrderBy'; enumValues: 'avg_completed_ASC' | 'avg_completed_DESC' | 'avg_durationMs_ASC' | 'avg_durationMs_DESC' | 'avg_fileSize_ASC' | 'avg_fileSize_DESC' | 'conversionId_ASC' | 'conversionId_DESC' | 'count_ASC' | 'count_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'durationMs_ASC' | 'durationMs_DESC' | 'errorReason_ASC' | 'errorReason_DESC' | 'fileName_ASC' | 'fileName_DESC' | 'fileSize_ASC' | 'fileSize_DESC' | 'max_completed_ASC' | 'max_completed_DESC' | 'max_durationMs_ASC' | 'max_durationMs_DESC' | 'max_fileSize_ASC' | 'max_fileSize_DESC' | 'mimeType_ASC' | 'mimeType_DESC' | 'min_completed_ASC' | 'min_completed_DESC' | 'min_durationMs_ASC' | 'min_durationMs_DESC' | 'min_fileSize_ASC' | 'min_fileSize_DESC' | 'options_ASC' | 'options_DESC' | 'outputSize_ASC' | 'outputSize_DESC' | 'parentConversion_ASC' | 'parentConversion_DESC' | 'requestId_ASC' | 'requestId_DESC' | 'result_ASC' | 'result_DESC' | 'service_ASC' | 'service_DESC' | 'source_ASC' | 'source_DESC'; }; + 'AccountToMarkdownConversionAdaptiveOrderBy': { name: 'AccountToMarkdownConversionAdaptiveOrderBy'; enumValues: 'conversionId_ASC' | 'conversionId_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'durationMs_ASC' | 'durationMs_DESC' | 'errorReason_ASC' | 'errorReason_DESC' | 'fileName_ASC' | 'fileName_DESC' | 'fileSize_ASC' | 'fileSize_DESC' | 'mimeType_ASC' | 'mimeType_DESC' | 'options_ASC' | 'options_DESC' | 'outputSize_ASC' | 'outputSize_DESC' | 'parentConversion_ASC' | 'parentConversion_DESC' | 'requestId_ASC' | 'requestId_DESC' | 'result_ASC' | 'result_DESC' | 'service_ASC' | 'service_DESC' | 'source_ASC' | 'source_DESC'; }; + 'AccountTurnstileAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountTurnstileAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountTurnstileAdaptiveGroupsAvg'; ofType: null; } }; 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountTurnstileAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountTurnstileAdaptiveGroupsDimensions'; ofType: null; } }; }; }; + 'AccountTurnstileAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'AccountTurnstileAdaptiveGroupsAvg'; fields: { 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountTurnstileAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountTurnstileAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountTurnstileAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountTurnstileAdaptiveGroupsDimensions'; fields: { 'action': { name: 'action'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'asn': { name: 'asn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'browserMajor': { name: 'browserMajor'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'browserName': { name: 'browserName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'countryCode': { name: 'countryCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeDay': { name: 'datetimeDay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHalfOfHour': { name: 'datetimeHalfOfHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'eventType': { name: 'eventType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'hostname': { name: 'hostname'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipv4': { name: 'ipv4'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipv6': { name: 'ipv6'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'osMajor': { name: 'osMajor'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'osName': { name: 'osName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'siteKey': { name: 'siteKey'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'userAgent': { name: 'userAgent'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountTurnstileAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountTurnstileAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountTurnstileAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountTurnstileAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'action'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'action_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'action_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'asn'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'asn_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'asn_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'asn_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'asn_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'asn_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'asn_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'asn_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'browserMajor'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'browserMajor_geq'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'browserMajor_gt'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'browserMajor_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; }; }; defaultValue: null }, { name: 'browserMajor_leq'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'browserMajor_lt'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'browserMajor_neq'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'browserMajor_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; }; }; defaultValue: null }, { name: 'browserName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'browserName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'browserName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'browserName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'browserName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'browserName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'browserName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'browserName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'browserName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'browserName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'countryCode'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'countryCode_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'countryCode_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'countryCode_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'countryCode_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'countryCode_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'countryCode_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'countryCode_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'countryCode_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'countryCode_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeDay'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeDay_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeDay_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeDay_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeDay_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeDay_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeDay_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeDay_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHalfOfHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHalfOfHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'eventType'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventType_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventType_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventType_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'eventType_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventType_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventType_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventType_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventType_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'eventType_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'hostname'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'hostname_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'hostname_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'hostname_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'hostname_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'hostname_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'hostname_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'hostname_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'hostname_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'hostname_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv4_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv4_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv4_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv6_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipv6_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ipv6_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'osMajor'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'osMajor_geq'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'osMajor_gt'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'osMajor_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; }; }; defaultValue: null }, { name: 'osMajor_leq'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'osMajor_lt'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'osMajor_neq'; type: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; defaultValue: null }, { name: 'osMajor_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; }; }; defaultValue: null }, { name: 'osName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'osName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'osName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'osName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'osName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'osName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'osName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'osName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'osName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'osName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'siteKey'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'siteKey_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'siteKey_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'siteKey_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'siteKey_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'siteKey_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'siteKey_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'siteKey_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'siteKey_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'siteKey_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userAgent_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userAgent_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountTurnstileAdaptiveGroupsOrderBy': { name: 'AccountTurnstileAdaptiveGroupsOrderBy'; enumValues: 'action_ASC' | 'action_DESC' | 'asn_ASC' | 'asn_DESC' | 'avg_sampleInterval_ASC' | 'avg_sampleInterval_DESC' | 'browserMajor_ASC' | 'browserMajor_DESC' | 'browserName_ASC' | 'browserName_DESC' | 'count_ASC' | 'count_DESC' | 'countryCode_ASC' | 'countryCode_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeDay_ASC' | 'datetimeDay_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHalfOfHour_ASC' | 'datetimeHalfOfHour_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'eventType_ASC' | 'eventType_DESC' | 'hostname_ASC' | 'hostname_DESC' | 'ipv4_ASC' | 'ipv4_DESC' | 'ipv6_ASC' | 'ipv6_DESC' | 'osMajor_ASC' | 'osMajor_DESC' | 'osName_ASC' | 'osName_DESC' | 'siteKey_ASC' | 'siteKey_DESC' | 'userAgent_ASC' | 'userAgent_DESC'; }; + 'AccountVectorizeQueriesAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountVectorizeQueriesAdaptiveGroups'; fields: { 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountVectorizeQueriesAdaptiveGroupsDimensions'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountVectorizeQueriesAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'AccountVectorizeQueriesAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountVectorizeQueriesAdaptiveGroupsDimensions'; fields: { 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'vectorizeIndexId': { name: 'vectorizeIndexId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountVectorizeQueriesAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountVectorizeQueriesAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountVectorizeQueriesAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountVectorizeQueriesAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'vectorizeIndexId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'vectorizeIndexId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'vectorizeIndexId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'vectorizeIndexId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'vectorizeIndexId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'vectorizeIndexId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'vectorizeIndexId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'vectorizeIndexId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'vectorizeIndexId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'vectorizeIndexId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountVectorizeQueriesAdaptiveGroupsOrderBy': { name: 'AccountVectorizeQueriesAdaptiveGroupsOrderBy'; enumValues: 'date_ASC' | 'date_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'sum_queriedVectorDimensions_ASC' | 'sum_queriedVectorDimensions_DESC' | 'vectorizeIndexId_ASC' | 'vectorizeIndexId_DESC'; }; + 'AccountVectorizeQueriesAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'AccountVectorizeQueriesAdaptiveGroupsSum'; fields: { 'queriedVectorDimensions': { name: 'queriedVectorDimensions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountVectorizeStorageAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountVectorizeStorageAdaptiveGroups'; fields: { 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountVectorizeStorageAdaptiveGroupsDimensions'; ofType: null; } }; 'max': { name: 'max'; type: { kind: 'OBJECT'; name: 'AccountVectorizeStorageAdaptiveGroupsMax'; ofType: null; } }; }; }; + 'AccountVectorizeStorageAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountVectorizeStorageAdaptiveGroupsDimensions'; fields: { 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'vectorizeIndexId': { name: 'vectorizeIndexId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountVectorizeStorageAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountVectorizeStorageAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountVectorizeStorageAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountVectorizeStorageAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'vectorizeIndexId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'vectorizeIndexId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'vectorizeIndexId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'vectorizeIndexId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'vectorizeIndexId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'vectorizeIndexId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'vectorizeIndexId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'vectorizeIndexId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'vectorizeIndexId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'vectorizeIndexId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountVectorizeStorageAdaptiveGroupsMax': { kind: 'OBJECT'; name: 'AccountVectorizeStorageAdaptiveGroupsMax'; fields: { 'storedVectorDimensions': { name: 'storedVectorDimensions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountVectorizeStorageAdaptiveGroupsOrderBy': { name: 'AccountVectorizeStorageAdaptiveGroupsOrderBy'; enumValues: 'date_ASC' | 'date_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'max_storedVectorDimensions_ASC' | 'max_storedVectorDimensions_DESC' | 'vectorizeIndexId_ASC' | 'vectorizeIndexId_DESC'; }; + 'AccountVectorizeV2OperationsAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountVectorizeV2OperationsAdaptiveGroups'; fields: { 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountVectorizeV2OperationsAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountVectorizeV2OperationsAdaptiveGroupsDimensions'; ofType: null; } }; }; }; + 'AccountVectorizeV2OperationsAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountVectorizeV2OperationsAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountVectorizeV2OperationsAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountVectorizeV2OperationsAdaptiveGroupsDimensions'; fields: { 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'indexName': { name: 'indexName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'operation': { name: 'operation'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'requestStatus': { name: 'requestStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountVectorizeV2OperationsAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountVectorizeV2OperationsAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountVectorizeV2OperationsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountVectorizeV2OperationsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'indexName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'indexName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'indexName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'indexName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'indexName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'indexName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'indexName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'indexName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'indexName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'indexName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'operation'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'operation_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'operation_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'operation_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'operation_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'operation_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'operation_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'operation_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'requestStatus'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestStatus_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestStatus_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestStatus_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'requestStatus_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestStatus_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestStatus_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestStatus_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestStatus_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'requestStatus_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountVectorizeV2OperationsAdaptiveGroupsOrderBy': { name: 'AccountVectorizeV2OperationsAdaptiveGroupsOrderBy'; enumValues: 'count_ASC' | 'count_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'indexName_ASC' | 'indexName_DESC' | 'operation_ASC' | 'operation_DESC' | 'requestStatus_ASC' | 'requestStatus_DESC'; }; + 'AccountVectorizeV2QueriesAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountVectorizeV2QueriesAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountVectorizeV2QueriesAdaptiveGroupsAvg'; ofType: null; } }; 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountVectorizeV2QueriesAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountVectorizeV2QueriesAdaptiveGroupsDimensions'; ofType: null; } }; 'quantiles': { name: 'quantiles'; type: { kind: 'OBJECT'; name: 'AccountVectorizeV2QueriesAdaptiveGroupsQuantiles'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountVectorizeV2QueriesAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'AccountVectorizeV2QueriesAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'AccountVectorizeV2QueriesAdaptiveGroupsAvg'; fields: { 'requestDurationMs': { name: 'requestDurationMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountVectorizeV2QueriesAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountVectorizeV2QueriesAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountVectorizeV2QueriesAdaptiveGroupsSumConfidence'; ofType: null; } }; }; }; + 'AccountVectorizeV2QueriesAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountVectorizeV2QueriesAdaptiveGroupsDimensions'; fields: { 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'indexName': { name: 'indexName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'operation': { name: 'operation'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'requestStatus': { name: 'requestStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountVectorizeV2QueriesAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountVectorizeV2QueriesAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountVectorizeV2QueriesAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountVectorizeV2QueriesAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'indexName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'indexName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'indexName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'indexName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'indexName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'indexName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'indexName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'indexName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'indexName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'indexName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'operation'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'operation_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'operation_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'operation_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'operation_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'operation_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'operation_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'operation_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'requestStatus'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestStatus_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestStatus_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestStatus_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'requestStatus_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestStatus_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestStatus_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestStatus_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestStatus_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'requestStatus_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountVectorizeV2QueriesAdaptiveGroupsOrderBy': { name: 'AccountVectorizeV2QueriesAdaptiveGroupsOrderBy'; enumValues: 'avg_requestDurationMs_ASC' | 'avg_requestDurationMs_DESC' | 'count_ASC' | 'count_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'indexName_ASC' | 'indexName_DESC' | 'operation_ASC' | 'operation_DESC' | 'quantiles_requestDurationMsP25_ASC' | 'quantiles_requestDurationMsP25_DESC' | 'quantiles_requestDurationMsP50_ASC' | 'quantiles_requestDurationMsP50_DESC' | 'quantiles_requestDurationMsP75_ASC' | 'quantiles_requestDurationMsP75_DESC' | 'quantiles_requestDurationMsP95_ASC' | 'quantiles_requestDurationMsP95_DESC' | 'quantiles_requestDurationMsP99_ASC' | 'quantiles_requestDurationMsP99_DESC' | 'requestStatus_ASC' | 'requestStatus_DESC' | 'sum_queriedVectorDimensions_ASC' | 'sum_queriedVectorDimensions_DESC' | 'sum_requestDurationMs_ASC' | 'sum_requestDurationMs_DESC' | 'sum_servedVectorCount_ASC' | 'sum_servedVectorCount_DESC'; }; + 'AccountVectorizeV2QueriesAdaptiveGroupsQuantiles': { kind: 'OBJECT'; name: 'AccountVectorizeV2QueriesAdaptiveGroupsQuantiles'; fields: { 'requestDurationMsP25': { name: 'requestDurationMsP25'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'requestDurationMsP50': { name: 'requestDurationMsP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'requestDurationMsP75': { name: 'requestDurationMsP75'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'requestDurationMsP95': { name: 'requestDurationMsP95'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'requestDurationMsP99': { name: 'requestDurationMsP99'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; }; }; + 'AccountVectorizeV2QueriesAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'AccountVectorizeV2QueriesAdaptiveGroupsSum'; fields: { 'queriedVectorDimensions': { name: 'queriedVectorDimensions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'requestDurationMs': { name: 'requestDurationMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'servedVectorCount': { name: 'servedVectorCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountVectorizeV2QueriesAdaptiveGroupsSumConfidence': { kind: 'OBJECT'; name: 'AccountVectorizeV2QueriesAdaptiveGroupsSumConfidence'; fields: { 'requestDurationMs': { name: 'requestDurationMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'servedVectorCount': { name: 'servedVectorCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountVectorizeV2StorageAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountVectorizeV2StorageAdaptiveGroups'; fields: { 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountVectorizeV2StorageAdaptiveGroupsDimensions'; ofType: null; } }; 'max': { name: 'max'; type: { kind: 'OBJECT'; name: 'AccountVectorizeV2StorageAdaptiveGroupsMax'; ofType: null; } }; }; }; + 'AccountVectorizeV2StorageAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountVectorizeV2StorageAdaptiveGroupsDimensions'; fields: { 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'indexName': { name: 'indexName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountVectorizeV2StorageAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountVectorizeV2StorageAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountVectorizeV2StorageAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountVectorizeV2StorageAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'indexName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'indexName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'indexName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'indexName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'indexName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'indexName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'indexName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'indexName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'indexName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'indexName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountVectorizeV2StorageAdaptiveGroupsMax': { kind: 'OBJECT'; name: 'AccountVectorizeV2StorageAdaptiveGroupsMax'; fields: { 'storedVectorDimensions': { name: 'storedVectorDimensions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'vectorCount': { name: 'vectorCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountVectorizeV2StorageAdaptiveGroupsOrderBy': { name: 'AccountVectorizeV2StorageAdaptiveGroupsOrderBy'; enumValues: 'date_ASC' | 'date_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'indexName_ASC' | 'indexName_DESC' | 'max_storedVectorDimensions_ASC' | 'max_storedVectorDimensions_DESC' | 'max_vectorCount_ASC' | 'max_vectorCount_DESC'; }; + 'AccountVectorizeV2WritesAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountVectorizeV2WritesAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountVectorizeV2WritesAdaptiveGroupsAvg'; ofType: null; } }; 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountVectorizeV2WritesAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountVectorizeV2WritesAdaptiveGroupsDimensions'; ofType: null; } }; 'quantiles': { name: 'quantiles'; type: { kind: 'OBJECT'; name: 'AccountVectorizeV2WritesAdaptiveGroupsQuantiles'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountVectorizeV2WritesAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'AccountVectorizeV2WritesAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'AccountVectorizeV2WritesAdaptiveGroupsAvg'; fields: { 'requestDurationMs': { name: 'requestDurationMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountVectorizeV2WritesAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountVectorizeV2WritesAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountVectorizeV2WritesAdaptiveGroupsSumConfidence'; ofType: null; } }; }; }; + 'AccountVectorizeV2WritesAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountVectorizeV2WritesAdaptiveGroupsDimensions'; fields: { 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'indexName': { name: 'indexName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'operation': { name: 'operation'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'requestStatus': { name: 'requestStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountVectorizeV2WritesAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountVectorizeV2WritesAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountVectorizeV2WritesAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountVectorizeV2WritesAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'indexName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'indexName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'indexName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'indexName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'indexName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'indexName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'indexName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'indexName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'indexName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'indexName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'operation'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'operation_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'operation_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'operation_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'operation_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'operation_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'operation_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'operation_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'requestStatus'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestStatus_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestStatus_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestStatus_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'requestStatus_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestStatus_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestStatus_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestStatus_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestStatus_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'requestStatus_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountVectorizeV2WritesAdaptiveGroupsOrderBy': { name: 'AccountVectorizeV2WritesAdaptiveGroupsOrderBy'; enumValues: 'avg_requestDurationMs_ASC' | 'avg_requestDurationMs_DESC' | 'count_ASC' | 'count_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'indexName_ASC' | 'indexName_DESC' | 'operation_ASC' | 'operation_DESC' | 'quantiles_requestDurationMsP25_ASC' | 'quantiles_requestDurationMsP25_DESC' | 'quantiles_requestDurationMsP50_ASC' | 'quantiles_requestDurationMsP50_DESC' | 'quantiles_requestDurationMsP75_ASC' | 'quantiles_requestDurationMsP75_DESC' | 'quantiles_requestDurationMsP95_ASC' | 'quantiles_requestDurationMsP95_DESC' | 'quantiles_requestDurationMsP99_ASC' | 'quantiles_requestDurationMsP99_DESC' | 'requestStatus_ASC' | 'requestStatus_DESC' | 'sum_addedVectorCount_ASC' | 'sum_addedVectorCount_DESC' | 'sum_deletedVectorCount_ASC' | 'sum_deletedVectorCount_DESC' | 'sum_requestDurationMs_ASC' | 'sum_requestDurationMs_DESC'; }; + 'AccountVectorizeV2WritesAdaptiveGroupsQuantiles': { kind: 'OBJECT'; name: 'AccountVectorizeV2WritesAdaptiveGroupsQuantiles'; fields: { 'requestDurationMsP25': { name: 'requestDurationMsP25'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'requestDurationMsP50': { name: 'requestDurationMsP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'requestDurationMsP75': { name: 'requestDurationMsP75'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'requestDurationMsP95': { name: 'requestDurationMsP95'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'requestDurationMsP99': { name: 'requestDurationMsP99'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; }; }; + 'AccountVectorizeV2WritesAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'AccountVectorizeV2WritesAdaptiveGroupsSum'; fields: { 'addedVectorCount': { name: 'addedVectorCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'deletedVectorCount': { name: 'deletedVectorCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'requestDurationMs': { name: 'requestDurationMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountVectorizeV2WritesAdaptiveGroupsSumConfidence': { kind: 'OBJECT'; name: 'AccountVectorizeV2WritesAdaptiveGroupsSumConfidence'; fields: { 'addedVectorCount': { name: 'addedVectorCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'deletedVectorCount': { name: 'deletedVectorCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'requestDurationMs': { name: 'requestDurationMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountVideoBufferEventsAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountVideoBufferEventsAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountVideoBufferEventsAdaptiveGroupsAvg'; ofType: null; } }; 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountVideoBufferEventsAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountVideoBufferEventsAdaptiveGroupsDimensions'; ofType: null; } }; }; }; + 'AccountVideoBufferEventsAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'AccountVideoBufferEventsAdaptiveGroupsAvg'; fields: { 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountVideoBufferEventsAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountVideoBufferEventsAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountVideoBufferEventsAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountVideoBufferEventsAdaptiveGroupsDimensions'; fields: { 'clientCountryName': { name: 'clientCountryName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHalfOfHour': { name: 'datetimeHalfOfHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'deviceBrowser': { name: 'deviceBrowser'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'deviceOs': { name: 'deviceOs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'deviceType': { name: 'deviceType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'uid': { name: 'uid'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountVideoBufferEventsAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountVideoBufferEventsAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountVideoBufferEventsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountVideoBufferEventsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientCountryName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientCountryName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientCountryName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHalfOfHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHalfOfHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceBrowser'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceBrowser_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceBrowser_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceBrowser_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceBrowser_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceBrowser_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceBrowser_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceBrowser_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceBrowser_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceBrowser_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceOs'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceOs_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceOs_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceOs_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceOs_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceOs_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceOs_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceOs_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceOs_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceOs_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceType_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceType_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uid'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uid_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uid_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uid_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'uid_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uid_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uid_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uid_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uid_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'uid_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountVideoBufferEventsAdaptiveGroupsOrderBy': { name: 'AccountVideoBufferEventsAdaptiveGroupsOrderBy'; enumValues: 'avg_sampleInterval_ASC' | 'avg_sampleInterval_DESC' | 'clientCountryName_ASC' | 'clientCountryName_DESC' | 'count_ASC' | 'count_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHalfOfHour_ASC' | 'datetimeHalfOfHour_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'deviceBrowser_ASC' | 'deviceBrowser_DESC' | 'deviceOs_ASC' | 'deviceOs_DESC' | 'deviceType_ASC' | 'deviceType_DESC' | 'eventType_ASC' | 'eventType_DESC' | 'uid_ASC' | 'uid_DESC'; }; + 'AccountVideoPlaybackEventsAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountVideoPlaybackEventsAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountVideoPlaybackEventsAdaptiveGroupsAvg'; ofType: null; } }; 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountVideoPlaybackEventsAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountVideoPlaybackEventsAdaptiveGroupsDimensions'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountVideoPlaybackEventsAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'AccountVideoPlaybackEventsAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'AccountVideoPlaybackEventsAdaptiveGroupsAvg'; fields: { 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountVideoPlaybackEventsAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountVideoPlaybackEventsAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountVideoPlaybackEventsAdaptiveGroupsSumConfidence'; ofType: null; } }; }; }; + 'AccountVideoPlaybackEventsAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountVideoPlaybackEventsAdaptiveGroupsDimensions'; fields: { 'clientCountryName': { name: 'clientCountryName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHalfOfHour': { name: 'datetimeHalfOfHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'deviceBrowser': { name: 'deviceBrowser'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'deviceOs': { name: 'deviceOs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'deviceType': { name: 'deviceType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'uid': { name: 'uid'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountVideoPlaybackEventsAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountVideoPlaybackEventsAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountVideoPlaybackEventsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountVideoPlaybackEventsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientCountryName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientCountryName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientCountryName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHalfOfHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHalfOfHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceBrowser'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceBrowser_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceBrowser_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceBrowser_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceBrowser_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceBrowser_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceBrowser_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceBrowser_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceBrowser_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceBrowser_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceOs'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceOs_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceOs_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceOs_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceOs_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceOs_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceOs_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceOs_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceOs_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceOs_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceType_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceType_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uid'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uid_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uid_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uid_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'uid_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uid_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uid_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uid_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uid_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'uid_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountVideoPlaybackEventsAdaptiveGroupsOrderBy': { name: 'AccountVideoPlaybackEventsAdaptiveGroupsOrderBy'; enumValues: 'avg_sampleInterval_ASC' | 'avg_sampleInterval_DESC' | 'clientCountryName_ASC' | 'clientCountryName_DESC' | 'count_ASC' | 'count_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHalfOfHour_ASC' | 'datetimeHalfOfHour_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'deviceBrowser_ASC' | 'deviceBrowser_DESC' | 'deviceOs_ASC' | 'deviceOs_DESC' | 'deviceType_ASC' | 'deviceType_DESC' | 'sum_timeViewedMinutes_ASC' | 'sum_timeViewedMinutes_DESC' | 'uid_ASC' | 'uid_DESC'; }; + 'AccountVideoPlaybackEventsAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'AccountVideoPlaybackEventsAdaptiveGroupsSum'; fields: { 'timeViewedMinutes': { name: 'timeViewedMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountVideoPlaybackEventsAdaptiveGroupsSumConfidence': { kind: 'OBJECT'; name: 'AccountVideoPlaybackEventsAdaptiveGroupsSumConfidence'; fields: { 'timeViewedMinutes': { name: 'timeViewedMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountVideoQualityEventsAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountVideoQualityEventsAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountVideoQualityEventsAdaptiveGroupsAvg'; ofType: null; } }; 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountVideoQualityEventsAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountVideoQualityEventsAdaptiveGroupsDimensions'; ofType: null; } }; }; }; + 'AccountVideoQualityEventsAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'AccountVideoQualityEventsAdaptiveGroupsAvg'; fields: { 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountVideoQualityEventsAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountVideoQualityEventsAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountVideoQualityEventsAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountVideoQualityEventsAdaptiveGroupsDimensions'; fields: { 'clientCountryName': { name: 'clientCountryName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHalfOfHour': { name: 'datetimeHalfOfHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'deviceBrowser': { name: 'deviceBrowser'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'deviceOs': { name: 'deviceOs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'deviceType': { name: 'deviceType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'qualityResolution': { name: 'qualityResolution'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'uid': { name: 'uid'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountVideoQualityEventsAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountVideoQualityEventsAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountVideoQualityEventsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountVideoQualityEventsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientCountryName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientCountryName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientCountryName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHalfOfHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHalfOfHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceBrowser'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceBrowser_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceBrowser_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceBrowser_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceBrowser_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceBrowser_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceBrowser_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceBrowser_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceBrowser_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceBrowser_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceOs'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceOs_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceOs_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceOs_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceOs_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceOs_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceOs_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceOs_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceOs_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceOs_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceType_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceType_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'qualityResolution'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'qualityResolution_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'qualityResolution_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'qualityResolution_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'qualityResolution_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'qualityResolution_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'qualityResolution_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'qualityResolution_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'uid'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uid_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uid_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uid_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'uid_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uid_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uid_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uid_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uid_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'uid_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountVideoQualityEventsAdaptiveGroupsOrderBy': { name: 'AccountVideoQualityEventsAdaptiveGroupsOrderBy'; enumValues: 'avg_sampleInterval_ASC' | 'avg_sampleInterval_DESC' | 'clientCountryName_ASC' | 'clientCountryName_DESC' | 'count_ASC' | 'count_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHalfOfHour_ASC' | 'datetimeHalfOfHour_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'deviceBrowser_ASC' | 'deviceBrowser_DESC' | 'deviceOs_ASC' | 'deviceOs_DESC' | 'deviceType_ASC' | 'deviceType_DESC' | 'eventType_ASC' | 'eventType_DESC' | 'qualityResolution_ASC' | 'qualityResolution_DESC' | 'uid_ASC' | 'uid_DESC'; }; + 'AccountWarpDeviceAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountWarpDeviceAdaptiveGroups'; fields: { 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountWarpDeviceAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountWarpDeviceAdaptiveGroupsDimensions'; ofType: null; } }; 'uniq': { name: 'uniq'; type: { kind: 'OBJECT'; name: 'AccountWarpDeviceAdaptiveGroupsUniq'; ofType: null; } }; }; }; + 'AccountWarpDeviceAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountWarpDeviceAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountWarpDeviceAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountWarpDeviceAdaptiveGroupsDimensions'; fields: { 'clientPlatform': { name: 'clientPlatform'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientVersion': { name: 'clientVersion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'colo': { name: 'colo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinute': { name: 'datetimeFiveMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeTenMinute': { name: 'datetimeTenMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'deviceId': { name: 'deviceId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'mode': { name: 'mode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'status': { name: 'status'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountWarpDeviceAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountWarpDeviceAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountWarpDeviceAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountWarpDeviceAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientPlatform'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientPlatform_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientPlatform_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientPlatform_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientPlatform_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientPlatform_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientPlatform_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientPlatform_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientPlatform_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientPlatform_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientVersion'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientVersion_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientVersion_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientVersion_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientVersion_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientVersion_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientVersion_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientVersion_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientVersion_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientVersion_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'colo'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'colo_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'colo_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'colo_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'colo_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'colo_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'colo_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'colo_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'colo_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'colo_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeTenMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeTenMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeTenMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mode'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mode_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mode_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mode_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'mode_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mode_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mode_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mode_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'mode_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'mode_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'status_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'status_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountWarpDeviceAdaptiveGroupsOrderBy': { name: 'AccountWarpDeviceAdaptiveGroupsOrderBy'; enumValues: 'clientPlatform_ASC' | 'clientPlatform_DESC' | 'clientVersion_ASC' | 'clientVersion_DESC' | 'colo_ASC' | 'colo_DESC' | 'count_ASC' | 'count_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFiveMinute_ASC' | 'datetimeFiveMinute_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeTenMinute_ASC' | 'datetimeTenMinute_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'deviceId_ASC' | 'deviceId_DESC' | 'mode_ASC' | 'mode_DESC' | 'status_ASC' | 'status_DESC' | 'uniq_deviceIds_ASC' | 'uniq_deviceIds_DESC'; }; + 'AccountWarpDeviceAdaptiveGroupsUniq': { kind: 'OBJECT'; name: 'AccountWarpDeviceAdaptiveGroupsUniq'; fields: { 'deviceIds': { name: 'deviceIds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountWorkerPlacementAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountWorkerPlacementAdaptiveGroups'; fields: { 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountWorkerPlacementAdaptiveGroupsConfidence'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountWorkerPlacementAdaptiveGroupsDimensions'; ofType: null; } }; 'quantiles': { name: 'quantiles'; type: { kind: 'OBJECT'; name: 'AccountWorkerPlacementAdaptiveGroupsQuantiles'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountWorkerPlacementAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'AccountWorkerPlacementAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountWorkerPlacementAdaptiveGroupsConfidence'; fields: { 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountWorkerPlacementAdaptiveGroupsSumConfidence'; ofType: null; } }; }; }; + 'AccountWorkerPlacementAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountWorkerPlacementAdaptiveGroupsDimensions'; fields: { 'clientColoCode': { name: 'clientColoCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'coloCode': { name: 'coloCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeSixHours': { name: 'datetimeSixHours'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'httpStatus': { name: 'httpStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'isSample': { name: 'isSample'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'placementUsed': { name: 'placementUsed'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'requestDurationBucketMin': { name: 'requestDurationBucketMin'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'requestDurationBucketMin100ms': { name: 'requestDurationBucketMin100ms'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'scriptName': { name: 'scriptName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'scriptTag': { name: 'scriptTag'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'scriptVersion': { name: 'scriptVersion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountWorkerPlacementAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountWorkerPlacementAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountWorkerPlacementAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountWorkerPlacementAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientColoCode'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientColoCode_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientColoCode_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientColoCode_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientColoCode_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientColoCode_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientColoCode_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientColoCode_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientColoCode_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientColoCode_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCode_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCode_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'httpStatus'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'httpStatus_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'httpStatus_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'httpStatus_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'httpStatus_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'httpStatus_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'httpStatus_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'httpStatus_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'isSample'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isSample_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isSample_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isSample_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'isSample_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isSample_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isSample_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isSample_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'placementUsed'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'placementUsed_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'placementUsed_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'placementUsed_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'placementUsed_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'placementUsed_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'placementUsed_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'placementUsed_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'requestDurationBucketMin'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'requestDurationBucketMin100ms'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'requestDurationBucketMin100ms_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'requestDurationBucketMin100ms_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'requestDurationBucketMin100ms_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'requestDurationBucketMin100ms_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'requestDurationBucketMin100ms_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'requestDurationBucketMin100ms_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'requestDurationBucketMin100ms_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'requestDurationBucketMin_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'requestDurationBucketMin_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'requestDurationBucketMin_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'requestDurationBucketMin_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'requestDurationBucketMin_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'requestDurationBucketMin_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'requestDurationBucketMin_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'scriptName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'scriptName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'scriptName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptTag'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptTag_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptTag_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptTag_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'scriptTag_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptTag_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptTag_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptTag_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptTag_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'scriptTag_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptVersion'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptVersion_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptVersion_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptVersion_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'scriptVersion_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptVersion_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptVersion_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptVersion_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptVersion_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'scriptVersion_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountWorkerPlacementAdaptiveGroupsOrderBy': { name: 'AccountWorkerPlacementAdaptiveGroupsOrderBy'; enumValues: 'clientColoCode_ASC' | 'clientColoCode_DESC' | 'coloCode_ASC' | 'coloCode_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetimeSixHours_ASC' | 'datetimeSixHours_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'httpStatus_ASC' | 'httpStatus_DESC' | 'isSample_ASC' | 'isSample_DESC' | 'placementUsed_ASC' | 'placementUsed_DESC' | 'quantiles_requestDurationP25_ASC' | 'quantiles_requestDurationP25_DESC' | 'quantiles_requestDurationP50_ASC' | 'quantiles_requestDurationP50_DESC' | 'quantiles_requestDurationP75_ASC' | 'quantiles_requestDurationP75_DESC' | 'quantiles_requestDurationP90_ASC' | 'quantiles_requestDurationP90_DESC' | 'quantiles_requestDurationP95_ASC' | 'quantiles_requestDurationP95_DESC' | 'quantiles_requestDurationP999_ASC' | 'quantiles_requestDurationP999_DESC' | 'quantiles_requestDurationP99_ASC' | 'quantiles_requestDurationP99_DESC' | 'requestDurationBucketMin100ms_ASC' | 'requestDurationBucketMin100ms_DESC' | 'requestDurationBucketMin_ASC' | 'requestDurationBucketMin_DESC' | 'scriptId_ASC' | 'scriptId_DESC' | 'scriptName_ASC' | 'scriptName_DESC' | 'scriptTag_ASC' | 'scriptTag_DESC' | 'scriptVersion_ASC' | 'scriptVersion_DESC' | 'sum_requestDuration_ASC' | 'sum_requestDuration_DESC' | 'sum_requests_ASC' | 'sum_requests_DESC'; }; + 'AccountWorkerPlacementAdaptiveGroupsQuantiles': { kind: 'OBJECT'; name: 'AccountWorkerPlacementAdaptiveGroupsQuantiles'; fields: { 'requestDurationP25': { name: 'requestDurationP25'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'requestDurationP50': { name: 'requestDurationP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'requestDurationP75': { name: 'requestDurationP75'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'requestDurationP90': { name: 'requestDurationP90'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'requestDurationP95': { name: 'requestDurationP95'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'requestDurationP99': { name: 'requestDurationP99'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'requestDurationP999': { name: 'requestDurationP999'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; }; }; + 'AccountWorkerPlacementAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'AccountWorkerPlacementAdaptiveGroupsSum'; fields: { 'requestDuration': { name: 'requestDuration'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountWorkerPlacementAdaptiveGroupsSumConfidence': { kind: 'OBJECT'; name: 'AccountWorkerPlacementAdaptiveGroupsSumConfidence'; fields: { 'requestDuration': { name: 'requestDuration'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountWorkersAnalyticsEngineAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountWorkersAnalyticsEngineAdaptiveGroups'; fields: { 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountWorkersAnalyticsEngineAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountWorkersAnalyticsEngineAdaptiveGroupsDimensions'; ofType: null; } }; }; }; + 'AccountWorkersAnalyticsEngineAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountWorkersAnalyticsEngineAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountWorkersAnalyticsEngineAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountWorkersAnalyticsEngineAdaptiveGroupsDimensions'; fields: { 'dataset': { name: 'dataset'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; }; }; + 'AccountWorkersAnalyticsEngineAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountWorkersAnalyticsEngineAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountWorkersAnalyticsEngineAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountWorkersAnalyticsEngineAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'dataset'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dataset_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dataset_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dataset_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'dataset_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dataset_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dataset_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dataset_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dataset_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'dataset_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }]; }; + 'AccountWorkersAnalyticsEngineAdaptiveGroupsOrderBy': { name: 'AccountWorkersAnalyticsEngineAdaptiveGroupsOrderBy'; enumValues: 'count_ASC' | 'count_DESC' | 'dataset_ASC' | 'dataset_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetime_ASC' | 'datetime_DESC'; }; + 'AccountWorkersBuildsBuildMinutesAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountWorkersBuildsBuildMinutesAdaptiveGroups'; fields: { 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountWorkersBuildsBuildMinutesAdaptiveGroupsConfidence'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountWorkersBuildsBuildMinutesAdaptiveGroupsDimensions'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountWorkersBuildsBuildMinutesAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'AccountWorkersBuildsBuildMinutesAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountWorkersBuildsBuildMinutesAdaptiveGroupsConfidence'; fields: { 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountWorkersBuildsBuildMinutesAdaptiveGroupsSumConfidence'; ofType: null; } }; }; }; + 'AccountWorkersBuildsBuildMinutesAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountWorkersBuildsBuildMinutesAdaptiveGroupsDimensions'; fields: { 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; }; }; + 'AccountWorkersBuildsBuildMinutesAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountWorkersBuildsBuildMinutesAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountWorkersBuildsBuildMinutesAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountWorkersBuildsBuildMinutesAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }]; }; + 'AccountWorkersBuildsBuildMinutesAdaptiveGroupsOrderBy': { name: 'AccountWorkersBuildsBuildMinutesAdaptiveGroupsOrderBy'; enumValues: 'datetime_ASC' | 'datetime_DESC' | 'sum_buildMinutes_ASC' | 'sum_buildMinutes_DESC'; }; + 'AccountWorkersBuildsBuildMinutesAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'AccountWorkersBuildsBuildMinutesAdaptiveGroupsSum'; fields: { 'buildMinutes': { name: 'buildMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountWorkersBuildsBuildMinutesAdaptiveGroupsSumConfidence': { kind: 'OBJECT'; name: 'AccountWorkersBuildsBuildMinutesAdaptiveGroupsSumConfidence'; fields: { 'buildMinutes': { name: 'buildMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountWorkersInvocationsAdaptive': { kind: 'OBJECT'; name: 'AccountWorkersInvocationsAdaptive'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountWorkersInvocationsAdaptiveAvg'; ofType: null; } }; 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountWorkersInvocationsAdaptiveConfidence'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountWorkersInvocationsAdaptiveDimensions'; ofType: null; } }; 'max': { name: 'max'; type: { kind: 'OBJECT'; name: 'AccountWorkersInvocationsAdaptiveMax'; ofType: null; } }; 'min': { name: 'min'; type: { kind: 'OBJECT'; name: 'AccountWorkersInvocationsAdaptiveMin'; ofType: null; } }; 'quantiles': { name: 'quantiles'; type: { kind: 'OBJECT'; name: 'AccountWorkersInvocationsAdaptiveQuantiles'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountWorkersInvocationsAdaptiveSum'; ofType: null; } }; }; }; + 'AccountWorkersInvocationsAdaptiveAvg': { kind: 'OBJECT'; name: 'AccountWorkersInvocationsAdaptiveAvg'; fields: { 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountWorkersInvocationsAdaptiveConfidence': { kind: 'OBJECT'; name: 'AccountWorkersInvocationsAdaptiveConfidence'; fields: { 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountWorkersInvocationsAdaptiveSumConfidence'; ofType: null; } }; }; }; + 'AccountWorkersInvocationsAdaptiveDimensions': { kind: 'OBJECT'; name: 'AccountWorkersInvocationsAdaptiveDimensions'; fields: { 'coloCode': { name: 'coloCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeSixHours': { name: 'datetimeSixHours'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'dispatchNamespaceName': { name: 'dispatchNamespaceName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'environmentName': { name: 'environmentName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'isDispatcher': { name: 'isDispatcher'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'scriptName': { name: 'scriptName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'scriptTag': { name: 'scriptTag'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'scriptVersion': { name: 'scriptVersion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'status': { name: 'status'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'usageModel': { name: 'usageModel'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountWorkersInvocationsAdaptiveFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountWorkersInvocationsAdaptiveFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountWorkersInvocationsAdaptiveFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountWorkersInvocationsAdaptiveFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCode'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCode_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCode_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'dispatchNamespaceName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dispatchNamespaceName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dispatchNamespaceName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dispatchNamespaceName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'dispatchNamespaceName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dispatchNamespaceName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dispatchNamespaceName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dispatchNamespaceName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dispatchNamespaceName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'dispatchNamespaceName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'environmentName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'environmentName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'environmentName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'environmentName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'environmentName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'environmentName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'environmentName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'environmentName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'environmentName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'environmentName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'isDispatcher'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isDispatcher_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isDispatcher_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isDispatcher_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'isDispatcher_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isDispatcher_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isDispatcher_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isDispatcher_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'scriptName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'scriptName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'scriptName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptTag'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptTag_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptTag_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptTag_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'scriptTag_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptTag_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptTag_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptTag_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptTag_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'scriptTag_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptVersion'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptVersion_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptVersion_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptVersion_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'scriptVersion_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptVersion_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptVersion_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptVersion_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptVersion_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'scriptVersion_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'status_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'status_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'usageModel'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'usageModel_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'usageModel_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'usageModel_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'usageModel_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'usageModel_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'usageModel_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'usageModel_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'usageModel_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'usageModel_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountWorkersInvocationsAdaptiveMax': { kind: 'OBJECT'; name: 'AccountWorkersInvocationsAdaptiveMax'; fields: { 'cpuTime': { name: 'cpuTime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'duration': { name: 'duration'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'requestDuration': { name: 'requestDuration'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'responseBodySize': { name: 'responseBodySize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'wallTime': { name: 'wallTime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountWorkersInvocationsAdaptiveMin': { kind: 'OBJECT'; name: 'AccountWorkersInvocationsAdaptiveMin'; fields: { 'cpuTime': { name: 'cpuTime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'duration': { name: 'duration'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'requestDuration': { name: 'requestDuration'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'responseBodySize': { name: 'responseBodySize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'wallTime': { name: 'wallTime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountWorkersInvocationsAdaptiveOrderBy': { name: 'AccountWorkersInvocationsAdaptiveOrderBy'; enumValues: 'actorNamespaceId_ASC' | 'actorNamespaceId_DESC' | 'avg_sampleInterval_ASC' | 'avg_sampleInterval_DESC' | 'coloCode_ASC' | 'coloCode_DESC' | 'constantScriptId_ASC' | 'constantScriptId_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetimeSixHours_ASC' | 'datetimeSixHours_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'dispatchNamespaceName_ASC' | 'dispatchNamespaceName_DESC' | 'environmentName_ASC' | 'environmentName_DESC' | 'isDispatcher_ASC' | 'isDispatcher_DESC' | 'max_cpuTime_ASC' | 'max_cpuTime_DESC' | 'max_duration_ASC' | 'max_duration_DESC' | 'max_requestDuration_ASC' | 'max_requestDuration_DESC' | 'max_responseBodySize_ASC' | 'max_responseBodySize_DESC' | 'max_wallTime_ASC' | 'max_wallTime_DESC' | 'min_cpuTime_ASC' | 'min_cpuTime_DESC' | 'min_duration_ASC' | 'min_duration_DESC' | 'min_requestDuration_ASC' | 'min_requestDuration_DESC' | 'min_responseBodySize_ASC' | 'min_responseBodySize_DESC' | 'min_wallTime_ASC' | 'min_wallTime_DESC' | 'quantiles_cpuTimeP25_ASC' | 'quantiles_cpuTimeP25_DESC' | 'quantiles_cpuTimeP50_ASC' | 'quantiles_cpuTimeP50_DESC' | 'quantiles_cpuTimeP75_ASC' | 'quantiles_cpuTimeP75_DESC' | 'quantiles_cpuTimeP90_ASC' | 'quantiles_cpuTimeP90_DESC' | 'quantiles_cpuTimeP95_ASC' | 'quantiles_cpuTimeP95_DESC' | 'quantiles_cpuTimeP999_ASC' | 'quantiles_cpuTimeP999_DESC' | 'quantiles_cpuTimeP99_ASC' | 'quantiles_cpuTimeP99_DESC' | 'quantiles_durationP25_ASC' | 'quantiles_durationP25_DESC' | 'quantiles_durationP50_ASC' | 'quantiles_durationP50_DESC' | 'quantiles_durationP75_ASC' | 'quantiles_durationP75_DESC' | 'quantiles_durationP90_ASC' | 'quantiles_durationP90_DESC' | 'quantiles_durationP95_ASC' | 'quantiles_durationP95_DESC' | 'quantiles_durationP999_ASC' | 'quantiles_durationP999_DESC' | 'quantiles_durationP99_ASC' | 'quantiles_durationP99_DESC' | 'quantiles_requestDurationP25_ASC' | 'quantiles_requestDurationP25_DESC' | 'quantiles_requestDurationP50_ASC' | 'quantiles_requestDurationP50_DESC' | 'quantiles_requestDurationP75_ASC' | 'quantiles_requestDurationP75_DESC' | 'quantiles_requestDurationP90_ASC' | 'quantiles_requestDurationP90_DESC' | 'quantiles_requestDurationP95_ASC' | 'quantiles_requestDurationP95_DESC' | 'quantiles_requestDurationP999_ASC' | 'quantiles_requestDurationP999_DESC' | 'quantiles_requestDurationP99_ASC' | 'quantiles_requestDurationP99_DESC' | 'quantiles_responseBodySizeP25_ASC' | 'quantiles_responseBodySizeP25_DESC' | 'quantiles_responseBodySizeP50_ASC' | 'quantiles_responseBodySizeP50_DESC' | 'quantiles_responseBodySizeP75_ASC' | 'quantiles_responseBodySizeP75_DESC' | 'quantiles_responseBodySizeP90_ASC' | 'quantiles_responseBodySizeP90_DESC' | 'quantiles_responseBodySizeP95_ASC' | 'quantiles_responseBodySizeP95_DESC' | 'quantiles_responseBodySizeP999_ASC' | 'quantiles_responseBodySizeP999_DESC' | 'quantiles_responseBodySizeP99_ASC' | 'quantiles_responseBodySizeP99_DESC' | 'quantiles_wallTimeP25_ASC' | 'quantiles_wallTimeP25_DESC' | 'quantiles_wallTimeP50_ASC' | 'quantiles_wallTimeP50_DESC' | 'quantiles_wallTimeP75_ASC' | 'quantiles_wallTimeP75_DESC' | 'quantiles_wallTimeP90_ASC' | 'quantiles_wallTimeP90_DESC' | 'quantiles_wallTimeP95_ASC' | 'quantiles_wallTimeP95_DESC' | 'quantiles_wallTimeP999_ASC' | 'quantiles_wallTimeP999_DESC' | 'quantiles_wallTimeP99_ASC' | 'quantiles_wallTimeP99_DESC' | 'scriptName_ASC' | 'scriptName_DESC' | 'scriptTag_ASC' | 'scriptTag_DESC' | 'scriptVersion_ASC' | 'scriptVersion_DESC' | 'stableId_ASC' | 'stableId_DESC' | 'status_ASC' | 'status_DESC' | 'sum_clientDisconnects_ASC' | 'sum_clientDisconnects_DESC' | 'sum_cpuTimeUs_ASC' | 'sum_cpuTimeUs_DESC' | 'sum_duration_ASC' | 'sum_duration_DESC' | 'sum_errors_ASC' | 'sum_errors_DESC' | 'sum_requestDuration_ASC' | 'sum_requestDuration_DESC' | 'sum_requests_ASC' | 'sum_requests_DESC' | 'sum_responseBodySize_ASC' | 'sum_responseBodySize_DESC' | 'sum_subrequests_ASC' | 'sum_subrequests_DESC' | 'sum_wallTime_ASC' | 'sum_wallTime_DESC' | 'usageModel_ASC' | 'usageModel_DESC'; }; + 'AccountWorkersInvocationsAdaptiveQuantiles': { kind: 'OBJECT'; name: 'AccountWorkersInvocationsAdaptiveQuantiles'; fields: { 'cpuTimeP25': { name: 'cpuTimeP25'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'cpuTimeP50': { name: 'cpuTimeP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'cpuTimeP75': { name: 'cpuTimeP75'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'cpuTimeP90': { name: 'cpuTimeP90'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'cpuTimeP95': { name: 'cpuTimeP95'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'cpuTimeP99': { name: 'cpuTimeP99'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'cpuTimeP999': { name: 'cpuTimeP999'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'durationP25': { name: 'durationP25'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'durationP50': { name: 'durationP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'durationP75': { name: 'durationP75'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'durationP90': { name: 'durationP90'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'durationP95': { name: 'durationP95'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'durationP99': { name: 'durationP99'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'durationP999': { name: 'durationP999'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'requestDurationP25': { name: 'requestDurationP25'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'requestDurationP50': { name: 'requestDurationP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'requestDurationP75': { name: 'requestDurationP75'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'requestDurationP90': { name: 'requestDurationP90'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'requestDurationP95': { name: 'requestDurationP95'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'requestDurationP99': { name: 'requestDurationP99'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'requestDurationP999': { name: 'requestDurationP999'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'responseBodySizeP25': { name: 'responseBodySizeP25'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'responseBodySizeP50': { name: 'responseBodySizeP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'responseBodySizeP75': { name: 'responseBodySizeP75'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'responseBodySizeP90': { name: 'responseBodySizeP90'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'responseBodySizeP95': { name: 'responseBodySizeP95'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'responseBodySizeP99': { name: 'responseBodySizeP99'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'responseBodySizeP999': { name: 'responseBodySizeP999'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'wallTimeP25': { name: 'wallTimeP25'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'wallTimeP50': { name: 'wallTimeP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'wallTimeP75': { name: 'wallTimeP75'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'wallTimeP90': { name: 'wallTimeP90'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'wallTimeP95': { name: 'wallTimeP95'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'wallTimeP99': { name: 'wallTimeP99'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'wallTimeP999': { name: 'wallTimeP999'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; }; }; + 'AccountWorkersInvocationsAdaptiveSum': { kind: 'OBJECT'; name: 'AccountWorkersInvocationsAdaptiveSum'; fields: { 'clientDisconnects': { name: 'clientDisconnects'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'cpuTimeUs': { name: 'cpuTimeUs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'duration': { name: 'duration'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'errors': { name: 'errors'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'requestDuration': { name: 'requestDuration'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'responseBodySize': { name: 'responseBodySize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'subrequests': { name: 'subrequests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'wallTime': { name: 'wallTime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountWorkersInvocationsAdaptiveSumConfidence': { kind: 'OBJECT'; name: 'AccountWorkersInvocationsAdaptiveSumConfidence'; fields: { 'clientDisconnects': { name: 'clientDisconnects'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'cpuTimeUs': { name: 'cpuTimeUs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'duration': { name: 'duration'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'errors': { name: 'errors'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'requestDuration': { name: 'requestDuration'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'responseBodySize': { name: 'responseBodySize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'subrequests': { name: 'subrequests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'wallTime': { name: 'wallTime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountWorkersInvocationsScheduled': { kind: 'OBJECT'; name: 'AccountWorkersInvocationsScheduled'; fields: { 'cpuTimeUs': { name: 'cpuTimeUs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'cron': { name: 'cron'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'environmentName': { name: 'environmentName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'scheduledDatetime': { name: 'scheduledDatetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'scriptName': { name: 'scriptName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'status': { name: 'status'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountWorkersInvocationsScheduledFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountWorkersInvocationsScheduledFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountWorkersInvocationsScheduledFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountWorkersInvocationsScheduledFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'cpuTimeUs'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'cpuTimeUs_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'cpuTimeUs_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'cpuTimeUs_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'cpuTimeUs_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'cpuTimeUs_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'cpuTimeUs_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'cpuTimeUs_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'cron'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cron_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cron_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cron_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'cron_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cron_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cron_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cron_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cron_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'cron_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'environmentName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'environmentName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'environmentName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'environmentName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'environmentName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'environmentName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'environmentName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'environmentName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'environmentName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'environmentName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scheduledDatetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'scheduledDatetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'scheduledDatetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'scheduledDatetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'scheduledDatetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'scheduledDatetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'scheduledDatetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'scheduledDatetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'scriptName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'scriptName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'scriptName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'status_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'status_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountWorkersInvocationsScheduledOrderBy': { name: 'AccountWorkersInvocationsScheduledOrderBy'; enumValues: 'cpuTimeUs_ASC' | 'cpuTimeUs_DESC' | 'cron_ASC' | 'cron_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'environmentName_ASC' | 'environmentName_DESC' | 'scheduledDatetime_ASC' | 'scheduledDatetime_DESC' | 'scriptName_ASC' | 'scriptName_DESC' | 'status_ASC' | 'status_DESC'; }; + 'AccountWorkersOverviewDataAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountWorkersOverviewDataAdaptiveGroups'; fields: { 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountWorkersOverviewDataAdaptiveGroupsConfidence'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountWorkersOverviewDataAdaptiveGroupsDimensions'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountWorkersOverviewDataAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'AccountWorkersOverviewDataAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountWorkersOverviewDataAdaptiveGroupsConfidence'; fields: { 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountWorkersOverviewDataAdaptiveGroupsSumConfidence'; ofType: null; } }; }; }; + 'AccountWorkersOverviewDataAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountWorkersOverviewDataAdaptiveGroupsDimensions'; fields: { 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'usageModel': { name: 'usageModel'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; }; }; + 'AccountWorkersOverviewDataAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountWorkersOverviewDataAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountWorkersOverviewDataAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountWorkersOverviewDataAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'usageModel'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'usageModel_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'usageModel_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'usageModel_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'usageModel_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'usageModel_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'usageModel_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'usageModel_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }]; }; + 'AccountWorkersOverviewDataAdaptiveGroupsOrderBy': { name: 'AccountWorkersOverviewDataAdaptiveGroupsOrderBy'; enumValues: 'datetime_ASC' | 'datetime_DESC' | 'sum_standardCpuTimeUs_ASC' | 'sum_standardCpuTimeUs_DESC' | 'sum_unboundDurationUs_ASC' | 'sum_unboundDurationUs_DESC' | 'usageModel_ASC' | 'usageModel_DESC'; }; + 'AccountWorkersOverviewDataAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'AccountWorkersOverviewDataAdaptiveGroupsSum'; fields: { 'standardCpuTimeUs': { name: 'standardCpuTimeUs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'unboundDurationUs': { name: 'unboundDurationUs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountWorkersOverviewDataAdaptiveGroupsSumConfidence': { kind: 'OBJECT'; name: 'AccountWorkersOverviewDataAdaptiveGroupsSumConfidence'; fields: { 'standardCpuTimeUs': { name: 'standardCpuTimeUs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'unboundDurationUs': { name: 'unboundDurationUs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountWorkersOverviewRequestsAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountWorkersOverviewRequestsAdaptiveGroups'; fields: { 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountWorkersOverviewRequestsAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountWorkersOverviewRequestsAdaptiveGroupsDimensions'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountWorkersOverviewRequestsAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'AccountWorkersOverviewRequestsAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountWorkersOverviewRequestsAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountWorkersOverviewRequestsAdaptiveGroupsSumConfidence'; ofType: null; } }; }; }; + 'AccountWorkersOverviewRequestsAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountWorkersOverviewRequestsAdaptiveGroupsDimensions'; fields: { 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'status': { name: 'status'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'usageModel': { name: 'usageModel'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; }; }; + 'AccountWorkersOverviewRequestsAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountWorkersOverviewRequestsAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountWorkersOverviewRequestsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountWorkersOverviewRequestsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'status'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'status_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'status_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'status_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'status_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'status_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'status_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'status_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'usageModel'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'usageModel_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'usageModel_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'usageModel_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'usageModel_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'usageModel_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'usageModel_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'usageModel_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }]; }; + 'AccountWorkersOverviewRequestsAdaptiveGroupsOrderBy': { name: 'AccountWorkersOverviewRequestsAdaptiveGroupsOrderBy'; enumValues: 'actorNamespaceId_ASC' | 'actorNamespaceId_DESC' | 'constantScriptId_ASC' | 'constantScriptId_DESC' | 'count_ASC' | 'count_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'stableId_ASC' | 'stableId_DESC' | 'status_ASC' | 'status_DESC' | 'sum_cpuTimeUs_ASC' | 'sum_cpuTimeUs_DESC' | 'usageModel_ASC' | 'usageModel_DESC'; }; + 'AccountWorkersOverviewRequestsAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'AccountWorkersOverviewRequestsAdaptiveGroupsSum'; fields: { 'cpuTimeUs': { name: 'cpuTimeUs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountWorkersOverviewRequestsAdaptiveGroupsSumConfidence': { kind: 'OBJECT'; name: 'AccountWorkersOverviewRequestsAdaptiveGroupsSumConfidence'; fields: { 'cpuTimeUs': { name: 'cpuTimeUs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountWorkersSubrequestsAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountWorkersSubrequestsAdaptiveGroups'; fields: { 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountWorkersSubrequestsAdaptiveGroupsConfidence'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountWorkersSubrequestsAdaptiveGroupsDimensions'; ofType: null; } }; 'quantiles': { name: 'quantiles'; type: { kind: 'OBJECT'; name: 'AccountWorkersSubrequestsAdaptiveGroupsQuantiles'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountWorkersSubrequestsAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'AccountWorkersSubrequestsAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountWorkersSubrequestsAdaptiveGroupsConfidence'; fields: { 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountWorkersSubrequestsAdaptiveGroupsSumConfidence'; ofType: null; } }; }; }; + 'AccountWorkersSubrequestsAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountWorkersSubrequestsAdaptiveGroupsDimensions'; fields: { 'cacheStatus': { name: 'cacheStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeSixHours': { name: 'datetimeSixHours'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'environmentName': { name: 'environmentName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'hostname': { name: 'hostname'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'httpResponseStatus': { name: 'httpResponseStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'requestOutcome': { name: 'requestOutcome'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'scriptName': { name: 'scriptName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'scriptVersion': { name: 'scriptVersion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'usageModel': { name: 'usageModel'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountWorkersSubrequestsAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountWorkersSubrequestsAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountWorkersSubrequestsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountWorkersSubrequestsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'cacheStatus'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'cacheStatus_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'cacheStatus_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'cacheStatus_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'cacheStatus_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'cacheStatus_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'cacheStatus_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'cacheStatus_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'environmentName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'environmentName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'environmentName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'environmentName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'environmentName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'environmentName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'environmentName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'environmentName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'environmentName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'environmentName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'hostname'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'hostname_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'hostname_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'hostname_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'hostname_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'hostname_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'hostname_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'hostname_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'hostname_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'hostname_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'httpResponseStatus'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpResponseStatus_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpResponseStatus_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpResponseStatus_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'httpResponseStatus_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpResponseStatus_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpResponseStatus_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpResponseStatus_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'requestOutcome'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestOutcome_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestOutcome_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestOutcome_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'requestOutcome_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestOutcome_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestOutcome_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestOutcome_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestOutcome_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'requestOutcome_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'scriptName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'scriptName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptVersion'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptVersion_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptVersion_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptVersion_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'scriptVersion_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptVersion_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptVersion_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptVersion_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scriptVersion_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'scriptVersion_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'usageModel'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'usageModel_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'usageModel_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'usageModel_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'usageModel_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'usageModel_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'usageModel_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'usageModel_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'usageModel_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'usageModel_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountWorkersSubrequestsAdaptiveGroupsOrderBy': { name: 'AccountWorkersSubrequestsAdaptiveGroupsOrderBy'; enumValues: 'cacheStatus_ASC' | 'cacheStatus_DESC' | 'constantScriptId_ASC' | 'constantScriptId_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetimeSixHours_ASC' | 'datetimeSixHours_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'environmentName_ASC' | 'environmentName_DESC' | 'hostname_ASC' | 'hostname_DESC' | 'httpResponseStatus_ASC' | 'httpResponseStatus_DESC' | 'quantiles_timeToResponseDrainedUsP25_ASC' | 'quantiles_timeToResponseDrainedUsP25_DESC' | 'quantiles_timeToResponseDrainedUsP50_ASC' | 'quantiles_timeToResponseDrainedUsP50_DESC' | 'quantiles_timeToResponseDrainedUsP75_ASC' | 'quantiles_timeToResponseDrainedUsP75_DESC' | 'quantiles_timeToResponseDrainedUsP90_ASC' | 'quantiles_timeToResponseDrainedUsP90_DESC' | 'quantiles_timeToResponseDrainedUsP95_ASC' | 'quantiles_timeToResponseDrainedUsP95_DESC' | 'quantiles_timeToResponseDrainedUsP999_ASC' | 'quantiles_timeToResponseDrainedUsP999_DESC' | 'quantiles_timeToResponseDrainedUsP99_ASC' | 'quantiles_timeToResponseDrainedUsP99_DESC' | 'quantiles_timeToResponseUsP25_ASC' | 'quantiles_timeToResponseUsP25_DESC' | 'quantiles_timeToResponseUsP50_ASC' | 'quantiles_timeToResponseUsP50_DESC' | 'quantiles_timeToResponseUsP75_ASC' | 'quantiles_timeToResponseUsP75_DESC' | 'quantiles_timeToResponseUsP90_ASC' | 'quantiles_timeToResponseUsP90_DESC' | 'quantiles_timeToResponseUsP95_ASC' | 'quantiles_timeToResponseUsP95_DESC' | 'quantiles_timeToResponseUsP999_ASC' | 'quantiles_timeToResponseUsP999_DESC' | 'quantiles_timeToResponseUsP99_ASC' | 'quantiles_timeToResponseUsP99_DESC' | 'requestOutcome_ASC' | 'requestOutcome_DESC' | 'scriptName_ASC' | 'scriptName_DESC' | 'scriptVersion_ASC' | 'scriptVersion_DESC' | 'stableId_ASC' | 'stableId_DESC' | 'sum_requestBodySizeUncached_ASC' | 'sum_requestBodySizeUncached_DESC' | 'sum_requestBodySize_ASC' | 'sum_requestBodySize_DESC' | 'sum_responseBodySize_ASC' | 'sum_responseBodySize_DESC' | 'sum_subrequests_ASC' | 'sum_subrequests_DESC' | 'sum_timeToResponseDrainedUs_ASC' | 'sum_timeToResponseDrainedUs_DESC' | 'sum_timeToResponseUs_ASC' | 'sum_timeToResponseUs_DESC' | 'usageModel_ASC' | 'usageModel_DESC'; }; + 'AccountWorkersSubrequestsAdaptiveGroupsQuantiles': { kind: 'OBJECT'; name: 'AccountWorkersSubrequestsAdaptiveGroupsQuantiles'; fields: { 'timeToResponseDrainedUsP25': { name: 'timeToResponseDrainedUsP25'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'timeToResponseDrainedUsP50': { name: 'timeToResponseDrainedUsP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'timeToResponseDrainedUsP75': { name: 'timeToResponseDrainedUsP75'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'timeToResponseDrainedUsP90': { name: 'timeToResponseDrainedUsP90'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'timeToResponseDrainedUsP95': { name: 'timeToResponseDrainedUsP95'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'timeToResponseDrainedUsP99': { name: 'timeToResponseDrainedUsP99'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'timeToResponseDrainedUsP999': { name: 'timeToResponseDrainedUsP999'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'timeToResponseUsP25': { name: 'timeToResponseUsP25'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'timeToResponseUsP50': { name: 'timeToResponseUsP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'timeToResponseUsP75': { name: 'timeToResponseUsP75'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'timeToResponseUsP90': { name: 'timeToResponseUsP90'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'timeToResponseUsP95': { name: 'timeToResponseUsP95'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'timeToResponseUsP99': { name: 'timeToResponseUsP99'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'timeToResponseUsP999': { name: 'timeToResponseUsP999'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; }; }; + 'AccountWorkersSubrequestsAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'AccountWorkersSubrequestsAdaptiveGroupsSum'; fields: { 'requestBodySize': { name: 'requestBodySize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'requestBodySizeUncached': { name: 'requestBodySizeUncached'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'responseBodySize': { name: 'responseBodySize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'subrequests': { name: 'subrequests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'timeToResponseDrainedUs': { name: 'timeToResponseDrainedUs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'timeToResponseUs': { name: 'timeToResponseUs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountWorkersSubrequestsAdaptiveGroupsSumConfidence': { kind: 'OBJECT'; name: 'AccountWorkersSubrequestsAdaptiveGroupsSumConfidence'; fields: { 'requestBodySize': { name: 'requestBodySize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'requestBodySizeUncached': { name: 'requestBodySizeUncached'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'responseBodySize': { name: 'responseBodySize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'subrequests': { name: 'subrequests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'timeToResponseDrainedUs': { name: 'timeToResponseDrainedUs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'timeToResponseUs': { name: 'timeToResponseUs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountWorkersVpcConnectionAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountWorkersVpcConnectionAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountWorkersVpcConnectionAdaptiveGroupsAvg'; ofType: null; } }; 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountWorkersVpcConnectionAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountWorkersVpcConnectionAdaptiveGroupsDimensions'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountWorkersVpcConnectionAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'AccountWorkersVpcConnectionAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'AccountWorkersVpcConnectionAdaptiveGroupsAvg'; fields: { 'connectionLatency': { name: 'connectionLatency'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dnsLatency': { name: 'dnsLatency'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountWorkersVpcConnectionAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountWorkersVpcConnectionAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountWorkersVpcConnectionAdaptiveGroupsSumConfidence'; ofType: null; } }; }; }; + 'AccountWorkersVpcConnectionAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountWorkersVpcConnectionAdaptiveGroupsDimensions'; fields: { 'coloCode': { name: 'coloCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'errorCode': { name: 'errorCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'status': { name: 'status'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'targetId': { name: 'targetId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountWorkersVpcConnectionAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountWorkersVpcConnectionAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountWorkersVpcConnectionAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountWorkersVpcConnectionAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCode'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCode_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCode_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'errorCode'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'errorCode_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'errorCode_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'errorCode_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'errorCode_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'errorCode_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'errorCode_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'errorCode_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'errorCode_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'errorCode_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'status_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'status_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'targetId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'targetId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'targetId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'targetId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'targetId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'targetId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'targetId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'targetId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'targetId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'targetId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountWorkersVpcConnectionAdaptiveGroupsOrderBy': { name: 'AccountWorkersVpcConnectionAdaptiveGroupsOrderBy'; enumValues: 'avg_connectionLatency_ASC' | 'avg_connectionLatency_DESC' | 'avg_dnsLatency_ASC' | 'avg_dnsLatency_DESC' | 'avg_sampleInterval_ASC' | 'avg_sampleInterval_DESC' | 'coloCode_ASC' | 'coloCode_DESC' | 'count_ASC' | 'count_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'errorCode_ASC' | 'errorCode_DESC' | 'status_ASC' | 'status_DESC' | 'sum_connectionLatency_ASC' | 'sum_connectionLatency_DESC' | 'sum_dnsLatency_ASC' | 'sum_dnsLatency_DESC' | 'targetId_ASC' | 'targetId_DESC'; }; + 'AccountWorkersVpcConnectionAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'AccountWorkersVpcConnectionAdaptiveGroupsSum'; fields: { 'connectionLatency': { name: 'connectionLatency'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dnsLatency': { name: 'dnsLatency'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountWorkersVpcConnectionAdaptiveGroupsSumConfidence': { kind: 'OBJECT'; name: 'AccountWorkersVpcConnectionAdaptiveGroupsSumConfidence'; fields: { 'connectionLatency': { name: 'connectionLatency'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'dnsLatency': { name: 'dnsLatency'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountWorkflowsAdaptive': { kind: 'OBJECT'; name: 'AccountWorkflowsAdaptive'; fields: { 'cpuTime': { name: 'cpuTime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'endTimestamp': { name: 'endTimestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'eventType': { name: 'eventType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'executionDuration': { name: 'executionDuration'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'instanceId': { name: 'instanceId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'retryCount': { name: 'retryCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'startTimestamp': { name: 'startTimestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'stepCount': { name: 'stepCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'storageRate': { name: 'storageRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'wallTime': { name: 'wallTime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'workflowName': { name: 'workflowName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountWorkflowsAdaptiveFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountWorkflowsAdaptiveFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountWorkflowsAdaptiveFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountWorkflowsAdaptiveFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'cpuTime'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'cpuTime_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'cpuTime_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'cpuTime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'cpuTime_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'cpuTime_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'cpuTime_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'cpuTime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'endTimestamp'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'endTimestamp_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'endTimestamp_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'endTimestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'endTimestamp_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'endTimestamp_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'endTimestamp_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'endTimestamp_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'eventType'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventType_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventType_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventType_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'eventType_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventType_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventType_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventType_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventType_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'eventType_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'executionDuration'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'executionDuration_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'executionDuration_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'executionDuration_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'executionDuration_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'executionDuration_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'executionDuration_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'executionDuration_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'instanceId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'instanceId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'instanceId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'instanceId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'instanceId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'instanceId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'instanceId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'instanceId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'instanceId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'instanceId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'retryCount'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'retryCount_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'retryCount_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'retryCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'retryCount_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'retryCount_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'retryCount_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'retryCount_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sampleInterval'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sampleInterval_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'startTimestamp'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'startTimestamp_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'startTimestamp_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'startTimestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'startTimestamp_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'startTimestamp_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'startTimestamp_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'startTimestamp_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'stepCount'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'stepCount_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'stepCount_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'stepCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'stepCount_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'stepCount_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'stepCount_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'stepCount_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'storageRate'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'storageRate_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'storageRate_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'storageRate_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'storageRate_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'storageRate_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'storageRate_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'storageRate_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'wallTime'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'wallTime_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'wallTime_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'wallTime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'wallTime_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'wallTime_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'wallTime_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'wallTime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'workflowName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'workflowName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'workflowName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'workflowName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'workflowName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'workflowName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'workflowName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'workflowName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'workflowName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'workflowName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountWorkflowsAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountWorkflowsAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'AccountWorkflowsAdaptiveGroupsAvg'; ofType: null; } }; 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountWorkflowsAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountWorkflowsAdaptiveGroupsDimensions'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountWorkflowsAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'AccountWorkflowsAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'AccountWorkflowsAdaptiveGroupsAvg'; fields: { 'cpuTime': { name: 'cpuTime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'wallTime': { name: 'wallTime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; }; }; + 'AccountWorkflowsAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountWorkflowsAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'AccountWorkflowsAdaptiveGroupsSumConfidence'; ofType: null; } }; }; }; + 'AccountWorkflowsAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountWorkflowsAdaptiveGroupsDimensions'; fields: { 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'eventType': { name: 'eventType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'instanceId': { name: 'instanceId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'workflowName': { name: 'workflowName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountWorkflowsAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountWorkflowsAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountWorkflowsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountWorkflowsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'eventType'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventType_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventType_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventType_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'eventType_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventType_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventType_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventType_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventType_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'eventType_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'instanceId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'instanceId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'instanceId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'instanceId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'instanceId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'instanceId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'instanceId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'instanceId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'instanceId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'instanceId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'workflowName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'workflowName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'workflowName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'workflowName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'workflowName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'workflowName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'workflowName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'workflowName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'workflowName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'workflowName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountWorkflowsAdaptiveGroupsOrderBy': { name: 'AccountWorkflowsAdaptiveGroupsOrderBy'; enumValues: 'avg_cpuTime_ASC' | 'avg_cpuTime_DESC' | 'avg_wallTime_ASC' | 'avg_wallTime_DESC' | 'count_ASC' | 'count_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'eventType_ASC' | 'eventType_DESC' | 'instanceId_ASC' | 'instanceId_DESC' | 'sum_cpuTime_ASC' | 'sum_cpuTime_DESC' | 'sum_executionDuration_ASC' | 'sum_executionDuration_DESC' | 'sum_retryCount_ASC' | 'sum_retryCount_DESC' | 'sum_stepCount_ASC' | 'sum_stepCount_DESC' | 'sum_storageRate_ASC' | 'sum_storageRate_DESC' | 'sum_wallTime_ASC' | 'sum_wallTime_DESC' | 'workflowName_ASC' | 'workflowName_DESC'; }; + 'AccountWorkflowsAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'AccountWorkflowsAdaptiveGroupsSum'; fields: { 'cpuTime': { name: 'cpuTime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'executionDuration': { name: 'executionDuration'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'retryCount': { name: 'retryCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'stepCount': { name: 'stepCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'storageRate': { name: 'storageRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'wallTime': { name: 'wallTime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'AccountWorkflowsAdaptiveGroupsSumConfidence': { kind: 'OBJECT'; name: 'AccountWorkflowsAdaptiveGroupsSumConfidence'; fields: { 'cpuTime': { name: 'cpuTime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'executionDuration': { name: 'executionDuration'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'retryCount': { name: 'retryCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'stepCount': { name: 'stepCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'storageRate': { name: 'storageRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'wallTime': { name: 'wallTime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'AccountWorkflowsAdaptiveOrderBy': { name: 'AccountWorkflowsAdaptiveOrderBy'; enumValues: 'cpuTime_ASC' | 'cpuTime_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'endTimestamp_ASC' | 'endTimestamp_DESC' | 'eventType_ASC' | 'eventType_DESC' | 'executionDuration_ASC' | 'executionDuration_DESC' | 'instanceId_ASC' | 'instanceId_DESC' | 'retryCount_ASC' | 'retryCount_DESC' | 'sampleInterval_ASC' | 'sampleInterval_DESC' | 'startTimestamp_ASC' | 'startTimestamp_DESC' | 'stepCount_ASC' | 'stepCount_DESC' | 'storageRate_ASC' | 'storageRate_DESC' | 'wallTime_ASC' | 'wallTime_DESC' | 'workflowName_ASC' | 'workflowName_DESC'; }; + 'AccountZarazTrackAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountZarazTrackAdaptiveGroups'; fields: { 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountZarazTrackAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountZarazTrackAdaptiveGroupsDimensions'; ofType: null; } }; }; }; + 'AccountZarazTrackAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountZarazTrackAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountZarazTrackAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountZarazTrackAdaptiveGroupsDimensions'; fields: { 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'trackName': { name: 'trackName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'urlPath': { name: 'urlPath'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountZarazTrackAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountZarazTrackAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountZarazTrackAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountZarazTrackAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'trackName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'trackName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'trackName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlPath'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlPath_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlPath_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlPath_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'urlPath_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlPath_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlPath_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlPath_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlPath_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'urlPath_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountZarazTrackAdaptiveGroupsOrderBy': { name: 'AccountZarazTrackAdaptiveGroupsOrderBy'; enumValues: 'count_ASC' | 'count_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'trackName_ASC' | 'trackName_DESC' | 'urlPath_ASC' | 'urlPath_DESC'; }; + 'AccountZarazTriggersAdaptiveGroups': { kind: 'OBJECT'; name: 'AccountZarazTriggersAdaptiveGroups'; fields: { 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountZarazTriggersAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountZarazTriggersAdaptiveGroupsDimensions'; ofType: null; } }; }; }; + 'AccountZarazTriggersAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'AccountZarazTriggersAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'AccountZarazTriggersAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'AccountZarazTriggersAdaptiveGroupsDimensions'; fields: { 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'triggerName': { name: 'triggerName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountZarazTriggersAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountZarazTriggersAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountZarazTriggersAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountZarazTriggersAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'triggerName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'triggerName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'triggerName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'triggerName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'triggerName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'triggerName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'triggerName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'triggerName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'triggerName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'triggerName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountZarazTriggersAdaptiveGroupsOrderBy': { name: 'AccountZarazTriggersAdaptiveGroupsOrderBy'; enumValues: 'count_ASC' | 'count_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'triggerName_ASC' | 'triggerName_DESC'; }; + 'AccountZeroTrustPrivateNetworkDiscoveryGroups': { kind: 'OBJECT'; name: 'AccountZeroTrustPrivateNetworkDiscoveryGroups'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'AccountZeroTrustPrivateNetworkDiscoveryGroupsDimensions'; ofType: null; } }; 'max': { name: 'max'; type: { kind: 'OBJECT'; name: 'AccountZeroTrustPrivateNetworkDiscoveryGroupsMax'; ofType: null; } }; 'uniq': { name: 'uniq'; type: { kind: 'OBJECT'; name: 'AccountZeroTrustPrivateNetworkDiscoveryGroupsUniq'; ofType: null; } }; }; }; + 'AccountZeroTrustPrivateNetworkDiscoveryGroupsDimensions': { kind: 'OBJECT'; name: 'AccountZeroTrustPrivateNetworkDiscoveryGroupsDimensions'; fields: { 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'destinationIP': { name: 'destinationIP'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'destinationPort': { name: 'destinationPort'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'email': { name: 'email'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'hostname': { name: 'hostname'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'originId': { name: 'originId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'status': { name: 'status'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'transport': { name: 'transport'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'userId': { name: 'userId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'AccountZeroTrustPrivateNetworkDiscoveryGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'AccountZeroTrustPrivateNetworkDiscoveryGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountZeroTrustPrivateNetworkDiscoveryGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccountZeroTrustPrivateNetworkDiscoveryGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationIP'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIP_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIP_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIP_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationIP_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIP_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIP_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIP_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIP_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationIP_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationPort'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationPort_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'destinationPort_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'email'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'email_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'email_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'email_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'email_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'email_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'email_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'email_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'email_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'email_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'hostname'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'hostname_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'hostname_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'hostname_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'hostname_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'hostname_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'hostname_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'hostname_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'hostname_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'hostname_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'originId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'originId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'status_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'status_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'transport'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'transport_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'transport_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'transport_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'transport_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'transport_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'transport_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'transport_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'transport_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'transport_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'AccountZeroTrustPrivateNetworkDiscoveryGroupsMax': { kind: 'OBJECT'; name: 'AccountZeroTrustPrivateNetworkDiscoveryGroupsMax'; fields: { 'dateTime': { name: 'dateTime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; }; }; + 'AccountZeroTrustPrivateNetworkDiscoveryGroupsOrderBy': { name: 'AccountZeroTrustPrivateNetworkDiscoveryGroupsOrderBy'; enumValues: 'count_ASC' | 'count_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'destinationIP_ASC' | 'destinationIP_DESC' | 'destinationPort_ASC' | 'destinationPort_DESC' | 'email_ASC' | 'email_DESC' | 'hostname_ASC' | 'hostname_DESC' | 'max_dateTime_ASC' | 'max_dateTime_DESC' | 'originId_ASC' | 'originId_DESC' | 'status_ASC' | 'status_DESC' | 'transport_ASC' | 'transport_DESC' | 'uniq_emails_ASC' | 'uniq_emails_DESC' | 'uniq_origins_ASC' | 'uniq_origins_DESC' | 'uniq_userIds_ASC' | 'uniq_userIds_DESC' | 'userId_ASC' | 'userId_DESC'; }; + 'AccountZeroTrustPrivateNetworkDiscoveryGroupsUniq': { kind: 'OBJECT'; name: 'AccountZeroTrustPrivateNetworkDiscoveryGroupsUniq'; fields: { 'emails': { name: 'emails'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'origins': { name: 'origins'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'userIds': { name: 'userIds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'Boolean': unknown; + 'Confidence': { kind: 'OBJECT'; name: 'Confidence'; fields: { 'estimate': { name: 'estimate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'isValid': { name: 'isValid'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; } }; 'lower': { name: 'lower'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sampleSize': { name: 'sampleSize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'upper': { name: 'upper'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'Date': unknown; + 'Mutation': { kind: 'OBJECT'; name: 'Mutation'; fields: { 'do': { name: 'do'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'OrganizationFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'OrganizationFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'organizationTag'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; defaultValue: null }]; }; + 'OrganizationHttpRequestsAdaptiveGroups': { kind: 'OBJECT'; name: 'OrganizationHttpRequestsAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'OrganizationHttpRequestsAdaptiveGroupsAvg'; ofType: null; } }; 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'OrganizationHttpRequestsAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'OrganizationHttpRequestsAdaptiveGroupsDimensions'; ofType: null; } }; 'quantiles': { name: 'quantiles'; type: { kind: 'OBJECT'; name: 'OrganizationHttpRequestsAdaptiveGroupsQuantiles'; ofType: null; } }; 'ratio': { name: 'ratio'; type: { kind: 'OBJECT'; name: 'OrganizationHttpRequestsAdaptiveGroupsRatio'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'OrganizationHttpRequestsAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'OrganizationHttpRequestsAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'OrganizationHttpRequestsAdaptiveGroupsAvg'; fields: { 'crossZoneSubrequests': { name: 'crossZoneSubrequests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'edgeDnsResponseTimeMs': { name: 'edgeDnsResponseTimeMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'edgeTimeToFirstByteMs': { name: 'edgeTimeToFirstByteMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'originResponseDurationMs': { name: 'originResponseDurationMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'OrganizationHttpRequestsAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'OrganizationHttpRequestsAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'OrganizationHttpRequestsAdaptiveGroupsSumConfidence'; ofType: null; } }; }; }; + 'OrganizationHttpRequestsAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'OrganizationHttpRequestsAdaptiveGroupsDimensions'; fields: { 'accountTag': { name: 'accountTag'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'apiGatewayMatchedEndpoint': { name: 'apiGatewayMatchedEndpoint'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'apiGatewayMatchedHost': { name: 'apiGatewayMatchedHost'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'attackSignatureCategories': { name: 'attackSignatureCategories'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'attackSignatureRefs': { name: 'attackSignatureRefs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'botManagementDecision': { name: 'botManagementDecision'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'botScore': { name: 'botScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'botScoreBucketBy10': { name: 'botScoreBucketBy10'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'botScoreSrcName': { name: 'botScoreSrcName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'cacheReserveUsed': { name: 'cacheReserveUsed'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'cacheStatus': { name: 'cacheStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientASNDescription': { name: 'clientASNDescription'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientAsn': { name: 'clientAsn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientCountryName': { name: 'clientCountryName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientDeviceType': { name: 'clientDeviceType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientIP': { name: 'clientIP'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRefererHost': { name: 'clientRefererHost'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRequestHTTPHost': { name: 'clientRequestHTTPHost'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRequestHTTPMethodName': { name: 'clientRequestHTTPMethodName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRequestHTTPProtocol': { name: 'clientRequestHTTPProtocol'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRequestPath': { name: 'clientRequestPath'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRequestQuery': { name: 'clientRequestQuery'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRequestReferer': { name: 'clientRequestReferer'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRequestScheme': { name: 'clientRequestScheme'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientSSLProtocol': { name: 'clientSSLProtocol'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'coloCode': { name: 'coloCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'contentScanHasFailed': { name: 'contentScanHasFailed'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'contentScanNumMaliciousObj': { name: 'contentScanNumMaliciousObj'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'contentScanNumObj': { name: 'contentScanNumObj'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'contentScanObjResults': { name: 'contentScanObjResults'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'contentScanObjSizes': { name: 'contentScanObjSizes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; } }; 'contentScanObjTypes': { name: 'contentScanObjTypes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'edgeDnsResponseTimeMs': { name: 'edgeDnsResponseTimeMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'edgeResponseContentTypeName': { name: 'edgeResponseContentTypeName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'edgeResponseStatus': { name: 'edgeResponseStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'edgeTimeToFirstByteMs': { name: 'edgeTimeToFirstByteMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'firewallForAiAnyPiiCategory': { name: 'firewallForAiAnyPiiCategory'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; } }; 'firewallForAiInjectionScore': { name: 'firewallForAiInjectionScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; } }; 'firewallForAiPiiCategories': { name: 'firewallForAiPiiCategories'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'firewallForAiUnsafeTopicCategories': { name: 'firewallForAiUnsafeTopicCategories'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'fraudAttack': { name: 'fraudAttack'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'fraudDetectionIds': { name: 'fraudDetectionIds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; } }; 'fraudDetectionTags': { name: 'fraudDetectionTags'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'fraudEmailRisk': { name: 'fraudEmailRisk'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'httpApplicationVersion': { name: 'httpApplicationVersion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'isCrossZoneSubrequest': { name: 'isCrossZoneSubrequest'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ja3Hash': { name: 'ja3Hash'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ja4': { name: 'ja4'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'jsDetectionPassed': { name: 'jsDetectionPassed'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'leakedCredentialCheckResult': { name: 'leakedCredentialCheckResult'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'originASN': { name: 'originASN'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'originASNDescription': { name: 'originASNDescription'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'originIP': { name: 'originIP'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'originResponseDurationMs': { name: 'originResponseDurationMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'originResponseStatus': { name: 'originResponseStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'payPerCrawlStatus': { name: 'payPerCrawlStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'requestSource': { name: 'requestSource'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'securityAction': { name: 'securityAction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'securitySource': { name: 'securitySource'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sessionIdHash': { name: 'sessionIdHash'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'upperTierColoName': { name: 'upperTierColoName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'userAgent': { name: 'userAgent'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'userAgentBrowser': { name: 'userAgentBrowser'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'userAgentOS': { name: 'userAgentOS'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'verifiedBotCategory': { name: 'verifiedBotCategory'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'wafAttackScore': { name: 'wafAttackScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'wafAttackScoreClass': { name: 'wafAttackScoreClass'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'wafRceAttackScore': { name: 'wafRceAttackScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'wafSqliAttackScore': { name: 'wafSqliAttackScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'wafXssAttackScore': { name: 'wafXssAttackScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'xRequestedWith': { name: 'xRequestedWith'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'zoneTag': { name: 'zoneTag'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'zoneVersion': { name: 'zoneVersion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'OrganizationHttpRequestsAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'OrganizationHttpRequestsAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'OrganizationHttpRequestsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'OrganizationHttpRequestsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackSignatureCategories_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackSignatureCategories_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'attackSignatureCategories_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'attackSignatureCategories_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'attackSignatureCategories_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackSignatureRefs_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackSignatureRefs_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'attackSignatureRefs_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'attackSignatureRefs_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'attackSignatureRefs_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botManagementDecision'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botManagementDecision_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botManagementDecision_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botManagementDecision_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'botManagementDecision_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botManagementDecision_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botManagementDecision_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botManagementDecision_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botManagementDecision_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'botManagementDecision_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScore'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScoreBucketBy10'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScoreBucketBy10_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScoreBucketBy10_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScoreBucketBy10_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'botScoreBucketBy10_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScoreBucketBy10_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScoreBucketBy10_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScoreBucketBy10_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'botScoreSrcName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'botScoreSrcName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScore_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScore_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScore_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'botScore_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScore_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScore_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScore_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'cacheReserveUsed'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'cacheReserveUsed_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'cacheReserveUsed_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'cacheReserveUsed_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'cacheReserveUsed_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'cacheReserveUsed_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'cacheReserveUsed_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'cacheReserveUsed_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'cacheStatus'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cacheStatus_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cacheStatus_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cacheStatus_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'cacheStatus_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cacheStatus_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cacheStatus_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cacheStatus_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cacheStatus_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'cacheStatus_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientASNDescription_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientASNDescription_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientAsn_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientAsn_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientCountryName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientCountryName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientDeviceType'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientDeviceType_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientDeviceType_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientDeviceType_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientDeviceType_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientDeviceType_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientDeviceType_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientDeviceType_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientDeviceType_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientDeviceType_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientIP_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientIP_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRefererHost_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRefererHost_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestHTTPHost_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestHTTPHost_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestPath_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestPath_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestQuery_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestQuery_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestReferer'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestReferer_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestReferer_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestReferer_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestReferer_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestReferer_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestReferer_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestReferer_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestReferer_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestReferer_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestScheme_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestScheme_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientSSLProtocol'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientSSLProtocol_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientSSLProtocol_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientSSLProtocol_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientSSLProtocol_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientSSLProtocol_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientSSLProtocol_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientSSLProtocol_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientSSLProtocol_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientSSLProtocol_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCode_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCode_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjResults_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjResults_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'contentScanObjResults_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'contentScanObjResults_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjResults_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjSizes_has'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjSizes_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'contentScanObjSizes_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'contentScanObjSizes_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjSizes_nothas'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjTypes_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjTypes_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'contentScanObjTypes_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'contentScanObjTypes_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjTypes_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeDnsResponseTimeMs'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeDnsResponseTimeMs_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeDnsResponseTimeMs_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeDnsResponseTimeMs_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeDnsResponseTimeMs_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeDnsResponseTimeMs_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeDnsResponseTimeMs_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeDnsResponseTimeMs_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeResponseContentTypeName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseContentTypeName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseContentTypeName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseContentTypeName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeResponseContentTypeName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseContentTypeName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseContentTypeName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseContentTypeName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseContentTypeName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeResponseContentTypeName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeResponseStatus_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeTimeToFirstByteMs'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeTimeToFirstByteMs_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeTimeToFirstByteMs_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeTimeToFirstByteMs_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeTimeToFirstByteMs_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeTimeToFirstByteMs_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeTimeToFirstByteMs_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeTimeToFirstByteMs_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory_geq'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory_gt'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory_leq'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory_lt'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory_neq'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiInjectionScore'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiInjectionScore_geq'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiInjectionScore_gt'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiInjectionScore_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiInjectionScore_leq'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiInjectionScore_lt'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiInjectionScore_neq'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiInjectionScore_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiPiiCategories_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiPiiCategories_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiPiiCategories_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiPiiCategories_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiPiiCategories_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiUnsafeTopicCategories_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiUnsafeTopicCategories_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiUnsafeTopicCategories_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiUnsafeTopicCategories_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiUnsafeTopicCategories_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudAttack_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudAttack_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudDetectionIds_has'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'fraudDetectionIds_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudDetectionIds_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudDetectionIds_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'fraudDetectionIds_nothas'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'fraudDetectionTags_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudDetectionTags_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudDetectionTags_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudDetectionTags_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'fraudDetectionTags_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudEmailRisk_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudEmailRisk_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'httpApplicationVersion_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'isCrossZoneSubrequest'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isCrossZoneSubrequest_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isCrossZoneSubrequest_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isCrossZoneSubrequest_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'isCrossZoneSubrequest_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isCrossZoneSubrequest_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isCrossZoneSubrequest_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isCrossZoneSubrequest_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ja3Hash'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja3Hash_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja3Hash_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja3Hash_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ja3Hash_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja3Hash_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja3Hash_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja3Hash_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja3Hash_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ja3Hash_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ja4_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ja4_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'jsDetectionPassed_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'jsDetectionPassed_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leakedCredentialCheckResult'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leakedCredentialCheckResult_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leakedCredentialCheckResult_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leakedCredentialCheckResult_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'leakedCredentialCheckResult_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leakedCredentialCheckResult_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leakedCredentialCheckResult_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leakedCredentialCheckResult_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leakedCredentialCheckResult_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'leakedCredentialCheckResult_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originASN'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'originASNDescription'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originASNDescription_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originASNDescription_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originASNDescription_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'originASNDescription_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originASNDescription_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originASNDescription_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originASNDescription_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originASNDescription_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'originASNDescription_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originASN_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'originASN_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'originASN_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'originASN_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'originASN_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'originASN_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'originASN_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'originIP'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originIP_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originIP_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originIP_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'originIP_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originIP_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originIP_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originIP_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originIP_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'originIP_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originResponseDurationMs'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'originResponseDurationMs_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'originResponseDurationMs_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'originResponseDurationMs_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'originResponseDurationMs_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'originResponseDurationMs_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'originResponseDurationMs_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'originResponseDurationMs_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'originResponseStatus'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'originResponseStatus_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'originResponseStatus_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'originResponseStatus_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'originResponseStatus_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'originResponseStatus_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'originResponseStatus_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'originResponseStatus_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'payPerCrawlStatus'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'payPerCrawlStatus_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'payPerCrawlStatus_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'payPerCrawlStatus_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'payPerCrawlStatus_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'payPerCrawlStatus_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'payPerCrawlStatus_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'payPerCrawlStatus_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'payPerCrawlStatus_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'payPerCrawlStatus_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'rayName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'rayName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestSource'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestSource_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestSource_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestSource_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'requestSource_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestSource_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestSource_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestSource_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestSource_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'requestSource_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sampleInterval_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'securityAction'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'securityAction_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'securityAction_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'securityAction_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'securityAction_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'securityAction_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'securityAction_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'securityAction_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'securityAction_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'securityAction_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'securitySource'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'securitySource_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'securitySource_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'securitySource_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'securitySource_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'securitySource_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'securitySource_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'securitySource_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'securitySource_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'securitySource_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionIdHash'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionIdHash_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionIdHash_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionIdHash_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionIdHash_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionIdHash_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionIdHash_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionIdHash_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionIdHash_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionIdHash_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upperTierColoName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upperTierColoName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upperTierColoName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upperTierColoName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'upperTierColoName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upperTierColoName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upperTierColoName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upperTierColoName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upperTierColoName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'upperTierColoName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userAgentBrowser_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userAgentBrowser_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentOS'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentOS_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentOS_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentOS_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userAgentOS_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentOS_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentOS_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentOS_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentOS_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userAgentOS_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userAgent_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userAgent_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'verifiedBotCategory_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'verifiedBotCategory_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'wafAttackScoreClass_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'wafAttackScoreClass_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'xRequestedWith'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'xRequestedWith_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'xRequestedWith_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'xRequestedWith_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'xRequestedWith_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'xRequestedWith_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'xRequestedWith_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'xRequestedWith_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'xRequestedWith_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'xRequestedWith_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'zoneVersion_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }]; }; + 'OrganizationHttpRequestsAdaptiveGroupsOrderBy': { name: 'OrganizationHttpRequestsAdaptiveGroupsOrderBy'; enumValues: 'apiGatewayMatchedEndpoint_ASC' | 'apiGatewayMatchedEndpoint_DESC' | 'apiGatewayMatchedHost_ASC' | 'apiGatewayMatchedHost_DESC' | 'attackSignatureCategories_ASC' | 'attackSignatureCategories_DESC' | 'attackSignatureRefs_ASC' | 'attackSignatureRefs_DESC' | 'avg_crossZoneSubrequests_ASC' | 'avg_crossZoneSubrequests_DESC' | 'avg_edgeDnsResponseTimeMs_ASC' | 'avg_edgeDnsResponseTimeMs_DESC' | 'avg_edgeTimeToFirstByteMs_ASC' | 'avg_edgeTimeToFirstByteMs_DESC' | 'avg_originResponseDurationMs_ASC' | 'avg_originResponseDurationMs_DESC' | 'avg_sampleInterval_ASC' | 'avg_sampleInterval_DESC' | 'botManagementDecision_ASC' | 'botManagementDecision_DESC' | 'botScoreBucketBy10_ASC' | 'botScoreBucketBy10_DESC' | 'botScoreSrcName_ASC' | 'botScoreSrcName_DESC' | 'botScore_ASC' | 'botScore_DESC' | 'cacheReserveUsed_ASC' | 'cacheReserveUsed_DESC' | 'cacheStatus_ASC' | 'cacheStatus_DESC' | 'clientASNDescription_ASC' | 'clientASNDescription_DESC' | 'clientAsn_ASC' | 'clientAsn_DESC' | 'clientCountryName_ASC' | 'clientCountryName_DESC' | 'clientDeviceType_ASC' | 'clientDeviceType_DESC' | 'clientIP_ASC' | 'clientIP_DESC' | 'clientRefererHost_ASC' | 'clientRefererHost_DESC' | 'clientRequestHTTPHost_ASC' | 'clientRequestHTTPHost_DESC' | 'clientRequestHTTPMethodName_ASC' | 'clientRequestHTTPMethodName_DESC' | 'clientRequestHTTPProtocol_ASC' | 'clientRequestHTTPProtocol_DESC' | 'clientRequestPath_ASC' | 'clientRequestPath_DESC' | 'clientRequestQuery_ASC' | 'clientRequestQuery_DESC' | 'clientRequestReferer_ASC' | 'clientRequestReferer_DESC' | 'clientRequestScheme_ASC' | 'clientRequestScheme_DESC' | 'clientSSLProtocol_ASC' | 'clientSSLProtocol_DESC' | 'coloCode_ASC' | 'coloCode_DESC' | 'contentScanHasFailed_ASC' | 'contentScanHasFailed_DESC' | 'contentScanNumMaliciousObj_ASC' | 'contentScanNumMaliciousObj_DESC' | 'contentScanNumObj_ASC' | 'contentScanNumObj_DESC' | 'contentScanObjResults_ASC' | 'contentScanObjResults_DESC' | 'contentScanObjSizes_ASC' | 'contentScanObjSizes_DESC' | 'contentScanObjTypes_ASC' | 'contentScanObjTypes_DESC' | 'count_ASC' | 'count_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'edgeDnsResponseTimeMs_ASC' | 'edgeDnsResponseTimeMs_DESC' | 'edgeResponseContentTypeName_ASC' | 'edgeResponseContentTypeName_DESC' | 'edgeResponseStatus_ASC' | 'edgeResponseStatus_DESC' | 'edgeTimeToFirstByteMs_ASC' | 'edgeTimeToFirstByteMs_DESC' | 'firewallForAiAnyPiiCategory_ASC' | 'firewallForAiAnyPiiCategory_DESC' | 'firewallForAiInjectionScore_ASC' | 'firewallForAiInjectionScore_DESC' | 'firewallForAiPiiCategories_ASC' | 'firewallForAiPiiCategories_DESC' | 'firewallForAiUnsafeTopicCategories_ASC' | 'firewallForAiUnsafeTopicCategories_DESC' | 'fraudAttack_ASC' | 'fraudAttack_DESC' | 'fraudDetectionIds_ASC' | 'fraudDetectionIds_DESC' | 'fraudDetectionTags_ASC' | 'fraudDetectionTags_DESC' | 'fraudEmailRisk_ASC' | 'fraudEmailRisk_DESC' | 'httpApplicationVersion_ASC' | 'httpApplicationVersion_DESC' | 'isCrossZoneSubrequest_ASC' | 'isCrossZoneSubrequest_DESC' | 'ja3Hash_ASC' | 'ja3Hash_DESC' | 'ja4_ASC' | 'ja4_DESC' | 'jsDetectionPassed_ASC' | 'jsDetectionPassed_DESC' | 'leakedCredentialCheckResult_ASC' | 'leakedCredentialCheckResult_DESC' | 'originASNDescription_ASC' | 'originASNDescription_DESC' | 'originASN_ASC' | 'originASN_DESC' | 'originIP_ASC' | 'originIP_DESC' | 'originResponseDurationMs_ASC' | 'originResponseDurationMs_DESC' | 'originResponseStatus_ASC' | 'originResponseStatus_DESC' | 'payPerCrawlStatus_ASC' | 'payPerCrawlStatus_DESC' | 'quantiles_edgeDnsResponseTimeMsP50_ASC' | 'quantiles_edgeDnsResponseTimeMsP50_DESC' | 'quantiles_edgeDnsResponseTimeMsP95_ASC' | 'quantiles_edgeDnsResponseTimeMsP95_DESC' | 'quantiles_edgeDnsResponseTimeMsP99_ASC' | 'quantiles_edgeDnsResponseTimeMsP99_DESC' | 'quantiles_edgeTimeToFirstByteMsP50_ASC' | 'quantiles_edgeTimeToFirstByteMsP50_DESC' | 'quantiles_edgeTimeToFirstByteMsP95_ASC' | 'quantiles_edgeTimeToFirstByteMsP95_DESC' | 'quantiles_edgeTimeToFirstByteMsP99_ASC' | 'quantiles_edgeTimeToFirstByteMsP99_DESC' | 'quantiles_originResponseDurationMsP50_ASC' | 'quantiles_originResponseDurationMsP50_DESC' | 'quantiles_originResponseDurationMsP95_ASC' | 'quantiles_originResponseDurationMsP95_DESC' | 'quantiles_originResponseDurationMsP99_ASC' | 'quantiles_originResponseDurationMsP99_DESC' | 'ratio_status4xx_ASC' | 'ratio_status4xx_DESC' | 'ratio_status5xx_ASC' | 'ratio_status5xx_DESC' | 'requestSource_ASC' | 'requestSource_DESC' | 'sampleInterval_ASC' | 'sampleInterval_DESC' | 'securityAction_ASC' | 'securityAction_DESC' | 'securitySource_ASC' | 'securitySource_DESC' | 'sessionIdHash_ASC' | 'sessionIdHash_DESC' | 'sum_crossZoneSubrequests_ASC' | 'sum_crossZoneSubrequests_DESC' | 'sum_edgeDnsResponseTimeMs_ASC' | 'sum_edgeDnsResponseTimeMs_DESC' | 'sum_edgeResponseBytes_ASC' | 'sum_edgeResponseBytes_DESC' | 'sum_edgeTimeToFirstByteMs_ASC' | 'sum_edgeTimeToFirstByteMs_DESC' | 'sum_fraudDetectionIdArray_ASC' | 'sum_fraudDetectionIdArray_DESC' | 'sum_fraudDetectionIdCountArray_ASC' | 'sum_fraudDetectionIdCountArray_DESC' | 'sum_fraudDetectionTagArray_ASC' | 'sum_fraudDetectionTagArray_DESC' | 'sum_fraudDetectionTagCountArray_ASC' | 'sum_fraudDetectionTagCountArray_DESC' | 'sum_originResponseDurationMs_ASC' | 'sum_originResponseDurationMs_DESC' | 'sum_visits_ASC' | 'sum_visits_DESC' | 'upperTierColoName_ASC' | 'upperTierColoName_DESC' | 'userAgentBrowser_ASC' | 'userAgentBrowser_DESC' | 'userAgentOS_ASC' | 'userAgentOS_DESC' | 'userAgent_ASC' | 'userAgent_DESC' | 'verifiedBotCategory_ASC' | 'verifiedBotCategory_DESC' | 'wafAttackScoreClass_ASC' | 'wafAttackScoreClass_DESC' | 'wafAttackScore_ASC' | 'wafAttackScore_DESC' | 'wafRceAttackScore_ASC' | 'wafRceAttackScore_DESC' | 'wafSqliAttackScore_ASC' | 'wafSqliAttackScore_DESC' | 'wafXssAttackScore_ASC' | 'wafXssAttackScore_DESC' | 'xRequestedWith_ASC' | 'xRequestedWith_DESC' | 'zoneVersion_ASC' | 'zoneVersion_DESC'; }; + 'OrganizationHttpRequestsAdaptiveGroupsQuantiles': { kind: 'OBJECT'; name: 'OrganizationHttpRequestsAdaptiveGroupsQuantiles'; fields: { 'edgeDnsResponseTimeMsP50': { name: 'edgeDnsResponseTimeMsP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'edgeDnsResponseTimeMsP95': { name: 'edgeDnsResponseTimeMsP95'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'edgeDnsResponseTimeMsP99': { name: 'edgeDnsResponseTimeMsP99'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'edgeTimeToFirstByteMsP50': { name: 'edgeTimeToFirstByteMsP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'edgeTimeToFirstByteMsP95': { name: 'edgeTimeToFirstByteMsP95'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'edgeTimeToFirstByteMsP99': { name: 'edgeTimeToFirstByteMsP99'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'originResponseDurationMsP50': { name: 'originResponseDurationMsP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'originResponseDurationMsP95': { name: 'originResponseDurationMsP95'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'originResponseDurationMsP99': { name: 'originResponseDurationMsP99'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'OrganizationHttpRequestsAdaptiveGroupsRatio': { kind: 'OBJECT'; name: 'OrganizationHttpRequestsAdaptiveGroupsRatio'; fields: { 'status4xx': { name: 'status4xx'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'status5xx': { name: 'status5xx'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'OrganizationHttpRequestsAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'OrganizationHttpRequestsAdaptiveGroupsSum'; fields: { 'crossZoneSubrequests': { name: 'crossZoneSubrequests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'edgeDnsResponseTimeMs': { name: 'edgeDnsResponseTimeMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'edgeResponseBytes': { name: 'edgeResponseBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'edgeTimeToFirstByteMs': { name: 'edgeTimeToFirstByteMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'fraudDetectionIdArray': { name: 'fraudDetectionIdArray'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; } }; 'fraudDetectionIdCountArray': { name: 'fraudDetectionIdCountArray'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; } }; 'fraudDetectionTagArray': { name: 'fraudDetectionTagArray'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'fraudDetectionTagCountArray': { name: 'fraudDetectionTagCountArray'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; } }; 'originResponseDurationMs': { name: 'originResponseDurationMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'visits': { name: 'visits'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'OrganizationHttpRequestsAdaptiveGroupsSumConfidence': { kind: 'OBJECT'; name: 'OrganizationHttpRequestsAdaptiveGroupsSumConfidence'; fields: { 'crossZoneSubrequests': { name: 'crossZoneSubrequests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'edgeDnsResponseTimeMs': { name: 'edgeDnsResponseTimeMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'edgeResponseBytes': { name: 'edgeResponseBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'edgeTimeToFirstByteMs': { name: 'edgeTimeToFirstByteMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'originResponseDurationMs': { name: 'originResponseDurationMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'visits': { name: 'visits'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'OrganizationSettings': { kind: 'OBJECT'; name: 'OrganizationSettings'; fields: { 'httpRequestsAdaptiveGroups': { name: 'httpRequestsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; }; }; + 'Query': { kind: 'OBJECT'; name: 'Query'; fields: { 'cost': { name: 'cost'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'viewer': { name: 'viewer'; type: { kind: 'OBJECT'; name: 'viewer'; ofType: null; } }; }; }; + 'Settings': { kind: 'OBJECT'; name: 'Settings'; fields: { 'availableFields': { name: 'availableFields'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'enabled': { name: 'enabled'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; } }; 'maxDuration': { name: 'maxDuration'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'maxNumberOfFields': { name: 'maxNumberOfFields'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'maxPageSize': { name: 'maxPageSize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'notOlderThan': { name: 'notOlderThan'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; }; }; + 'String': unknown; + 'Time': unknown; + 'ZoneApiGatewayGraphqlQueryAnalyticsGroups': { kind: 'OBJECT'; name: 'ZoneApiGatewayGraphqlQueryAnalyticsGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'ZoneApiGatewayGraphqlQueryAnalyticsGroupsAvg'; ofType: null; } }; 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneApiGatewayGraphqlQueryAnalyticsGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'ZoneApiGatewayGraphqlQueryAnalyticsGroupsDimensions'; ofType: null; } }; }; }; + 'ZoneApiGatewayGraphqlQueryAnalyticsGroupsAvg': { kind: 'OBJECT'; name: 'ZoneApiGatewayGraphqlQueryAnalyticsGroupsAvg'; fields: { 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'ZoneApiGatewayGraphqlQueryAnalyticsGroupsConfidence': { kind: 'OBJECT'; name: 'ZoneApiGatewayGraphqlQueryAnalyticsGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'ZoneApiGatewayGraphqlQueryAnalyticsGroupsDimensions': { kind: 'OBJECT'; name: 'ZoneApiGatewayGraphqlQueryAnalyticsGroupsDimensions'; fields: { 'apiGatewayGraphqlQueryDepth': { name: 'apiGatewayGraphqlQueryDepth'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; } }; 'apiGatewayGraphqlQuerySize': { name: 'apiGatewayGraphqlQuerySize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int16'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeDay': { name: 'datetimeDay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHalfOfHour': { name: 'datetimeHalfOfHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; }; }; + 'ZoneApiGatewayGraphqlQueryAnalyticsGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'ZoneApiGatewayGraphqlQueryAnalyticsGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneApiGatewayGraphqlQueryAnalyticsGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneApiGatewayGraphqlQueryAnalyticsGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'apiGatewayGraphqlQueryDepth'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayGraphqlQueryDepth_geq'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayGraphqlQueryDepth_gt'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayGraphqlQueryDepth_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; }; }; defaultValue: null }, { name: 'apiGatewayGraphqlQueryDepth_leq'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayGraphqlQueryDepth_lt'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayGraphqlQueryDepth_neq'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayGraphqlQueryDepth_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; }; }; defaultValue: null }, { name: 'apiGatewayGraphqlQuerySize'; type: { kind: 'SCALAR'; name: 'int16'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayGraphqlQuerySize_geq'; type: { kind: 'SCALAR'; name: 'int16'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayGraphqlQuerySize_gt'; type: { kind: 'SCALAR'; name: 'int16'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayGraphqlQuerySize_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int16'; ofType: null; }; }; }; defaultValue: null }, { name: 'apiGatewayGraphqlQuerySize_leq'; type: { kind: 'SCALAR'; name: 'int16'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayGraphqlQuerySize_lt'; type: { kind: 'SCALAR'; name: 'int16'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayGraphqlQuerySize_neq'; type: { kind: 'SCALAR'; name: 'int16'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayGraphqlQuerySize_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int16'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeDay'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeDay_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeDay_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeDay_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeDay_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeDay_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeDay_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeDay_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHalfOfHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHalfOfHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }]; }; + 'ZoneApiGatewayGraphqlQueryAnalyticsGroupsOrderBy': { name: 'ZoneApiGatewayGraphqlQueryAnalyticsGroupsOrderBy'; enumValues: 'apiGatewayGraphqlQueryDepth_ASC' | 'apiGatewayGraphqlQueryDepth_DESC' | 'apiGatewayGraphqlQuerySize_ASC' | 'apiGatewayGraphqlQuerySize_DESC' | 'avg_sampleInterval_ASC' | 'avg_sampleInterval_DESC' | 'count_ASC' | 'count_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeDay_ASC' | 'datetimeDay_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHalfOfHour_ASC' | 'datetimeHalfOfHour_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetime_ASC' | 'datetime_DESC'; }; + 'ZoneApiGatewayMatchedSessionIDsAdaptiveGroups': { kind: 'OBJECT'; name: 'ZoneApiGatewayMatchedSessionIDsAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'ZoneApiGatewayMatchedSessionIDsAdaptiveGroupsAvg'; ofType: null; } }; 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneApiGatewayMatchedSessionIDsAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'ZoneApiGatewayMatchedSessionIDsAdaptiveGroupsDimensions'; ofType: null; } }; }; }; + 'ZoneApiGatewayMatchedSessionIDsAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'ZoneApiGatewayMatchedSessionIDsAdaptiveGroupsAvg'; fields: { 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'ZoneApiGatewayMatchedSessionIDsAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'ZoneApiGatewayMatchedSessionIDsAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'ZoneApiGatewayMatchedSessionIDsAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'ZoneApiGatewayMatchedSessionIDsAdaptiveGroupsDimensions'; fields: { 'apiGatewayMatchedSessionIdentifierName': { name: 'apiGatewayMatchedSessionIdentifierName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'apiGatewayMatchedSessionIdentifierType': { name: 'apiGatewayMatchedSessionIdentifierType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeDay': { name: 'datetimeDay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHalfOfHour': { name: 'datetimeHalfOfHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; }; }; + 'ZoneApiGatewayMatchedSessionIDsAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'ZoneApiGatewayMatchedSessionIDsAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneApiGatewayMatchedSessionIDsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneApiGatewayMatchedSessionIDsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'apiGatewayMatchedSessionIdentifierName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedSessionIdentifierName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedSessionIdentifierName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedSessionIdentifierName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'apiGatewayMatchedSessionIdentifierName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedSessionIdentifierName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedSessionIdentifierName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedSessionIdentifierName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedSessionIdentifierName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'apiGatewayMatchedSessionIdentifierName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedSessionIdentifierType'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedSessionIdentifierType_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedSessionIdentifierType_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedSessionIdentifierType_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'apiGatewayMatchedSessionIdentifierType_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedSessionIdentifierType_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedSessionIdentifierType_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedSessionIdentifierType_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedSessionIdentifierType_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'apiGatewayMatchedSessionIdentifierType_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeDay'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeDay_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeDay_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeDay_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeDay_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeDay_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeDay_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeDay_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHalfOfHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHalfOfHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }]; }; + 'ZoneApiGatewayMatchedSessionIDsAdaptiveGroupsOrderBy': { name: 'ZoneApiGatewayMatchedSessionIDsAdaptiveGroupsOrderBy'; enumValues: 'apiGatewayMatchedSessionIdentifierName_ASC' | 'apiGatewayMatchedSessionIdentifierName_DESC' | 'apiGatewayMatchedSessionIdentifierType_ASC' | 'apiGatewayMatchedSessionIdentifierType_DESC' | 'avg_sampleInterval_ASC' | 'avg_sampleInterval_DESC' | 'count_ASC' | 'count_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeDay_ASC' | 'datetimeDay_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHalfOfHour_ASC' | 'datetimeHalfOfHour_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetime_ASC' | 'datetime_DESC'; }; + 'ZoneApiGatewayMatchedSessionIDsPerEndpointAdaptiveGroups': { kind: 'OBJECT'; name: 'ZoneApiGatewayMatchedSessionIDsPerEndpointAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'ZoneApiGatewayMatchedSessionIDsPerEndpointAdaptiveGroupsAvg'; ofType: null; } }; 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneApiGatewayMatchedSessionIDsPerEndpointAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'ZoneApiGatewayMatchedSessionIDsPerEndpointAdaptiveGroupsDimensions'; ofType: null; } }; }; }; + 'ZoneApiGatewayMatchedSessionIDsPerEndpointAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'ZoneApiGatewayMatchedSessionIDsPerEndpointAdaptiveGroupsAvg'; fields: { 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'ZoneApiGatewayMatchedSessionIDsPerEndpointAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'ZoneApiGatewayMatchedSessionIDsPerEndpointAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'ZoneApiGatewayMatchedSessionIDsPerEndpointAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'ZoneApiGatewayMatchedSessionIDsPerEndpointAdaptiveGroupsDimensions'; fields: { 'apiGatewayMatchedEndpointId': { name: 'apiGatewayMatchedEndpointId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'apiGatewayMatchedSessionIdentifier': { name: 'apiGatewayMatchedSessionIdentifier'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeDay': { name: 'datetimeDay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHalfOfHour': { name: 'datetimeHalfOfHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'responseStatusCode': { name: 'responseStatusCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; }; }; + 'ZoneApiGatewayMatchedSessionIDsPerEndpointAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'ZoneApiGatewayMatchedSessionIDsPerEndpointAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneApiGatewayMatchedSessionIDsPerEndpointAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneApiGatewayMatchedSessionIDsPerEndpointAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpointId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpointId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpointId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpointId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpointId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpointId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpointId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpointId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpointId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpointId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedSessionIdentifier_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedSessionIdentifier_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'apiGatewayMatchedSessionIdentifier_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'apiGatewayMatchedSessionIdentifier_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedSessionIdentifier_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeDay'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeDay_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeDay_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeDay_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeDay_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeDay_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeDay_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeDay_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHalfOfHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHalfOfHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'responseStatusCode'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'responseStatusCode_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'responseStatusCode_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'responseStatusCode_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'responseStatusCode_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'responseStatusCode_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'responseStatusCode_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'responseStatusCode_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }]; }; + 'ZoneApiGatewayMatchedSessionIDsPerEndpointAdaptiveGroupsOrderBy': { name: 'ZoneApiGatewayMatchedSessionIDsPerEndpointAdaptiveGroupsOrderBy'; enumValues: 'apiGatewayMatchedEndpointId_ASC' | 'apiGatewayMatchedEndpointId_DESC' | 'apiGatewayMatchedSessionIdentifier_ASC' | 'apiGatewayMatchedSessionIdentifier_DESC' | 'avg_sampleInterval_ASC' | 'avg_sampleInterval_DESC' | 'count_ASC' | 'count_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeDay_ASC' | 'datetimeDay_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHalfOfHour_ASC' | 'datetimeHalfOfHour_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'responseStatusCode_ASC' | 'responseStatusCode_DESC'; }; + 'ZoneApiGatewayMatchedSessionIDsPerEndpointFlattenedAdaptiveGroups': { kind: 'OBJECT'; name: 'ZoneApiGatewayMatchedSessionIDsPerEndpointFlattenedAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'ZoneApiGatewayMatchedSessionIDsPerEndpointFlattenedAdaptiveGroupsAvg'; ofType: null; } }; 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneApiGatewayMatchedSessionIDsPerEndpointFlattenedAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'ZoneApiGatewayMatchedSessionIDsPerEndpointFlattenedAdaptiveGroupsDimensions'; ofType: null; } }; }; }; + 'ZoneApiGatewayMatchedSessionIDsPerEndpointFlattenedAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'ZoneApiGatewayMatchedSessionIDsPerEndpointFlattenedAdaptiveGroupsAvg'; fields: { 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'ZoneApiGatewayMatchedSessionIDsPerEndpointFlattenedAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'ZoneApiGatewayMatchedSessionIDsPerEndpointFlattenedAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'ZoneApiGatewayMatchedSessionIDsPerEndpointFlattenedAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'ZoneApiGatewayMatchedSessionIDsPerEndpointFlattenedAdaptiveGroupsDimensions'; fields: { 'apiGatewayMatchedEndpointId': { name: 'apiGatewayMatchedEndpointId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'apiGatewayMatchedSessionIdentifierName': { name: 'apiGatewayMatchedSessionIdentifierName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'apiGatewayMatchedSessionIdentifierType': { name: 'apiGatewayMatchedSessionIdentifierType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeDay': { name: 'datetimeDay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHalfOfHour': { name: 'datetimeHalfOfHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'responseStatusCode': { name: 'responseStatusCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; }; }; + 'ZoneApiGatewayMatchedSessionIDsPerEndpointFlattenedAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'ZoneApiGatewayMatchedSessionIDsPerEndpointFlattenedAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneApiGatewayMatchedSessionIDsPerEndpointFlattenedAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneApiGatewayMatchedSessionIDsPerEndpointFlattenedAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpointId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpointId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpointId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpointId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpointId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpointId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpointId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpointId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpointId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpointId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedSessionIdentifierName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedSessionIdentifierName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedSessionIdentifierName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedSessionIdentifierName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'apiGatewayMatchedSessionIdentifierName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedSessionIdentifierName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedSessionIdentifierName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedSessionIdentifierName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedSessionIdentifierName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'apiGatewayMatchedSessionIdentifierName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedSessionIdentifierType'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedSessionIdentifierType_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedSessionIdentifierType_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedSessionIdentifierType_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'apiGatewayMatchedSessionIdentifierType_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedSessionIdentifierType_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedSessionIdentifierType_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedSessionIdentifierType_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedSessionIdentifierType_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'apiGatewayMatchedSessionIdentifierType_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeDay'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeDay_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeDay_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeDay_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeDay_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeDay_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeDay_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeDay_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHalfOfHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHalfOfHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'responseStatusCode'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'responseStatusCode_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'responseStatusCode_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'responseStatusCode_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'responseStatusCode_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'responseStatusCode_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'responseStatusCode_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'responseStatusCode_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }]; }; + 'ZoneApiGatewayMatchedSessionIDsPerEndpointFlattenedAdaptiveGroupsOrderBy': { name: 'ZoneApiGatewayMatchedSessionIDsPerEndpointFlattenedAdaptiveGroupsOrderBy'; enumValues: 'apiGatewayMatchedEndpointId_ASC' | 'apiGatewayMatchedEndpointId_DESC' | 'apiGatewayMatchedSessionIdentifierName_ASC' | 'apiGatewayMatchedSessionIdentifierName_DESC' | 'apiGatewayMatchedSessionIdentifierType_ASC' | 'apiGatewayMatchedSessionIdentifierType_DESC' | 'avg_sampleInterval_ASC' | 'avg_sampleInterval_DESC' | 'count_ASC' | 'count_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeDay_ASC' | 'datetimeDay_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHalfOfHour_ASC' | 'datetimeHalfOfHour_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'responseStatusCode_ASC' | 'responseStatusCode_DESC'; }; + 'ZoneApiRequestSequencesGroups': { kind: 'OBJECT'; name: 'ZoneApiRequestSequencesGroups'; fields: { 'aggArgMax': { name: 'aggArgMax'; type: { kind: 'OBJECT'; name: 'ZoneApiRequestSequencesGroupsAggArgMax'; ofType: null; } }; 'aggMax': { name: 'aggMax'; type: { kind: 'OBJECT'; name: 'ZoneApiRequestSequencesGroupsAggMax'; ofType: null; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'ZoneApiRequestSequencesGroupsDimensions'; ofType: null; } }; 'uniq': { name: 'uniq'; type: { kind: 'OBJECT'; name: 'ZoneApiRequestSequencesGroupsUniq'; ofType: null; } }; }; }; + 'ZoneApiRequestSequencesGroupsAggArgMax': { kind: 'OBJECT'; name: 'ZoneApiRequestSequencesGroupsAggArgMax'; fields: { 'correlation': { name: 'correlation'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'numOccurrences': { name: 'numOccurrences'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'numOccurrencesLast': { name: 'numOccurrencesLast'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'numOccurrencesPrefix': { name: 'numOccurrencesPrefix'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'numOccurrencesSuffix': { name: 'numOccurrencesSuffix'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'operationsApiEndpoints': { name: 'operationsApiEndpoints'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'operationsClientRequestHTTPMethods': { name: 'operationsClientRequestHTTPMethods'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'samplingFraction': { name: 'samplingFraction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'ZoneApiRequestSequencesGroupsAggMax': { kind: 'OBJECT'; name: 'ZoneApiRequestSequencesGroupsAggMax'; fields: { 'timeLastSeen': { name: 'timeLastSeen'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'timeLastUpdated': { name: 'timeLastUpdated'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; }; }; + 'ZoneApiRequestSequencesGroupsDimensions': { kind: 'OBJECT'; name: 'ZoneApiRequestSequencesGroupsDimensions'; fields: { 'apiHost': { name: 'apiHost'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRequestHTTPHost': { name: 'clientRequestHTTPHost'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'operationsFirstApiEndpoint': { name: 'operationsFirstApiEndpoint'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'operationsFirstClientRequestHTTPMethod': { name: 'operationsFirstClientRequestHTTPMethod'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'operationsLastApiEndpoint': { name: 'operationsLastApiEndpoint'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'operationsLastClientRequestHTTPMethod': { name: 'operationsLastClientRequestHTTPMethod'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'operationsLength': { name: 'operationsLength'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'operationsPrefixApiEndpoints': { name: 'operationsPrefixApiEndpoints'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'operationsPrefixClientRequestHTTPMethods': { name: 'operationsPrefixClientRequestHTTPMethods'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'rank': { name: 'rank'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'sequenceHash': { name: 'sequenceHash'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'ZoneApiRequestSequencesGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'ZoneApiRequestSequencesGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneApiRequestSequencesGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneApiRequestSequencesGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'apiHost'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiHost_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiHost_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiHost_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'apiHost_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiHost_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiHost_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiHost_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiHost_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'apiHost_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestHTTPHost_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestHTTPHost_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'operationsFirstApiEndpoint'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'operationsFirstApiEndpoint_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'operationsFirstApiEndpoint_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'operationsFirstApiEndpoint_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'operationsFirstApiEndpoint_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'operationsFirstApiEndpoint_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'operationsFirstApiEndpoint_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'operationsFirstApiEndpoint_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'operationsFirstApiEndpoint_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'operationsFirstApiEndpoint_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'operationsFirstClientRequestHTTPMethod'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'operationsFirstClientRequestHTTPMethod_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'operationsFirstClientRequestHTTPMethod_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'operationsFirstClientRequestHTTPMethod_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'operationsFirstClientRequestHTTPMethod_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'operationsFirstClientRequestHTTPMethod_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'operationsFirstClientRequestHTTPMethod_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'operationsFirstClientRequestHTTPMethod_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'operationsFirstClientRequestHTTPMethod_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'operationsFirstClientRequestHTTPMethod_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'operationsLastApiEndpoint'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'operationsLastApiEndpoint_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'operationsLastApiEndpoint_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'operationsLastApiEndpoint_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'operationsLastApiEndpoint_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'operationsLastApiEndpoint_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'operationsLastApiEndpoint_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'operationsLastApiEndpoint_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'operationsLastApiEndpoint_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'operationsLastApiEndpoint_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'operationsLastClientRequestHTTPMethod'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'operationsLastClientRequestHTTPMethod_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'operationsLastClientRequestHTTPMethod_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'operationsLastClientRequestHTTPMethod_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'operationsLastClientRequestHTTPMethod_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'operationsLastClientRequestHTTPMethod_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'operationsLastClientRequestHTTPMethod_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'operationsLastClientRequestHTTPMethod_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'operationsLastClientRequestHTTPMethod_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'operationsLastClientRequestHTTPMethod_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'operationsLength'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'operationsLength_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'operationsLength_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'operationsLength_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'operationsLength_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'operationsLength_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'operationsLength_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'operationsLength_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'operationsPrefixApiEndpoints'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'operationsPrefixApiEndpoints_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'operationsPrefixApiEndpoints_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'operationsPrefixApiEndpoints_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'operationsPrefixApiEndpoints_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'operationsPrefixApiEndpoints_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'operationsPrefixApiEndpoints_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'operationsPrefixApiEndpoints_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'operationsPrefixApiEndpoints_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'operationsPrefixApiEndpoints_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'operationsPrefixClientRequestHTTPMethods'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'operationsPrefixClientRequestHTTPMethods_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'operationsPrefixClientRequestHTTPMethods_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'operationsPrefixClientRequestHTTPMethods_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'operationsPrefixClientRequestHTTPMethods_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'operationsPrefixClientRequestHTTPMethods_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'operationsPrefixClientRequestHTTPMethods_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'operationsPrefixClientRequestHTTPMethods_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'operationsPrefixClientRequestHTTPMethods_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'operationsPrefixClientRequestHTTPMethods_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rank'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'rank_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'rank_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'rank_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'rank_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'rank_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'rank_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'rank_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sequenceHash'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sequenceHash_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sequenceHash_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sequenceHash_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sequenceHash_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sequenceHash_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sequenceHash_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sequenceHash_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sequenceHash_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sequenceHash_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'ZoneApiRequestSequencesGroupsOrderBy': { name: 'ZoneApiRequestSequencesGroupsOrderBy'; enumValues: 'aggArgMax_correlation_ASC' | 'aggArgMax_correlation_DESC' | 'aggArgMax_numOccurrencesLast_ASC' | 'aggArgMax_numOccurrencesLast_DESC' | 'aggArgMax_numOccurrencesPrefix_ASC' | 'aggArgMax_numOccurrencesPrefix_DESC' | 'aggArgMax_numOccurrencesSuffix_ASC' | 'aggArgMax_numOccurrencesSuffix_DESC' | 'aggArgMax_numOccurrences_ASC' | 'aggArgMax_numOccurrences_DESC' | 'aggArgMax_operationsApiEndpoints_ASC' | 'aggArgMax_operationsApiEndpoints_DESC' | 'aggArgMax_operationsClientRequestHTTPMethods_ASC' | 'aggArgMax_operationsClientRequestHTTPMethods_DESC' | 'aggArgMax_samplingFraction_ASC' | 'aggArgMax_samplingFraction_DESC' | 'aggMax_timeLastSeen_ASC' | 'aggMax_timeLastSeen_DESC' | 'aggMax_timeLastUpdated_ASC' | 'aggMax_timeLastUpdated_DESC' | 'apiHost_ASC' | 'apiHost_DESC' | 'clientRequestHTTPHost_ASC' | 'clientRequestHTTPHost_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'operationsFirstApiEndpoint_ASC' | 'operationsFirstApiEndpoint_DESC' | 'operationsFirstClientRequestHTTPMethod_ASC' | 'operationsFirstClientRequestHTTPMethod_DESC' | 'operationsLastApiEndpoint_ASC' | 'operationsLastApiEndpoint_DESC' | 'operationsLastClientRequestHTTPMethod_ASC' | 'operationsLastClientRequestHTTPMethod_DESC' | 'operationsLength_ASC' | 'operationsLength_DESC' | 'operationsPrefixApiEndpoints_ASC' | 'operationsPrefixApiEndpoints_DESC' | 'operationsPrefixClientRequestHTTPMethods_ASC' | 'operationsPrefixClientRequestHTTPMethods_DESC' | 'rank_ASC' | 'rank_DESC' | 'sequenceHash_ASC' | 'sequenceHash_DESC' | 'uniq_rankCount_ASC' | 'uniq_rankCount_DESC' | 'uniq_sequenceHashCount_ASC' | 'uniq_sequenceHashCount_DESC'; }; + 'ZoneApiRequestSequencesGroupsUniq': { kind: 'OBJECT'; name: 'ZoneApiRequestSequencesGroupsUniq'; fields: { 'rankCount': { name: 'rankCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'sequenceHashCount': { name: 'sequenceHashCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; }; }; + 'ZoneCacheReserveOperationsAdaptiveGroups': { kind: 'OBJECT'; name: 'ZoneCacheReserveOperationsAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'ZoneCacheReserveOperationsAdaptiveGroupsAvg'; ofType: null; } }; 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneCacheReserveOperationsAdaptiveGroupsConfidence'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'ZoneCacheReserveOperationsAdaptiveGroupsDimensions'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'ZoneCacheReserveOperationsAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'ZoneCacheReserveOperationsAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'ZoneCacheReserveOperationsAdaptiveGroupsAvg'; fields: { 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'ZoneCacheReserveOperationsAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'ZoneCacheReserveOperationsAdaptiveGroupsConfidence'; fields: { 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'ZoneCacheReserveOperationsAdaptiveGroupsSumConfidence'; ofType: null; } }; }; }; + 'ZoneCacheReserveOperationsAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'ZoneCacheReserveOperationsAdaptiveGroupsDimensions'; fields: { 'actionStatus': { name: 'actionStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'bucketName': { name: 'bucketName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'jurisdiction': { name: 'jurisdiction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'operationClass': { name: 'operationClass'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'ZoneCacheReserveOperationsAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'ZoneCacheReserveOperationsAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneCacheReserveOperationsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneCacheReserveOperationsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'actionStatus'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'actionStatus_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'actionStatus_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'actionStatus_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'actionStatus_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'actionStatus_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'actionStatus_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'actionStatus_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'actionStatus_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'actionStatus_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'bucketName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'bucketName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'bucketName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'bucketName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'bucketName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'bucketName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'bucketName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'bucketName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'bucketName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'bucketName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'jurisdiction'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jurisdiction_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jurisdiction_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jurisdiction_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'jurisdiction_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jurisdiction_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jurisdiction_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jurisdiction_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jurisdiction_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'jurisdiction_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'operationClass'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'operationClass_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'operationClass_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'operationClass_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'operationClass_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'operationClass_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'operationClass_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'operationClass_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'operationClass_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'operationClass_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'ZoneCacheReserveOperationsAdaptiveGroupsOrderBy': { name: 'ZoneCacheReserveOperationsAdaptiveGroupsOrderBy'; enumValues: 'actionStatus_ASC' | 'actionStatus_DESC' | 'avg_sampleInterval_ASC' | 'avg_sampleInterval_DESC' | 'bucketName_ASC' | 'bucketName_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'jurisdiction_ASC' | 'jurisdiction_DESC' | 'operationClass_ASC' | 'operationClass_DESC' | 'sum_requests_ASC' | 'sum_requests_DESC'; }; + 'ZoneCacheReserveOperationsAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'ZoneCacheReserveOperationsAdaptiveGroupsSum'; fields: { 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'ZoneCacheReserveOperationsAdaptiveGroupsSumConfidence': { kind: 'OBJECT'; name: 'ZoneCacheReserveOperationsAdaptiveGroupsSumConfidence'; fields: { 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'ZoneCacheReserveRequestsAdaptiveGroups': { kind: 'OBJECT'; name: 'ZoneCacheReserveRequestsAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'ZoneCacheReserveRequestsAdaptiveGroupsAvg'; ofType: null; } }; 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneCacheReserveRequestsAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'ZoneCacheReserveRequestsAdaptiveGroupsDimensions'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'ZoneCacheReserveRequestsAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'ZoneCacheReserveRequestsAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'ZoneCacheReserveRequestsAdaptiveGroupsAvg'; fields: { 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'ZoneCacheReserveRequestsAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'ZoneCacheReserveRequestsAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'ZoneCacheReserveRequestsAdaptiveGroupsSumConfidence'; ofType: null; } }; }; }; + 'ZoneCacheReserveRequestsAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'ZoneCacheReserveRequestsAdaptiveGroupsDimensions'; fields: { 'cacheStatus': { name: 'cacheStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'edgeResponseContentTypeName': { name: 'edgeResponseContentTypeName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'edgeResponseStatus': { name: 'edgeResponseStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; }; }; + 'ZoneCacheReserveRequestsAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'ZoneCacheReserveRequestsAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneCacheReserveRequestsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneCacheReserveRequestsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'cacheStatus'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cacheStatus_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cacheStatus_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cacheStatus_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'cacheStatus_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cacheStatus_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cacheStatus_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cacheStatus_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cacheStatus_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'cacheStatus_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeResponseContentTypeName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseContentTypeName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseContentTypeName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseContentTypeName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeResponseContentTypeName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseContentTypeName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseContentTypeName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseContentTypeName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseContentTypeName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeResponseContentTypeName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeResponseStatus_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }]; }; + 'ZoneCacheReserveRequestsAdaptiveGroupsOrderBy': { name: 'ZoneCacheReserveRequestsAdaptiveGroupsOrderBy'; enumValues: 'avg_sampleInterval_ASC' | 'avg_sampleInterval_DESC' | 'cacheReserveUsed_ASC' | 'cacheReserveUsed_DESC' | 'cacheStatus_ASC' | 'cacheStatus_DESC' | 'count_ASC' | 'count_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'edgeResponseContentTypeName_ASC' | 'edgeResponseContentTypeName_DESC' | 'edgeResponseStatus_ASC' | 'edgeResponseStatus_DESC' | 'sum_edgeResponseBytes_ASC' | 'sum_edgeResponseBytes_DESC'; }; + 'ZoneCacheReserveRequestsAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'ZoneCacheReserveRequestsAdaptiveGroupsSum'; fields: { 'edgeResponseBytes': { name: 'edgeResponseBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'ZoneCacheReserveRequestsAdaptiveGroupsSumConfidence': { kind: 'OBJECT'; name: 'ZoneCacheReserveRequestsAdaptiveGroupsSumConfidence'; fields: { 'edgeResponseBytes': { name: 'edgeResponseBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'ZoneCacheReserveStorageAdaptiveGroups': { kind: 'OBJECT'; name: 'ZoneCacheReserveStorageAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'ZoneCacheReserveStorageAdaptiveGroupsAvg'; ofType: null; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'ZoneCacheReserveStorageAdaptiveGroupsDimensions'; ofType: null; } }; 'max': { name: 'max'; type: { kind: 'OBJECT'; name: 'ZoneCacheReserveStorageAdaptiveGroupsMax'; ofType: null; } }; }; }; + 'ZoneCacheReserveStorageAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'ZoneCacheReserveStorageAdaptiveGroupsAvg'; fields: { 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'ZoneCacheReserveStorageAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'ZoneCacheReserveStorageAdaptiveGroupsDimensions'; fields: { 'bucketHash': { name: 'bucketHash'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'bucketName': { name: 'bucketName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'jurisdiction': { name: 'jurisdiction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'ZoneCacheReserveStorageAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'ZoneCacheReserveStorageAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneCacheReserveStorageAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneCacheReserveStorageAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'bucketHash'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'bucketHash_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'bucketHash_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'bucketHash_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'bucketHash_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'bucketHash_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'bucketHash_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'bucketHash_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'bucketHash_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'bucketHash_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'bucketName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'bucketName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'bucketName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'bucketName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'bucketName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'bucketName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'bucketName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'bucketName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'bucketName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'bucketName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'jurisdiction'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jurisdiction_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jurisdiction_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jurisdiction_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'jurisdiction_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jurisdiction_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jurisdiction_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jurisdiction_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jurisdiction_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'jurisdiction_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'ZoneCacheReserveStorageAdaptiveGroupsMax': { kind: 'OBJECT'; name: 'ZoneCacheReserveStorageAdaptiveGroupsMax'; fields: { 'objectCount': { name: 'objectCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'storedBytes': { name: 'storedBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'ZoneCacheReserveStorageAdaptiveGroupsOrderBy': { name: 'ZoneCacheReserveStorageAdaptiveGroupsOrderBy'; enumValues: 'avg_sampleInterval_ASC' | 'avg_sampleInterval_DESC' | 'bucketHash_ASC' | 'bucketHash_DESC' | 'bucketName_ASC' | 'bucketName_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'jurisdiction_ASC' | 'jurisdiction_DESC' | 'max_objectCount_ASC' | 'max_objectCount_DESC' | 'max_storedBytes_ASC' | 'max_storedBytes_DESC'; }; + 'ZoneDmarcReportsAdaptive': { kind: 'OBJECT'; name: 'ZoneDmarcReportsAdaptive'; fields: { 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'disposition': { name: 'disposition'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'dkim': { name: 'dkim'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'domain': { name: 'domain'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'envelopeFrom': { name: 'envelopeFrom'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'envelopeTo': { name: 'envelopeTo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'evaluatedReason': { name: 'evaluatedReason'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'headerFrom': { name: 'headerFrom'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'matchingMessages': { name: 'matchingMessages'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'orgName': { name: 'orgName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'policyDKIMAlignmentMode': { name: 'policyDKIMAlignmentMode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'policyDomain': { name: 'policyDomain'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'policyPercentage': { name: 'policyPercentage'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'policySPFAlignmentMode': { name: 'policySPFAlignmentMode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'policySubDomain': { name: 'policySubDomain'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'recordId': { name: 'recordId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'recordIndex': { name: 'recordIndex'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'reportBegin': { name: 'reportBegin'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'reportEnd': { name: 'reportEnd'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'reportError': { name: 'reportError'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'reportId': { name: 'reportId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'sourceIP': { name: 'sourceIP'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sourceLocationName': { name: 'sourceLocationName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sourceOrgName': { name: 'sourceOrgName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sourceOrgSlug': { name: 'sourceOrgSlug'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sourcePTR': { name: 'sourcePTR'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'spf': { name: 'spf'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'spfMFromDomain': { name: 'spfMFromDomain'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'ZoneDmarcReportsAdaptiveFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'ZoneDmarcReportsAdaptiveFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneDmarcReportsAdaptiveFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneDmarcReportsAdaptiveFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'disposition'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'disposition_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'disposition_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'disposition_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'disposition_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'disposition_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'disposition_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'disposition_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'disposition_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'disposition_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dkim'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dkim_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dkim_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dkim_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'dkim_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dkim_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dkim_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dkim_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dkim_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'dkim_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'domain'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'domain_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'domain_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'domain_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'domain_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'domain_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'domain_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'domain_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'domain_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'domain_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'envelopeFrom'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'envelopeFrom_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'envelopeFrom_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'envelopeFrom_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'envelopeFrom_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'envelopeFrom_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'envelopeFrom_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'envelopeFrom_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'envelopeFrom_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'envelopeFrom_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'envelopeTo'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'envelopeTo_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'envelopeTo_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'envelopeTo_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'envelopeTo_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'envelopeTo_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'envelopeTo_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'envelopeTo_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'envelopeTo_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'envelopeTo_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'evaluatedReason'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'evaluatedReason_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'evaluatedReason_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'evaluatedReason_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'evaluatedReason_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'evaluatedReason_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'evaluatedReason_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'evaluatedReason_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'evaluatedReason_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'evaluatedReason_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'headerFrom'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'headerFrom_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'headerFrom_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'headerFrom_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'headerFrom_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'headerFrom_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'headerFrom_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'headerFrom_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'headerFrom_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'headerFrom_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'matchingMessages'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'matchingMessages_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'matchingMessages_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'matchingMessages_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'matchingMessages_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'matchingMessages_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'matchingMessages_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'matchingMessages_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'orgName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'orgName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'orgName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'orgName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'orgName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'orgName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'orgName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'orgName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'orgName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'orgName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policyDKIMAlignmentMode'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policyDKIMAlignmentMode_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policyDKIMAlignmentMode_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policyDKIMAlignmentMode_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'policyDKIMAlignmentMode_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policyDKIMAlignmentMode_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policyDKIMAlignmentMode_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policyDKIMAlignmentMode_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policyDKIMAlignmentMode_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'policyDKIMAlignmentMode_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policyDomain'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policyDomain_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policyDomain_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policyDomain_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'policyDomain_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policyDomain_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policyDomain_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policyDomain_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policyDomain_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'policyDomain_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policyPercentage'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'policyPercentage_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'policyPercentage_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'policyPercentage_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'policyPercentage_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'policyPercentage_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'policyPercentage_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'policyPercentage_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'policySPFAlignmentMode'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policySPFAlignmentMode_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policySPFAlignmentMode_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policySPFAlignmentMode_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'policySPFAlignmentMode_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policySPFAlignmentMode_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policySPFAlignmentMode_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policySPFAlignmentMode_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policySPFAlignmentMode_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'policySPFAlignmentMode_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policySubDomain'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policySubDomain_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policySubDomain_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policySubDomain_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'policySubDomain_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policySubDomain_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policySubDomain_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policySubDomain_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policySubDomain_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'policySubDomain_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'recordId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'recordId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'recordId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'recordId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'recordId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'recordId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'recordId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'recordId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'recordId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'recordId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'recordIndex'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'recordIndex_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'recordIndex_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'recordIndex_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'recordIndex_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'recordIndex_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'recordIndex_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'recordIndex_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'reportBegin'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'reportBegin_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'reportBegin_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'reportBegin_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'reportBegin_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'reportBegin_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'reportBegin_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'reportBegin_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'reportEnd'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'reportEnd_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'reportEnd_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'reportEnd_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'reportEnd_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'reportEnd_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'reportEnd_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'reportEnd_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'reportError'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'reportError_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'reportError_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'reportError_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'reportError_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'reportError_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'reportError_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'reportError_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'reportError_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'reportError_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'reportId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'reportId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'reportId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'reportId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'reportId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'reportId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'reportId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'reportId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'reportId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'reportId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sampleInterval_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceIP'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIP_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIP_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIP_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceIP_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIP_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIP_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIP_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIP_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceIP_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceLocationName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceLocationName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceLocationName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceLocationName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceLocationName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceLocationName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceLocationName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceLocationName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceLocationName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceLocationName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceOrgName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceOrgName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceOrgName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceOrgName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceOrgName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceOrgName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceOrgName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceOrgName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceOrgName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceOrgName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceOrgSlug'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceOrgSlug_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceOrgSlug_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceOrgSlug_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceOrgSlug_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceOrgSlug_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceOrgSlug_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceOrgSlug_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceOrgSlug_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceOrgSlug_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourcePTR'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourcePTR_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourcePTR_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourcePTR_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourcePTR_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourcePTR_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourcePTR_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourcePTR_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourcePTR_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourcePTR_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'spf'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'spfMFromDomain'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'spfMFromDomain_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'spfMFromDomain_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'spfMFromDomain_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'spfMFromDomain_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'spfMFromDomain_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'spfMFromDomain_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'spfMFromDomain_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'spfMFromDomain_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'spfMFromDomain_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'spf_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'spf_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'spf_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'spf_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'spf_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'spf_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'spf_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'spf_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'spf_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'ZoneDmarcReportsAdaptiveOrderBy': { name: 'ZoneDmarcReportsAdaptiveOrderBy'; enumValues: 'datetime_ASC' | 'datetime_DESC' | 'disposition_ASC' | 'disposition_DESC' | 'dkim_ASC' | 'dkim_DESC' | 'domain_ASC' | 'domain_DESC' | 'envelopeFrom_ASC' | 'envelopeFrom_DESC' | 'envelopeTo_ASC' | 'envelopeTo_DESC' | 'evaluatedReason_ASC' | 'evaluatedReason_DESC' | 'headerFrom_ASC' | 'headerFrom_DESC' | 'matchingMessages_ASC' | 'matchingMessages_DESC' | 'orgName_ASC' | 'orgName_DESC' | 'policyDKIMAlignmentMode_ASC' | 'policyDKIMAlignmentMode_DESC' | 'policyDomain_ASC' | 'policyDomain_DESC' | 'policyPercentage_ASC' | 'policyPercentage_DESC' | 'policySPFAlignmentMode_ASC' | 'policySPFAlignmentMode_DESC' | 'policySubDomain_ASC' | 'policySubDomain_DESC' | 'recordId_ASC' | 'recordId_DESC' | 'recordIndex_ASC' | 'recordIndex_DESC' | 'reportBegin_ASC' | 'reportBegin_DESC' | 'reportEnd_ASC' | 'reportEnd_DESC' | 'reportError_ASC' | 'reportError_DESC' | 'reportId_ASC' | 'reportId_DESC' | 'sampleInterval_ASC' | 'sampleInterval_DESC' | 'sourceIP_ASC' | 'sourceIP_DESC' | 'sourceLocationName_ASC' | 'sourceLocationName_DESC' | 'sourceOrgName_ASC' | 'sourceOrgName_DESC' | 'sourceOrgSlug_ASC' | 'sourceOrgSlug_DESC' | 'sourcePTR_ASC' | 'sourcePTR_DESC' | 'spfMFromDomain_ASC' | 'spfMFromDomain_DESC' | 'spf_ASC' | 'spf_DESC'; }; + 'ZoneDmarcReportsSourcesAdaptiveGroups': { kind: 'OBJECT'; name: 'ZoneDmarcReportsSourcesAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'ZoneDmarcReportsSourcesAdaptiveGroupsAvg'; ofType: null; } }; 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneDmarcReportsSourcesAdaptiveGroupsConfidence'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'ZoneDmarcReportsSourcesAdaptiveGroupsDimensions'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'ZoneDmarcReportsSourcesAdaptiveGroupsSum'; ofType: null; } }; 'uniq': { name: 'uniq'; type: { kind: 'OBJECT'; name: 'ZoneDmarcReportsSourcesAdaptiveGroupsUniq'; ofType: null; } }; }; }; + 'ZoneDmarcReportsSourcesAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'ZoneDmarcReportsSourcesAdaptiveGroupsAvg'; fields: { 'dkimPass': { name: 'dkimPass'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'dmarc': { name: 'dmarc'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'spfPass': { name: 'spfPass'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'ZoneDmarcReportsSourcesAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'ZoneDmarcReportsSourcesAdaptiveGroupsConfidence'; fields: { 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'ZoneDmarcReportsSourcesAdaptiveGroupsSumConfidence'; ofType: null; } }; }; }; + 'ZoneDmarcReportsSourcesAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'ZoneDmarcReportsSourcesAdaptiveGroupsDimensions'; fields: { 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetimeDay': { name: 'datetimeDay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeLast31Days': { name: 'datetimeLast31Days'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMonth': { name: 'datetimeMonth'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeWeek': { name: 'datetimeWeek'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'disposition': { name: 'disposition'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'dkim': { name: 'dkim'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'domain': { name: 'domain'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'envelopeFrom': { name: 'envelopeFrom'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'envelopeTo': { name: 'envelopeTo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'evaluatedReason': { name: 'evaluatedReason'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'headerFrom': { name: 'headerFrom'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'orgName': { name: 'orgName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'sourceIP': { name: 'sourceIP'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sourceLocationName': { name: 'sourceLocationName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sourceOrgName': { name: 'sourceOrgName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sourceOrgSlug': { name: 'sourceOrgSlug'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sourcePTR': { name: 'sourcePTR'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'spf': { name: 'spf'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'spfMFromDomain': { name: 'spfMFromDomain'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'ZoneDmarcReportsSourcesAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'ZoneDmarcReportsSourcesAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneDmarcReportsSourcesAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneDmarcReportsSourcesAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeDay'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeDay_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeDay_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeDay_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeDay_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeDay_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeDay_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeDay_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeLast31Days'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeLast31Days_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeLast31Days_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeLast31Days_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeLast31Days_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeLast31Days_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeLast31Days_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeLast31Days_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMonth'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMonth_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMonth_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMonth_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMonth_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMonth_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMonth_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMonth_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeWeek'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeWeek_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeWeek_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeWeek_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeWeek_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeWeek_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeWeek_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeWeek_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'disposition'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'disposition_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'disposition_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'disposition_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'disposition_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'disposition_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'disposition_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'disposition_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'disposition_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'disposition_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dkim'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dkim_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dkim_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dkim_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'dkim_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dkim_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dkim_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dkim_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dkim_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'dkim_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'domain'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'domain_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'domain_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'domain_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'domain_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'domain_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'domain_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'domain_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'domain_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'domain_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'envelopeFrom'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'envelopeFrom_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'envelopeFrom_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'envelopeFrom_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'envelopeFrom_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'envelopeFrom_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'envelopeFrom_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'envelopeFrom_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'envelopeFrom_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'envelopeFrom_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'envelopeTo'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'envelopeTo_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'envelopeTo_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'envelopeTo_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'envelopeTo_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'envelopeTo_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'envelopeTo_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'envelopeTo_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'envelopeTo_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'envelopeTo_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'evaluatedReason'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'evaluatedReason_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'evaluatedReason_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'evaluatedReason_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'evaluatedReason_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'evaluatedReason_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'evaluatedReason_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'evaluatedReason_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'evaluatedReason_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'evaluatedReason_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'headerFrom'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'headerFrom_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'headerFrom_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'headerFrom_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'headerFrom_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'headerFrom_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'headerFrom_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'headerFrom_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'headerFrom_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'headerFrom_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'orgName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'orgName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'orgName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'orgName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'orgName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'orgName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'orgName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'orgName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'orgName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'orgName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sampleInterval_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceIP'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIP_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIP_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIP_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceIP_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIP_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIP_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIP_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIP_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceIP_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceLocationName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceLocationName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceLocationName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceLocationName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceLocationName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceLocationName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceLocationName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceLocationName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceLocationName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceLocationName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceOrgName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceOrgName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceOrgName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceOrgName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceOrgName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceOrgName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceOrgName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceOrgName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceOrgName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceOrgName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceOrgSlug'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceOrgSlug_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceOrgSlug_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceOrgSlug_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceOrgSlug_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceOrgSlug_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceOrgSlug_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceOrgSlug_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceOrgSlug_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceOrgSlug_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourcePTR'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourcePTR_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourcePTR_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourcePTR_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourcePTR_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourcePTR_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourcePTR_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourcePTR_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourcePTR_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourcePTR_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'spf'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'spfMFromDomain'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'spfMFromDomain_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'spfMFromDomain_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'spfMFromDomain_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'spfMFromDomain_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'spfMFromDomain_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'spfMFromDomain_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'spfMFromDomain_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'spfMFromDomain_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'spfMFromDomain_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'spf_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'spf_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'spf_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'spf_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'spf_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'spf_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'spf_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'spf_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'spf_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'ZoneDmarcReportsSourcesAdaptiveGroupsOrderBy': { name: 'ZoneDmarcReportsSourcesAdaptiveGroupsOrderBy'; enumValues: 'avg_dkimPass_ASC' | 'avg_dkimPass_DESC' | 'avg_dmarc_ASC' | 'avg_dmarc_DESC' | 'avg_spfPass_ASC' | 'avg_spfPass_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeDay_ASC' | 'datetimeDay_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeLast31Days_ASC' | 'datetimeLast31Days_DESC' | 'datetimeMonth_ASC' | 'datetimeMonth_DESC' | 'datetimeWeek_ASC' | 'datetimeWeek_DESC' | 'disposition_ASC' | 'disposition_DESC' | 'dkim_ASC' | 'dkim_DESC' | 'domain_ASC' | 'domain_DESC' | 'envelopeFrom_ASC' | 'envelopeFrom_DESC' | 'envelopeTo_ASC' | 'envelopeTo_DESC' | 'evaluatedReason_ASC' | 'evaluatedReason_DESC' | 'headerFrom_ASC' | 'headerFrom_DESC' | 'orgName_ASC' | 'orgName_DESC' | 'sampleInterval_ASC' | 'sampleInterval_DESC' | 'sourceIP_ASC' | 'sourceIP_DESC' | 'sourceLocationName_ASC' | 'sourceLocationName_DESC' | 'sourceOrgName_ASC' | 'sourceOrgName_DESC' | 'sourceOrgSlug_ASC' | 'sourceOrgSlug_DESC' | 'sourcePTR_ASC' | 'sourcePTR_DESC' | 'spfMFromDomain_ASC' | 'spfMFromDomain_DESC' | 'spf_ASC' | 'spf_DESC' | 'sum_dkimPass_ASC' | 'sum_dkimPass_DESC' | 'sum_dmarc_ASC' | 'sum_dmarc_DESC' | 'sum_spfPass_ASC' | 'sum_spfPass_DESC' | 'sum_totalMatchingMessages_ASC' | 'sum_totalMatchingMessages_DESC' | 'uniq_ipCount_ASC' | 'uniq_ipCount_DESC'; }; + 'ZoneDmarcReportsSourcesAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'ZoneDmarcReportsSourcesAdaptiveGroupsSum'; fields: { 'dkimPass': { name: 'dkimPass'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dmarc': { name: 'dmarc'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'spfPass': { name: 'spfPass'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'totalMatchingMessages': { name: 'totalMatchingMessages'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'ZoneDmarcReportsSourcesAdaptiveGroupsSumConfidence': { kind: 'OBJECT'; name: 'ZoneDmarcReportsSourcesAdaptiveGroupsSumConfidence'; fields: { 'dkimPass': { name: 'dkimPass'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'dmarc': { name: 'dmarc'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'spfPass': { name: 'spfPass'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'totalMatchingMessages': { name: 'totalMatchingMessages'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'ZoneDmarcReportsSourcesAdaptiveGroupsUniq': { kind: 'OBJECT'; name: 'ZoneDmarcReportsSourcesAdaptiveGroupsUniq'; fields: { 'ipCount': { name: 'ipCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'ZoneDnsAnalyticsAdaptive': { kind: 'OBJECT'; name: 'ZoneDnsAnalyticsAdaptive'; fields: { 'coloName': { name: 'coloName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'destinationIP': { name: 'destinationIP'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipVersion': { name: 'ipVersion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'protocol': { name: 'protocol'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'queryName': { name: 'queryName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'querySize': { name: 'querySize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'queryType': { name: 'queryType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'responseCached': { name: 'responseCached'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'responseCode': { name: 'responseCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'responseSize': { name: 'responseSize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'responseStale': { name: 'responseStale'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'sourceIP': { name: 'sourceIP'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'upstreamIP': { name: 'upstreamIP'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'ZoneDnsAnalyticsAdaptiveFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'ZoneDnsAnalyticsAdaptiveFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneDnsAnalyticsAdaptiveFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneDnsAnalyticsAdaptiveFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationIP'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIP_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIP_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIP_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationIP_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIP_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIP_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIP_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIP_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationIP_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipVersion'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipVersion_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipVersion_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipVersion_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipVersion_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipVersion_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipVersion_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipVersion_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'protocol'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocol_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocol_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocol_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'protocol_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocol_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocol_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocol_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocol_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'protocol_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'queryName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'queryName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'querySize'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'querySize_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'querySize_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'querySize_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'querySize_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'querySize_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'querySize_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'querySize_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'queryType'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryType_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryType_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryType_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'queryType_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryType_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryType_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryType_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryType_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'queryType_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseCached'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'responseCached_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'responseCached_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'responseCached_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'responseCached_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'responseCached_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'responseCached_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'responseCached_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'responseCode'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseCode_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseCode_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseCode_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'responseCode_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseCode_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseCode_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseCode_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseCode_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'responseCode_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseSize'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'responseSize_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'responseSize_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'responseSize_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'responseSize_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'responseSize_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'responseSize_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'responseSize_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'responseStale'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'responseStale_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'responseStale_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'responseStale_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'responseStale_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'responseStale_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'responseStale_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'responseStale_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sampleInterval_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceIP'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIP_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIP_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIP_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceIP_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIP_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIP_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIP_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIP_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceIP_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upstreamIP'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upstreamIP_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upstreamIP_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upstreamIP_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'upstreamIP_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upstreamIP_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upstreamIP_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upstreamIP_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upstreamIP_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'upstreamIP_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'ZoneDnsAnalyticsAdaptiveGroups': { kind: 'OBJECT'; name: 'ZoneDnsAnalyticsAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'ZoneDnsAnalyticsAdaptiveGroupsAvg'; ofType: null; } }; 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneDnsAnalyticsAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'ZoneDnsAnalyticsAdaptiveGroupsDimensions'; ofType: null; } }; 'quantiles': { name: 'quantiles'; type: { kind: 'OBJECT'; name: 'ZoneDnsAnalyticsAdaptiveGroupsQuantiles'; ofType: null; } }; }; }; + 'ZoneDnsAnalyticsAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'ZoneDnsAnalyticsAdaptiveGroupsAvg'; fields: { 'processingTimeUs': { name: 'processingTimeUs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'ZoneDnsAnalyticsAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'ZoneDnsAnalyticsAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'ZoneDnsAnalyticsAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'ZoneDnsAnalyticsAdaptiveGroupsDimensions'; fields: { 'coloName': { name: 'coloName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHalfOfHour': { name: 'datetimeHalfOfHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'destinationIP': { name: 'destinationIP'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipVersion': { name: 'ipVersion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'protocol': { name: 'protocol'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'queryName': { name: 'queryName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'querySizeBucket': { name: 'querySizeBucket'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'queryType': { name: 'queryType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'responseCached': { name: 'responseCached'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'responseCode': { name: 'responseCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'responseSizeBucket': { name: 'responseSizeBucket'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'responseStale': { name: 'responseStale'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'sourceIP': { name: 'sourceIP'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'upstreamIP': { name: 'upstreamIP'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'ZoneDnsAnalyticsAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'ZoneDnsAnalyticsAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneDnsAnalyticsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneDnsAnalyticsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHalfOfHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHalfOfHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationIP'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIP_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIP_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIP_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationIP_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIP_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIP_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIP_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationIP_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationIP_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ipVersion'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipVersion_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipVersion_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipVersion_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ipVersion_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipVersion_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipVersion_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'ipVersion_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'protocol'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocol_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocol_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocol_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'protocol_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocol_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocol_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocol_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocol_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'protocol_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'queryName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'queryName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'querySizeBucket'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'querySizeBucket_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'querySizeBucket_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'querySizeBucket_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'querySizeBucket_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'querySizeBucket_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'querySizeBucket_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'querySizeBucket_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'querySizeBucket_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'querySizeBucket_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryType'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryType_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryType_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryType_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'queryType_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryType_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryType_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryType_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'queryType_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'queryType_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseCached'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'responseCached_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'responseCached_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'responseCached_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'responseCached_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'responseCached_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'responseCached_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'responseCached_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'responseCode'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseCode_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseCode_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseCode_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'responseCode_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseCode_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseCode_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseCode_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseCode_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'responseCode_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseSizeBucket'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseSizeBucket_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseSizeBucket_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseSizeBucket_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'responseSizeBucket_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseSizeBucket_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseSizeBucket_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseSizeBucket_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseSizeBucket_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'responseSizeBucket_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'responseStale'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'responseStale_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'responseStale_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'responseStale_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'responseStale_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'responseStale_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'responseStale_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'responseStale_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'sourceIP'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIP_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIP_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIP_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceIP_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIP_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIP_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIP_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sourceIP_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sourceIP_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upstreamIP'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upstreamIP_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upstreamIP_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upstreamIP_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'upstreamIP_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upstreamIP_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upstreamIP_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upstreamIP_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upstreamIP_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'upstreamIP_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'ZoneDnsAnalyticsAdaptiveGroupsOrderBy': { name: 'ZoneDnsAnalyticsAdaptiveGroupsOrderBy'; enumValues: 'avg_processingTimeUs_ASC' | 'avg_processingTimeUs_DESC' | 'avg_sampleInterval_ASC' | 'avg_sampleInterval_DESC' | 'coloName_ASC' | 'coloName_DESC' | 'count_ASC' | 'count_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHalfOfHour_ASC' | 'datetimeHalfOfHour_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'destinationIP_ASC' | 'destinationIP_DESC' | 'instanceCode_ASC' | 'instanceCode_DESC' | 'ipVersion_ASC' | 'ipVersion_DESC' | 'protocol_ASC' | 'protocol_DESC' | 'quantiles_processingTimeUsP50_ASC' | 'quantiles_processingTimeUsP50_DESC' | 'quantiles_processingTimeUsP90_ASC' | 'quantiles_processingTimeUsP90_DESC' | 'quantiles_processingTimeUsP99_ASC' | 'quantiles_processingTimeUsP99_DESC' | 'queryName_ASC' | 'queryName_DESC' | 'querySizeBucket_ASC' | 'querySizeBucket_DESC' | 'queryType_ASC' | 'queryType_DESC' | 'responseCached_ASC' | 'responseCached_DESC' | 'responseCode_ASC' | 'responseCode_DESC' | 'responseSizeBucket_ASC' | 'responseSizeBucket_DESC' | 'responseStale_ASC' | 'responseStale_DESC' | 'sourceIP_ASC' | 'sourceIP_DESC' | 'upstreamIP_ASC' | 'upstreamIP_DESC'; }; + 'ZoneDnsAnalyticsAdaptiveGroupsQuantiles': { kind: 'OBJECT'; name: 'ZoneDnsAnalyticsAdaptiveGroupsQuantiles'; fields: { 'processingTimeUsP50': { name: 'processingTimeUsP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'processingTimeUsP90': { name: 'processingTimeUsP90'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'processingTimeUsP99': { name: 'processingTimeUsP99'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'ZoneDnsAnalyticsAdaptiveOrderBy': { name: 'ZoneDnsAnalyticsAdaptiveOrderBy'; enumValues: 'coloName_ASC' | 'coloName_DESC' | 'date_ASC' | 'date_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'destinationIP_ASC' | 'destinationIP_DESC' | 'instanceCode_ASC' | 'instanceCode_DESC' | 'ipVersion_ASC' | 'ipVersion_DESC' | 'protocol_ASC' | 'protocol_DESC' | 'queryName_ASC' | 'queryName_DESC' | 'querySize_ASC' | 'querySize_DESC' | 'queryType_ASC' | 'queryType_DESC' | 'responseCached_ASC' | 'responseCached_DESC' | 'responseCode_ASC' | 'responseCode_DESC' | 'responseSize_ASC' | 'responseSize_DESC' | 'responseStale_ASC' | 'responseStale_DESC' | 'sampleInterval_ASC' | 'sampleInterval_DESC' | 'sourceIP_ASC' | 'sourceIP_DESC' | 'upstreamIP_ASC' | 'upstreamIP_DESC'; }; + 'ZoneEmailRoutingAdaptive': { kind: 'OBJECT'; name: 'ZoneEmailRoutingAdaptive'; fields: { 'action': { name: 'action'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'arc': { name: 'arc'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'dkim': { name: 'dkim'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'dmarc': { name: 'dmarc'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'errorDetail': { name: 'errorDetail'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'eventType': { name: 'eventType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'from': { name: 'from'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'isNDR': { name: 'isNDR'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'isSpam': { name: 'isSpam'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'messageId': { name: 'messageId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ruleMatched': { name: 'ruleMatched'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'sessionId': { name: 'sessionId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'spamScore': { name: 'spamScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'spamThreshold': { name: 'spamThreshold'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'spf': { name: 'spf'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'status': { name: 'status'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'subject': { name: 'subject'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'to': { name: 'to'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'ZoneEmailRoutingAdaptiveFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'ZoneEmailRoutingAdaptiveFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneEmailRoutingAdaptiveFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneEmailRoutingAdaptiveFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'action'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'action_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'action_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'arc'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'arc_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'arc_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'arc_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'arc_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'arc_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'arc_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'arc_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'arc_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'arc_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'dkim'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dkim_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dkim_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dkim_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'dkim_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dkim_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dkim_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dkim_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dkim_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'dkim_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dmarc'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dmarc_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dmarc_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dmarc_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'dmarc_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dmarc_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dmarc_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dmarc_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dmarc_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'dmarc_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'errorDetail'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'errorDetail_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'errorDetail_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'errorDetail_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'errorDetail_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'errorDetail_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'errorDetail_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'errorDetail_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'errorDetail_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'errorDetail_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventType'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventType_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventType_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventType_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'eventType_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventType_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventType_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventType_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventType_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'eventType_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'from'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'from_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'from_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'from_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'from_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'from_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'from_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'from_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'from_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'from_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'isNDR'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isNDR_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isNDR_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isNDR_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'isNDR_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isNDR_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isNDR_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isNDR_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'isSpam'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isSpam_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isSpam_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isSpam_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'isSpam_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isSpam_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isSpam_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isSpam_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'messageId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'messageId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'messageId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'messageId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'messageId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'messageId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'messageId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'messageId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'messageId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'messageId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleMatched'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleMatched_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleMatched_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleMatched_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ruleMatched_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleMatched_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleMatched_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleMatched_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleMatched_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ruleMatched_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sampleInterval_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'spamScore'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'spamScore_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'spamScore_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'spamScore_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'spamScore_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'spamScore_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'spamScore_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'spamScore_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'spamThreshold'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'spamThreshold_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'spamThreshold_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'spamThreshold_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'spamThreshold_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'spamThreshold_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'spamThreshold_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'spamThreshold_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'spf'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'spf_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'spf_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'spf_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'spf_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'spf_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'spf_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'spf_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'spf_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'spf_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'status_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'status_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'subject'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'subject_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'subject_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'subject_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'subject_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'subject_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'subject_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'subject_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'subject_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'subject_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'to'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'to_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'to_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'to_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'to_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'to_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'to_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'to_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'to_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'to_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'ZoneEmailRoutingAdaptiveGroups': { kind: 'OBJECT'; name: 'ZoneEmailRoutingAdaptiveGroups'; fields: { 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneEmailRoutingAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'ZoneEmailRoutingAdaptiveGroupsDimensions'; ofType: null; } }; }; }; + 'ZoneEmailRoutingAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'ZoneEmailRoutingAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'ZoneEmailRoutingAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'ZoneEmailRoutingAdaptiveGroupsDimensions'; fields: { 'action': { name: 'action'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'arc': { name: 'arc'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'dkim': { name: 'dkim'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'dmarc': { name: 'dmarc'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'eventType': { name: 'eventType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'isNDR': { name: 'isNDR'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'isSpam': { name: 'isSpam'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ruleMatched': { name: 'ruleMatched'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'spamScore': { name: 'spamScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'spamThreshold': { name: 'spamThreshold'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'spf': { name: 'spf'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'status': { name: 'status'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'ZoneEmailRoutingAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'ZoneEmailRoutingAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneEmailRoutingAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneEmailRoutingAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'action'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'action_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'action_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'arc'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'arc_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'arc_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'arc_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'arc_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'arc_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'arc_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'arc_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'arc_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'arc_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'dkim'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dkim_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dkim_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dkim_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'dkim_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dkim_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dkim_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dkim_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dkim_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'dkim_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dmarc'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dmarc_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dmarc_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dmarc_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'dmarc_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dmarc_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dmarc_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dmarc_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dmarc_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'dmarc_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventType'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventType_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventType_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventType_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'eventType_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventType_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventType_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventType_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventType_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'eventType_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'isNDR'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isNDR_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isNDR_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isNDR_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'isNDR_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isNDR_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isNDR_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isNDR_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'isSpam'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isSpam_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isSpam_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isSpam_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'isSpam_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isSpam_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isSpam_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isSpam_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ruleMatched'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleMatched_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleMatched_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleMatched_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ruleMatched_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleMatched_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleMatched_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleMatched_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleMatched_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ruleMatched_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sampleInterval_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'spamScore'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'spamScore_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'spamScore_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'spamScore_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'spamScore_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'spamScore_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'spamScore_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'spamScore_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'spamThreshold'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'spamThreshold_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'spamThreshold_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'spamThreshold_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'spamThreshold_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'spamThreshold_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'spamThreshold_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'spamThreshold_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'spf'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'spf_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'spf_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'spf_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'spf_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'spf_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'spf_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'spf_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'spf_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'spf_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'status_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'status_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'ZoneEmailRoutingAdaptiveGroupsOrderBy': { name: 'ZoneEmailRoutingAdaptiveGroupsOrderBy'; enumValues: 'action_ASC' | 'action_DESC' | 'arc_ASC' | 'arc_DESC' | 'count_ASC' | 'count_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'dkim_ASC' | 'dkim_DESC' | 'dmarc_ASC' | 'dmarc_DESC' | 'eventType_ASC' | 'eventType_DESC' | 'isEmailSending_ASC' | 'isEmailSending_DESC' | 'isNDR_ASC' | 'isNDR_DESC' | 'isSpam_ASC' | 'isSpam_DESC' | 'ruleMatched_ASC' | 'ruleMatched_DESC' | 'sampleInterval_ASC' | 'sampleInterval_DESC' | 'spamScore_ASC' | 'spamScore_DESC' | 'spamThreshold_ASC' | 'spamThreshold_DESC' | 'spf_ASC' | 'spf_DESC' | 'status_ASC' | 'status_DESC'; }; + 'ZoneEmailRoutingAdaptiveOrderBy': { name: 'ZoneEmailRoutingAdaptiveOrderBy'; enumValues: 'action_ASC' | 'action_DESC' | 'arc_ASC' | 'arc_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'dkim_ASC' | 'dkim_DESC' | 'dmarc_ASC' | 'dmarc_DESC' | 'errorDetail_ASC' | 'errorDetail_DESC' | 'eventType_ASC' | 'eventType_DESC' | 'from_ASC' | 'from_DESC' | 'isEmailSending_ASC' | 'isEmailSending_DESC' | 'isNDR_ASC' | 'isNDR_DESC' | 'isSpam_ASC' | 'isSpam_DESC' | 'messageId_ASC' | 'messageId_DESC' | 'ruleMatched_ASC' | 'ruleMatched_DESC' | 'sampleInterval_ASC' | 'sampleInterval_DESC' | 'sessionId_ASC' | 'sessionId_DESC' | 'spamScore_ASC' | 'spamScore_DESC' | 'spamThreshold_ASC' | 'spamThreshold_DESC' | 'spf_ASC' | 'spf_DESC' | 'status_ASC' | 'status_DESC' | 'subject_ASC' | 'subject_DESC' | 'to_ASC' | 'to_DESC'; }; + 'ZoneEmailSendingAdaptive': { kind: 'OBJECT'; name: 'ZoneEmailSendingAdaptive'; fields: { 'arc': { name: 'arc'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'dkim': { name: 'dkim'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'dmarc': { name: 'dmarc'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'errorDetail': { name: 'errorDetail'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'eventType': { name: 'eventType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'from': { name: 'from'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'isNDR': { name: 'isNDR'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'isSpam': { name: 'isSpam'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'messageId': { name: 'messageId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'sessionId': { name: 'sessionId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'spamScore': { name: 'spamScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'spamThreshold': { name: 'spamThreshold'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'spf': { name: 'spf'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'status': { name: 'status'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'subject': { name: 'subject'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'to': { name: 'to'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'ZoneEmailSendingAdaptiveFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'ZoneEmailSendingAdaptiveFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneEmailSendingAdaptiveFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneEmailSendingAdaptiveFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'arc'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'arc_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'arc_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'arc_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'arc_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'arc_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'arc_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'arc_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'arc_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'arc_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'dkim'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dkim_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dkim_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dkim_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'dkim_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dkim_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dkim_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dkim_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dkim_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'dkim_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dmarc'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dmarc_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dmarc_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dmarc_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'dmarc_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dmarc_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dmarc_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dmarc_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dmarc_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'dmarc_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'errorDetail'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'errorDetail_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'errorDetail_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'errorDetail_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'errorDetail_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'errorDetail_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'errorDetail_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'errorDetail_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'errorDetail_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'errorDetail_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventType'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventType_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventType_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventType_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'eventType_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventType_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventType_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventType_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventType_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'eventType_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'from'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'from_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'from_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'from_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'from_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'from_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'from_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'from_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'from_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'from_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'isNDR'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isNDR_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isNDR_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isNDR_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'isNDR_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isNDR_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isNDR_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isNDR_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'isSpam'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isSpam_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isSpam_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isSpam_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'isSpam_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isSpam_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isSpam_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isSpam_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'messageId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'messageId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'messageId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'messageId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'messageId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'messageId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'messageId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'messageId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'messageId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'messageId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sampleInterval_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'spamScore'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'spamScore_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'spamScore_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'spamScore_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'spamScore_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'spamScore_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'spamScore_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'spamScore_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'spamThreshold'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'spamThreshold_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'spamThreshold_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'spamThreshold_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'spamThreshold_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'spamThreshold_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'spamThreshold_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'spamThreshold_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'spf'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'spf_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'spf_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'spf_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'spf_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'spf_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'spf_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'spf_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'spf_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'spf_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'status_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'status_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'subject'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'subject_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'subject_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'subject_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'subject_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'subject_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'subject_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'subject_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'subject_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'subject_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'to'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'to_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'to_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'to_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'to_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'to_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'to_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'to_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'to_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'to_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'ZoneEmailSendingAdaptiveGroups': { kind: 'OBJECT'; name: 'ZoneEmailSendingAdaptiveGroups'; fields: { 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneEmailSendingAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'ZoneEmailSendingAdaptiveGroupsDimensions'; ofType: null; } }; }; }; + 'ZoneEmailSendingAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'ZoneEmailSendingAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'ZoneEmailSendingAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'ZoneEmailSendingAdaptiveGroupsDimensions'; fields: { 'arc': { name: 'arc'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'dkim': { name: 'dkim'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'dmarc': { name: 'dmarc'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'eventType': { name: 'eventType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'isNDR': { name: 'isNDR'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'isSpam': { name: 'isSpam'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'spamScore': { name: 'spamScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'spamThreshold': { name: 'spamThreshold'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'spf': { name: 'spf'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'status': { name: 'status'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'ZoneEmailSendingAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'ZoneEmailSendingAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneEmailSendingAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneEmailSendingAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'arc'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'arc_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'arc_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'arc_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'arc_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'arc_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'arc_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'arc_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'arc_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'arc_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'dkim'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dkim_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dkim_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dkim_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'dkim_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dkim_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dkim_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dkim_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dkim_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'dkim_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dmarc'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dmarc_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dmarc_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dmarc_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'dmarc_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dmarc_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dmarc_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dmarc_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'dmarc_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'dmarc_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventType'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventType_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventType_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventType_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'eventType_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventType_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventType_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventType_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventType_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'eventType_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'isNDR'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isNDR_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isNDR_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isNDR_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'isNDR_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isNDR_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isNDR_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isNDR_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'isSpam'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isSpam_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isSpam_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isSpam_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'isSpam_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isSpam_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isSpam_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isSpam_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sampleInterval_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'spamScore'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'spamScore_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'spamScore_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'spamScore_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'spamScore_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'spamScore_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'spamScore_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'spamScore_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'spamThreshold'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'spamThreshold_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'spamThreshold_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'spamThreshold_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'spamThreshold_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'spamThreshold_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'spamThreshold_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'spamThreshold_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'spf'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'spf_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'spf_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'spf_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'spf_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'spf_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'spf_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'spf_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'spf_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'spf_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'status_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'status_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'ZoneEmailSendingAdaptiveGroupsOrderBy': { name: 'ZoneEmailSendingAdaptiveGroupsOrderBy'; enumValues: 'arc_ASC' | 'arc_DESC' | 'count_ASC' | 'count_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'dkim_ASC' | 'dkim_DESC' | 'dmarc_ASC' | 'dmarc_DESC' | 'eventType_ASC' | 'eventType_DESC' | 'isEmailSending_ASC' | 'isEmailSending_DESC' | 'isNDR_ASC' | 'isNDR_DESC' | 'isSpam_ASC' | 'isSpam_DESC' | 'sampleInterval_ASC' | 'sampleInterval_DESC' | 'spamScore_ASC' | 'spamScore_DESC' | 'spamThreshold_ASC' | 'spamThreshold_DESC' | 'spf_ASC' | 'spf_DESC' | 'status_ASC' | 'status_DESC'; }; + 'ZoneEmailSendingAdaptiveOrderBy': { name: 'ZoneEmailSendingAdaptiveOrderBy'; enumValues: 'arc_ASC' | 'arc_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'dkim_ASC' | 'dkim_DESC' | 'dmarc_ASC' | 'dmarc_DESC' | 'errorDetail_ASC' | 'errorDetail_DESC' | 'eventType_ASC' | 'eventType_DESC' | 'from_ASC' | 'from_DESC' | 'isEmailSending_ASC' | 'isEmailSending_DESC' | 'isNDR_ASC' | 'isNDR_DESC' | 'isSpam_ASC' | 'isSpam_DESC' | 'messageId_ASC' | 'messageId_DESC' | 'sampleInterval_ASC' | 'sampleInterval_DESC' | 'sessionId_ASC' | 'sessionId_DESC' | 'spamScore_ASC' | 'spamScore_DESC' | 'spamThreshold_ASC' | 'spamThreshold_DESC' | 'spf_ASC' | 'spf_DESC' | 'status_ASC' | 'status_DESC' | 'subject_ASC' | 'subject_DESC' | 'to_ASC' | 'to_DESC'; }; + 'ZoneFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'ZoneFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'zoneTag'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'zoneTag_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'zoneTag_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }]; }; + 'ZoneFirewallEventsAdaptive': { kind: 'OBJECT'; name: 'ZoneFirewallEventsAdaptive'; fields: { 'action': { name: 'action'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'apiGatewayMatchedEndpoint': { name: 'apiGatewayMatchedEndpoint'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'apiGatewayMatchedHost': { name: 'apiGatewayMatchedHost'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'attackSignatureCategories': { name: 'attackSignatureCategories'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'attackSignatureRefs': { name: 'attackSignatureRefs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'botDetectionIds': { name: 'botDetectionIds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; } }; 'botDetectionTags': { name: 'botDetectionTags'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'botScore': { name: 'botScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'botScoreSrcName': { name: 'botScoreSrcName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientASNDescription': { name: 'clientASNDescription'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientAsn': { name: 'clientAsn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientCountryName': { name: 'clientCountryName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientIP': { name: 'clientIP'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientIPClass': { name: 'clientIPClass'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRefererHost': { name: 'clientRefererHost'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRefererPath': { name: 'clientRefererPath'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRefererQuery': { name: 'clientRefererQuery'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRefererScheme': { name: 'clientRefererScheme'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRequestHTTPHost': { name: 'clientRequestHTTPHost'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRequestHTTPMethodName': { name: 'clientRequestHTTPMethodName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRequestHTTPProtocol': { name: 'clientRequestHTTPProtocol'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRequestPath': { name: 'clientRequestPath'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRequestQuery': { name: 'clientRequestQuery'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRequestScheme': { name: 'clientRequestScheme'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'contentScanHasFailed': { name: 'contentScanHasFailed'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'contentScanNumMaliciousObj': { name: 'contentScanNumMaliciousObj'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'contentScanNumObj': { name: 'contentScanNumObj'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'contentScanObjResults': { name: 'contentScanObjResults'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'contentScanObjSizes': { name: 'contentScanObjSizes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; } }; 'contentScanObjTypes': { name: 'contentScanObjTypes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'description': { name: 'description'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'edgeColoName': { name: 'edgeColoName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'edgeResponseStatus': { name: 'edgeResponseStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'firewallForAiAnyPiiCategory': { name: 'firewallForAiAnyPiiCategory'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; } }; 'firewallForAiInjectionScore': { name: 'firewallForAiInjectionScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; } }; 'firewallForAiPiiCategories': { name: 'firewallForAiPiiCategories'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'firewallForAiUnsafeTopicCategories': { name: 'firewallForAiUnsafeTopicCategories'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'fraudAttack': { name: 'fraudAttack'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'fraudDetectionIds': { name: 'fraudDetectionIds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; } }; 'fraudDetectionTags': { name: 'fraudDetectionTags'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'fraudEmailRisk': { name: 'fraudEmailRisk'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'httpApplicationVersion': { name: 'httpApplicationVersion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'ja3Hash': { name: 'ja3Hash'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ja4': { name: 'ja4'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ja4Signals': { name: 'ja4Signals'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneFirewallEventsAdaptiveJa4SignalsElem'; ofType: null; }; }; }; } }; 'jsDetectionPassed': { name: 'jsDetectionPassed'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'kind': { name: 'kind'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'leakedCredentialCheckResult': { name: 'leakedCredentialCheckResult'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'matchIndex': { name: 'matchIndex'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'metadata': { name: 'metadata'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneFirewallEventsAdaptiveMetadataElem'; ofType: null; }; }; }; } }; 'originResponseStatus': { name: 'originResponseStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'originatorRayName': { name: 'originatorRayName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'rayName': { name: 'rayName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ref': { name: 'ref'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ruleId': { name: 'ruleId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'rulesetId': { name: 'rulesetId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'source': { name: 'source'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'userAgent': { name: 'userAgent'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'verifiedBotCategory': { name: 'verifiedBotCategory'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'wafAttackScore': { name: 'wafAttackScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'wafAttackScoreClass': { name: 'wafAttackScoreClass'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'wafMlAttackScore': { name: 'wafMlAttackScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'wafMlSqliAttackScore': { name: 'wafMlSqliAttackScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'wafMlXssAttackScore': { name: 'wafMlXssAttackScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'wafRceAttackScore': { name: 'wafRceAttackScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'wafSqliAttackScore': { name: 'wafSqliAttackScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'wafXssAttackScore': { name: 'wafXssAttackScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'zoneVersion': { name: 'zoneVersion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'ZoneFirewallEventsAdaptiveByTimeGroups': { kind: 'OBJECT'; name: 'ZoneFirewallEventsAdaptiveByTimeGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'ZoneFirewallEventsAdaptiveByTimeGroupsAvg'; ofType: null; } }; 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneFirewallEventsAdaptiveByTimeGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'ZoneFirewallEventsAdaptiveByTimeGroupsDimensions'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'ZoneFirewallEventsAdaptiveByTimeGroupsSum'; ofType: null; } }; }; }; + 'ZoneFirewallEventsAdaptiveByTimeGroupsAvg': { kind: 'OBJECT'; name: 'ZoneFirewallEventsAdaptiveByTimeGroupsAvg'; fields: { 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'ZoneFirewallEventsAdaptiveByTimeGroupsConfidence': { kind: 'OBJECT'; name: 'ZoneFirewallEventsAdaptiveByTimeGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'ZoneFirewallEventsAdaptiveByTimeGroupsDimensions': { kind: 'OBJECT'; name: 'ZoneFirewallEventsAdaptiveByTimeGroupsDimensions'; fields: { 'apiGatewayMatchedEndpoint': { name: 'apiGatewayMatchedEndpoint'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'apiGatewayMatchedHost': { name: 'apiGatewayMatchedHost'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'attackSignatureCategories': { name: 'attackSignatureCategories'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'attackSignatureRefs': { name: 'attackSignatureRefs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'botDetectionIds': { name: 'botDetectionIds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; } }; 'botDetectionTags': { name: 'botDetectionTags'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'botScore': { name: 'botScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'botScoreSrcName': { name: 'botScoreSrcName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'description': { name: 'description'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'firewallForAiAnyPiiCategory': { name: 'firewallForAiAnyPiiCategory'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; } }; 'firewallForAiInjectionScore': { name: 'firewallForAiInjectionScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; } }; 'firewallForAiPiiCategories': { name: 'firewallForAiPiiCategories'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'firewallForAiUnsafeTopicCategories': { name: 'firewallForAiUnsafeTopicCategories'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'fraudAttack': { name: 'fraudAttack'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'fraudDetectionIds': { name: 'fraudDetectionIds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; } }; 'fraudDetectionTags': { name: 'fraudDetectionTags'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'fraudEmailRisk': { name: 'fraudEmailRisk'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'httpApplicationVersion': { name: 'httpApplicationVersion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'ja3Hash': { name: 'ja3Hash'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ja4': { name: 'ja4'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'jsDetectionPassed': { name: 'jsDetectionPassed'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'verifiedBotCategory': { name: 'verifiedBotCategory'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'wafAttackScore': { name: 'wafAttackScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'wafAttackScoreClass': { name: 'wafAttackScoreClass'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'wafMlAttackScore': { name: 'wafMlAttackScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'wafMlSqliAttackScore': { name: 'wafMlSqliAttackScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'wafMlXssAttackScore': { name: 'wafMlXssAttackScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'wafRceAttackScore': { name: 'wafRceAttackScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'wafSqliAttackScore': { name: 'wafSqliAttackScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'wafXssAttackScore': { name: 'wafXssAttackScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'zoneVersion': { name: 'zoneVersion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'ZoneFirewallEventsAdaptiveByTimeGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'ZoneFirewallEventsAdaptiveByTimeGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneFirewallEventsAdaptiveByTimeGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneFirewallEventsAdaptiveByTimeGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'action'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'action_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'action_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackSignatureCategories_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackSignatureCategories_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'attackSignatureCategories_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'attackSignatureCategories_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'attackSignatureCategories_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackSignatureRefs_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackSignatureRefs_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'attackSignatureRefs_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'attackSignatureRefs_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'attackSignatureRefs_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botDetectionIds_has'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'botDetectionIds_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'botDetectionIds_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'botDetectionIds_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'botDetectionIds_nothas'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'botDetectionTags_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botDetectionTags_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'botDetectionTags_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'botDetectionTags_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'botDetectionTags_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScore'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'botScoreSrcName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'botScoreSrcName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScore_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScore_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScore_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'botScore_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScore_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScore_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScore_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientASNDescription_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientASNDescription_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientAsn_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientAsn_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientCountryName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientCountryName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPClass'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPClass_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPClass_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPClass_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientIPClass_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPClass_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPClass_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPClass_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPClass_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientIPClass_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientIP_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientIP_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRefererHost_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRefererHost_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererPath'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererPath_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererPath_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererPath_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRefererPath_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererPath_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererPath_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererPath_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererPath_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRefererPath_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererQuery'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererQuery_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererQuery_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererQuery_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRefererQuery_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererQuery_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererQuery_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererQuery_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererQuery_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRefererQuery_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererScheme'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererScheme_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererScheme_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererScheme_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRefererScheme_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererScheme_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererScheme_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererScheme_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererScheme_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRefererScheme_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestHTTPHost_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestHTTPHost_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestPath_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestPath_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestQuery_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestQuery_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestScheme_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestScheme_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjResults_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjResults_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'contentScanObjResults_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'contentScanObjResults_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjResults_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjSizes_has'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjSizes_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'contentScanObjSizes_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'contentScanObjSizes_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjSizes_nothas'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjTypes_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjTypes_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'contentScanObjTypes_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'contentScanObjTypes_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjTypes_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'description'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'description_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'description_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'description_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'description_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'description_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'description_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'description_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'description_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'description_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeColoName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeColoName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeResponseStatus_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory_geq'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory_gt'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory_leq'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory_lt'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory_neq'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiInjectionScore'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiInjectionScore_geq'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiInjectionScore_gt'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiInjectionScore_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiInjectionScore_leq'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiInjectionScore_lt'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiInjectionScore_neq'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiInjectionScore_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiPiiCategories_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiPiiCategories_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiPiiCategories_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiPiiCategories_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiPiiCategories_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiUnsafeTopicCategories_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiUnsafeTopicCategories_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiUnsafeTopicCategories_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiUnsafeTopicCategories_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiUnsafeTopicCategories_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudAttack_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudAttack_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudDetectionIds_has'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'fraudDetectionIds_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudDetectionIds_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudDetectionIds_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'fraudDetectionIds_nothas'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'fraudDetectionTags_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudDetectionTags_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudDetectionTags_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudDetectionTags_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'fraudDetectionTags_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudEmailRisk_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudEmailRisk_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'httpApplicationVersion_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'ja3Hash'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja3Hash_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja3Hash_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja3Hash_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ja3Hash_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja3Hash_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja3Hash_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja3Hash_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja3Hash_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ja3Hash_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ja4_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ja4_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'jsDetectionPassed_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'jsDetectionPassed_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'kind'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'kind_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'kind_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'kind_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'kind_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'kind_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'kind_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'kind_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'kind_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'kind_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'matchIndex'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'matchIndex_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'matchIndex_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'matchIndex_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'matchIndex_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'matchIndex_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'matchIndex_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'matchIndex_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'originResponseStatus'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'originResponseStatus_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'originResponseStatus_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'originResponseStatus_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'originResponseStatus_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'originResponseStatus_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'originResponseStatus_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'originResponseStatus_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'originatorRayName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originatorRayName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originatorRayName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originatorRayName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'originatorRayName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originatorRayName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originatorRayName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originatorRayName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originatorRayName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'originatorRayName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'rayName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'rayName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ref'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ref_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ref_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ref_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ref_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ref_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ref_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ref_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ref_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ref_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ruleId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ruleId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'rulesetId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'rulesetId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sampleInterval_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'source'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'source_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'source_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'source_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'source_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'source_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'source_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'source_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'source_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'source_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userAgent_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userAgent_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'verifiedBotCategory_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'verifiedBotCategory_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'wafAttackScoreClass_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'wafAttackScoreClass_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafMlAttackScore'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlAttackScore_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlAttackScore_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlAttackScore_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafMlAttackScore_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlAttackScore_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlAttackScore_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlAttackScore_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafMlSqliAttackScore'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlSqliAttackScore_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlSqliAttackScore_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlSqliAttackScore_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafMlSqliAttackScore_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlSqliAttackScore_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlSqliAttackScore_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlSqliAttackScore_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafMlXssAttackScore'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlXssAttackScore_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlXssAttackScore_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlXssAttackScore_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafMlXssAttackScore_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlXssAttackScore_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlXssAttackScore_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlXssAttackScore_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'zoneVersion_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }]; }; + 'ZoneFirewallEventsAdaptiveByTimeGroupsOrderBy': { name: 'ZoneFirewallEventsAdaptiveByTimeGroupsOrderBy'; enumValues: 'apiGatewayMatchedEndpoint_ASC' | 'apiGatewayMatchedEndpoint_DESC' | 'apiGatewayMatchedHost_ASC' | 'apiGatewayMatchedHost_DESC' | 'attackSignatureCategories_ASC' | 'attackSignatureCategories_DESC' | 'attackSignatureRefs_ASC' | 'attackSignatureRefs_DESC' | 'avg_sampleInterval_ASC' | 'avg_sampleInterval_DESC' | 'botDetectionIds_ASC' | 'botDetectionIds_DESC' | 'botDetectionTags_ASC' | 'botDetectionTags_DESC' | 'botScoreSrcName_ASC' | 'botScoreSrcName_DESC' | 'botScore_ASC' | 'botScore_DESC' | 'count_ASC' | 'count_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'description_ASC' | 'description_DESC' | 'firewallForAiAnyPiiCategory_ASC' | 'firewallForAiAnyPiiCategory_DESC' | 'firewallForAiInjectionScore_ASC' | 'firewallForAiInjectionScore_DESC' | 'firewallForAiPiiCategories_ASC' | 'firewallForAiPiiCategories_DESC' | 'firewallForAiUnsafeTopicCategories_ASC' | 'firewallForAiUnsafeTopicCategories_DESC' | 'fraudAttack_ASC' | 'fraudAttack_DESC' | 'fraudDetectionIds_ASC' | 'fraudDetectionIds_DESC' | 'fraudDetectionTags_ASC' | 'fraudDetectionTags_DESC' | 'fraudEmailRisk_ASC' | 'fraudEmailRisk_DESC' | 'httpApplicationVersion_ASC' | 'httpApplicationVersion_DESC' | 'ja3Hash_ASC' | 'ja3Hash_DESC' | 'ja4_ASC' | 'ja4_DESC' | 'jsDetectionPassed_ASC' | 'jsDetectionPassed_DESC' | 'sum_botDetectionIdArray_ASC' | 'sum_botDetectionIdArray_DESC' | 'sum_botDetectionIdCountArray_ASC' | 'sum_botDetectionIdCountArray_DESC' | 'sum_botDetectionTagArray_ASC' | 'sum_botDetectionTagArray_DESC' | 'sum_botDetectionTagCountArray_ASC' | 'sum_botDetectionTagCountArray_DESC' | 'sum_fraudDetectionIdArray_ASC' | 'sum_fraudDetectionIdArray_DESC' | 'sum_fraudDetectionIdCountArray_ASC' | 'sum_fraudDetectionIdCountArray_DESC' | 'sum_fraudDetectionTagArray_ASC' | 'sum_fraudDetectionTagArray_DESC' | 'sum_fraudDetectionTagCountArray_ASC' | 'sum_fraudDetectionTagCountArray_DESC' | 'verifiedBotCategory_ASC' | 'verifiedBotCategory_DESC' | 'visibility_ASC' | 'visibility_DESC' | 'wafAttackScoreClass_ASC' | 'wafAttackScoreClass_DESC' | 'wafAttackScore_ASC' | 'wafAttackScore_DESC' | 'wafMlAttackScore_ASC' | 'wafMlAttackScore_DESC' | 'wafMlSqliAttackScore_ASC' | 'wafMlSqliAttackScore_DESC' | 'wafMlXssAttackScore_ASC' | 'wafMlXssAttackScore_DESC' | 'wafRceAttackScore_ASC' | 'wafRceAttackScore_DESC' | 'wafSqliAttackScore_ASC' | 'wafSqliAttackScore_DESC' | 'wafXssAttackScore_ASC' | 'wafXssAttackScore_DESC' | 'zoneVersion_ASC' | 'zoneVersion_DESC'; }; + 'ZoneFirewallEventsAdaptiveByTimeGroupsSum': { kind: 'OBJECT'; name: 'ZoneFirewallEventsAdaptiveByTimeGroupsSum'; fields: { 'botDetectionIdArray': { name: 'botDetectionIdArray'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; } }; 'botDetectionIdCountArray': { name: 'botDetectionIdCountArray'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; } }; 'botDetectionTagArray': { name: 'botDetectionTagArray'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'botDetectionTagCountArray': { name: 'botDetectionTagCountArray'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; } }; 'fraudDetectionIdArray': { name: 'fraudDetectionIdArray'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; } }; 'fraudDetectionIdCountArray': { name: 'fraudDetectionIdCountArray'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; } }; 'fraudDetectionTagArray': { name: 'fraudDetectionTagArray'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'fraudDetectionTagCountArray': { name: 'fraudDetectionTagCountArray'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; } }; }; }; + 'ZoneFirewallEventsAdaptiveFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'ZoneFirewallEventsAdaptiveFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneFirewallEventsAdaptiveFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneFirewallEventsAdaptiveFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'action'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'action_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'action_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackSignatureCategories_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackSignatureCategories_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'attackSignatureCategories_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'attackSignatureCategories_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'attackSignatureCategories_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackSignatureRefs_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackSignatureRefs_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'attackSignatureRefs_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'attackSignatureRefs_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'attackSignatureRefs_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botDetectionIds_has'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'botDetectionIds_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'botDetectionIds_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'botDetectionIds_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'botDetectionIds_nothas'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'botDetectionTags_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botDetectionTags_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'botDetectionTags_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'botDetectionTags_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'botDetectionTags_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScore'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'botScoreSrcName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'botScoreSrcName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScore_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScore_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScore_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'botScore_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScore_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScore_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScore_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientASNDescription_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientASNDescription_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientAsn_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientAsn_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientCountryName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientCountryName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPClass'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPClass_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPClass_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPClass_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientIPClass_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPClass_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPClass_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPClass_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPClass_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientIPClass_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientIP_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientIP_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRefererHost_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRefererHost_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererPath'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererPath_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererPath_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererPath_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRefererPath_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererPath_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererPath_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererPath_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererPath_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRefererPath_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererQuery'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererQuery_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererQuery_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererQuery_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRefererQuery_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererQuery_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererQuery_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererQuery_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererQuery_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRefererQuery_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererScheme'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererScheme_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererScheme_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererScheme_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRefererScheme_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererScheme_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererScheme_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererScheme_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererScheme_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRefererScheme_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestHTTPHost_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestHTTPHost_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestPath_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestPath_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestQuery_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestQuery_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestScheme_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestScheme_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjResults_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjResults_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'contentScanObjResults_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'contentScanObjResults_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjResults_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjSizes_has'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjSizes_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'contentScanObjSizes_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'contentScanObjSizes_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjSizes_nothas'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjTypes_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjTypes_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'contentScanObjTypes_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'contentScanObjTypes_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjTypes_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'description'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'description_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'description_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'description_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'description_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'description_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'description_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'description_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'description_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'description_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeColoName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeColoName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeResponseStatus_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory_geq'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory_gt'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory_leq'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory_lt'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory_neq'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiInjectionScore'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiInjectionScore_geq'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiInjectionScore_gt'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiInjectionScore_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiInjectionScore_leq'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiInjectionScore_lt'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiInjectionScore_neq'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiInjectionScore_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiPiiCategories_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiPiiCategories_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiPiiCategories_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiPiiCategories_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiPiiCategories_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiUnsafeTopicCategories_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiUnsafeTopicCategories_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiUnsafeTopicCategories_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiUnsafeTopicCategories_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiUnsafeTopicCategories_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudAttack_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudAttack_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudDetectionIds_has'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'fraudDetectionIds_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudDetectionIds_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudDetectionIds_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'fraudDetectionIds_nothas'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'fraudDetectionTags_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudDetectionTags_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudDetectionTags_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudDetectionTags_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'fraudDetectionTags_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudEmailRisk_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudEmailRisk_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'httpApplicationVersion_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'ja3Hash'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja3Hash_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja3Hash_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja3Hash_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ja3Hash_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja3Hash_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja3Hash_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja3Hash_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja3Hash_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ja3Hash_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ja4_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ja4_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'jsDetectionPassed_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'jsDetectionPassed_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'kind'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'kind_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'kind_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'kind_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'kind_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'kind_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'kind_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'kind_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'kind_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'kind_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leakedCredentialCheckResult'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leakedCredentialCheckResult_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leakedCredentialCheckResult_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leakedCredentialCheckResult_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'leakedCredentialCheckResult_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leakedCredentialCheckResult_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leakedCredentialCheckResult_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leakedCredentialCheckResult_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leakedCredentialCheckResult_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'leakedCredentialCheckResult_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'matchIndex'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'matchIndex_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'matchIndex_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'matchIndex_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'matchIndex_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'matchIndex_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'matchIndex_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'matchIndex_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'originResponseStatus'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'originResponseStatus_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'originResponseStatus_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'originResponseStatus_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'originResponseStatus_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'originResponseStatus_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'originResponseStatus_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'originResponseStatus_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'originatorRayName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originatorRayName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originatorRayName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originatorRayName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'originatorRayName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originatorRayName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originatorRayName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originatorRayName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originatorRayName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'originatorRayName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'rayName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'rayName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ref'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ref_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ref_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ref_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ref_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ref_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ref_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ref_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ref_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ref_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ruleId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ruleId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'rulesetId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'rulesetId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sampleInterval_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'source'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'source_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'source_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'source_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'source_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'source_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'source_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'source_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'source_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'source_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userAgent_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userAgent_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'verifiedBotCategory_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'verifiedBotCategory_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'wafAttackScoreClass_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'wafAttackScoreClass_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafMlAttackScore'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlAttackScore_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlAttackScore_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlAttackScore_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafMlAttackScore_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlAttackScore_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlAttackScore_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlAttackScore_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafMlSqliAttackScore'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlSqliAttackScore_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlSqliAttackScore_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlSqliAttackScore_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafMlSqliAttackScore_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlSqliAttackScore_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlSqliAttackScore_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlSqliAttackScore_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafMlXssAttackScore'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlXssAttackScore_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlXssAttackScore_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlXssAttackScore_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafMlXssAttackScore_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlXssAttackScore_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlXssAttackScore_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlXssAttackScore_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'zoneVersion_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }]; }; + 'ZoneFirewallEventsAdaptiveGroups': { kind: 'OBJECT'; name: 'ZoneFirewallEventsAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'ZoneFirewallEventsAdaptiveGroupsAvg'; ofType: null; } }; 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneFirewallEventsAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'ZoneFirewallEventsAdaptiveGroupsDimensions'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'ZoneFirewallEventsAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'ZoneFirewallEventsAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'ZoneFirewallEventsAdaptiveGroupsAvg'; fields: { 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'ZoneFirewallEventsAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'ZoneFirewallEventsAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'ZoneFirewallEventsAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'ZoneFirewallEventsAdaptiveGroupsDimensions'; fields: { 'action': { name: 'action'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'apiGatewayMatchedEndpoint': { name: 'apiGatewayMatchedEndpoint'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'apiGatewayMatchedHost': { name: 'apiGatewayMatchedHost'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'attackSignatureCategories': { name: 'attackSignatureCategories'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'attackSignatureRefs': { name: 'attackSignatureRefs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'botDetectionIds': { name: 'botDetectionIds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; } }; 'botDetectionTags': { name: 'botDetectionTags'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'botScore': { name: 'botScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'botScoreSrcName': { name: 'botScoreSrcName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientASNDescription': { name: 'clientASNDescription'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientAsn': { name: 'clientAsn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientCountryName': { name: 'clientCountryName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientIP': { name: 'clientIP'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientIPClass': { name: 'clientIPClass'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRefererHost': { name: 'clientRefererHost'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRefererPath': { name: 'clientRefererPath'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRefererQuery': { name: 'clientRefererQuery'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRefererScheme': { name: 'clientRefererScheme'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRequestHTTPHost': { name: 'clientRequestHTTPHost'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRequestHTTPMethodName': { name: 'clientRequestHTTPMethodName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRequestHTTPProtocol': { name: 'clientRequestHTTPProtocol'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRequestPath': { name: 'clientRequestPath'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRequestQuery': { name: 'clientRequestQuery'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRequestScheme': { name: 'clientRequestScheme'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'contentScanHasFailed': { name: 'contentScanHasFailed'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'contentScanNumMaliciousObj': { name: 'contentScanNumMaliciousObj'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'contentScanNumObj': { name: 'contentScanNumObj'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'contentScanObjResults': { name: 'contentScanObjResults'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'contentScanObjSizes': { name: 'contentScanObjSizes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; } }; 'contentScanObjTypes': { name: 'contentScanObjTypes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'description': { name: 'description'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'edgeColoName': { name: 'edgeColoName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'edgeResponseStatus': { name: 'edgeResponseStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'firewallForAiAnyPiiCategory': { name: 'firewallForAiAnyPiiCategory'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; } }; 'firewallForAiInjectionScore': { name: 'firewallForAiInjectionScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; } }; 'firewallForAiPiiCategories': { name: 'firewallForAiPiiCategories'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'firewallForAiUnsafeTopicCategories': { name: 'firewallForAiUnsafeTopicCategories'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'fraudAttack': { name: 'fraudAttack'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'fraudDetectionIds': { name: 'fraudDetectionIds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; } }; 'fraudDetectionTags': { name: 'fraudDetectionTags'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'fraudEmailRisk': { name: 'fraudEmailRisk'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'httpApplicationVersion': { name: 'httpApplicationVersion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'ja3Hash': { name: 'ja3Hash'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ja4': { name: 'ja4'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'jsDetectionPassed': { name: 'jsDetectionPassed'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'kind': { name: 'kind'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'matchIndex': { name: 'matchIndex'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'originResponseStatus': { name: 'originResponseStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'originatorRayName': { name: 'originatorRayName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'rayName': { name: 'rayName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ref': { name: 'ref'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ruleId': { name: 'ruleId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'rulesetId': { name: 'rulesetId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'source': { name: 'source'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'userAgent': { name: 'userAgent'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'verifiedBotCategory': { name: 'verifiedBotCategory'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'wafAttackScore': { name: 'wafAttackScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'wafAttackScoreClass': { name: 'wafAttackScoreClass'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'wafMlAttackScore': { name: 'wafMlAttackScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'wafMlSqliAttackScore': { name: 'wafMlSqliAttackScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'wafMlXssAttackScore': { name: 'wafMlXssAttackScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'wafRceAttackScore': { name: 'wafRceAttackScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'wafSqliAttackScore': { name: 'wafSqliAttackScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'wafXssAttackScore': { name: 'wafXssAttackScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'zoneVersion': { name: 'zoneVersion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'ZoneFirewallEventsAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'ZoneFirewallEventsAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneFirewallEventsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneFirewallEventsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'action'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'action_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'action_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackSignatureCategories_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackSignatureCategories_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'attackSignatureCategories_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'attackSignatureCategories_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'attackSignatureCategories_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackSignatureRefs_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackSignatureRefs_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'attackSignatureRefs_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'attackSignatureRefs_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'attackSignatureRefs_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botDetectionIds_has'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'botDetectionIds_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'botDetectionIds_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'botDetectionIds_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'botDetectionIds_nothas'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'botDetectionTags_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botDetectionTags_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'botDetectionTags_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'botDetectionTags_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'botDetectionTags_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScore'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'botScoreSrcName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'botScoreSrcName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScore_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScore_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScore_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'botScore_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScore_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScore_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScore_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientASNDescription_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientASNDescription_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientAsn_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientAsn_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientCountryName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientCountryName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPClass'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPClass_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPClass_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPClass_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientIPClass_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPClass_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPClass_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPClass_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPClass_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientIPClass_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientIP_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientIP_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRefererHost_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRefererHost_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererPath'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererPath_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererPath_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererPath_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRefererPath_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererPath_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererPath_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererPath_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererPath_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRefererPath_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererQuery'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererQuery_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererQuery_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererQuery_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRefererQuery_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererQuery_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererQuery_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererQuery_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererQuery_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRefererQuery_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererScheme'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererScheme_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererScheme_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererScheme_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRefererScheme_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererScheme_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererScheme_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererScheme_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererScheme_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRefererScheme_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestHTTPHost_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestHTTPHost_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestPath_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestPath_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestQuery_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestQuery_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestScheme_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestScheme_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjResults_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjResults_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'contentScanObjResults_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'contentScanObjResults_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjResults_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjSizes_has'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjSizes_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'contentScanObjSizes_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'contentScanObjSizes_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjSizes_nothas'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjTypes_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjTypes_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'contentScanObjTypes_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'contentScanObjTypes_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjTypes_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'description'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'description_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'description_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'description_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'description_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'description_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'description_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'description_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'description_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'description_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeColoName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeColoName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeColoName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeResponseStatus_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory_geq'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory_gt'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory_leq'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory_lt'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory_neq'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiInjectionScore'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiInjectionScore_geq'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiInjectionScore_gt'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiInjectionScore_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiInjectionScore_leq'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiInjectionScore_lt'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiInjectionScore_neq'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiInjectionScore_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiPiiCategories_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiPiiCategories_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiPiiCategories_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiPiiCategories_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiPiiCategories_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiUnsafeTopicCategories_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiUnsafeTopicCategories_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiUnsafeTopicCategories_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiUnsafeTopicCategories_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiUnsafeTopicCategories_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudAttack_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudAttack_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudDetectionIds_has'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'fraudDetectionIds_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudDetectionIds_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudDetectionIds_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'fraudDetectionIds_nothas'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'fraudDetectionTags_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudDetectionTags_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudDetectionTags_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudDetectionTags_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'fraudDetectionTags_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudEmailRisk_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudEmailRisk_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'httpApplicationVersion_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'ja3Hash'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja3Hash_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja3Hash_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja3Hash_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ja3Hash_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja3Hash_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja3Hash_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja3Hash_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja3Hash_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ja3Hash_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ja4_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ja4_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'jsDetectionPassed_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'jsDetectionPassed_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'kind'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'kind_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'kind_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'kind_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'kind_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'kind_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'kind_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'kind_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'kind_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'kind_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'matchIndex'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'matchIndex_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'matchIndex_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'matchIndex_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'matchIndex_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'matchIndex_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'matchIndex_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'matchIndex_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'originResponseStatus'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'originResponseStatus_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'originResponseStatus_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'originResponseStatus_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'originResponseStatus_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'originResponseStatus_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'originResponseStatus_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'originResponseStatus_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'originatorRayName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originatorRayName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originatorRayName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originatorRayName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'originatorRayName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originatorRayName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originatorRayName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originatorRayName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originatorRayName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'originatorRayName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'rayName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'rayName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ref'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ref_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ref_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ref_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ref_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ref_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ref_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ref_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ref_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ref_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ruleId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ruleId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ruleId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'rulesetId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rulesetId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'rulesetId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sampleInterval_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'source'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'source_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'source_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'source_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'source_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'source_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'source_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'source_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'source_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'source_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userAgent_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userAgent_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'verifiedBotCategory_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'verifiedBotCategory_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'wafAttackScoreClass_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'wafAttackScoreClass_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafMlAttackScore'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlAttackScore_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlAttackScore_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlAttackScore_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafMlAttackScore_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlAttackScore_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlAttackScore_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlAttackScore_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafMlSqliAttackScore'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlSqliAttackScore_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlSqliAttackScore_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlSqliAttackScore_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafMlSqliAttackScore_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlSqliAttackScore_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlSqliAttackScore_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlSqliAttackScore_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafMlXssAttackScore'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlXssAttackScore_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlXssAttackScore_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlXssAttackScore_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafMlXssAttackScore_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlXssAttackScore_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlXssAttackScore_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafMlXssAttackScore_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'zoneVersion_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }]; }; + 'ZoneFirewallEventsAdaptiveGroupsOrderBy': { name: 'ZoneFirewallEventsAdaptiveGroupsOrderBy'; enumValues: 'action_ASC' | 'action_DESC' | 'apiGatewayMatchedEndpoint_ASC' | 'apiGatewayMatchedEndpoint_DESC' | 'apiGatewayMatchedHost_ASC' | 'apiGatewayMatchedHost_DESC' | 'attackSignatureCategories_ASC' | 'attackSignatureCategories_DESC' | 'attackSignatureRefs_ASC' | 'attackSignatureRefs_DESC' | 'avg_sampleInterval_ASC' | 'avg_sampleInterval_DESC' | 'botDetectionIds_ASC' | 'botDetectionIds_DESC' | 'botDetectionTags_ASC' | 'botDetectionTags_DESC' | 'botScoreSrcName_ASC' | 'botScoreSrcName_DESC' | 'botScore_ASC' | 'botScore_DESC' | 'clientASNDescription_ASC' | 'clientASNDescription_DESC' | 'clientAsn_ASC' | 'clientAsn_DESC' | 'clientCountryName_ASC' | 'clientCountryName_DESC' | 'clientIPClass_ASC' | 'clientIPClass_DESC' | 'clientIP_ASC' | 'clientIP_DESC' | 'clientRefererHost_ASC' | 'clientRefererHost_DESC' | 'clientRefererPath_ASC' | 'clientRefererPath_DESC' | 'clientRefererQuery_ASC' | 'clientRefererQuery_DESC' | 'clientRefererScheme_ASC' | 'clientRefererScheme_DESC' | 'clientRequestHTTPHost_ASC' | 'clientRequestHTTPHost_DESC' | 'clientRequestHTTPMethodName_ASC' | 'clientRequestHTTPMethodName_DESC' | 'clientRequestHTTPProtocol_ASC' | 'clientRequestHTTPProtocol_DESC' | 'clientRequestPath_ASC' | 'clientRequestPath_DESC' | 'clientRequestQuery_ASC' | 'clientRequestQuery_DESC' | 'clientRequestScheme_ASC' | 'clientRequestScheme_DESC' | 'contentScanHasFailed_ASC' | 'contentScanHasFailed_DESC' | 'contentScanNumMaliciousObj_ASC' | 'contentScanNumMaliciousObj_DESC' | 'contentScanNumObj_ASC' | 'contentScanNumObj_DESC' | 'contentScanObjResults_ASC' | 'contentScanObjResults_DESC' | 'contentScanObjSizes_ASC' | 'contentScanObjSizes_DESC' | 'contentScanObjTypes_ASC' | 'contentScanObjTypes_DESC' | 'count_ASC' | 'count_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'description_ASC' | 'description_DESC' | 'edgeColoName_ASC' | 'edgeColoName_DESC' | 'edgeResponseStatus_ASC' | 'edgeResponseStatus_DESC' | 'firewallForAiAnyPiiCategory_ASC' | 'firewallForAiAnyPiiCategory_DESC' | 'firewallForAiInjectionScore_ASC' | 'firewallForAiInjectionScore_DESC' | 'firewallForAiPiiCategories_ASC' | 'firewallForAiPiiCategories_DESC' | 'firewallForAiUnsafeTopicCategories_ASC' | 'firewallForAiUnsafeTopicCategories_DESC' | 'fraudAttack_ASC' | 'fraudAttack_DESC' | 'fraudDetectionIds_ASC' | 'fraudDetectionIds_DESC' | 'fraudDetectionTags_ASC' | 'fraudDetectionTags_DESC' | 'fraudEmailRisk_ASC' | 'fraudEmailRisk_DESC' | 'httpApplicationVersion_ASC' | 'httpApplicationVersion_DESC' | 'ja3Hash_ASC' | 'ja3Hash_DESC' | 'ja4_ASC' | 'ja4_DESC' | 'jsDetectionPassed_ASC' | 'jsDetectionPassed_DESC' | 'kind_ASC' | 'kind_DESC' | 'matchIndex_ASC' | 'matchIndex_DESC' | 'originResponseStatus_ASC' | 'originResponseStatus_DESC' | 'originatorRayName_ASC' | 'originatorRayName_DESC' | 'rayName_ASC' | 'rayName_DESC' | 'ref_ASC' | 'ref_DESC' | 'ruleId_ASC' | 'ruleId_DESC' | 'rulesetId_ASC' | 'rulesetId_DESC' | 'sampleInterval_ASC' | 'sampleInterval_DESC' | 'source_ASC' | 'source_DESC' | 'sum_botDetectionIdArray_ASC' | 'sum_botDetectionIdArray_DESC' | 'sum_botDetectionIdCountArray_ASC' | 'sum_botDetectionIdCountArray_DESC' | 'sum_botDetectionTagArray_ASC' | 'sum_botDetectionTagArray_DESC' | 'sum_botDetectionTagCountArray_ASC' | 'sum_botDetectionTagCountArray_DESC' | 'sum_fraudDetectionIdArray_ASC' | 'sum_fraudDetectionIdArray_DESC' | 'sum_fraudDetectionIdCountArray_ASC' | 'sum_fraudDetectionIdCountArray_DESC' | 'sum_fraudDetectionTagArray_ASC' | 'sum_fraudDetectionTagArray_DESC' | 'sum_fraudDetectionTagCountArray_ASC' | 'sum_fraudDetectionTagCountArray_DESC' | 'userAgent_ASC' | 'userAgent_DESC' | 'verifiedBotCategory_ASC' | 'verifiedBotCategory_DESC' | 'visibility_ASC' | 'visibility_DESC' | 'wafAttackScoreClass_ASC' | 'wafAttackScoreClass_DESC' | 'wafAttackScore_ASC' | 'wafAttackScore_DESC' | 'wafMlAttackScore_ASC' | 'wafMlAttackScore_DESC' | 'wafMlSqliAttackScore_ASC' | 'wafMlSqliAttackScore_DESC' | 'wafMlXssAttackScore_ASC' | 'wafMlXssAttackScore_DESC' | 'wafRceAttackScore_ASC' | 'wafRceAttackScore_DESC' | 'wafSqliAttackScore_ASC' | 'wafSqliAttackScore_DESC' | 'wafXssAttackScore_ASC' | 'wafXssAttackScore_DESC' | 'zoneVersion_ASC' | 'zoneVersion_DESC'; }; + 'ZoneFirewallEventsAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'ZoneFirewallEventsAdaptiveGroupsSum'; fields: { 'botDetectionIdArray': { name: 'botDetectionIdArray'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; } }; 'botDetectionIdCountArray': { name: 'botDetectionIdCountArray'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; } }; 'botDetectionTagArray': { name: 'botDetectionTagArray'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'botDetectionTagCountArray': { name: 'botDetectionTagCountArray'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; } }; 'fraudDetectionIdArray': { name: 'fraudDetectionIdArray'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; } }; 'fraudDetectionIdCountArray': { name: 'fraudDetectionIdCountArray'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; } }; 'fraudDetectionTagArray': { name: 'fraudDetectionTagArray'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'fraudDetectionTagCountArray': { name: 'fraudDetectionTagCountArray'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; } }; }; }; + 'ZoneFirewallEventsAdaptiveJa4SignalsElem': { kind: 'OBJECT'; name: 'ZoneFirewallEventsAdaptiveJa4SignalsElem'; fields: { 'signalName': { name: 'signalName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'signalValue': { name: 'signalValue'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; }; }; + 'ZoneFirewallEventsAdaptiveMetadataElem': { kind: 'OBJECT'; name: 'ZoneFirewallEventsAdaptiveMetadataElem'; fields: { 'key': { name: 'key'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'value': { name: 'value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'ZoneFirewallEventsAdaptiveOrderBy': { name: 'ZoneFirewallEventsAdaptiveOrderBy'; enumValues: 'action_ASC' | 'action_DESC' | 'apiGatewayMatchedEndpoint_ASC' | 'apiGatewayMatchedEndpoint_DESC' | 'apiGatewayMatchedHost_ASC' | 'apiGatewayMatchedHost_DESC' | 'attackSignatureCategories_ASC' | 'attackSignatureCategories_DESC' | 'attackSignatureRefs_ASC' | 'attackSignatureRefs_DESC' | 'botDetectionIds_ASC' | 'botDetectionIds_DESC' | 'botDetectionTags_ASC' | 'botDetectionTags_DESC' | 'botScoreSrcName_ASC' | 'botScoreSrcName_DESC' | 'botScore_ASC' | 'botScore_DESC' | 'clientASNDescription_ASC' | 'clientASNDescription_DESC' | 'clientAsn_ASC' | 'clientAsn_DESC' | 'clientCountryName_ASC' | 'clientCountryName_DESC' | 'clientIPClass_ASC' | 'clientIPClass_DESC' | 'clientIP_ASC' | 'clientIP_DESC' | 'clientRefererHost_ASC' | 'clientRefererHost_DESC' | 'clientRefererPath_ASC' | 'clientRefererPath_DESC' | 'clientRefererQuery_ASC' | 'clientRefererQuery_DESC' | 'clientRefererScheme_ASC' | 'clientRefererScheme_DESC' | 'clientRequestHTTPHost_ASC' | 'clientRequestHTTPHost_DESC' | 'clientRequestHTTPMethodName_ASC' | 'clientRequestHTTPMethodName_DESC' | 'clientRequestHTTPProtocol_ASC' | 'clientRequestHTTPProtocol_DESC' | 'clientRequestPath_ASC' | 'clientRequestPath_DESC' | 'clientRequestQuery_ASC' | 'clientRequestQuery_DESC' | 'clientRequestScheme_ASC' | 'clientRequestScheme_DESC' | 'contentScanHasFailed_ASC' | 'contentScanHasFailed_DESC' | 'contentScanNumMaliciousObj_ASC' | 'contentScanNumMaliciousObj_DESC' | 'contentScanNumObj_ASC' | 'contentScanNumObj_DESC' | 'contentScanObjResults_ASC' | 'contentScanObjResults_DESC' | 'contentScanObjSizes_ASC' | 'contentScanObjSizes_DESC' | 'contentScanObjTypes_ASC' | 'contentScanObjTypes_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'description_ASC' | 'description_DESC' | 'edgeColoName_ASC' | 'edgeColoName_DESC' | 'edgeResponseStatus_ASC' | 'edgeResponseStatus_DESC' | 'firewallForAiAnyPiiCategory_ASC' | 'firewallForAiAnyPiiCategory_DESC' | 'firewallForAiInjectionScore_ASC' | 'firewallForAiInjectionScore_DESC' | 'firewallForAiPiiCategories_ASC' | 'firewallForAiPiiCategories_DESC' | 'firewallForAiUnsafeTopicCategories_ASC' | 'firewallForAiUnsafeTopicCategories_DESC' | 'fraudAttack_ASC' | 'fraudAttack_DESC' | 'fraudDetectionIds_ASC' | 'fraudDetectionIds_DESC' | 'fraudDetectionTags_ASC' | 'fraudDetectionTags_DESC' | 'fraudEmailRisk_ASC' | 'fraudEmailRisk_DESC' | 'httpApplicationVersion_ASC' | 'httpApplicationVersion_DESC' | 'ja3Hash_ASC' | 'ja3Hash_DESC' | 'ja4_ASC' | 'ja4_DESC' | 'jsDetectionPassed_ASC' | 'jsDetectionPassed_DESC' | 'kind_ASC' | 'kind_DESC' | 'leakedCredentialCheckResult_ASC' | 'leakedCredentialCheckResult_DESC' | 'matchIndex_ASC' | 'matchIndex_DESC' | 'originResponseStatus_ASC' | 'originResponseStatus_DESC' | 'originatorRayName_ASC' | 'originatorRayName_DESC' | 'rayName_ASC' | 'rayName_DESC' | 'ref_ASC' | 'ref_DESC' | 'ruleId_ASC' | 'ruleId_DESC' | 'rulesetId_ASC' | 'rulesetId_DESC' | 'sampleInterval_ASC' | 'sampleInterval_DESC' | 'source_ASC' | 'source_DESC' | 'userAgent_ASC' | 'userAgent_DESC' | 'verifiedBotCategory_ASC' | 'verifiedBotCategory_DESC' | 'visibility_ASC' | 'visibility_DESC' | 'wafAttackScoreClass_ASC' | 'wafAttackScoreClass_DESC' | 'wafAttackScore_ASC' | 'wafAttackScore_DESC' | 'wafMlAttackScore_ASC' | 'wafMlAttackScore_DESC' | 'wafMlSqliAttackScore_ASC' | 'wafMlSqliAttackScore_DESC' | 'wafMlXssAttackScore_ASC' | 'wafMlXssAttackScore_DESC' | 'wafRceAttackScore_ASC' | 'wafRceAttackScore_DESC' | 'wafSqliAttackScore_ASC' | 'wafSqliAttackScore_DESC' | 'wafXssAttackScore_ASC' | 'wafXssAttackScore_DESC' | 'zoneVersion_ASC' | 'zoneVersion_DESC'; }; + 'ZoneHealthCheckEventsAdaptive': { kind: 'OBJECT'; name: 'ZoneHealthCheckEventsAdaptive'; fields: { 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'eventId': { name: 'eventId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'expectedResponseCodes': { name: 'expectedResponseCodes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'failureReason': { name: 'failureReason'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'fqdn': { name: 'fqdn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'healthChanged': { name: 'healthChanged'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'healthCheckId': { name: 'healthCheckId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'healthCheckName': { name: 'healthCheckName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'healthStatus': { name: 'healthStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'originIP': { name: 'originIP'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'originResponseStatus': { name: 'originResponseStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'region': { name: 'region'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'rttMs': { name: 'rttMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'scope': { name: 'scope'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'tcpConnMs': { name: 'tcpConnMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'timeToFirstByteMs': { name: 'timeToFirstByteMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'tlsHandshakeMs': { name: 'tlsHandshakeMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; }; }; + 'ZoneHealthCheckEventsAdaptiveFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'ZoneHealthCheckEventsAdaptiveFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneHealthCheckEventsAdaptiveFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneHealthCheckEventsAdaptiveFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'eventId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'eventId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'eventId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'expectedResponseCodes'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'expectedResponseCodes_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'expectedResponseCodes_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'expectedResponseCodes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'expectedResponseCodes_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'expectedResponseCodes_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'expectedResponseCodes_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'expectedResponseCodes_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'expectedResponseCodes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'expectedResponseCodes_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'failureReason'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'failureReason_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'failureReason_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'failureReason_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'failureReason_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'failureReason_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'failureReason_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'failureReason_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'failureReason_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'failureReason_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fqdn'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fqdn_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fqdn_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fqdn_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'fqdn_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fqdn_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fqdn_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fqdn_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fqdn_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'fqdn_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'healthChanged'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'healthChanged_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'healthChanged_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'healthChanged_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'healthChanged_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'healthChanged_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'healthChanged_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'healthChanged_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'healthCheckId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'healthCheckId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'healthCheckId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'healthCheckId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'healthCheckId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'healthCheckId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'healthCheckId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'healthCheckId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'healthCheckId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'healthCheckId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'healthCheckName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'healthCheckName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'healthCheckName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'healthCheckName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'healthCheckName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'healthCheckName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'healthCheckName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'healthCheckName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'healthCheckName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'healthCheckName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'healthStatus'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'healthStatus_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'healthStatus_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'healthStatus_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'healthStatus_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'healthStatus_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'healthStatus_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'healthStatus_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'healthStatus_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'healthStatus_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originIP'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originIP_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originIP_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originIP_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'originIP_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originIP_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originIP_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originIP_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originIP_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'originIP_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originResponseStatus'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'originResponseStatus_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'originResponseStatus_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'originResponseStatus_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'originResponseStatus_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'originResponseStatus_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'originResponseStatus_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'originResponseStatus_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'region'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'region_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'region_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'region_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'region_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'region_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'region_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'region_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'region_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'region_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rttMs'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'rttMs_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'rttMs_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'rttMs_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'rttMs_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'rttMs_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'rttMs_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'rttMs_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'sampleInterval'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sampleInterval_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'scope'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scope_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scope_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scope_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'scope_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scope_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scope_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scope_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scope_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'scope_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpConnMs'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpConnMs_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpConnMs_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpConnMs_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpConnMs_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpConnMs_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpConnMs_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpConnMs_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'timeToFirstByteMs'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'timeToFirstByteMs_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'timeToFirstByteMs_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'timeToFirstByteMs_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'timeToFirstByteMs_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'timeToFirstByteMs_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'timeToFirstByteMs_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'timeToFirstByteMs_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tlsHandshakeMs'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tlsHandshakeMs_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tlsHandshakeMs_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tlsHandshakeMs_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tlsHandshakeMs_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tlsHandshakeMs_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tlsHandshakeMs_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tlsHandshakeMs_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }]; }; + 'ZoneHealthCheckEventsAdaptiveGroups': { kind: 'OBJECT'; name: 'ZoneHealthCheckEventsAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'ZoneHealthCheckEventsAdaptiveGroupsAvg'; ofType: null; } }; 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneHealthCheckEventsAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'ZoneHealthCheckEventsAdaptiveGroupsDimensions'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'ZoneHealthCheckEventsAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'ZoneHealthCheckEventsAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'ZoneHealthCheckEventsAdaptiveGroupsAvg'; fields: { 'rttMs': { name: 'rttMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'tcpConnMs': { name: 'tcpConnMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'timeToFirstByteMs': { name: 'timeToFirstByteMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'tlsHandshakeMs': { name: 'tlsHandshakeMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; }; }; + 'ZoneHealthCheckEventsAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'ZoneHealthCheckEventsAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'ZoneHealthCheckEventsAdaptiveGroupsSumConfidence'; ofType: null; } }; }; }; + 'ZoneHealthCheckEventsAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'ZoneHealthCheckEventsAdaptiveGroupsDimensions'; fields: { 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'failureReason': { name: 'failureReason'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'fqdn': { name: 'fqdn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'healthChanged': { name: 'healthChanged'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'healthCheckId': { name: 'healthCheckId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'healthCheckName': { name: 'healthCheckName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'healthStatus': { name: 'healthStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'originIP': { name: 'originIP'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'originResponseStatus': { name: 'originResponseStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'region': { name: 'region'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'rttMs': { name: 'rttMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'scope': { name: 'scope'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'tcpConnMs': { name: 'tcpConnMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'timeToFirstByteMs': { name: 'timeToFirstByteMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'tlsHandshakeMs': { name: 'tlsHandshakeMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; }; }; + 'ZoneHealthCheckEventsAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'ZoneHealthCheckEventsAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneHealthCheckEventsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneHealthCheckEventsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'failureReason'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'failureReason_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'failureReason_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'failureReason_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'failureReason_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'failureReason_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'failureReason_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'failureReason_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'failureReason_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'failureReason_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fqdn'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fqdn_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fqdn_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fqdn_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'fqdn_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fqdn_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fqdn_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fqdn_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fqdn_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'fqdn_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'healthChanged'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'healthChanged_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'healthChanged_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'healthChanged_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'healthChanged_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'healthChanged_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'healthChanged_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'healthChanged_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'healthCheckId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'healthCheckId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'healthCheckId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'healthCheckId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'healthCheckId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'healthCheckId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'healthCheckId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'healthCheckId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'healthCheckId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'healthCheckId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'healthCheckName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'healthCheckName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'healthCheckName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'healthCheckName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'healthCheckName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'healthCheckName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'healthCheckName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'healthCheckName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'healthCheckName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'healthCheckName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'healthStatus'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'healthStatus_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'healthStatus_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'healthStatus_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'healthStatus_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'healthStatus_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'healthStatus_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'healthStatus_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'healthStatus_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'healthStatus_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originIP'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originIP_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originIP_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originIP_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'originIP_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originIP_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originIP_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originIP_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originIP_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'originIP_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originResponseStatus'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'originResponseStatus_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'originResponseStatus_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'originResponseStatus_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'originResponseStatus_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'originResponseStatus_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'originResponseStatus_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'originResponseStatus_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'region'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'region_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'region_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'region_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'region_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'region_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'region_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'region_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'region_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'region_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rttMs'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'rttMs_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'rttMs_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'rttMs_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'rttMs_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'rttMs_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'rttMs_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'rttMs_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'sampleInterval'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sampleInterval_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'scope'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scope_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scope_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scope_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'scope_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scope_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scope_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scope_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'scope_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'scope_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tcpConnMs'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpConnMs_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpConnMs_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpConnMs_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tcpConnMs_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpConnMs_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpConnMs_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tcpConnMs_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'timeToFirstByteMs'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'timeToFirstByteMs_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'timeToFirstByteMs_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'timeToFirstByteMs_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'timeToFirstByteMs_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'timeToFirstByteMs_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'timeToFirstByteMs_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'timeToFirstByteMs_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tlsHandshakeMs'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tlsHandshakeMs_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tlsHandshakeMs_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tlsHandshakeMs_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'tlsHandshakeMs_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tlsHandshakeMs_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tlsHandshakeMs_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'tlsHandshakeMs_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }]; }; + 'ZoneHealthCheckEventsAdaptiveGroupsOrderBy': { name: 'ZoneHealthCheckEventsAdaptiveGroupsOrderBy'; enumValues: 'avg_rttMs_ASC' | 'avg_rttMs_DESC' | 'avg_sampleInterval_ASC' | 'avg_sampleInterval_DESC' | 'avg_tcpConnMs_ASC' | 'avg_tcpConnMs_DESC' | 'avg_timeToFirstByteMs_ASC' | 'avg_timeToFirstByteMs_DESC' | 'avg_tlsHandshakeMs_ASC' | 'avg_tlsHandshakeMs_DESC' | 'count_ASC' | 'count_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'failureReason_ASC' | 'failureReason_DESC' | 'fqdn_ASC' | 'fqdn_DESC' | 'healthChanged_ASC' | 'healthChanged_DESC' | 'healthCheckId_ASC' | 'healthCheckId_DESC' | 'healthCheckName_ASC' | 'healthCheckName_DESC' | 'healthStatus_ASC' | 'healthStatus_DESC' | 'originIP_ASC' | 'originIP_DESC' | 'originResponseStatus_ASC' | 'originResponseStatus_DESC' | 'region_ASC' | 'region_DESC' | 'rttMs_ASC' | 'rttMs_DESC' | 'sampleInterval_ASC' | 'sampleInterval_DESC' | 'scope_ASC' | 'scope_DESC' | 'sum_healthStatus_ASC' | 'sum_healthStatus_DESC' | 'tcpConnMs_ASC' | 'tcpConnMs_DESC' | 'timeToFirstByteMs_ASC' | 'timeToFirstByteMs_DESC' | 'tlsHandshakeMs_ASC' | 'tlsHandshakeMs_DESC'; }; + 'ZoneHealthCheckEventsAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'ZoneHealthCheckEventsAdaptiveGroupsSum'; fields: { 'healthStatus': { name: 'healthStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'ZoneHealthCheckEventsAdaptiveGroupsSumConfidence': { kind: 'OBJECT'; name: 'ZoneHealthCheckEventsAdaptiveGroupsSumConfidence'; fields: { 'healthStatus': { name: 'healthStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'ZoneHealthCheckEventsAdaptiveOrderBy': { name: 'ZoneHealthCheckEventsAdaptiveOrderBy'; enumValues: 'date_ASC' | 'date_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'eventId_ASC' | 'eventId_DESC' | 'expectedResponseCodes_ASC' | 'expectedResponseCodes_DESC' | 'failureReason_ASC' | 'failureReason_DESC' | 'fqdn_ASC' | 'fqdn_DESC' | 'healthChanged_ASC' | 'healthChanged_DESC' | 'healthCheckId_ASC' | 'healthCheckId_DESC' | 'healthCheckName_ASC' | 'healthCheckName_DESC' | 'healthStatus_ASC' | 'healthStatus_DESC' | 'originIP_ASC' | 'originIP_DESC' | 'originResponseStatus_ASC' | 'originResponseStatus_DESC' | 'region_ASC' | 'region_DESC' | 'rttMs_ASC' | 'rttMs_DESC' | 'sampleInterval_ASC' | 'sampleInterval_DESC' | 'scope_ASC' | 'scope_DESC' | 'tcpConnMs_ASC' | 'tcpConnMs_DESC' | 'timeToFirstByteMs_ASC' | 'timeToFirstByteMs_DESC' | 'tlsHandshakeMs_ASC' | 'tlsHandshakeMs_DESC'; }; + 'ZoneHttpRequests1dByColoGroups': { kind: 'OBJECT'; name: 'ZoneHttpRequests1dByColoGroups'; fields: { 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'ZoneHttpRequests1dByColoGroupsDimensions'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'ZoneHttpRequests1dByColoGroupsSum'; ofType: null; } }; }; }; + 'ZoneHttpRequests1dByColoGroupsCountryMapElem': { kind: 'OBJECT'; name: 'ZoneHttpRequests1dByColoGroupsCountryMapElem'; fields: { 'clientCountryName': { name: 'clientCountryName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'threats': { name: 'threats'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'ZoneHttpRequests1dByColoGroupsDimensions': { kind: 'OBJECT'; name: 'ZoneHttpRequests1dByColoGroupsDimensions'; fields: { 'coloCode': { name: 'coloCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; }; }; + 'ZoneHttpRequests1dByColoGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'ZoneHttpRequests1dByColoGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneHttpRequests1dByColoGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneHttpRequests1dByColoGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCode'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCode_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCode_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }]; }; + 'ZoneHttpRequests1dByColoGroupsOrderBy': { name: 'ZoneHttpRequests1dByColoGroupsOrderBy'; enumValues: 'coloCode_ASC' | 'coloCode_DESC' | 'date_ASC' | 'date_DESC' | 'sum_bytes_ASC' | 'sum_bytes_DESC' | 'sum_cachedBytes_ASC' | 'sum_cachedBytes_DESC' | 'sum_cachedRequests_ASC' | 'sum_cachedRequests_DESC' | 'sum_requests_ASC' | 'sum_requests_DESC'; }; + 'ZoneHttpRequests1dByColoGroupsResponseStatusMapElem': { kind: 'OBJECT'; name: 'ZoneHttpRequests1dByColoGroupsResponseStatusMapElem'; fields: { 'edgeResponseStatus': { name: 'edgeResponseStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'ZoneHttpRequests1dByColoGroupsSum': { kind: 'OBJECT'; name: 'ZoneHttpRequests1dByColoGroupsSum'; fields: { 'bytes': { name: 'bytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'cachedBytes': { name: 'cachedBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'cachedRequests': { name: 'cachedRequests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'countryMap': { name: 'countryMap'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneHttpRequests1dByColoGroupsCountryMapElem'; ofType: null; }; }; }; } }; 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'responseStatusMap': { name: 'responseStatusMap'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneHttpRequests1dByColoGroupsResponseStatusMapElem'; ofType: null; }; }; }; } }; 'threatPathingMap': { name: 'threatPathingMap'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneHttpRequests1dByColoGroupsThreatPathingMapElem'; ofType: null; }; }; }; } }; }; }; + 'ZoneHttpRequests1dByColoGroupsThreatPathingMapElem': { kind: 'OBJECT'; name: 'ZoneHttpRequests1dByColoGroupsThreatPathingMapElem'; fields: { 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'threatPathingName': { name: 'threatPathingName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'ZoneHttpRequests1dGroups': { kind: 'OBJECT'; name: 'ZoneHttpRequests1dGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'ZoneHttpRequests1dGroupsAvg'; ofType: null; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'ZoneHttpRequests1dGroupsDimensions'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'ZoneHttpRequests1dGroupsSum'; ofType: null; } }; 'uniq': { name: 'uniq'; type: { kind: 'OBJECT'; name: 'ZoneHttpRequests1dGroupsUniq'; ofType: null; } }; }; }; + 'ZoneHttpRequests1dGroupsAvg': { kind: 'OBJECT'; name: 'ZoneHttpRequests1dGroupsAvg'; fields: { 'bytes': { name: 'bytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'edgeRequestBytes': { name: 'edgeRequestBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'ZoneHttpRequests1dGroupsBrowserMapElem': { kind: 'OBJECT'; name: 'ZoneHttpRequests1dGroupsBrowserMapElem'; fields: { 'pageViews': { name: 'pageViews'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'uaBrowserFamily': { name: 'uaBrowserFamily'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'ZoneHttpRequests1dGroupsClientHTTPVersionMapElem': { kind: 'OBJECT'; name: 'ZoneHttpRequests1dGroupsClientHTTPVersionMapElem'; fields: { 'clientHTTPProtocol': { name: 'clientHTTPProtocol'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'ZoneHttpRequests1dGroupsClientSSLMapElem': { kind: 'OBJECT'; name: 'ZoneHttpRequests1dGroupsClientSSLMapElem'; fields: { 'clientSSLProtocol': { name: 'clientSSLProtocol'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'ZoneHttpRequests1dGroupsContentTypeMapElem': { kind: 'OBJECT'; name: 'ZoneHttpRequests1dGroupsContentTypeMapElem'; fields: { 'bytes': { name: 'bytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'edgeResponseContentTypeName': { name: 'edgeResponseContentTypeName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'ZoneHttpRequests1dGroupsCountryMapElem': { kind: 'OBJECT'; name: 'ZoneHttpRequests1dGroupsCountryMapElem'; fields: { 'bytes': { name: 'bytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'clientCountryName': { name: 'clientCountryName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'threats': { name: 'threats'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'ZoneHttpRequests1dGroupsDimensions': { kind: 'OBJECT'; name: 'ZoneHttpRequests1dGroupsDimensions'; fields: { 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; }; }; + 'ZoneHttpRequests1dGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'ZoneHttpRequests1dGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneHttpRequests1dGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneHttpRequests1dGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }]; }; + 'ZoneHttpRequests1dGroupsIpClassMapElem': { kind: 'OBJECT'; name: 'ZoneHttpRequests1dGroupsIpClassMapElem'; fields: { 'ipType': { name: 'ipType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'ZoneHttpRequests1dGroupsOrderBy': { name: 'ZoneHttpRequests1dGroupsOrderBy'; enumValues: 'avg_bytes_ASC' | 'avg_bytes_DESC' | 'avg_edgeRequestBytes_ASC' | 'avg_edgeRequestBytes_DESC' | 'avg_sampleInterval_ASC' | 'avg_sampleInterval_DESC' | 'date_ASC' | 'date_DESC' | 'sum_bytes_ASC' | 'sum_bytes_DESC' | 'sum_cachedBytes_ASC' | 'sum_cachedBytes_DESC' | 'sum_cachedRequests_ASC' | 'sum_cachedRequests_DESC' | 'sum_edgeRequestBytes_ASC' | 'sum_edgeRequestBytes_DESC' | 'sum_encryptedBytes_ASC' | 'sum_encryptedBytes_DESC' | 'sum_encryptedRequests_ASC' | 'sum_encryptedRequests_DESC' | 'sum_pageViews_ASC' | 'sum_pageViews_DESC' | 'sum_requests_ASC' | 'sum_requests_DESC' | 'sum_threats_ASC' | 'sum_threats_DESC' | 'uniq_uniques_ASC' | 'uniq_uniques_DESC'; }; + 'ZoneHttpRequests1dGroupsResponseStatusMapElem': { kind: 'OBJECT'; name: 'ZoneHttpRequests1dGroupsResponseStatusMapElem'; fields: { 'edgeResponseStatus': { name: 'edgeResponseStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'ZoneHttpRequests1dGroupsSum': { kind: 'OBJECT'; name: 'ZoneHttpRequests1dGroupsSum'; fields: { 'browserMap': { name: 'browserMap'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneHttpRequests1dGroupsBrowserMapElem'; ofType: null; }; }; }; } }; 'bytes': { name: 'bytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'cachedBytes': { name: 'cachedBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'cachedRequests': { name: 'cachedRequests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'clientHTTPVersionMap': { name: 'clientHTTPVersionMap'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneHttpRequests1dGroupsClientHTTPVersionMapElem'; ofType: null; }; }; }; } }; 'clientSSLMap': { name: 'clientSSLMap'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneHttpRequests1dGroupsClientSSLMapElem'; ofType: null; }; }; }; } }; 'contentTypeMap': { name: 'contentTypeMap'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneHttpRequests1dGroupsContentTypeMapElem'; ofType: null; }; }; }; } }; 'countryMap': { name: 'countryMap'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneHttpRequests1dGroupsCountryMapElem'; ofType: null; }; }; }; } }; 'edgeRequestBytes': { name: 'edgeRequestBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'encryptedBytes': { name: 'encryptedBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'encryptedRequests': { name: 'encryptedRequests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'ipClassMap': { name: 'ipClassMap'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneHttpRequests1dGroupsIpClassMapElem'; ofType: null; }; }; }; } }; 'pageViews': { name: 'pageViews'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'responseStatusMap': { name: 'responseStatusMap'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneHttpRequests1dGroupsResponseStatusMapElem'; ofType: null; }; }; }; } }; 'threatPathingMap': { name: 'threatPathingMap'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneHttpRequests1dGroupsThreatPathingMapElem'; ofType: null; }; }; }; } }; 'threats': { name: 'threats'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'ZoneHttpRequests1dGroupsThreatPathingMapElem': { kind: 'OBJECT'; name: 'ZoneHttpRequests1dGroupsThreatPathingMapElem'; fields: { 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'threatPathingName': { name: 'threatPathingName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'ZoneHttpRequests1dGroupsUniq': { kind: 'OBJECT'; name: 'ZoneHttpRequests1dGroupsUniq'; fields: { 'uniques': { name: 'uniques'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'ZoneHttpRequests1hGroups': { kind: 'OBJECT'; name: 'ZoneHttpRequests1hGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'ZoneHttpRequests1hGroupsAvg'; ofType: null; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'ZoneHttpRequests1hGroupsDimensions'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'ZoneHttpRequests1hGroupsSum'; ofType: null; } }; 'uniq': { name: 'uniq'; type: { kind: 'OBJECT'; name: 'ZoneHttpRequests1hGroupsUniq'; ofType: null; } }; }; }; + 'ZoneHttpRequests1hGroupsAvg': { kind: 'OBJECT'; name: 'ZoneHttpRequests1hGroupsAvg'; fields: { 'bytes': { name: 'bytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'edgeRequestBytes': { name: 'edgeRequestBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'ZoneHttpRequests1hGroupsBrowserMapElem': { kind: 'OBJECT'; name: 'ZoneHttpRequests1hGroupsBrowserMapElem'; fields: { 'pageViews': { name: 'pageViews'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'uaBrowserFamily': { name: 'uaBrowserFamily'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'ZoneHttpRequests1hGroupsClientHTTPVersionMapElem': { kind: 'OBJECT'; name: 'ZoneHttpRequests1hGroupsClientHTTPVersionMapElem'; fields: { 'clientHTTPProtocol': { name: 'clientHTTPProtocol'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'ZoneHttpRequests1hGroupsClientSSLMapElem': { kind: 'OBJECT'; name: 'ZoneHttpRequests1hGroupsClientSSLMapElem'; fields: { 'clientSSLProtocol': { name: 'clientSSLProtocol'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'ZoneHttpRequests1hGroupsContentTypeMapElem': { kind: 'OBJECT'; name: 'ZoneHttpRequests1hGroupsContentTypeMapElem'; fields: { 'bytes': { name: 'bytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'edgeResponseContentTypeName': { name: 'edgeResponseContentTypeName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'ZoneHttpRequests1hGroupsCountryMapElem': { kind: 'OBJECT'; name: 'ZoneHttpRequests1hGroupsCountryMapElem'; fields: { 'bytes': { name: 'bytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'clientCountryName': { name: 'clientCountryName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'threats': { name: 'threats'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'ZoneHttpRequests1hGroupsDimensions': { kind: 'OBJECT'; name: 'ZoneHttpRequests1hGroupsDimensions'; fields: { 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; }; }; + 'ZoneHttpRequests1hGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'ZoneHttpRequests1hGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneHttpRequests1hGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneHttpRequests1hGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }]; }; + 'ZoneHttpRequests1hGroupsIpClassMapElem': { kind: 'OBJECT'; name: 'ZoneHttpRequests1hGroupsIpClassMapElem'; fields: { 'ipType': { name: 'ipType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'ZoneHttpRequests1hGroupsOrderBy': { name: 'ZoneHttpRequests1hGroupsOrderBy'; enumValues: 'avg_bytes_ASC' | 'avg_bytes_DESC' | 'avg_edgeRequestBytes_ASC' | 'avg_edgeRequestBytes_DESC' | 'avg_sampleInterval_ASC' | 'avg_sampleInterval_DESC' | 'date_ASC' | 'date_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'sum_bytes_ASC' | 'sum_bytes_DESC' | 'sum_cachedBytes_ASC' | 'sum_cachedBytes_DESC' | 'sum_cachedRequests_ASC' | 'sum_cachedRequests_DESC' | 'sum_edgeRequestBytes_ASC' | 'sum_edgeRequestBytes_DESC' | 'sum_encryptedBytes_ASC' | 'sum_encryptedBytes_DESC' | 'sum_encryptedRequests_ASC' | 'sum_encryptedRequests_DESC' | 'sum_pageViews_ASC' | 'sum_pageViews_DESC' | 'sum_requests_ASC' | 'sum_requests_DESC' | 'sum_threats_ASC' | 'sum_threats_DESC' | 'uniq_uniques_ASC' | 'uniq_uniques_DESC'; }; + 'ZoneHttpRequests1hGroupsResponseStatusMapElem': { kind: 'OBJECT'; name: 'ZoneHttpRequests1hGroupsResponseStatusMapElem'; fields: { 'edgeResponseStatus': { name: 'edgeResponseStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'ZoneHttpRequests1hGroupsSum': { kind: 'OBJECT'; name: 'ZoneHttpRequests1hGroupsSum'; fields: { 'browserMap': { name: 'browserMap'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneHttpRequests1hGroupsBrowserMapElem'; ofType: null; }; }; }; } }; 'bytes': { name: 'bytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'cachedBytes': { name: 'cachedBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'cachedRequests': { name: 'cachedRequests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'clientHTTPVersionMap': { name: 'clientHTTPVersionMap'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneHttpRequests1hGroupsClientHTTPVersionMapElem'; ofType: null; }; }; }; } }; 'clientSSLMap': { name: 'clientSSLMap'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneHttpRequests1hGroupsClientSSLMapElem'; ofType: null; }; }; }; } }; 'contentTypeMap': { name: 'contentTypeMap'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneHttpRequests1hGroupsContentTypeMapElem'; ofType: null; }; }; }; } }; 'countryMap': { name: 'countryMap'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneHttpRequests1hGroupsCountryMapElem'; ofType: null; }; }; }; } }; 'edgeRequestBytes': { name: 'edgeRequestBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'encryptedBytes': { name: 'encryptedBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'encryptedRequests': { name: 'encryptedRequests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'ipClassMap': { name: 'ipClassMap'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneHttpRequests1hGroupsIpClassMapElem'; ofType: null; }; }; }; } }; 'pageViews': { name: 'pageViews'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'responseStatusMap': { name: 'responseStatusMap'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneHttpRequests1hGroupsResponseStatusMapElem'; ofType: null; }; }; }; } }; 'threatPathingMap': { name: 'threatPathingMap'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneHttpRequests1hGroupsThreatPathingMapElem'; ofType: null; }; }; }; } }; 'threats': { name: 'threats'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'ZoneHttpRequests1hGroupsThreatPathingMapElem': { kind: 'OBJECT'; name: 'ZoneHttpRequests1hGroupsThreatPathingMapElem'; fields: { 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'threatPathingName': { name: 'threatPathingName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'ZoneHttpRequests1hGroupsUniq': { kind: 'OBJECT'; name: 'ZoneHttpRequests1hGroupsUniq'; fields: { 'uniques': { name: 'uniques'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'ZoneHttpRequests1mByColoGroups': { kind: 'OBJECT'; name: 'ZoneHttpRequests1mByColoGroups'; fields: { 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'ZoneHttpRequests1mByColoGroupsDimensions'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'ZoneHttpRequests1mByColoGroupsSum'; ofType: null; } }; }; }; + 'ZoneHttpRequests1mByColoGroupsCountryMapElem': { kind: 'OBJECT'; name: 'ZoneHttpRequests1mByColoGroupsCountryMapElem'; fields: { 'clientCountryName': { name: 'clientCountryName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'threats': { name: 'threats'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'ZoneHttpRequests1mByColoGroupsDimensions': { kind: 'OBJECT'; name: 'ZoneHttpRequests1mByColoGroupsDimensions'; fields: { 'coloCode': { name: 'coloCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHalfOfHour': { name: 'datetimeHalfOfHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; }; }; + 'ZoneHttpRequests1mByColoGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'ZoneHttpRequests1mByColoGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneHttpRequests1mByColoGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneHttpRequests1mByColoGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCode'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCode_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCode_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHalfOfHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHalfOfHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }]; }; + 'ZoneHttpRequests1mByColoGroupsOrderBy': { name: 'ZoneHttpRequests1mByColoGroupsOrderBy'; enumValues: 'coloCode_ASC' | 'coloCode_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeHalfOfHour_ASC' | 'datetimeHalfOfHour_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'sum_bytes_ASC' | 'sum_bytes_DESC' | 'sum_cachedBytes_ASC' | 'sum_cachedBytes_DESC' | 'sum_cachedRequests_ASC' | 'sum_cachedRequests_DESC' | 'sum_requests_ASC' | 'sum_requests_DESC'; }; + 'ZoneHttpRequests1mByColoGroupsResponseStatusMapElem': { kind: 'OBJECT'; name: 'ZoneHttpRequests1mByColoGroupsResponseStatusMapElem'; fields: { 'edgeResponseStatus': { name: 'edgeResponseStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'ZoneHttpRequests1mByColoGroupsSum': { kind: 'OBJECT'; name: 'ZoneHttpRequests1mByColoGroupsSum'; fields: { 'bytes': { name: 'bytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'cachedBytes': { name: 'cachedBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'cachedRequests': { name: 'cachedRequests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'countryMap': { name: 'countryMap'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneHttpRequests1mByColoGroupsCountryMapElem'; ofType: null; }; }; }; } }; 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'responseStatusMap': { name: 'responseStatusMap'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneHttpRequests1mByColoGroupsResponseStatusMapElem'; ofType: null; }; }; }; } }; 'threatPathingMap': { name: 'threatPathingMap'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneHttpRequests1mByColoGroupsThreatPathingMapElem'; ofType: null; }; }; }; } }; }; }; + 'ZoneHttpRequests1mByColoGroupsThreatPathingMapElem': { kind: 'OBJECT'; name: 'ZoneHttpRequests1mByColoGroupsThreatPathingMapElem'; fields: { 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'threatPathingName': { name: 'threatPathingName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'ZoneHttpRequests1mGroups': { kind: 'OBJECT'; name: 'ZoneHttpRequests1mGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'ZoneHttpRequests1mGroupsAvg'; ofType: null; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'ZoneHttpRequests1mGroupsDimensions'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'ZoneHttpRequests1mGroupsSum'; ofType: null; } }; 'uniq': { name: 'uniq'; type: { kind: 'OBJECT'; name: 'ZoneHttpRequests1mGroupsUniq'; ofType: null; } }; }; }; + 'ZoneHttpRequests1mGroupsAvg': { kind: 'OBJECT'; name: 'ZoneHttpRequests1mGroupsAvg'; fields: { 'bytes': { name: 'bytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'edgeRequestBytes': { name: 'edgeRequestBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'ZoneHttpRequests1mGroupsBrowserMapElem': { kind: 'OBJECT'; name: 'ZoneHttpRequests1mGroupsBrowserMapElem'; fields: { 'pageViews': { name: 'pageViews'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'uaBrowserFamily': { name: 'uaBrowserFamily'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'ZoneHttpRequests1mGroupsClientHTTPVersionMapElem': { kind: 'OBJECT'; name: 'ZoneHttpRequests1mGroupsClientHTTPVersionMapElem'; fields: { 'clientHTTPProtocol': { name: 'clientHTTPProtocol'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'ZoneHttpRequests1mGroupsClientSSLMapElem': { kind: 'OBJECT'; name: 'ZoneHttpRequests1mGroupsClientSSLMapElem'; fields: { 'clientSSLProtocol': { name: 'clientSSLProtocol'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'ZoneHttpRequests1mGroupsContentTypeMapElem': { kind: 'OBJECT'; name: 'ZoneHttpRequests1mGroupsContentTypeMapElem'; fields: { 'bytes': { name: 'bytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'edgeResponseContentTypeName': { name: 'edgeResponseContentTypeName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'ZoneHttpRequests1mGroupsCountryMapElem': { kind: 'OBJECT'; name: 'ZoneHttpRequests1mGroupsCountryMapElem'; fields: { 'bytes': { name: 'bytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'clientCountryName': { name: 'clientCountryName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'threats': { name: 'threats'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'ZoneHttpRequests1mGroupsDimensions': { kind: 'OBJECT'; name: 'ZoneHttpRequests1mGroupsDimensions'; fields: { 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeDay': { name: 'datetimeDay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHalfOfHour': { name: 'datetimeHalfOfHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; }; }; + 'ZoneHttpRequests1mGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'ZoneHttpRequests1mGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneHttpRequests1mGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneHttpRequests1mGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeDay'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeDay_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeDay_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeDay_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeDay_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeDay_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeDay_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeDay_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHalfOfHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHalfOfHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }]; }; + 'ZoneHttpRequests1mGroupsIpClassMapElem': { kind: 'OBJECT'; name: 'ZoneHttpRequests1mGroupsIpClassMapElem'; fields: { 'ipType': { name: 'ipType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'ZoneHttpRequests1mGroupsOrderBy': { name: 'ZoneHttpRequests1mGroupsOrderBy'; enumValues: 'avg_bytes_ASC' | 'avg_bytes_DESC' | 'avg_edgeRequestBytes_ASC' | 'avg_edgeRequestBytes_DESC' | 'avg_sampleInterval_ASC' | 'avg_sampleInterval_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeDay_ASC' | 'datetimeDay_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHalfOfHour_ASC' | 'datetimeHalfOfHour_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'sum_bytes_ASC' | 'sum_bytes_DESC' | 'sum_cachedBytes_ASC' | 'sum_cachedBytes_DESC' | 'sum_cachedRequests_ASC' | 'sum_cachedRequests_DESC' | 'sum_edgeRequestBytes_ASC' | 'sum_edgeRequestBytes_DESC' | 'sum_encryptedBytes_ASC' | 'sum_encryptedBytes_DESC' | 'sum_encryptedRequests_ASC' | 'sum_encryptedRequests_DESC' | 'sum_pageViews_ASC' | 'sum_pageViews_DESC' | 'sum_requests_ASC' | 'sum_requests_DESC' | 'sum_threats_ASC' | 'sum_threats_DESC' | 'uniq_uniques_ASC' | 'uniq_uniques_DESC'; }; + 'ZoneHttpRequests1mGroupsResponseStatusMapElem': { kind: 'OBJECT'; name: 'ZoneHttpRequests1mGroupsResponseStatusMapElem'; fields: { 'edgeResponseStatus': { name: 'edgeResponseStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'ZoneHttpRequests1mGroupsSum': { kind: 'OBJECT'; name: 'ZoneHttpRequests1mGroupsSum'; fields: { 'browserMap': { name: 'browserMap'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneHttpRequests1mGroupsBrowserMapElem'; ofType: null; }; }; }; } }; 'bytes': { name: 'bytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'cachedBytes': { name: 'cachedBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'cachedRequests': { name: 'cachedRequests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'clientHTTPVersionMap': { name: 'clientHTTPVersionMap'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneHttpRequests1mGroupsClientHTTPVersionMapElem'; ofType: null; }; }; }; } }; 'clientSSLMap': { name: 'clientSSLMap'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneHttpRequests1mGroupsClientSSLMapElem'; ofType: null; }; }; }; } }; 'contentTypeMap': { name: 'contentTypeMap'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneHttpRequests1mGroupsContentTypeMapElem'; ofType: null; }; }; }; } }; 'countryMap': { name: 'countryMap'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneHttpRequests1mGroupsCountryMapElem'; ofType: null; }; }; }; } }; 'edgeRequestBytes': { name: 'edgeRequestBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'encryptedBytes': { name: 'encryptedBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'encryptedRequests': { name: 'encryptedRequests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'ipClassMap': { name: 'ipClassMap'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneHttpRequests1mGroupsIpClassMapElem'; ofType: null; }; }; }; } }; 'pageViews': { name: 'pageViews'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'responseStatusMap': { name: 'responseStatusMap'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneHttpRequests1mGroupsResponseStatusMapElem'; ofType: null; }; }; }; } }; 'threatPathingMap': { name: 'threatPathingMap'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneHttpRequests1mGroupsThreatPathingMapElem'; ofType: null; }; }; }; } }; 'threats': { name: 'threats'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'ZoneHttpRequests1mGroupsThreatPathingMapElem': { kind: 'OBJECT'; name: 'ZoneHttpRequests1mGroupsThreatPathingMapElem'; fields: { 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'threatPathingName': { name: 'threatPathingName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'ZoneHttpRequests1mGroupsUniq': { kind: 'OBJECT'; name: 'ZoneHttpRequests1mGroupsUniq'; fields: { 'uniques': { name: 'uniques'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'ZoneHttpRequestsAdaptive': { kind: 'OBJECT'; name: 'ZoneHttpRequestsAdaptive'; fields: { 'apiGatewayMatchedEndpoint': { name: 'apiGatewayMatchedEndpoint'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'apiGatewayMatchedHost': { name: 'apiGatewayMatchedHost'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'attackSignatureCategories': { name: 'attackSignatureCategories'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'attackSignatureRefs': { name: 'attackSignatureRefs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'botDetectionIds': { name: 'botDetectionIds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; } }; 'botDetectionTags': { name: 'botDetectionTags'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'botManagementDecision': { name: 'botManagementDecision'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'botScore': { name: 'botScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'botScoreBucketBy10': { name: 'botScoreBucketBy10'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'botScoreSrcName': { name: 'botScoreSrcName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'cacheReserveUsed': { name: 'cacheReserveUsed'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'cacheStatus': { name: 'cacheStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientASNDescription': { name: 'clientASNDescription'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientAsn': { name: 'clientAsn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientCountryName': { name: 'clientCountryName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientDeviceType': { name: 'clientDeviceType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientIP': { name: 'clientIP'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRefererHost': { name: 'clientRefererHost'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRequestHTTPHost': { name: 'clientRequestHTTPHost'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRequestHTTPMethodName': { name: 'clientRequestHTTPMethodName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRequestHTTPProtocol': { name: 'clientRequestHTTPProtocol'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRequestPath': { name: 'clientRequestPath'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRequestQuery': { name: 'clientRequestQuery'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRequestReferer': { name: 'clientRequestReferer'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRequestScheme': { name: 'clientRequestScheme'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientSSLProtocol': { name: 'clientSSLProtocol'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'coloCode': { name: 'coloCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'contentScanHasFailed': { name: 'contentScanHasFailed'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'contentScanNumMaliciousObj': { name: 'contentScanNumMaliciousObj'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'contentScanNumObj': { name: 'contentScanNumObj'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'contentScanObjResults': { name: 'contentScanObjResults'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'contentScanObjSizes': { name: 'contentScanObjSizes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; } }; 'contentScanObjTypes': { name: 'contentScanObjTypes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'edgeDnsResponseTimeMs': { name: 'edgeDnsResponseTimeMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'edgeResponseContentTypeName': { name: 'edgeResponseContentTypeName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'edgeResponseStatus': { name: 'edgeResponseStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'edgeTimeToFirstByteMs': { name: 'edgeTimeToFirstByteMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'firewallForAiAnyPiiCategory': { name: 'firewallForAiAnyPiiCategory'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; } }; 'firewallForAiInjectionScore': { name: 'firewallForAiInjectionScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; } }; 'firewallForAiPiiCategories': { name: 'firewallForAiPiiCategories'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'firewallForAiUnsafeTopicCategories': { name: 'firewallForAiUnsafeTopicCategories'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'fraudAttack': { name: 'fraudAttack'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'fraudDetectionIds': { name: 'fraudDetectionIds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; } }; 'fraudDetectionTags': { name: 'fraudDetectionTags'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'fraudEmailRisk': { name: 'fraudEmailRisk'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'httpApplicationVersion': { name: 'httpApplicationVersion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'isCrossZoneSubrequest': { name: 'isCrossZoneSubrequest'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ja3Hash': { name: 'ja3Hash'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ja4': { name: 'ja4'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ja4Signals': { name: 'ja4Signals'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneHttpRequestsAdaptiveJa4SignalsElem'; ofType: null; }; }; }; } }; 'jsDetectionPassed': { name: 'jsDetectionPassed'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'leakedCredentialCheckResult': { name: 'leakedCredentialCheckResult'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'originASN': { name: 'originASN'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'originASNDescription': { name: 'originASNDescription'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'originIP': { name: 'originIP'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'originResponseDurationMs': { name: 'originResponseDurationMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'originResponseStatus': { name: 'originResponseStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'payPerCrawlStatus': { name: 'payPerCrawlStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'rayName': { name: 'rayName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'requestSource': { name: 'requestSource'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'securityAction': { name: 'securityAction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'securitySource': { name: 'securitySource'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sessionIdHash': { name: 'sessionIdHash'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'upperTierColoName': { name: 'upperTierColoName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'userAgent': { name: 'userAgent'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'userAgentBrowser': { name: 'userAgentBrowser'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'userAgentOS': { name: 'userAgentOS'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'verifiedBotCategory': { name: 'verifiedBotCategory'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'wafAttackScore': { name: 'wafAttackScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'wafAttackScoreClass': { name: 'wafAttackScoreClass'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'wafRceAttackScore': { name: 'wafRceAttackScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'wafSqliAttackScore': { name: 'wafSqliAttackScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'wafXssAttackScore': { name: 'wafXssAttackScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'xRequestedWith': { name: 'xRequestedWith'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'zoneVersion': { name: 'zoneVersion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'ZoneHttpRequestsAdaptiveFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'ZoneHttpRequestsAdaptiveFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneHttpRequestsAdaptiveFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneHttpRequestsAdaptiveFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackSignatureCategories_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackSignatureCategories_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'attackSignatureCategories_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'attackSignatureCategories_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'attackSignatureCategories_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackSignatureRefs_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackSignatureRefs_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'attackSignatureRefs_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'attackSignatureRefs_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'attackSignatureRefs_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botDetectionIds_has'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'botDetectionIds_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'botDetectionIds_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'botDetectionIds_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'botDetectionIds_nothas'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'botDetectionTags_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botDetectionTags_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'botDetectionTags_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'botDetectionTags_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'botDetectionTags_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botManagementDecision'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botManagementDecision_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botManagementDecision_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botManagementDecision_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'botManagementDecision_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botManagementDecision_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botManagementDecision_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botManagementDecision_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botManagementDecision_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'botManagementDecision_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScore'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScoreBucketBy10'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScoreBucketBy10_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScoreBucketBy10_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScoreBucketBy10_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'botScoreBucketBy10_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScoreBucketBy10_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScoreBucketBy10_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScoreBucketBy10_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'botScoreSrcName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'botScoreSrcName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScore_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScore_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScore_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'botScore_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScore_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScore_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScore_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'cacheReserveUsed'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'cacheReserveUsed_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'cacheReserveUsed_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'cacheReserveUsed_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'cacheReserveUsed_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'cacheReserveUsed_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'cacheReserveUsed_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'cacheReserveUsed_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'cacheStatus'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cacheStatus_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cacheStatus_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cacheStatus_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'cacheStatus_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cacheStatus_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cacheStatus_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cacheStatus_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cacheStatus_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'cacheStatus_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientASNDescription_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientASNDescription_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientAsn_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientAsn_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientCountryName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientCountryName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientDeviceType'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientDeviceType_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientDeviceType_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientDeviceType_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientDeviceType_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientDeviceType_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientDeviceType_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientDeviceType_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientDeviceType_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientDeviceType_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientIP_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientIP_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRefererHost_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRefererHost_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestHTTPHost_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestHTTPHost_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestPath_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestPath_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestQuery_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestQuery_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestReferer'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestReferer_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestReferer_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestReferer_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestReferer_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestReferer_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestReferer_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestReferer_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestReferer_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestReferer_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestScheme_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestScheme_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientSSLProtocol'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientSSLProtocol_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientSSLProtocol_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientSSLProtocol_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientSSLProtocol_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientSSLProtocol_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientSSLProtocol_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientSSLProtocol_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientSSLProtocol_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientSSLProtocol_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCode_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCode_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjResults_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjResults_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'contentScanObjResults_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'contentScanObjResults_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjResults_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjSizes_has'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjSizes_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'contentScanObjSizes_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'contentScanObjSizes_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjSizes_nothas'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjTypes_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjTypes_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'contentScanObjTypes_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'contentScanObjTypes_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjTypes_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeDnsResponseTimeMs'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeDnsResponseTimeMs_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeDnsResponseTimeMs_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeDnsResponseTimeMs_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeDnsResponseTimeMs_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeDnsResponseTimeMs_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeDnsResponseTimeMs_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeDnsResponseTimeMs_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeResponseContentTypeName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseContentTypeName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseContentTypeName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseContentTypeName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeResponseContentTypeName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseContentTypeName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseContentTypeName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseContentTypeName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseContentTypeName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeResponseContentTypeName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeResponseStatus_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeTimeToFirstByteMs'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeTimeToFirstByteMs_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeTimeToFirstByteMs_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeTimeToFirstByteMs_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeTimeToFirstByteMs_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeTimeToFirstByteMs_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeTimeToFirstByteMs_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeTimeToFirstByteMs_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory_geq'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory_gt'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory_leq'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory_lt'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory_neq'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiInjectionScore'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiInjectionScore_geq'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiInjectionScore_gt'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiInjectionScore_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiInjectionScore_leq'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiInjectionScore_lt'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiInjectionScore_neq'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiInjectionScore_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiPiiCategories_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiPiiCategories_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiPiiCategories_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiPiiCategories_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiPiiCategories_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiUnsafeTopicCategories_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiUnsafeTopicCategories_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiUnsafeTopicCategories_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiUnsafeTopicCategories_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiUnsafeTopicCategories_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudAttack_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudAttack_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudDetectionIds_has'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'fraudDetectionIds_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudDetectionIds_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudDetectionIds_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'fraudDetectionIds_nothas'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'fraudDetectionTags_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudDetectionTags_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudDetectionTags_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudDetectionTags_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'fraudDetectionTags_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudEmailRisk_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudEmailRisk_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'httpApplicationVersion_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'isCrossZoneSubrequest'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isCrossZoneSubrequest_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isCrossZoneSubrequest_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isCrossZoneSubrequest_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'isCrossZoneSubrequest_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isCrossZoneSubrequest_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isCrossZoneSubrequest_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isCrossZoneSubrequest_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ja3Hash'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja3Hash_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja3Hash_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja3Hash_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ja3Hash_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja3Hash_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja3Hash_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja3Hash_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja3Hash_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ja3Hash_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ja4_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ja4_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'jsDetectionPassed_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'jsDetectionPassed_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leakedCredentialCheckResult'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leakedCredentialCheckResult_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leakedCredentialCheckResult_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leakedCredentialCheckResult_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'leakedCredentialCheckResult_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leakedCredentialCheckResult_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leakedCredentialCheckResult_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leakedCredentialCheckResult_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leakedCredentialCheckResult_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'leakedCredentialCheckResult_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originASN'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'originASNDescription'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originASNDescription_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originASNDescription_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originASNDescription_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'originASNDescription_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originASNDescription_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originASNDescription_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originASNDescription_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originASNDescription_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'originASNDescription_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originASN_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'originASN_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'originASN_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'originASN_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'originASN_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'originASN_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'originASN_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'originIP'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originIP_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originIP_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originIP_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'originIP_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originIP_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originIP_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originIP_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originIP_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'originIP_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originResponseDurationMs'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'originResponseDurationMs_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'originResponseDurationMs_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'originResponseDurationMs_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'originResponseDurationMs_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'originResponseDurationMs_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'originResponseDurationMs_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'originResponseDurationMs_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'originResponseStatus'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'originResponseStatus_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'originResponseStatus_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'originResponseStatus_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'originResponseStatus_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'originResponseStatus_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'originResponseStatus_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'originResponseStatus_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'payPerCrawlStatus'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'payPerCrawlStatus_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'payPerCrawlStatus_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'payPerCrawlStatus_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'payPerCrawlStatus_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'payPerCrawlStatus_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'payPerCrawlStatus_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'payPerCrawlStatus_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'payPerCrawlStatus_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'payPerCrawlStatus_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'rayName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'rayName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestSource'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestSource_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestSource_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestSource_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'requestSource_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestSource_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestSource_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestSource_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestSource_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'requestSource_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'securityAction'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'securityAction_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'securityAction_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'securityAction_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'securityAction_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'securityAction_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'securityAction_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'securityAction_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'securityAction_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'securityAction_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'securitySource'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'securitySource_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'securitySource_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'securitySource_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'securitySource_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'securitySource_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'securitySource_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'securitySource_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'securitySource_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'securitySource_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionIdHash'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionIdHash_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionIdHash_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionIdHash_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionIdHash_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionIdHash_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionIdHash_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionIdHash_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionIdHash_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionIdHash_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upperTierColoName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upperTierColoName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upperTierColoName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upperTierColoName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'upperTierColoName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upperTierColoName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upperTierColoName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upperTierColoName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upperTierColoName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'upperTierColoName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userAgentBrowser_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userAgentBrowser_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentOS'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentOS_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentOS_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentOS_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userAgentOS_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentOS_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentOS_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentOS_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentOS_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userAgentOS_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userAgent_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userAgent_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'verifiedBotCategory_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'verifiedBotCategory_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'wafAttackScoreClass_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'wafAttackScoreClass_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'xRequestedWith'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'xRequestedWith_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'xRequestedWith_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'xRequestedWith_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'xRequestedWith_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'xRequestedWith_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'xRequestedWith_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'xRequestedWith_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'xRequestedWith_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'xRequestedWith_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'zoneVersion_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }]; }; + 'ZoneHttpRequestsAdaptiveGroups': { kind: 'OBJECT'; name: 'ZoneHttpRequestsAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'ZoneHttpRequestsAdaptiveGroupsAvg'; ofType: null; } }; 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneHttpRequestsAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'ZoneHttpRequestsAdaptiveGroupsDimensions'; ofType: null; } }; 'quantiles': { name: 'quantiles'; type: { kind: 'OBJECT'; name: 'ZoneHttpRequestsAdaptiveGroupsQuantiles'; ofType: null; } }; 'ratio': { name: 'ratio'; type: { kind: 'OBJECT'; name: 'ZoneHttpRequestsAdaptiveGroupsRatio'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'ZoneHttpRequestsAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'ZoneHttpRequestsAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'ZoneHttpRequestsAdaptiveGroupsAvg'; fields: { 'crossZoneSubrequests': { name: 'crossZoneSubrequests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'edgeDnsResponseTimeMs': { name: 'edgeDnsResponseTimeMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'edgeTimeToFirstByteMs': { name: 'edgeTimeToFirstByteMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'originResponseDurationMs': { name: 'originResponseDurationMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'ZoneHttpRequestsAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'ZoneHttpRequestsAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'ZoneHttpRequestsAdaptiveGroupsSumConfidence'; ofType: null; } }; }; }; + 'ZoneHttpRequestsAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'ZoneHttpRequestsAdaptiveGroupsDimensions'; fields: { 'apiGatewayMatchedEndpoint': { name: 'apiGatewayMatchedEndpoint'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'apiGatewayMatchedHost': { name: 'apiGatewayMatchedHost'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'attackSignatureCategories': { name: 'attackSignatureCategories'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'attackSignatureRefs': { name: 'attackSignatureRefs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'botDetectionIds': { name: 'botDetectionIds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; } }; 'botDetectionTags': { name: 'botDetectionTags'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'botManagementDecision': { name: 'botManagementDecision'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'botScore': { name: 'botScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'botScoreBucketBy10': { name: 'botScoreBucketBy10'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'botScoreSrcName': { name: 'botScoreSrcName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'cacheReserveUsed': { name: 'cacheReserveUsed'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'cacheStatus': { name: 'cacheStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientASNDescription': { name: 'clientASNDescription'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientAsn': { name: 'clientAsn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientCountryName': { name: 'clientCountryName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientDeviceType': { name: 'clientDeviceType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientIP': { name: 'clientIP'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRefererHost': { name: 'clientRefererHost'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRequestHTTPHost': { name: 'clientRequestHTTPHost'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRequestHTTPMethodName': { name: 'clientRequestHTTPMethodName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRequestHTTPProtocol': { name: 'clientRequestHTTPProtocol'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRequestPath': { name: 'clientRequestPath'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRequestQuery': { name: 'clientRequestQuery'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRequestReferer': { name: 'clientRequestReferer'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRequestScheme': { name: 'clientRequestScheme'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientSSLProtocol': { name: 'clientSSLProtocol'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'coloCode': { name: 'coloCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'contentScanHasFailed': { name: 'contentScanHasFailed'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'contentScanNumMaliciousObj': { name: 'contentScanNumMaliciousObj'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'contentScanNumObj': { name: 'contentScanNumObj'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'contentScanObjResults': { name: 'contentScanObjResults'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'contentScanObjSizes': { name: 'contentScanObjSizes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; } }; 'contentScanObjTypes': { name: 'contentScanObjTypes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'edgeDnsResponseTimeMs': { name: 'edgeDnsResponseTimeMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'edgeResponseContentTypeName': { name: 'edgeResponseContentTypeName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'edgeResponseStatus': { name: 'edgeResponseStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'edgeTimeToFirstByteMs': { name: 'edgeTimeToFirstByteMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'firewallForAiAnyPiiCategory': { name: 'firewallForAiAnyPiiCategory'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; } }; 'firewallForAiInjectionScore': { name: 'firewallForAiInjectionScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; } }; 'firewallForAiPiiCategories': { name: 'firewallForAiPiiCategories'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'firewallForAiUnsafeTopicCategories': { name: 'firewallForAiUnsafeTopicCategories'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'fraudAttack': { name: 'fraudAttack'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'fraudDetectionIds': { name: 'fraudDetectionIds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; } }; 'fraudDetectionTags': { name: 'fraudDetectionTags'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'fraudEmailRisk': { name: 'fraudEmailRisk'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'httpApplicationVersion': { name: 'httpApplicationVersion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'isCrossZoneSubrequest': { name: 'isCrossZoneSubrequest'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ja3Hash': { name: 'ja3Hash'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ja4': { name: 'ja4'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'jsDetectionPassed': { name: 'jsDetectionPassed'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'leakedCredentialCheckResult': { name: 'leakedCredentialCheckResult'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'originASN': { name: 'originASN'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'originASNDescription': { name: 'originASNDescription'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'originIP': { name: 'originIP'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'originResponseDurationMs': { name: 'originResponseDurationMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'originResponseStatus': { name: 'originResponseStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'payPerCrawlStatus': { name: 'payPerCrawlStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'requestSource': { name: 'requestSource'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'securityAction': { name: 'securityAction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'securitySource': { name: 'securitySource'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sessionIdHash': { name: 'sessionIdHash'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'upperTierColoName': { name: 'upperTierColoName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'userAgent': { name: 'userAgent'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'userAgentBrowser': { name: 'userAgentBrowser'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'userAgentOS': { name: 'userAgentOS'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'verifiedBotCategory': { name: 'verifiedBotCategory'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'wafAttackScore': { name: 'wafAttackScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'wafAttackScoreClass': { name: 'wafAttackScoreClass'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'wafRceAttackScore': { name: 'wafRceAttackScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'wafSqliAttackScore': { name: 'wafSqliAttackScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'wafXssAttackScore': { name: 'wafXssAttackScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'xRequestedWith': { name: 'xRequestedWith'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'zoneVersion': { name: 'zoneVersion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'ZoneHttpRequestsAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'ZoneHttpRequestsAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneHttpRequestsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneHttpRequestsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'apiGatewayMatchedEndpoint_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'apiGatewayMatchedHost_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackSignatureCategories_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackSignatureCategories_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'attackSignatureCategories_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'attackSignatureCategories_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'attackSignatureCategories_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackSignatureRefs_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'attackSignatureRefs_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'attackSignatureRefs_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'attackSignatureRefs_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'attackSignatureRefs_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botDetectionIds_has'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'botDetectionIds_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'botDetectionIds_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'botDetectionIds_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'botDetectionIds_nothas'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'botDetectionTags_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botDetectionTags_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'botDetectionTags_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'botDetectionTags_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'botDetectionTags_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botManagementDecision'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botManagementDecision_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botManagementDecision_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botManagementDecision_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'botManagementDecision_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botManagementDecision_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botManagementDecision_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botManagementDecision_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botManagementDecision_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'botManagementDecision_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScore'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScoreBucketBy10'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScoreBucketBy10_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScoreBucketBy10_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScoreBucketBy10_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'botScoreBucketBy10_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScoreBucketBy10_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScoreBucketBy10_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScoreBucketBy10_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'botScoreSrcName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScoreSrcName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'botScoreSrcName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'botScore_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScore_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScore_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'botScore_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScore_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScore_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'botScore_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'cacheReserveUsed'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'cacheReserveUsed_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'cacheReserveUsed_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'cacheReserveUsed_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'cacheReserveUsed_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'cacheReserveUsed_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'cacheReserveUsed_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'cacheReserveUsed_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'cacheStatus'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cacheStatus_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cacheStatus_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cacheStatus_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'cacheStatus_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cacheStatus_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cacheStatus_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cacheStatus_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cacheStatus_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'cacheStatus_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientASNDescription_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientASNDescription_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientASNDescription_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientAsn_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientAsn_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientAsn_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientCountryName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientCountryName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientDeviceType'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientDeviceType_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientDeviceType_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientDeviceType_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientDeviceType_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientDeviceType_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientDeviceType_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientDeviceType_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientDeviceType_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientDeviceType_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientIP_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIP_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientIP_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRefererHost_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRefererHost_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRefererHost_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestHTTPHost_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPHost_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestHTTPHost_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestHTTPMethodName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestPath_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestPath_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestPath_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestQuery_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestQuery_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestQuery_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestReferer'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestReferer_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestReferer_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestReferer_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestReferer_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestReferer_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestReferer_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestReferer_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestReferer_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestReferer_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestScheme_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestScheme_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestScheme_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientSSLProtocol'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientSSLProtocol_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientSSLProtocol_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientSSLProtocol_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientSSLProtocol_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientSSLProtocol_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientSSLProtocol_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientSSLProtocol_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientSSLProtocol_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientSSLProtocol_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCode_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCode_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanHasFailed_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumMaliciousObj_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'contentScanNumObj_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjResults_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjResults_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'contentScanObjResults_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'contentScanObjResults_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjResults_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjSizes_has'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjSizes_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'contentScanObjSizes_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'contentScanObjSizes_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjSizes_nothas'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjTypes_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjTypes_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'contentScanObjTypes_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'contentScanObjTypes_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'contentScanObjTypes_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeDnsResponseTimeMs'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeDnsResponseTimeMs_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeDnsResponseTimeMs_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeDnsResponseTimeMs_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeDnsResponseTimeMs_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeDnsResponseTimeMs_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeDnsResponseTimeMs_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeDnsResponseTimeMs_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeResponseContentTypeName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseContentTypeName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseContentTypeName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseContentTypeName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeResponseContentTypeName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseContentTypeName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseContentTypeName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseContentTypeName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseContentTypeName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeResponseContentTypeName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeResponseStatus_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeTimeToFirstByteMs'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeTimeToFirstByteMs_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeTimeToFirstByteMs_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeTimeToFirstByteMs_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeTimeToFirstByteMs_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeTimeToFirstByteMs_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeTimeToFirstByteMs_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeTimeToFirstByteMs_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory_geq'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory_gt'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory_leq'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory_lt'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory_neq'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiAnyPiiCategory_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiInjectionScore'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiInjectionScore_geq'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiInjectionScore_gt'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiInjectionScore_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiInjectionScore_leq'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiInjectionScore_lt'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiInjectionScore_neq'; type: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiInjectionScore_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int8'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiPiiCategories_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiPiiCategories_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiPiiCategories_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiPiiCategories_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiPiiCategories_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiUnsafeTopicCategories_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiUnsafeTopicCategories_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiUnsafeTopicCategories_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'firewallForAiUnsafeTopicCategories_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'firewallForAiUnsafeTopicCategories_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudAttack_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudAttack_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudAttack_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudDetectionIds_has'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'fraudDetectionIds_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudDetectionIds_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudDetectionIds_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'fraudDetectionIds_nothas'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'fraudDetectionTags_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudDetectionTags_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudDetectionTags_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudDetectionTags_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'fraudDetectionTags_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudEmailRisk_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'fraudEmailRisk_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'fraudEmailRisk_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'httpApplicationVersion_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'isCrossZoneSubrequest'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isCrossZoneSubrequest_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isCrossZoneSubrequest_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isCrossZoneSubrequest_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'isCrossZoneSubrequest_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isCrossZoneSubrequest_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isCrossZoneSubrequest_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'isCrossZoneSubrequest_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'ja3Hash'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja3Hash_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja3Hash_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja3Hash_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ja3Hash_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja3Hash_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja3Hash_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja3Hash_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja3Hash_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ja3Hash_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ja4_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ja4_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ja4_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'jsDetectionPassed_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'jsDetectionPassed_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'jsDetectionPassed_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leakedCredentialCheckResult'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leakedCredentialCheckResult_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leakedCredentialCheckResult_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leakedCredentialCheckResult_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'leakedCredentialCheckResult_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leakedCredentialCheckResult_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leakedCredentialCheckResult_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leakedCredentialCheckResult_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'leakedCredentialCheckResult_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'leakedCredentialCheckResult_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originASN'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'originASNDescription'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originASNDescription_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originASNDescription_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originASNDescription_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'originASNDescription_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originASNDescription_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originASNDescription_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originASNDescription_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originASNDescription_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'originASNDescription_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originASN_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'originASN_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'originASN_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'originASN_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'originASN_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'originASN_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'originASN_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'originIP'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originIP_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originIP_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originIP_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'originIP_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originIP_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originIP_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originIP_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originIP_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'originIP_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'originResponseDurationMs'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'originResponseDurationMs_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'originResponseDurationMs_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'originResponseDurationMs_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'originResponseDurationMs_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'originResponseDurationMs_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'originResponseDurationMs_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'originResponseDurationMs_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'originResponseStatus'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'originResponseStatus_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'originResponseStatus_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'originResponseStatus_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'originResponseStatus_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'originResponseStatus_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'originResponseStatus_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'originResponseStatus_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'payPerCrawlStatus'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'payPerCrawlStatus_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'payPerCrawlStatus_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'payPerCrawlStatus_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'payPerCrawlStatus_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'payPerCrawlStatus_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'payPerCrawlStatus_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'payPerCrawlStatus_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'payPerCrawlStatus_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'payPerCrawlStatus_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'rayName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'rayName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestSource'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestSource_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestSource_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestSource_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'requestSource_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestSource_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestSource_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestSource_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'requestSource_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'requestSource_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sampleInterval_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'securityAction'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'securityAction_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'securityAction_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'securityAction_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'securityAction_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'securityAction_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'securityAction_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'securityAction_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'securityAction_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'securityAction_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'securitySource'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'securitySource_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'securitySource_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'securitySource_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'securitySource_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'securitySource_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'securitySource_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'securitySource_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'securitySource_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'securitySource_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionIdHash'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionIdHash_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionIdHash_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionIdHash_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionIdHash_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionIdHash_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionIdHash_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionIdHash_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionIdHash_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionIdHash_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upperTierColoName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upperTierColoName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upperTierColoName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upperTierColoName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'upperTierColoName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upperTierColoName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upperTierColoName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upperTierColoName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'upperTierColoName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'upperTierColoName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userAgentBrowser_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userAgentBrowser_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentOS'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentOS_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentOS_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentOS_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userAgentOS_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentOS_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentOS_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentOS_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentOS_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userAgentOS_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userAgent_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgent_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userAgent_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'verifiedBotCategory_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'verifiedBotCategory_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'verifiedBotCategory_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'wafAttackScoreClass_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScoreClass_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'wafAttackScoreClass_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafAttackScore_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafRceAttackScore_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafSqliAttackScore_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'wafXssAttackScore_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'xRequestedWith'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'xRequestedWith_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'xRequestedWith_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'xRequestedWith_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'xRequestedWith_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'xRequestedWith_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'xRequestedWith_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'xRequestedWith_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'xRequestedWith_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'xRequestedWith_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'zoneVersion_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }]; }; + 'ZoneHttpRequestsAdaptiveGroupsOrderBy': { name: 'ZoneHttpRequestsAdaptiveGroupsOrderBy'; enumValues: 'apiGatewayMatchedEndpoint_ASC' | 'apiGatewayMatchedEndpoint_DESC' | 'apiGatewayMatchedHost_ASC' | 'apiGatewayMatchedHost_DESC' | 'attackSignatureCategories_ASC' | 'attackSignatureCategories_DESC' | 'attackSignatureRefs_ASC' | 'attackSignatureRefs_DESC' | 'avg_crossZoneSubrequests_ASC' | 'avg_crossZoneSubrequests_DESC' | 'avg_edgeDnsResponseTimeMs_ASC' | 'avg_edgeDnsResponseTimeMs_DESC' | 'avg_edgeTimeToFirstByteMs_ASC' | 'avg_edgeTimeToFirstByteMs_DESC' | 'avg_originResponseDurationMs_ASC' | 'avg_originResponseDurationMs_DESC' | 'avg_sampleInterval_ASC' | 'avg_sampleInterval_DESC' | 'botDetectionIds_ASC' | 'botDetectionIds_DESC' | 'botDetectionTags_ASC' | 'botDetectionTags_DESC' | 'botManagementDecision_ASC' | 'botManagementDecision_DESC' | 'botScoreBucketBy10_ASC' | 'botScoreBucketBy10_DESC' | 'botScoreSrcName_ASC' | 'botScoreSrcName_DESC' | 'botScore_ASC' | 'botScore_DESC' | 'cacheReserveUsed_ASC' | 'cacheReserveUsed_DESC' | 'cacheStatus_ASC' | 'cacheStatus_DESC' | 'clientASNDescription_ASC' | 'clientASNDescription_DESC' | 'clientAsn_ASC' | 'clientAsn_DESC' | 'clientCountryName_ASC' | 'clientCountryName_DESC' | 'clientDeviceType_ASC' | 'clientDeviceType_DESC' | 'clientIP_ASC' | 'clientIP_DESC' | 'clientRefererHost_ASC' | 'clientRefererHost_DESC' | 'clientRequestHTTPHost_ASC' | 'clientRequestHTTPHost_DESC' | 'clientRequestHTTPMethodName_ASC' | 'clientRequestHTTPMethodName_DESC' | 'clientRequestHTTPProtocol_ASC' | 'clientRequestHTTPProtocol_DESC' | 'clientRequestPath_ASC' | 'clientRequestPath_DESC' | 'clientRequestQuery_ASC' | 'clientRequestQuery_DESC' | 'clientRequestReferer_ASC' | 'clientRequestReferer_DESC' | 'clientRequestScheme_ASC' | 'clientRequestScheme_DESC' | 'clientSSLProtocol_ASC' | 'clientSSLProtocol_DESC' | 'coloCode_ASC' | 'coloCode_DESC' | 'contentScanHasFailed_ASC' | 'contentScanHasFailed_DESC' | 'contentScanNumMaliciousObj_ASC' | 'contentScanNumMaliciousObj_DESC' | 'contentScanNumObj_ASC' | 'contentScanNumObj_DESC' | 'contentScanObjResults_ASC' | 'contentScanObjResults_DESC' | 'contentScanObjSizes_ASC' | 'contentScanObjSizes_DESC' | 'contentScanObjTypes_ASC' | 'contentScanObjTypes_DESC' | 'count_ASC' | 'count_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'edgeDnsResponseTimeMs_ASC' | 'edgeDnsResponseTimeMs_DESC' | 'edgeResponseContentTypeName_ASC' | 'edgeResponseContentTypeName_DESC' | 'edgeResponseStatus_ASC' | 'edgeResponseStatus_DESC' | 'edgeTimeToFirstByteMs_ASC' | 'edgeTimeToFirstByteMs_DESC' | 'firewallForAiAnyPiiCategory_ASC' | 'firewallForAiAnyPiiCategory_DESC' | 'firewallForAiInjectionScore_ASC' | 'firewallForAiInjectionScore_DESC' | 'firewallForAiPiiCategories_ASC' | 'firewallForAiPiiCategories_DESC' | 'firewallForAiUnsafeTopicCategories_ASC' | 'firewallForAiUnsafeTopicCategories_DESC' | 'fraudAttack_ASC' | 'fraudAttack_DESC' | 'fraudDetectionIds_ASC' | 'fraudDetectionIds_DESC' | 'fraudDetectionTags_ASC' | 'fraudDetectionTags_DESC' | 'fraudEmailRisk_ASC' | 'fraudEmailRisk_DESC' | 'httpApplicationVersion_ASC' | 'httpApplicationVersion_DESC' | 'isCrossZoneSubrequest_ASC' | 'isCrossZoneSubrequest_DESC' | 'ja3Hash_ASC' | 'ja3Hash_DESC' | 'ja4_ASC' | 'ja4_DESC' | 'jsDetectionPassed_ASC' | 'jsDetectionPassed_DESC' | 'leakedCredentialCheckResult_ASC' | 'leakedCredentialCheckResult_DESC' | 'originASNDescription_ASC' | 'originASNDescription_DESC' | 'originASN_ASC' | 'originASN_DESC' | 'originIP_ASC' | 'originIP_DESC' | 'originResponseDurationMs_ASC' | 'originResponseDurationMs_DESC' | 'originResponseStatus_ASC' | 'originResponseStatus_DESC' | 'payPerCrawlStatus_ASC' | 'payPerCrawlStatus_DESC' | 'quantiles_edgeDnsResponseTimeMsP50_ASC' | 'quantiles_edgeDnsResponseTimeMsP50_DESC' | 'quantiles_edgeDnsResponseTimeMsP95_ASC' | 'quantiles_edgeDnsResponseTimeMsP95_DESC' | 'quantiles_edgeDnsResponseTimeMsP99_ASC' | 'quantiles_edgeDnsResponseTimeMsP99_DESC' | 'quantiles_edgeResponseBytesP50_ASC' | 'quantiles_edgeResponseBytesP50_DESC' | 'quantiles_edgeResponseBytesP95_ASC' | 'quantiles_edgeResponseBytesP95_DESC' | 'quantiles_edgeResponseBytesP99_ASC' | 'quantiles_edgeResponseBytesP99_DESC' | 'quantiles_edgeTimeToFirstByteMsP50_ASC' | 'quantiles_edgeTimeToFirstByteMsP50_DESC' | 'quantiles_edgeTimeToFirstByteMsP95_ASC' | 'quantiles_edgeTimeToFirstByteMsP95_DESC' | 'quantiles_edgeTimeToFirstByteMsP99_ASC' | 'quantiles_edgeTimeToFirstByteMsP99_DESC' | 'quantiles_originResponseDurationMsP50_ASC' | 'quantiles_originResponseDurationMsP50_DESC' | 'quantiles_originResponseDurationMsP95_ASC' | 'quantiles_originResponseDurationMsP95_DESC' | 'quantiles_originResponseDurationMsP99_ASC' | 'quantiles_originResponseDurationMsP99_DESC' | 'ratio_status4xx_ASC' | 'ratio_status4xx_DESC' | 'ratio_status5xx_ASC' | 'ratio_status5xx_DESC' | 'requestSource_ASC' | 'requestSource_DESC' | 'sampleInterval_ASC' | 'sampleInterval_DESC' | 'securityAction_ASC' | 'securityAction_DESC' | 'securitySource_ASC' | 'securitySource_DESC' | 'sessionIdHash_ASC' | 'sessionIdHash_DESC' | 'sum_botDetectionIdArray_ASC' | 'sum_botDetectionIdArray_DESC' | 'sum_botDetectionIdCountArray_ASC' | 'sum_botDetectionIdCountArray_DESC' | 'sum_botDetectionTagArray_ASC' | 'sum_botDetectionTagArray_DESC' | 'sum_botDetectionTagCountArray_ASC' | 'sum_botDetectionTagCountArray_DESC' | 'sum_crossZoneSubrequests_ASC' | 'sum_crossZoneSubrequests_DESC' | 'sum_edgeDnsResponseTimeMs_ASC' | 'sum_edgeDnsResponseTimeMs_DESC' | 'sum_edgeRequestBytes_ASC' | 'sum_edgeRequestBytes_DESC' | 'sum_edgeResponseBytes_ASC' | 'sum_edgeResponseBytes_DESC' | 'sum_edgeTimeToFirstByteMs_ASC' | 'sum_edgeTimeToFirstByteMs_DESC' | 'sum_fraudDetectionIdArray_ASC' | 'sum_fraudDetectionIdArray_DESC' | 'sum_fraudDetectionIdCountArray_ASC' | 'sum_fraudDetectionIdCountArray_DESC' | 'sum_fraudDetectionTagArray_ASC' | 'sum_fraudDetectionTagArray_DESC' | 'sum_fraudDetectionTagCountArray_ASC' | 'sum_fraudDetectionTagCountArray_DESC' | 'sum_originResponseDurationMs_ASC' | 'sum_originResponseDurationMs_DESC' | 'sum_visits_ASC' | 'sum_visits_DESC' | 'upperTierColoName_ASC' | 'upperTierColoName_DESC' | 'userAgentBrowser_ASC' | 'userAgentBrowser_DESC' | 'userAgentOS_ASC' | 'userAgentOS_DESC' | 'userAgent_ASC' | 'userAgent_DESC' | 'verifiedBotCategory_ASC' | 'verifiedBotCategory_DESC' | 'wafAttackScoreClass_ASC' | 'wafAttackScoreClass_DESC' | 'wafAttackScore_ASC' | 'wafAttackScore_DESC' | 'wafRceAttackScore_ASC' | 'wafRceAttackScore_DESC' | 'wafSqliAttackScore_ASC' | 'wafSqliAttackScore_DESC' | 'wafXssAttackScore_ASC' | 'wafXssAttackScore_DESC' | 'xRequestedWith_ASC' | 'xRequestedWith_DESC' | 'zoneVersion_ASC' | 'zoneVersion_DESC'; }; + 'ZoneHttpRequestsAdaptiveGroupsQuantiles': { kind: 'OBJECT'; name: 'ZoneHttpRequestsAdaptiveGroupsQuantiles'; fields: { 'edgeDnsResponseTimeMsP50': { name: 'edgeDnsResponseTimeMsP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'edgeDnsResponseTimeMsP95': { name: 'edgeDnsResponseTimeMsP95'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'edgeDnsResponseTimeMsP99': { name: 'edgeDnsResponseTimeMsP99'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'edgeResponseBytesP50': { name: 'edgeResponseBytesP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'edgeResponseBytesP95': { name: 'edgeResponseBytesP95'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'edgeResponseBytesP99': { name: 'edgeResponseBytesP99'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'edgeTimeToFirstByteMsP50': { name: 'edgeTimeToFirstByteMsP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'edgeTimeToFirstByteMsP95': { name: 'edgeTimeToFirstByteMsP95'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'edgeTimeToFirstByteMsP99': { name: 'edgeTimeToFirstByteMsP99'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'originResponseDurationMsP50': { name: 'originResponseDurationMsP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'originResponseDurationMsP95': { name: 'originResponseDurationMsP95'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'originResponseDurationMsP99': { name: 'originResponseDurationMsP99'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'ZoneHttpRequestsAdaptiveGroupsRatio': { kind: 'OBJECT'; name: 'ZoneHttpRequestsAdaptiveGroupsRatio'; fields: { 'status4xx': { name: 'status4xx'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'status5xx': { name: 'status5xx'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'ZoneHttpRequestsAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'ZoneHttpRequestsAdaptiveGroupsSum'; fields: { 'botDetectionIdArray': { name: 'botDetectionIdArray'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; } }; 'botDetectionIdCountArray': { name: 'botDetectionIdCountArray'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; } }; 'botDetectionTagArray': { name: 'botDetectionTagArray'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'botDetectionTagCountArray': { name: 'botDetectionTagCountArray'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; } }; 'crossZoneSubrequests': { name: 'crossZoneSubrequests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'edgeDnsResponseTimeMs': { name: 'edgeDnsResponseTimeMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'edgeRequestBytes': { name: 'edgeRequestBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'edgeResponseBytes': { name: 'edgeResponseBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'edgeTimeToFirstByteMs': { name: 'edgeTimeToFirstByteMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'fraudDetectionIdArray': { name: 'fraudDetectionIdArray'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; } }; 'fraudDetectionIdCountArray': { name: 'fraudDetectionIdCountArray'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; } }; 'fraudDetectionTagArray': { name: 'fraudDetectionTagArray'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'fraudDetectionTagCountArray': { name: 'fraudDetectionTagCountArray'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; } }; 'originResponseDurationMs': { name: 'originResponseDurationMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'visits': { name: 'visits'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'ZoneHttpRequestsAdaptiveGroupsSumConfidence': { kind: 'OBJECT'; name: 'ZoneHttpRequestsAdaptiveGroupsSumConfidence'; fields: { 'crossZoneSubrequests': { name: 'crossZoneSubrequests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'edgeDnsResponseTimeMs': { name: 'edgeDnsResponseTimeMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'edgeRequestBytes': { name: 'edgeRequestBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'edgeResponseBytes': { name: 'edgeResponseBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'edgeTimeToFirstByteMs': { name: 'edgeTimeToFirstByteMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'originResponseDurationMs': { name: 'originResponseDurationMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'visits': { name: 'visits'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'ZoneHttpRequestsAdaptiveJa4SignalsElem': { kind: 'OBJECT'; name: 'ZoneHttpRequestsAdaptiveJa4SignalsElem'; fields: { 'signalName': { name: 'signalName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'signalValue': { name: 'signalValue'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; }; }; + 'ZoneHttpRequestsAdaptiveOrderBy': { name: 'ZoneHttpRequestsAdaptiveOrderBy'; enumValues: 'apiGatewayMatchedEndpoint_ASC' | 'apiGatewayMatchedEndpoint_DESC' | 'apiGatewayMatchedHost_ASC' | 'apiGatewayMatchedHost_DESC' | 'attackSignatureCategories_ASC' | 'attackSignatureCategories_DESC' | 'attackSignatureRefs_ASC' | 'attackSignatureRefs_DESC' | 'botDetectionIds_ASC' | 'botDetectionIds_DESC' | 'botDetectionTags_ASC' | 'botDetectionTags_DESC' | 'botManagementDecision_ASC' | 'botManagementDecision_DESC' | 'botScoreBucketBy10_ASC' | 'botScoreBucketBy10_DESC' | 'botScoreSrcName_ASC' | 'botScoreSrcName_DESC' | 'botScore_ASC' | 'botScore_DESC' | 'cacheReserveUsed_ASC' | 'cacheReserveUsed_DESC' | 'cacheStatus_ASC' | 'cacheStatus_DESC' | 'clientASNDescription_ASC' | 'clientASNDescription_DESC' | 'clientAsn_ASC' | 'clientAsn_DESC' | 'clientCountryName_ASC' | 'clientCountryName_DESC' | 'clientDeviceType_ASC' | 'clientDeviceType_DESC' | 'clientIP_ASC' | 'clientIP_DESC' | 'clientRefererHost_ASC' | 'clientRefererHost_DESC' | 'clientRequestHTTPHost_ASC' | 'clientRequestHTTPHost_DESC' | 'clientRequestHTTPMethodName_ASC' | 'clientRequestHTTPMethodName_DESC' | 'clientRequestHTTPProtocol_ASC' | 'clientRequestHTTPProtocol_DESC' | 'clientRequestPath_ASC' | 'clientRequestPath_DESC' | 'clientRequestQuery_ASC' | 'clientRequestQuery_DESC' | 'clientRequestReferer_ASC' | 'clientRequestReferer_DESC' | 'clientRequestScheme_ASC' | 'clientRequestScheme_DESC' | 'clientSSLProtocol_ASC' | 'clientSSLProtocol_DESC' | 'coloCode_ASC' | 'coloCode_DESC' | 'contentScanHasFailed_ASC' | 'contentScanHasFailed_DESC' | 'contentScanNumMaliciousObj_ASC' | 'contentScanNumMaliciousObj_DESC' | 'contentScanNumObj_ASC' | 'contentScanNumObj_DESC' | 'contentScanObjResults_ASC' | 'contentScanObjResults_DESC' | 'contentScanObjSizes_ASC' | 'contentScanObjSizes_DESC' | 'contentScanObjTypes_ASC' | 'contentScanObjTypes_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'edgeDnsResponseTimeMs_ASC' | 'edgeDnsResponseTimeMs_DESC' | 'edgeResponseContentTypeName_ASC' | 'edgeResponseContentTypeName_DESC' | 'edgeResponseStatus_ASC' | 'edgeResponseStatus_DESC' | 'edgeTimeToFirstByteMs_ASC' | 'edgeTimeToFirstByteMs_DESC' | 'firewallForAiAnyPiiCategory_ASC' | 'firewallForAiAnyPiiCategory_DESC' | 'firewallForAiInjectionScore_ASC' | 'firewallForAiInjectionScore_DESC' | 'firewallForAiPiiCategories_ASC' | 'firewallForAiPiiCategories_DESC' | 'firewallForAiUnsafeTopicCategories_ASC' | 'firewallForAiUnsafeTopicCategories_DESC' | 'fraudAttack_ASC' | 'fraudAttack_DESC' | 'fraudDetectionIds_ASC' | 'fraudDetectionIds_DESC' | 'fraudDetectionTags_ASC' | 'fraudDetectionTags_DESC' | 'fraudEmailRisk_ASC' | 'fraudEmailRisk_DESC' | 'httpApplicationVersion_ASC' | 'httpApplicationVersion_DESC' | 'isCrossZoneSubrequest_ASC' | 'isCrossZoneSubrequest_DESC' | 'ja3Hash_ASC' | 'ja3Hash_DESC' | 'ja4_ASC' | 'ja4_DESC' | 'jsDetectionPassed_ASC' | 'jsDetectionPassed_DESC' | 'leakedCredentialCheckResult_ASC' | 'leakedCredentialCheckResult_DESC' | 'originASNDescription_ASC' | 'originASNDescription_DESC' | 'originASN_ASC' | 'originASN_DESC' | 'originIP_ASC' | 'originIP_DESC' | 'originResponseDurationMs_ASC' | 'originResponseDurationMs_DESC' | 'originResponseStatus_ASC' | 'originResponseStatus_DESC' | 'payPerCrawlStatus_ASC' | 'payPerCrawlStatus_DESC' | 'rayName_ASC' | 'rayName_DESC' | 'requestSource_ASC' | 'requestSource_DESC' | 'securityAction_ASC' | 'securityAction_DESC' | 'securitySource_ASC' | 'securitySource_DESC' | 'sessionIdHash_ASC' | 'sessionIdHash_DESC' | 'upperTierColoName_ASC' | 'upperTierColoName_DESC' | 'userAgentBrowser_ASC' | 'userAgentBrowser_DESC' | 'userAgentOS_ASC' | 'userAgentOS_DESC' | 'userAgent_ASC' | 'userAgent_DESC' | 'verifiedBotCategory_ASC' | 'verifiedBotCategory_DESC' | 'wafAttackScoreClass_ASC' | 'wafAttackScoreClass_DESC' | 'wafAttackScore_ASC' | 'wafAttackScore_DESC' | 'wafRceAttackScore_ASC' | 'wafRceAttackScore_DESC' | 'wafSqliAttackScore_ASC' | 'wafSqliAttackScore_DESC' | 'wafXssAttackScore_ASC' | 'wafXssAttackScore_DESC' | 'xRequestedWith_ASC' | 'xRequestedWith_DESC' | 'zoneVersion_ASC' | 'zoneVersion_DESC'; }; + 'ZoneHttpRequestsOverviewAdaptiveGroups': { kind: 'OBJECT'; name: 'ZoneHttpRequestsOverviewAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'ZoneHttpRequestsOverviewAdaptiveGroupsAvg'; ofType: null; } }; 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneHttpRequestsOverviewAdaptiveGroupsConfidence'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'ZoneHttpRequestsOverviewAdaptiveGroupsDimensions'; ofType: null; } }; 'ratio': { name: 'ratio'; type: { kind: 'OBJECT'; name: 'ZoneHttpRequestsOverviewAdaptiveGroupsRatio'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'ZoneHttpRequestsOverviewAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'ZoneHttpRequestsOverviewAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'ZoneHttpRequestsOverviewAdaptiveGroupsAvg'; fields: { 'originResponseDurationMs': { name: 'originResponseDurationMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'ZoneHttpRequestsOverviewAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'ZoneHttpRequestsOverviewAdaptiveGroupsConfidence'; fields: { 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'ZoneHttpRequestsOverviewAdaptiveGroupsSumConfidence'; ofType: null; } }; }; }; + 'ZoneHttpRequestsOverviewAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'ZoneHttpRequestsOverviewAdaptiveGroupsDimensions'; fields: { 'clientCountryName': { name: 'clientCountryName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientRequestHTTPProtocol': { name: 'clientRequestHTTPProtocol'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientSSLProtocol': { name: 'clientSSLProtocol'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'edgeResponseContentTypeName': { name: 'edgeResponseContentTypeName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'edgeResponseStatus': { name: 'edgeResponseStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'httpApplicationVersion': { name: 'httpApplicationVersion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'userAgentBrowser': { name: 'userAgentBrowser'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'zoneVersion': { name: 'zoneVersion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'ZoneHttpRequestsOverviewAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'ZoneHttpRequestsOverviewAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneHttpRequestsOverviewAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneHttpRequestsOverviewAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientCountryName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientCountryName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountryName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientCountryName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientRequestHTTPProtocol_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientSSLProtocol'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientSSLProtocol_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientSSLProtocol_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientSSLProtocol_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientSSLProtocol_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientSSLProtocol_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientSSLProtocol_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientSSLProtocol_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientSSLProtocol_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientSSLProtocol_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeResponseContentTypeName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseContentTypeName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseContentTypeName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseContentTypeName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeResponseContentTypeName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseContentTypeName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseContentTypeName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseContentTypeName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseContentTypeName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeResponseContentTypeName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'edgeResponseStatus_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'edgeResponseStatus_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'httpApplicationVersion'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'httpApplicationVersion_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpApplicationVersion_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'rayName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'rayName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'rayName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'rayName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userAgentBrowser_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userAgentBrowser_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userAgentBrowser_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'zoneVersion_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'zoneVersion_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }]; }; + 'ZoneHttpRequestsOverviewAdaptiveGroupsOrderBy': { name: 'ZoneHttpRequestsOverviewAdaptiveGroupsOrderBy'; enumValues: 'avg_originResponseDurationMs_ASC' | 'avg_originResponseDurationMs_DESC' | 'avg_sampleInterval_ASC' | 'avg_sampleInterval_DESC' | 'clientCountryName_ASC' | 'clientCountryName_DESC' | 'clientRequestHTTPProtocol_ASC' | 'clientRequestHTTPProtocol_DESC' | 'clientSSLProtocol_ASC' | 'clientSSLProtocol_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'edgeResponseContentTypeName_ASC' | 'edgeResponseContentTypeName_DESC' | 'edgeResponseStatus_ASC' | 'edgeResponseStatus_DESC' | 'httpApplicationVersion_ASC' | 'httpApplicationVersion_DESC' | 'ratio_cachedBytes_ASC' | 'ratio_cachedBytes_DESC' | 'ratio_cachedRequests_ASC' | 'ratio_cachedRequests_DESC' | 'ratio_encryptedBytes_ASC' | 'ratio_encryptedBytes_DESC' | 'ratio_encryptedRequests_ASC' | 'ratio_encryptedRequests_DESC' | 'ratio_status4xx_ASC' | 'ratio_status4xx_DESC' | 'ratio_status5xx_ASC' | 'ratio_status5xx_DESC' | 'requestSource_ASC' | 'requestSource_DESC' | 'sum_bytes_ASC' | 'sum_bytes_DESC' | 'sum_cachedBytes_ASC' | 'sum_cachedBytes_DESC' | 'sum_cachedRequests_ASC' | 'sum_cachedRequests_DESC' | 'sum_pageViews_ASC' | 'sum_pageViews_DESC' | 'sum_requests_ASC' | 'sum_requests_DESC' | 'sum_visits_ASC' | 'sum_visits_DESC' | 'userAgentBrowser_ASC' | 'userAgentBrowser_DESC' | 'zoneVersion_ASC' | 'zoneVersion_DESC'; }; + 'ZoneHttpRequestsOverviewAdaptiveGroupsRatio': { kind: 'OBJECT'; name: 'ZoneHttpRequestsOverviewAdaptiveGroupsRatio'; fields: { 'cachedBytes': { name: 'cachedBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'cachedRequests': { name: 'cachedRequests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'encryptedBytes': { name: 'encryptedBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'encryptedRequests': { name: 'encryptedRequests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'status4xx': { name: 'status4xx'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'status5xx': { name: 'status5xx'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'ZoneHttpRequestsOverviewAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'ZoneHttpRequestsOverviewAdaptiveGroupsSum'; fields: { 'bytes': { name: 'bytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'cachedBytes': { name: 'cachedBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'cachedRequests': { name: 'cachedRequests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'pageViews': { name: 'pageViews'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'visits': { name: 'visits'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'ZoneHttpRequestsOverviewAdaptiveGroupsSumConfidence': { kind: 'OBJECT'; name: 'ZoneHttpRequestsOverviewAdaptiveGroupsSumConfidence'; fields: { 'bytes': { name: 'bytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'cachedBytes': { name: 'cachedBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'cachedRequests': { name: 'cachedRequests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'pageViews': { name: 'pageViews'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'visits': { name: 'visits'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'ZoneImageResizingRequests1mGroups': { kind: 'OBJECT'; name: 'ZoneImageResizingRequests1mGroups'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'ZoneImageResizingRequests1mGroupsDimensions'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'ZoneImageResizingRequests1mGroupsSum'; ofType: null; } }; }; }; + 'ZoneImageResizingRequests1mGroupsDimensions': { kind: 'OBJECT'; name: 'ZoneImageResizingRequests1mGroupsDimensions'; fields: { 'contentType': { name: 'contentType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'resizeError': { name: 'resizeError'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'ZoneImageResizingRequests1mGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'ZoneImageResizingRequests1mGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneImageResizingRequests1mGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneImageResizingRequests1mGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'contentType'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'contentType_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'contentType_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'contentType_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'contentType_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'contentType_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'contentType_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'contentType_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'contentType_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'contentType_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'resizeError'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resizeError_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resizeError_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resizeError_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'resizeError_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resizeError_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resizeError_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resizeError_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resizeError_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'resizeError_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'ZoneImageResizingRequests1mGroupsOrderBy': { name: 'ZoneImageResizingRequests1mGroupsOrderBy'; enumValues: 'contentType_ASC' | 'contentType_DESC' | 'count_ASC' | 'count_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'resizeError_ASC' | 'resizeError_DESC' | 'sum_originalBytes_ASC' | 'sum_originalBytes_DESC' | 'sum_originalPixels_ASC' | 'sum_originalPixels_DESC' | 'sum_requests_ASC' | 'sum_requests_DESC' | 'sum_resizedBytes_ASC' | 'sum_resizedBytes_DESC' | 'sum_resizedPixels_ASC' | 'sum_resizedPixels_DESC'; }; + 'ZoneImageResizingRequests1mGroupsSum': { kind: 'OBJECT'; name: 'ZoneImageResizingRequests1mGroupsSum'; fields: { 'originalBytes': { name: 'originalBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'originalPixels': { name: 'originalPixels'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'resizedBytes': { name: 'resizedBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'resizedPixels': { name: 'resizedPixels'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'ZoneLoadBalancingRequestsAdaptive': { kind: 'OBJECT'; name: 'ZoneLoadBalancingRequestsAdaptive'; fields: { 'coloCode': { name: 'coloCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'errorType': { name: 'errorType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'lbName': { name: 'lbName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'numberOriginsSelected': { name: 'numberOriginsSelected'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'origins': { name: 'origins'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneLoadBalancingRequestsAdaptiveOriginsElem'; ofType: null; }; }; }; } }; 'pools': { name: 'pools'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneLoadBalancingRequestsAdaptivePoolsElem'; ofType: null; }; }; }; } }; 'proxied': { name: 'proxied'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'region': { name: 'region'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'selectedOriginIndex': { name: 'selectedOriginIndex'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'selectedPoolAvgRttMs': { name: 'selectedPoolAvgRttMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'selectedPoolHealthChecksEnabled': { name: 'selectedPoolHealthChecksEnabled'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'selectedPoolHealthy': { name: 'selectedPoolHealthy'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'selectedPoolId': { name: 'selectedPoolId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'selectedPoolIndex': { name: 'selectedPoolIndex'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'selectedPoolName': { name: 'selectedPoolName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sessionAffinity': { name: 'sessionAffinity'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sessionAffinityStatus': { name: 'sessionAffinityStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'steeringPolicy': { name: 'steeringPolicy'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'ZoneLoadBalancingRequestsAdaptiveFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'ZoneLoadBalancingRequestsAdaptiveFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneLoadBalancingRequestsAdaptiveFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneLoadBalancingRequestsAdaptiveFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCode'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCode_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCode_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'errorType'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'errorType_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'errorType_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'errorType_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'errorType_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'errorType_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'errorType_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'errorType_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'errorType_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'errorType_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'lbName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'lbName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'lbName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'lbName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'lbName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'lbName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'lbName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'lbName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'lbName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'lbName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'numberOriginsSelected'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'numberOriginsSelected_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'numberOriginsSelected_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'numberOriginsSelected_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'numberOriginsSelected_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'numberOriginsSelected_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'numberOriginsSelected_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'numberOriginsSelected_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'proxied'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'proxied_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'proxied_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'proxied_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'proxied_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'proxied_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'proxied_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'proxied_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'region'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'region_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'region_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'region_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'region_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'region_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'region_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'region_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'region_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'region_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sampleInterval_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'selectedOriginIndex'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'selectedOriginIndex_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'selectedOriginIndex_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'selectedOriginIndex_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'selectedOriginIndex_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'selectedOriginIndex_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'selectedOriginIndex_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'selectedOriginIndex_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'selectedPoolAvgRttMs'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolAvgRttMs_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolAvgRttMs_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolAvgRttMs_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'selectedPoolAvgRttMs_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolAvgRttMs_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolAvgRttMs_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolAvgRttMs_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'selectedPoolHealthChecksEnabled'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolHealthChecksEnabled_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolHealthChecksEnabled_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolHealthChecksEnabled_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolHealthChecksEnabled_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolHealthChecksEnabled_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolHealthChecksEnabled_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolHealthChecksEnabled_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolHealthy'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolHealthy_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolHealthy_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolHealthy_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolHealthy_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolHealthy_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolHealthy_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolHealthy_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'selectedPoolId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'selectedPoolId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolIndex'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolIndex_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolIndex_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolIndex_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'selectedPoolIndex_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolIndex_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolIndex_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolIndex_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'selectedPoolName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'selectedPoolName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'selectedPoolName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionAffinity'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionAffinityStatus'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionAffinityStatus_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionAffinityStatus_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionAffinityStatus_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionAffinityStatus_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionAffinityStatus_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionAffinityStatus_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionAffinityStatus_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionAffinityStatus_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionAffinityStatus_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionAffinity_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionAffinity_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionAffinity_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionAffinity_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionAffinity_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionAffinity_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionAffinity_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionAffinity_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionAffinity_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'steeringPolicy'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'steeringPolicy_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'steeringPolicy_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'steeringPolicy_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'steeringPolicy_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'steeringPolicy_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'steeringPolicy_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'steeringPolicy_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'steeringPolicy_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'steeringPolicy_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'ZoneLoadBalancingRequestsAdaptiveGroups': { kind: 'OBJECT'; name: 'ZoneLoadBalancingRequestsAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'ZoneLoadBalancingRequestsAdaptiveGroupsAvg'; ofType: null; } }; 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneLoadBalancingRequestsAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'ZoneLoadBalancingRequestsAdaptiveGroupsDimensions'; ofType: null; } }; }; }; + 'ZoneLoadBalancingRequestsAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'ZoneLoadBalancingRequestsAdaptiveGroupsAvg'; fields: { 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'ZoneLoadBalancingRequestsAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'ZoneLoadBalancingRequestsAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'ZoneLoadBalancingRequestsAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'ZoneLoadBalancingRequestsAdaptiveGroupsDimensions'; fields: { 'coloCode': { name: 'coloCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHalfOfHour': { name: 'datetimeHalfOfHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'errorType': { name: 'errorType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'lbName': { name: 'lbName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'multipleOriginsSelected': { name: 'multipleOriginsSelected'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'numberOriginsSelected': { name: 'numberOriginsSelected'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'proxied': { name: 'proxied'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'region': { name: 'region'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'selectedOriginIndex': { name: 'selectedOriginIndex'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'selectedOriginName': { name: 'selectedOriginName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'selectedOriginNames': { name: 'selectedOriginNames'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'selectedPoolAvgRttMs': { name: 'selectedPoolAvgRttMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'selectedPoolHealthChecksEnabled': { name: 'selectedPoolHealthChecksEnabled'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'selectedPoolHealthy': { name: 'selectedPoolHealthy'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'selectedPoolId': { name: 'selectedPoolId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'selectedPoolIndex': { name: 'selectedPoolIndex'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'selectedPoolName': { name: 'selectedPoolName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sessionAffinityEnabled': { name: 'sessionAffinityEnabled'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sessionAffinityStatus': { name: 'sessionAffinityStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'steeringPolicy': { name: 'steeringPolicy'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'ZoneLoadBalancingRequestsAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'ZoneLoadBalancingRequestsAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneLoadBalancingRequestsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneLoadBalancingRequestsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCode'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCode_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'coloCode_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'coloCode_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHalfOfHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHalfOfHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'errorType'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'errorType_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'errorType_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'errorType_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'errorType_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'errorType_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'errorType_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'errorType_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'errorType_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'errorType_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'lbName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'lbName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'lbName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'lbName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'lbName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'lbName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'lbName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'lbName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'lbName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'lbName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'multipleOriginsSelected'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'multipleOriginsSelected_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'multipleOriginsSelected_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'multipleOriginsSelected_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'multipleOriginsSelected_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'multipleOriginsSelected_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'multipleOriginsSelected_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'multipleOriginsSelected_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'numberOriginsSelected'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'numberOriginsSelected_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'numberOriginsSelected_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'numberOriginsSelected_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'numberOriginsSelected_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'numberOriginsSelected_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'numberOriginsSelected_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'numberOriginsSelected_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'proxied'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'proxied_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'proxied_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'proxied_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'proxied_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'proxied_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'proxied_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'proxied_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'region'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'region_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'region_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'region_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'region_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'region_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'region_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'region_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'region_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'region_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sampleInterval_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'selectedOriginIndex'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'selectedOriginIndex_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'selectedOriginIndex_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'selectedOriginIndex_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'selectedOriginIndex_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'selectedOriginIndex_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'selectedOriginIndex_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'selectedOriginIndex_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'selectedOriginName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'selectedOriginName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'selectedOriginName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'selectedOriginName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'selectedOriginName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'selectedOriginName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'selectedOriginName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'selectedOriginName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'selectedOriginName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'selectedOriginName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'selectedOriginNames'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'selectedOriginNames_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'selectedOriginNames_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'selectedOriginNames_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'selectedOriginNames_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'selectedOriginNames_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'selectedOriginNames_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'selectedOriginNames_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'selectedOriginNames_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'selectedOriginNames_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolAvgRttMs'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolAvgRttMs_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolAvgRttMs_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolAvgRttMs_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'selectedPoolAvgRttMs_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolAvgRttMs_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolAvgRttMs_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolAvgRttMs_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'selectedPoolHealthChecksEnabled'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolHealthChecksEnabled_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolHealthChecksEnabled_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolHealthChecksEnabled_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolHealthChecksEnabled_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolHealthChecksEnabled_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolHealthChecksEnabled_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolHealthChecksEnabled_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolHealthy'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolHealthy_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolHealthy_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolHealthy_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolHealthy_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolHealthy_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolHealthy_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolHealthy_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'selectedPoolId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'selectedPoolId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolIndex'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolIndex_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolIndex_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolIndex_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'selectedPoolIndex_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolIndex_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolIndex_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolIndex_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'selectedPoolName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'selectedPoolName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'selectedPoolName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'selectedPoolName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionAffinityEnabled'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionAffinityEnabled_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionAffinityEnabled_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionAffinityEnabled_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionAffinityEnabled_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionAffinityEnabled_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionAffinityEnabled_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionAffinityEnabled_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionAffinityEnabled_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionAffinityEnabled_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionAffinityStatus'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionAffinityStatus_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionAffinityStatus_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionAffinityStatus_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionAffinityStatus_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionAffinityStatus_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionAffinityStatus_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionAffinityStatus_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionAffinityStatus_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionAffinityStatus_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'steeringPolicy'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'steeringPolicy_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'steeringPolicy_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'steeringPolicy_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'steeringPolicy_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'steeringPolicy_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'steeringPolicy_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'steeringPolicy_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'steeringPolicy_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'steeringPolicy_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'ZoneLoadBalancingRequestsAdaptiveGroupsOrderBy': { name: 'ZoneLoadBalancingRequestsAdaptiveGroupsOrderBy'; enumValues: 'avg_sampleInterval_ASC' | 'avg_sampleInterval_DESC' | 'coloCode_ASC' | 'coloCode_DESC' | 'count_ASC' | 'count_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHalfOfHour_ASC' | 'datetimeHalfOfHour_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'errorType_ASC' | 'errorType_DESC' | 'lbName_ASC' | 'lbName_DESC' | 'multipleOriginsSelected_ASC' | 'multipleOriginsSelected_DESC' | 'numberOriginsSelected_ASC' | 'numberOriginsSelected_DESC' | 'proxied_ASC' | 'proxied_DESC' | 'region_ASC' | 'region_DESC' | 'sampleInterval_ASC' | 'sampleInterval_DESC' | 'selectedOriginIndex_ASC' | 'selectedOriginIndex_DESC' | 'selectedOriginName_ASC' | 'selectedOriginName_DESC' | 'selectedOriginNames_ASC' | 'selectedOriginNames_DESC' | 'selectedPoolAvgRttMs_ASC' | 'selectedPoolAvgRttMs_DESC' | 'selectedPoolHealthChecksEnabled_ASC' | 'selectedPoolHealthChecksEnabled_DESC' | 'selectedPoolHealthy_ASC' | 'selectedPoolHealthy_DESC' | 'selectedPoolId_ASC' | 'selectedPoolId_DESC' | 'selectedPoolIndex_ASC' | 'selectedPoolIndex_DESC' | 'selectedPoolName_ASC' | 'selectedPoolName_DESC' | 'sessionAffinityEnabled_ASC' | 'sessionAffinityEnabled_DESC' | 'sessionAffinityStatus_ASC' | 'sessionAffinityStatus_DESC' | 'steeringPolicy_ASC' | 'steeringPolicy_DESC'; }; + 'ZoneLoadBalancingRequestsAdaptiveOrderBy': { name: 'ZoneLoadBalancingRequestsAdaptiveOrderBy'; enumValues: 'coloCode_ASC' | 'coloCode_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'errorType_ASC' | 'errorType_DESC' | 'lbName_ASC' | 'lbName_DESC' | 'numberOriginsSelected_ASC' | 'numberOriginsSelected_DESC' | 'proxied_ASC' | 'proxied_DESC' | 'region_ASC' | 'region_DESC' | 'sampleInterval_ASC' | 'sampleInterval_DESC' | 'selectedOriginIndex_ASC' | 'selectedOriginIndex_DESC' | 'selectedPoolAvgRttMs_ASC' | 'selectedPoolAvgRttMs_DESC' | 'selectedPoolHealthChecksEnabled_ASC' | 'selectedPoolHealthChecksEnabled_DESC' | 'selectedPoolHealthy_ASC' | 'selectedPoolHealthy_DESC' | 'selectedPoolId_ASC' | 'selectedPoolId_DESC' | 'selectedPoolIndex_ASC' | 'selectedPoolIndex_DESC' | 'selectedPoolName_ASC' | 'selectedPoolName_DESC' | 'sessionAffinityStatus_ASC' | 'sessionAffinityStatus_DESC' | 'sessionAffinity_ASC' | 'sessionAffinity_DESC' | 'steeringPolicy_ASC' | 'steeringPolicy_DESC'; }; + 'ZoneLoadBalancingRequestsAdaptiveOriginsElem': { kind: 'OBJECT'; name: 'ZoneLoadBalancingRequestsAdaptiveOriginsElem'; fields: { 'fqdn': { name: 'fqdn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'health': { name: 'health'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'ipv4': { name: 'ipv4'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ipv6': { name: 'ipv6'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'originName': { name: 'originName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'selected': { name: 'selected'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'weight': { name: 'weight'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'ZoneLoadBalancingRequestsAdaptivePoolsElem': { kind: 'OBJECT'; name: 'ZoneLoadBalancingRequestsAdaptivePoolsElem'; fields: { 'avgRttMs': { name: 'avgRttMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'distance': { name: 'distance'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float32'; ofType: null; }; } }; 'healthCheckEnabled': { name: 'healthCheckEnabled'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'healthy': { name: 'healthy'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'poolName': { name: 'poolName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'ZoneLogpushHealthAdaptiveGroups': { kind: 'OBJECT'; name: 'ZoneLogpushHealthAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'ZoneLogpushHealthAdaptiveGroupsAvg'; ofType: null; } }; 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneLogpushHealthAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'ZoneLogpushHealthAdaptiveGroupsDimensions'; ofType: null; } }; 'max': { name: 'max'; type: { kind: 'OBJECT'; name: 'ZoneLogpushHealthAdaptiveGroupsMax'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'ZoneLogpushHealthAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'ZoneLogpushHealthAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'ZoneLogpushHealthAdaptiveGroupsAvg'; fields: { 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'uploadDuration': { name: 'uploadDuration'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'ZoneLogpushHealthAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'ZoneLogpushHealthAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'ZoneLogpushHealthAdaptiveGroupsSumConfidence'; ofType: null; } }; }; }; + 'ZoneLogpushHealthAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'ZoneLogpushHealthAdaptiveGroupsDimensions'; fields: { 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'destinationType': { name: 'destinationType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'error': { name: 'error'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'final': { name: 'final'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'jobId': { name: 'jobId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'status': { name: 'status'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'success': { name: 'success'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; }; }; + 'ZoneLogpushHealthAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'ZoneLogpushHealthAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneLogpushHealthAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneLogpushHealthAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationType'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationType_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationType_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationType_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationType_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationType_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationType_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationType_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'destinationType_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'destinationType_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'error'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'error_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'error_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'error_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'error_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'error_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'error_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'error_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'error_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'error_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'final'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'final_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'final_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'final_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'final_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'final_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'final_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'final_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'jobId'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'jobId_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'jobId_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'jobId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'jobId_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'jobId_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'jobId_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'jobId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'status'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'status_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'status_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'status_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'status_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'status_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'status_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'status_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'success'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'success_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'success_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'success_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'success_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'success_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'success_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'success_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }]; }; + 'ZoneLogpushHealthAdaptiveGroupsMax': { kind: 'OBJECT'; name: 'ZoneLogpushHealthAdaptiveGroupsMax'; fields: { 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; }; }; + 'ZoneLogpushHealthAdaptiveGroupsOrderBy': { name: 'ZoneLogpushHealthAdaptiveGroupsOrderBy'; enumValues: 'accountId_ASC' | 'accountId_DESC' | 'avg_sampleInterval_ASC' | 'avg_sampleInterval_DESC' | 'avg_uploadDuration_ASC' | 'avg_uploadDuration_DESC' | 'count_ASC' | 'count_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'destinationType_ASC' | 'destinationType_DESC' | 'error_ASC' | 'error_DESC' | 'final_ASC' | 'final_DESC' | 'jobId_ASC' | 'jobId_DESC' | 'max_timestamp_ASC' | 'max_timestamp_DESC' | 'objectType_ASC' | 'objectType_DESC' | 'status_ASC' | 'status_DESC' | 'success_ASC' | 'success_DESC' | 'sum_bytesCompressed_ASC' | 'sum_bytesCompressed_DESC' | 'sum_bytes_ASC' | 'sum_bytes_DESC' | 'sum_records_ASC' | 'sum_records_DESC' | 'sum_uploads_ASC' | 'sum_uploads_DESC'; }; + 'ZoneLogpushHealthAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'ZoneLogpushHealthAdaptiveGroupsSum'; fields: { 'bytes': { name: 'bytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'bytesCompressed': { name: 'bytesCompressed'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'records': { name: 'records'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'uploads': { name: 'uploads'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'ZoneLogpushHealthAdaptiveGroupsSumConfidence': { kind: 'OBJECT'; name: 'ZoneLogpushHealthAdaptiveGroupsSumConfidence'; fields: { 'bytes': { name: 'bytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'bytesCompressed': { name: 'bytesCompressed'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'records': { name: 'records'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'uploads': { name: 'uploads'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'ZoneNelReportsAdaptiveGroups': { kind: 'OBJECT'; name: 'ZoneNelReportsAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'ZoneNelReportsAdaptiveGroupsAvg'; ofType: null; } }; 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneNelReportsAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'ZoneNelReportsAdaptiveGroupsDimensions'; ofType: null; } }; }; }; + 'ZoneNelReportsAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'ZoneNelReportsAdaptiveGroupsAvg'; fields: { 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'ZoneNelReportsAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'ZoneNelReportsAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'ZoneNelReportsAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'ZoneNelReportsAdaptiveGroupsDimensions'; fields: { 'clientIPASN': { name: 'clientIPASN'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'clientIPASNDescription': { name: 'clientIPASNDescription'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientIPCountry': { name: 'clientIPCountry'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientIPCountryCode': { name: 'clientIPCountryCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientIPVersion': { name: 'clientIPVersion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHalfOfHour': { name: 'datetimeHalfOfHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'lastKnownGoodColoCode': { name: 'lastKnownGoodColoCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'phase': { name: 'phase'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'protocol': { name: 'protocol'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'type': { name: 'type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'ZoneNelReportsAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'ZoneNelReportsAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneNelReportsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneNelReportsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientIPASN'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'clientIPASNDescription'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPASNDescription_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPASNDescription_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPASNDescription_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientIPASNDescription_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPASNDescription_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPASNDescription_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPASNDescription_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPASNDescription_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientIPASNDescription_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPASN_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'clientIPASN_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'clientIPASN_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientIPASN_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'clientIPASN_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'clientIPASN_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'clientIPASN_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientIPCountry'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPCountryCode'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPCountryCode_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPCountryCode_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPCountryCode_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientIPCountryCode_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPCountryCode_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPCountryCode_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPCountryCode_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPCountryCode_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientIPCountryCode_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPCountry_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPCountry_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPCountry_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientIPCountry_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPCountry_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPCountry_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPCountry_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPCountry_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientIPCountry_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientIPVersion'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'clientIPVersion_geq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'clientIPVersion_gt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'clientIPVersion_in'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'clientIPVersion_leq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'clientIPVersion_lt'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'clientIPVersion_neq'; type: { kind: 'SCALAR'; name: 'uint8'; ofType: null; }; defaultValue: null }, { name: 'clientIPVersion_notin'; type: { kind: 'SCALAR'; name: 'bytes'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHalfOfHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHalfOfHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'lastKnownGoodColoCode'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'lastKnownGoodColoCode_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'lastKnownGoodColoCode_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'lastKnownGoodColoCode_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'lastKnownGoodColoCode_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'lastKnownGoodColoCode_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'lastKnownGoodColoCode_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'lastKnownGoodColoCode_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'lastKnownGoodColoCode_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'lastKnownGoodColoCode_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'phase'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'phase_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'phase_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'phase_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'phase_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'phase_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'phase_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'phase_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'phase_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'phase_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocol'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocol_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocol_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocol_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'protocol_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocol_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocol_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocol_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'protocol_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'protocol_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'type_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'type_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'type_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'type_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'type_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'type_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'type_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'type_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'type_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'ZoneNelReportsAdaptiveGroupsOrderBy': { name: 'ZoneNelReportsAdaptiveGroupsOrderBy'; enumValues: 'avg_sampleInterval_ASC' | 'avg_sampleInterval_DESC' | 'clientIPASNDescription_ASC' | 'clientIPASNDescription_DESC' | 'clientIPASN_ASC' | 'clientIPASN_DESC' | 'clientIPCountryCode_ASC' | 'clientIPCountryCode_DESC' | 'clientIPCountry_ASC' | 'clientIPCountry_DESC' | 'clientIPVersion_ASC' | 'clientIPVersion_DESC' | 'count_ASC' | 'count_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHalfOfHour_ASC' | 'datetimeHalfOfHour_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'lastKnownGoodColoCode_ASC' | 'lastKnownGoodColoCode_DESC' | 'phase_ASC' | 'phase_DESC' | 'protocol_ASC' | 'protocol_DESC' | 'type_ASC' | 'type_DESC'; }; + 'ZonePageShieldReportsAdaptiveGroups': { kind: 'OBJECT'; name: 'ZonePageShieldReportsAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'ZonePageShieldReportsAdaptiveGroupsAvg'; ofType: null; } }; 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZonePageShieldReportsAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'ZonePageShieldReportsAdaptiveGroupsDimensions'; ofType: null; } }; }; }; + 'ZonePageShieldReportsAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'ZonePageShieldReportsAdaptiveGroupsAvg'; fields: { 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'ZonePageShieldReportsAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'ZonePageShieldReportsAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'ZonePageShieldReportsAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'ZonePageShieldReportsAdaptiveGroupsDimensions'; fields: { 'action': { name: 'action'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'cspDirective': { name: 'cspDirective'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHalfOfHour': { name: 'datetimeHalfOfHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'host': { name: 'host'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'pageURL': { name: 'pageURL'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'policyID': { name: 'policyID'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'resourceType': { name: 'resourceType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'url': { name: 'url'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'urlHost': { name: 'urlHost'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'ZonePageShieldReportsAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'ZonePageShieldReportsAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZonePageShieldReportsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZonePageShieldReportsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'action'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'action_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'action_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'action_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cspDirective'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cspDirective_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cspDirective_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cspDirective_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'cspDirective_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cspDirective_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cspDirective_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cspDirective_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cspDirective_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'cspDirective_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHalfOfHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHalfOfHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHalfOfHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'host'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'host_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'host_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'host_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'host_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'host_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'host_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'host_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'host_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'host_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pageURL'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pageURL_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pageURL_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pageURL_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'pageURL_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pageURL_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pageURL_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pageURL_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pageURL_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'pageURL_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policyID'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policyID_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policyID_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policyID_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'policyID_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policyID_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policyID_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policyID_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'policyID_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'policyID_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resourceType'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resourceType_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resourceType_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resourceType_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'resourceType_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resourceType_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resourceType_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resourceType_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resourceType_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'resourceType_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'url'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlHost'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlHost_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlHost_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlHost_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'urlHost_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlHost_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlHost_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlHost_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlHost_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'urlHost_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'url_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'url_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'url_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'url_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'url_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'url_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'url_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'url_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'url_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'ZonePageShieldReportsAdaptiveGroupsOrderBy': { name: 'ZonePageShieldReportsAdaptiveGroupsOrderBy'; enumValues: 'action_ASC' | 'action_DESC' | 'avg_sampleInterval_ASC' | 'avg_sampleInterval_DESC' | 'count_ASC' | 'count_DESC' | 'cspDirective_ASC' | 'cspDirective_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHalfOfHour_ASC' | 'datetimeHalfOfHour_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'host_ASC' | 'host_DESC' | 'pageURL_ASC' | 'pageURL_DESC' | 'policyID_ASC' | 'policyID_DESC' | 'resourceType_ASC' | 'resourceType_DESC' | 'urlHost_ASC' | 'urlHost_DESC' | 'url_ASC' | 'url_DESC'; }; + 'ZoneSettings': { kind: 'OBJECT'; name: 'ZoneSettings'; fields: { 'apiGatewayGraphqlQueryAnalyticsGroups': { name: 'apiGatewayGraphqlQueryAnalyticsGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'apiGatewayMatchedSessionIDsAdaptiveGroups': { name: 'apiGatewayMatchedSessionIDsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'apiGatewayMatchedSessionIDsPerEndpointAdaptiveGroups': { name: 'apiGatewayMatchedSessionIDsPerEndpointAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'apiGatewayMatchedSessionIDsPerEndpointFlattenedAdaptiveGroups': { name: 'apiGatewayMatchedSessionIDsPerEndpointFlattenedAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'apiRequestSequencesGroups': { name: 'apiRequestSequencesGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'cacheReserveOperationsAdaptiveGroups': { name: 'cacheReserveOperationsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'cacheReserveRequestsAdaptiveGroups': { name: 'cacheReserveRequestsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'cacheReserveStorageAdaptiveGroups': { name: 'cacheReserveStorageAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'dmarcReportsAdaptive': { name: 'dmarcReportsAdaptive'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'dmarcReportsSourcesAdaptiveGroups': { name: 'dmarcReportsSourcesAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'dnsAnalyticsAdaptive': { name: 'dnsAnalyticsAdaptive'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'dnsAnalyticsAdaptiveGroups': { name: 'dnsAnalyticsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'emailRoutingAdaptive': { name: 'emailRoutingAdaptive'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'emailRoutingAdaptiveGroups': { name: 'emailRoutingAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'emailSendingAdaptive': { name: 'emailSendingAdaptive'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'emailSendingAdaptiveGroups': { name: 'emailSendingAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'firewallEventsAdaptive': { name: 'firewallEventsAdaptive'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'firewallEventsAdaptiveByTimeGroups': { name: 'firewallEventsAdaptiveByTimeGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'firewallEventsAdaptiveGroups': { name: 'firewallEventsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'healthCheckEventsAdaptive': { name: 'healthCheckEventsAdaptive'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'healthCheckEventsAdaptiveGroups': { name: 'healthCheckEventsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'httpRequests1dByColoGroups': { name: 'httpRequests1dByColoGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'httpRequests1dGroups': { name: 'httpRequests1dGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'httpRequests1hGroups': { name: 'httpRequests1hGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'httpRequests1mByColoGroups': { name: 'httpRequests1mByColoGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'httpRequests1mGroups': { name: 'httpRequests1mGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'httpRequestsAdaptive': { name: 'httpRequestsAdaptive'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'httpRequestsAdaptiveGroups': { name: 'httpRequestsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'httpRequestsOverviewAdaptiveGroups': { name: 'httpRequestsOverviewAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'imageResizingRequests1mGroups': { name: 'imageResizingRequests1mGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'loadBalancingRequestsAdaptive': { name: 'loadBalancingRequestsAdaptive'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'loadBalancingRequestsAdaptiveGroups': { name: 'loadBalancingRequestsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'logpushHealthAdaptiveGroups': { name: 'logpushHealthAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'nelReportsAdaptiveGroups': { name: 'nelReportsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'pageShieldReportsAdaptiveGroups': { name: 'pageShieldReportsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'userProfilesAdaptiveGroups': { name: 'userProfilesAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'userProfilesRawEventsGroups': { name: 'userProfilesRawEventsGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'waitingRoomAnalyticsAdaptive': { name: 'waitingRoomAnalyticsAdaptive'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'waitingRoomAnalyticsAdaptiveGroups': { name: 'waitingRoomAnalyticsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'workersZoneInvocationsAdaptiveGroups': { name: 'workersZoneInvocationsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'workersZoneSubrequestsAdaptiveGroups': { name: 'workersZoneSubrequestsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'zarazActionsAdaptiveGroups': { name: 'zarazActionsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'zarazAnalyticsIdentitiesAdaptiveGroups': { name: 'zarazAnalyticsIdentitiesAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'zarazAnalyticsOrderedTrackAdaptive': { name: 'zarazAnalyticsOrderedTrackAdaptive'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'zarazAnalyticsOrderedTrackAdaptiveGroups': { name: 'zarazAnalyticsOrderedTrackAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'zarazAnalyticsTrackAdaptiveGroups': { name: 'zarazAnalyticsTrackAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'zarazAnalyticsTrackTrafficSourcesAdaptiveGroups': { name: 'zarazAnalyticsTrackTrafficSourcesAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'zarazAnalyticsTriggersAdaptiveGroups': { name: 'zarazAnalyticsTriggersAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'zarazAnalyticsTriggersTrafficSourcesAdaptiveGroups': { name: 'zarazAnalyticsTriggersTrafficSourcesAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'zarazFetchAdaptiveGroups': { name: 'zarazFetchAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'zarazTrackAdaptiveGroups': { name: 'zarazTrackAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; 'zarazTriggersAdaptiveGroups': { name: 'zarazTriggersAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Settings'; ofType: null; }; } }; }; }; + 'ZoneUserProfilesAdaptiveGroups': { kind: 'OBJECT'; name: 'ZoneUserProfilesAdaptiveGroups'; fields: { 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'ZoneUserProfilesAdaptiveGroupsDimensions'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'ZoneUserProfilesAdaptiveGroupsSum'; ofType: null; } }; 'uniq': { name: 'uniq'; type: { kind: 'OBJECT'; name: 'ZoneUserProfilesAdaptiveGroupsUniq'; ofType: null; } }; }; }; + 'ZoneUserProfilesAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'ZoneUserProfilesAdaptiveGroupsDimensions'; fields: { 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'userId': { name: 'userId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'ZoneUserProfilesAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'ZoneUserProfilesAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneUserProfilesAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneUserProfilesAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'userId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'ZoneUserProfilesAdaptiveGroupsOrderBy': { name: 'ZoneUserProfilesAdaptiveGroupsOrderBy'; enumValues: 'date_ASC' | 'date_DESC' | 'sum_topCountries_ASC' | 'sum_topCountries_DESC' | 'uniq_ipCount_ASC' | 'uniq_ipCount_DESC' | 'userId_ASC' | 'userId_DESC'; }; + 'ZoneUserProfilesAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'ZoneUserProfilesAdaptiveGroupsSum'; fields: { 'topCountries': { name: 'topCountries'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; }; }; + 'ZoneUserProfilesAdaptiveGroupsUniq': { kind: 'OBJECT'; name: 'ZoneUserProfilesAdaptiveGroupsUniq'; fields: { 'ipCount': { name: 'ipCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'ZoneUserProfilesRawEventsGroups': { kind: 'OBJECT'; name: 'ZoneUserProfilesRawEventsGroups'; fields: { 'bmDetectionTags': { name: 'bmDetectionTags'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; 'clientCity': { name: 'clientCity'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientCountry': { name: 'clientCountry'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'deviceBrowser': { name: 'deviceBrowser'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'deviceOS': { name: 'deviceOS'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'eventTimestamp': { name: 'eventTimestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'userId': { name: 'userId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'ZoneUserProfilesRawEventsGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'ZoneUserProfilesRawEventsGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneUserProfilesRawEventsGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneUserProfilesRawEventsGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'bmDetectionTags_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'bmDetectionTags_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'bmDetectionTags_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'bmDetectionTags_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'bmDetectionTags_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCity'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCity_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCity_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCity_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientCity_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCity_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCity_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCity_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCity_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientCity_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountry'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountry_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountry_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountry_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientCountry_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountry_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountry_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountry_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientCountry_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientCountry_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceBrowser'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceBrowser_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceBrowser_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceBrowser_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceBrowser_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceBrowser_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceBrowser_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceBrowser_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceBrowser_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceBrowser_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceOS'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceOS_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceOS_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceOS_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceOS_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceOS_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceOS_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceOS_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceOS_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceOS_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'eventTimestamp'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'eventTimestamp_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'eventTimestamp_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'eventTimestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'eventTimestamp_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'eventTimestamp_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'eventTimestamp_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'eventTimestamp_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'userId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'userId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'userId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'ZoneUserProfilesRawEventsGroupsOrderBy': { name: 'ZoneUserProfilesRawEventsGroupsOrderBy'; enumValues: 'bmDetectionTags_ASC' | 'bmDetectionTags_DESC' | 'clientCity_ASC' | 'clientCity_DESC' | 'clientCountry_ASC' | 'clientCountry_DESC' | 'date_ASC' | 'date_DESC' | 'deviceBrowser_ASC' | 'deviceBrowser_DESC' | 'deviceOS_ASC' | 'deviceOS_DESC' | 'eventTimestamp_ASC' | 'eventTimestamp_DESC' | 'userId_ASC' | 'userId_DESC'; }; + 'ZoneWaitingRoomAnalyticsAdaptive': { kind: 'OBJECT'; name: 'ZoneWaitingRoomAnalyticsAdaptive'; fields: { 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'maxEstimatedTimeMinutes': { name: 'maxEstimatedTimeMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'newUsersPerMinute': { name: 'newUsersPerMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'newUsersPerMinuteConfig': { name: 'newUsersPerMinuteConfig'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'sessionDuration': { name: 'sessionDuration'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'sessionsRevoked': { name: 'sessionsRevoked'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'timeBetweenRefreshesP50': { name: 'timeBetweenRefreshesP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'timeBetweenRefreshesP75': { name: 'timeBetweenRefreshesP75'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'timeBetweenRefreshesP90': { name: 'timeBetweenRefreshesP90'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'timeBetweenRefreshesP95': { name: 'timeBetweenRefreshesP95'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'timeInQueueP50': { name: 'timeInQueueP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'timeInQueueP75': { name: 'timeInQueueP75'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'timeInQueueP90': { name: 'timeInQueueP90'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'timeInQueueP95': { name: 'timeInQueueP95'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'timeOnOriginP50': { name: 'timeOnOriginP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'timeOnOriginP75': { name: 'timeOnOriginP75'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'timeOnOriginP90': { name: 'timeOnOriginP90'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'timeOnOriginP95': { name: 'timeOnOriginP95'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'totalActiveUsers': { name: 'totalActiveUsers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'totalActiveUsersConfig': { name: 'totalActiveUsersConfig'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'totalQueuedUsers': { name: 'totalQueuedUsers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'totalTimeWaitedP50': { name: 'totalTimeWaitedP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'totalTimeWaitedP75': { name: 'totalTimeWaitedP75'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'totalTimeWaitedP90': { name: 'totalTimeWaitedP90'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'totalTimeWaitedP95': { name: 'totalTimeWaitedP95'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'turnstileFailures': { name: 'turnstileFailures'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'turnstileInfiniteQueueRefreshes': { name: 'turnstileInfiniteQueueRefreshes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'turnstileIssued': { name: 'turnstileIssued'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'turnstileSuccesses': { name: 'turnstileSuccesses'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'turnstileUnsolved': { name: 'turnstileUnsolved'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'waitingRoomId': { name: 'waitingRoomId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'waitingRoomName': { name: 'waitingRoomName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'ZoneWaitingRoomAnalyticsAdaptiveFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'ZoneWaitingRoomAnalyticsAdaptiveFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneWaitingRoomAnalyticsAdaptiveFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneWaitingRoomAnalyticsAdaptiveFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'maxEstimatedTimeMinutes'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'maxEstimatedTimeMinutes_geq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'maxEstimatedTimeMinutes_gt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'maxEstimatedTimeMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'maxEstimatedTimeMinutes_leq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'maxEstimatedTimeMinutes_lt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'maxEstimatedTimeMinutes_neq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'maxEstimatedTimeMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'newUsersPerMinute'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'newUsersPerMinuteConfig'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'newUsersPerMinuteConfig_geq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'newUsersPerMinuteConfig_gt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'newUsersPerMinuteConfig_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'newUsersPerMinuteConfig_leq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'newUsersPerMinuteConfig_lt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'newUsersPerMinuteConfig_neq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'newUsersPerMinuteConfig_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'newUsersPerMinute_geq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'newUsersPerMinute_gt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'newUsersPerMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'newUsersPerMinute_leq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'newUsersPerMinute_lt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'newUsersPerMinute_neq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'newUsersPerMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'sampleInterval'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sampleInterval_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionDuration'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'sessionDuration_geq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'sessionDuration_gt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'sessionDuration_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionDuration_leq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'sessionDuration_lt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'sessionDuration_neq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'sessionDuration_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionsRevoked'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'sessionsRevoked_geq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'sessionsRevoked_gt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'sessionsRevoked_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionsRevoked_leq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'sessionsRevoked_lt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'sessionsRevoked_neq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'sessionsRevoked_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'timeBetweenRefreshesP50'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'timeBetweenRefreshesP50_geq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'timeBetweenRefreshesP50_gt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'timeBetweenRefreshesP50_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'timeBetweenRefreshesP50_leq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'timeBetweenRefreshesP50_lt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'timeBetweenRefreshesP50_neq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'timeBetweenRefreshesP50_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'timeBetweenRefreshesP75'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'timeBetweenRefreshesP75_geq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'timeBetweenRefreshesP75_gt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'timeBetweenRefreshesP75_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'timeBetweenRefreshesP75_leq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'timeBetweenRefreshesP75_lt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'timeBetweenRefreshesP75_neq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'timeBetweenRefreshesP75_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'timeBetweenRefreshesP90'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'timeBetweenRefreshesP90_geq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'timeBetweenRefreshesP90_gt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'timeBetweenRefreshesP90_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'timeBetweenRefreshesP90_leq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'timeBetweenRefreshesP90_lt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'timeBetweenRefreshesP90_neq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'timeBetweenRefreshesP90_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'timeBetweenRefreshesP95'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'timeBetweenRefreshesP95_geq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'timeBetweenRefreshesP95_gt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'timeBetweenRefreshesP95_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'timeBetweenRefreshesP95_leq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'timeBetweenRefreshesP95_lt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'timeBetweenRefreshesP95_neq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'timeBetweenRefreshesP95_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'timeInQueueP50'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'timeInQueueP50_geq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'timeInQueueP50_gt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'timeInQueueP50_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'timeInQueueP50_leq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'timeInQueueP50_lt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'timeInQueueP50_neq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'timeInQueueP50_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'timeInQueueP75'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'timeInQueueP75_geq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'timeInQueueP75_gt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'timeInQueueP75_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'timeInQueueP75_leq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'timeInQueueP75_lt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'timeInQueueP75_neq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'timeInQueueP75_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'timeInQueueP90'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'timeInQueueP90_geq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'timeInQueueP90_gt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'timeInQueueP90_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'timeInQueueP90_leq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'timeInQueueP90_lt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'timeInQueueP90_neq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'timeInQueueP90_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'timeInQueueP95'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'timeInQueueP95_geq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'timeInQueueP95_gt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'timeInQueueP95_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'timeInQueueP95_leq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'timeInQueueP95_lt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'timeInQueueP95_neq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'timeInQueueP95_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'timeOnOriginP50'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'timeOnOriginP50_geq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'timeOnOriginP50_gt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'timeOnOriginP50_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'timeOnOriginP50_leq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'timeOnOriginP50_lt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'timeOnOriginP50_neq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'timeOnOriginP50_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'timeOnOriginP75'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'timeOnOriginP75_geq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'timeOnOriginP75_gt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'timeOnOriginP75_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'timeOnOriginP75_leq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'timeOnOriginP75_lt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'timeOnOriginP75_neq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'timeOnOriginP75_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'timeOnOriginP90'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'timeOnOriginP90_geq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'timeOnOriginP90_gt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'timeOnOriginP90_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'timeOnOriginP90_leq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'timeOnOriginP90_lt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'timeOnOriginP90_neq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'timeOnOriginP90_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'timeOnOriginP95'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'timeOnOriginP95_geq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'timeOnOriginP95_gt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'timeOnOriginP95_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'timeOnOriginP95_leq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'timeOnOriginP95_lt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'timeOnOriginP95_neq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'timeOnOriginP95_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalActiveUsers'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'totalActiveUsersConfig'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'totalActiveUsersConfig_geq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'totalActiveUsersConfig_gt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'totalActiveUsersConfig_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalActiveUsersConfig_leq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'totalActiveUsersConfig_lt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'totalActiveUsersConfig_neq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'totalActiveUsersConfig_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalActiveUsers_geq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'totalActiveUsers_gt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'totalActiveUsers_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalActiveUsers_leq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'totalActiveUsers_lt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'totalActiveUsers_neq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'totalActiveUsers_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalQueuedUsers'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'totalQueuedUsers_geq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'totalQueuedUsers_gt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'totalQueuedUsers_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalQueuedUsers_leq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'totalQueuedUsers_lt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'totalQueuedUsers_neq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'totalQueuedUsers_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalTimeWaitedP50'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'totalTimeWaitedP50_geq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'totalTimeWaitedP50_gt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'totalTimeWaitedP50_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalTimeWaitedP50_leq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'totalTimeWaitedP50_lt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'totalTimeWaitedP50_neq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'totalTimeWaitedP50_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalTimeWaitedP75'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'totalTimeWaitedP75_geq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'totalTimeWaitedP75_gt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'totalTimeWaitedP75_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalTimeWaitedP75_leq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'totalTimeWaitedP75_lt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'totalTimeWaitedP75_neq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'totalTimeWaitedP75_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalTimeWaitedP90'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'totalTimeWaitedP90_geq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'totalTimeWaitedP90_gt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'totalTimeWaitedP90_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalTimeWaitedP90_leq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'totalTimeWaitedP90_lt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'totalTimeWaitedP90_neq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'totalTimeWaitedP90_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalTimeWaitedP95'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'totalTimeWaitedP95_geq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'totalTimeWaitedP95_gt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'totalTimeWaitedP95_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalTimeWaitedP95_leq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'totalTimeWaitedP95_lt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'totalTimeWaitedP95_neq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'totalTimeWaitedP95_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'turnstileFailures'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'turnstileFailures_geq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'turnstileFailures_gt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'turnstileFailures_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'turnstileFailures_leq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'turnstileFailures_lt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'turnstileFailures_neq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'turnstileFailures_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'turnstileInfiniteQueueRefreshes'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'turnstileInfiniteQueueRefreshes_geq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'turnstileInfiniteQueueRefreshes_gt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'turnstileInfiniteQueueRefreshes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'turnstileInfiniteQueueRefreshes_leq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'turnstileInfiniteQueueRefreshes_lt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'turnstileInfiniteQueueRefreshes_neq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'turnstileInfiniteQueueRefreshes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'turnstileIssued'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'turnstileIssued_geq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'turnstileIssued_gt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'turnstileIssued_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'turnstileIssued_leq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'turnstileIssued_lt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'turnstileIssued_neq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'turnstileIssued_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'turnstileSuccesses'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'turnstileSuccesses_geq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'turnstileSuccesses_gt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'turnstileSuccesses_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'turnstileSuccesses_leq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'turnstileSuccesses_lt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'turnstileSuccesses_neq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'turnstileSuccesses_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'turnstileUnsolved'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'turnstileUnsolved_geq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'turnstileUnsolved_gt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'turnstileUnsolved_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'turnstileUnsolved_leq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'turnstileUnsolved_lt'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'turnstileUnsolved_neq'; type: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; defaultValue: null }, { name: 'turnstileUnsolved_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; }; }; defaultValue: null }, { name: 'waitingRoomId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'waitingRoomId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'waitingRoomId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'waitingRoomId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'waitingRoomId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'waitingRoomId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'waitingRoomId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'waitingRoomId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'waitingRoomId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'waitingRoomId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'waitingRoomName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'waitingRoomName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'waitingRoomName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'waitingRoomName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'waitingRoomName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'waitingRoomName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'waitingRoomName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'waitingRoomName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'waitingRoomName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'waitingRoomName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'ZoneWaitingRoomAnalyticsAdaptiveGroups': { kind: 'OBJECT'; name: 'ZoneWaitingRoomAnalyticsAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'ZoneWaitingRoomAnalyticsAdaptiveGroupsAvg'; ofType: null; } }; 'avgWeighted': { name: 'avgWeighted'; type: { kind: 'OBJECT'; name: 'ZoneWaitingRoomAnalyticsAdaptiveGroupsAvgWeighted'; ofType: null; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'ZoneWaitingRoomAnalyticsAdaptiveGroupsDimensions'; ofType: null; } }; 'max': { name: 'max'; type: { kind: 'OBJECT'; name: 'ZoneWaitingRoomAnalyticsAdaptiveGroupsMax'; ofType: null; } }; 'min': { name: 'min'; type: { kind: 'OBJECT'; name: 'ZoneWaitingRoomAnalyticsAdaptiveGroupsMin'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'ZoneWaitingRoomAnalyticsAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'ZoneWaitingRoomAnalyticsAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'ZoneWaitingRoomAnalyticsAdaptiveGroupsAvg'; fields: { 'maxEstimatedTimeMinutes': { name: 'maxEstimatedTimeMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'newUsersPerMinute': { name: 'newUsersPerMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'newUsersPerMinuteConfig': { name: 'newUsersPerMinuteConfig'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sessionDuration': { name: 'sessionDuration'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'sessionsRevoked': { name: 'sessionsRevoked'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'totalActiveUsers': { name: 'totalActiveUsers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'totalActiveUsersConfig': { name: 'totalActiveUsersConfig'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'totalQueuedUsers': { name: 'totalQueuedUsers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'turnstileFailures': { name: 'turnstileFailures'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'turnstileInfiniteQueueRefreshes': { name: 'turnstileInfiniteQueueRefreshes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'turnstileIssued': { name: 'turnstileIssued'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'turnstileSuccesses': { name: 'turnstileSuccesses'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'turnstileUnsolved': { name: 'turnstileUnsolved'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; }; }; + 'ZoneWaitingRoomAnalyticsAdaptiveGroupsAvgWeighted': { kind: 'OBJECT'; name: 'ZoneWaitingRoomAnalyticsAdaptiveGroupsAvgWeighted'; fields: { 'timeBetweenRefreshesP50': { name: 'timeBetweenRefreshesP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'timeBetweenRefreshesP75': { name: 'timeBetweenRefreshesP75'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'timeBetweenRefreshesP90': { name: 'timeBetweenRefreshesP90'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'timeBetweenRefreshesP95': { name: 'timeBetweenRefreshesP95'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'timeInQueueP50': { name: 'timeInQueueP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'timeInQueueP75': { name: 'timeInQueueP75'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'timeInQueueP90': { name: 'timeInQueueP90'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'timeInQueueP95': { name: 'timeInQueueP95'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'timeOnOriginP50': { name: 'timeOnOriginP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'timeOnOriginP75': { name: 'timeOnOriginP75'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'timeOnOriginP90': { name: 'timeOnOriginP90'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'timeOnOriginP95': { name: 'timeOnOriginP95'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'totalTimeWaitedP50': { name: 'totalTimeWaitedP50'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'totalTimeWaitedP75': { name: 'totalTimeWaitedP75'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'totalTimeWaitedP90': { name: 'totalTimeWaitedP90'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'totalTimeWaitedP95': { name: 'totalTimeWaitedP95'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'ZoneWaitingRoomAnalyticsAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'ZoneWaitingRoomAnalyticsAdaptiveGroupsDimensions'; fields: { 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'waitingRoomId': { name: 'waitingRoomId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'ZoneWaitingRoomAnalyticsAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'ZoneWaitingRoomAnalyticsAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneWaitingRoomAnalyticsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneWaitingRoomAnalyticsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'sampleInterval'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sampleInterval_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'waitingRoomId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'waitingRoomId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'waitingRoomId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'waitingRoomId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'waitingRoomId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'waitingRoomId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'waitingRoomId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'waitingRoomId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'waitingRoomId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'waitingRoomId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'ZoneWaitingRoomAnalyticsAdaptiveGroupsMax': { kind: 'OBJECT'; name: 'ZoneWaitingRoomAnalyticsAdaptiveGroupsMax'; fields: { 'maxEstimatedTimeMinutes': { name: 'maxEstimatedTimeMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'newUsersPerMinute': { name: 'newUsersPerMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'newUsersPerMinuteConfig': { name: 'newUsersPerMinuteConfig'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'sessionDuration': { name: 'sessionDuration'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'sessionsRevoked': { name: 'sessionsRevoked'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'totalActiveUsers': { name: 'totalActiveUsers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'totalActiveUsersConfig': { name: 'totalActiveUsersConfig'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'totalQueuedUsers': { name: 'totalQueuedUsers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'turnstileFailures': { name: 'turnstileFailures'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'turnstileInfiniteQueueRefreshes': { name: 'turnstileInfiniteQueueRefreshes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'turnstileIssued': { name: 'turnstileIssued'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'turnstileSuccesses': { name: 'turnstileSuccesses'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'turnstileUnsolved': { name: 'turnstileUnsolved'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; }; }; + 'ZoneWaitingRoomAnalyticsAdaptiveGroupsMin': { kind: 'OBJECT'; name: 'ZoneWaitingRoomAnalyticsAdaptiveGroupsMin'; fields: { 'maxEstimatedTimeMinutes': { name: 'maxEstimatedTimeMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'newUsersPerMinute': { name: 'newUsersPerMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'newUsersPerMinuteConfig': { name: 'newUsersPerMinuteConfig'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'sessionDuration': { name: 'sessionDuration'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'sessionsRevoked': { name: 'sessionsRevoked'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'totalActiveUsers': { name: 'totalActiveUsers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'totalActiveUsersConfig': { name: 'totalActiveUsersConfig'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'totalQueuedUsers': { name: 'totalQueuedUsers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'turnstileFailures': { name: 'turnstileFailures'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'turnstileInfiniteQueueRefreshes': { name: 'turnstileInfiniteQueueRefreshes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'turnstileIssued': { name: 'turnstileIssued'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'turnstileSuccesses': { name: 'turnstileSuccesses'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'turnstileUnsolved': { name: 'turnstileUnsolved'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; }; }; + 'ZoneWaitingRoomAnalyticsAdaptiveGroupsOrderBy': { name: 'ZoneWaitingRoomAnalyticsAdaptiveGroupsOrderBy'; enumValues: 'avgWeighted_timeBetweenRefreshesP50_ASC' | 'avgWeighted_timeBetweenRefreshesP50_DESC' | 'avgWeighted_timeBetweenRefreshesP75_ASC' | 'avgWeighted_timeBetweenRefreshesP75_DESC' | 'avgWeighted_timeBetweenRefreshesP90_ASC' | 'avgWeighted_timeBetweenRefreshesP90_DESC' | 'avgWeighted_timeBetweenRefreshesP95_ASC' | 'avgWeighted_timeBetweenRefreshesP95_DESC' | 'avgWeighted_timeInQueueP50_ASC' | 'avgWeighted_timeInQueueP50_DESC' | 'avgWeighted_timeInQueueP75_ASC' | 'avgWeighted_timeInQueueP75_DESC' | 'avgWeighted_timeInQueueP90_ASC' | 'avgWeighted_timeInQueueP90_DESC' | 'avgWeighted_timeInQueueP95_ASC' | 'avgWeighted_timeInQueueP95_DESC' | 'avgWeighted_timeOnOriginP50_ASC' | 'avgWeighted_timeOnOriginP50_DESC' | 'avgWeighted_timeOnOriginP75_ASC' | 'avgWeighted_timeOnOriginP75_DESC' | 'avgWeighted_timeOnOriginP90_ASC' | 'avgWeighted_timeOnOriginP90_DESC' | 'avgWeighted_timeOnOriginP95_ASC' | 'avgWeighted_timeOnOriginP95_DESC' | 'avgWeighted_totalTimeWaitedP50_ASC' | 'avgWeighted_totalTimeWaitedP50_DESC' | 'avgWeighted_totalTimeWaitedP75_ASC' | 'avgWeighted_totalTimeWaitedP75_DESC' | 'avgWeighted_totalTimeWaitedP90_ASC' | 'avgWeighted_totalTimeWaitedP90_DESC' | 'avgWeighted_totalTimeWaitedP95_ASC' | 'avgWeighted_totalTimeWaitedP95_DESC' | 'avg_abandoningUsersPerMinute_ASC' | 'avg_abandoningUsersPerMinute_DESC' | 'avg_maxEstimatedTimeMinutes_ASC' | 'avg_maxEstimatedTimeMinutes_DESC' | 'avg_newUsersPerMinuteConfig_ASC' | 'avg_newUsersPerMinuteConfig_DESC' | 'avg_newUsersPerMinute_ASC' | 'avg_newUsersPerMinute_DESC' | 'avg_sampleInterval_ASC' | 'avg_sampleInterval_DESC' | 'avg_sessionDuration_ASC' | 'avg_sessionDuration_DESC' | 'avg_sessionsRevoked_ASC' | 'avg_sessionsRevoked_DESC' | 'avg_totalActiveUsersConfig_ASC' | 'avg_totalActiveUsersConfig_DESC' | 'avg_totalActiveUsers_ASC' | 'avg_totalActiveUsers_DESC' | 'avg_totalQueuedUsers_ASC' | 'avg_totalQueuedUsers_DESC' | 'avg_turnstileFailures_ASC' | 'avg_turnstileFailures_DESC' | 'avg_turnstileInfiniteQueueRefreshes_ASC' | 'avg_turnstileInfiniteQueueRefreshes_DESC' | 'avg_turnstileIssued_ASC' | 'avg_turnstileIssued_DESC' | 'avg_turnstileSuccesses_ASC' | 'avg_turnstileSuccesses_DESC' | 'avg_turnstileUnsolved_ASC' | 'avg_turnstileUnsolved_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'max_abandoningUsersPerMinute_ASC' | 'max_abandoningUsersPerMinute_DESC' | 'max_maxEstimatedTimeMinutes_ASC' | 'max_maxEstimatedTimeMinutes_DESC' | 'max_newUsersPerMinuteConfig_ASC' | 'max_newUsersPerMinuteConfig_DESC' | 'max_newUsersPerMinute_ASC' | 'max_newUsersPerMinute_DESC' | 'max_sessionDuration_ASC' | 'max_sessionDuration_DESC' | 'max_sessionsRevoked_ASC' | 'max_sessionsRevoked_DESC' | 'max_totalActiveUsersConfig_ASC' | 'max_totalActiveUsersConfig_DESC' | 'max_totalActiveUsers_ASC' | 'max_totalActiveUsers_DESC' | 'max_totalQueuedUsers_ASC' | 'max_totalQueuedUsers_DESC' | 'max_turnstileFailures_ASC' | 'max_turnstileFailures_DESC' | 'max_turnstileInfiniteQueueRefreshes_ASC' | 'max_turnstileInfiniteQueueRefreshes_DESC' | 'max_turnstileIssued_ASC' | 'max_turnstileIssued_DESC' | 'max_turnstileSuccesses_ASC' | 'max_turnstileSuccesses_DESC' | 'max_turnstileUnsolved_ASC' | 'max_turnstileUnsolved_DESC' | 'min_maxEstimatedTimeMinutes_ASC' | 'min_maxEstimatedTimeMinutes_DESC' | 'min_newUsersPerMinuteConfig_ASC' | 'min_newUsersPerMinuteConfig_DESC' | 'min_newUsersPerMinute_ASC' | 'min_newUsersPerMinute_DESC' | 'min_sessionDuration_ASC' | 'min_sessionDuration_DESC' | 'min_sessionsRevoked_ASC' | 'min_sessionsRevoked_DESC' | 'min_totalActiveUsersConfig_ASC' | 'min_totalActiveUsersConfig_DESC' | 'min_totalActiveUsers_ASC' | 'min_totalActiveUsers_DESC' | 'min_totalQueuedUsers_ASC' | 'min_totalQueuedUsers_DESC' | 'min_turnstileFailures_ASC' | 'min_turnstileFailures_DESC' | 'min_turnstileInfiniteQueueRefreshes_ASC' | 'min_turnstileInfiniteQueueRefreshes_DESC' | 'min_turnstileIssued_ASC' | 'min_turnstileIssued_DESC' | 'min_turnstileSuccesses_ASC' | 'min_turnstileSuccesses_DESC' | 'min_turnstileUnsolved_ASC' | 'min_turnstileUnsolved_DESC' | 'sampleInterval_ASC' | 'sampleInterval_DESC' | 'sum_newUsersPerMinute_ASC' | 'sum_newUsersPerMinute_DESC' | 'sum_sessionsRevoked_ASC' | 'sum_sessionsRevoked_DESC' | 'sum_turnstileFailures_ASC' | 'sum_turnstileFailures_DESC' | 'sum_turnstileInfiniteQueueRefreshes_ASC' | 'sum_turnstileInfiniteQueueRefreshes_DESC' | 'sum_turnstileIssued_ASC' | 'sum_turnstileIssued_DESC' | 'sum_turnstileSuccesses_ASC' | 'sum_turnstileSuccesses_DESC' | 'sum_turnstileUnsolved_ASC' | 'sum_turnstileUnsolved_DESC' | 'waitingRoomId_ASC' | 'waitingRoomId_DESC'; }; + 'ZoneWaitingRoomAnalyticsAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'ZoneWaitingRoomAnalyticsAdaptiveGroupsSum'; fields: { 'newUsersPerMinute': { name: 'newUsersPerMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'sessionsRevoked': { name: 'sessionsRevoked'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'turnstileFailures': { name: 'turnstileFailures'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'turnstileInfiniteQueueRefreshes': { name: 'turnstileInfiniteQueueRefreshes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'turnstileIssued': { name: 'turnstileIssued'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'turnstileSuccesses': { name: 'turnstileSuccesses'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; 'turnstileUnsolved': { name: 'turnstileUnsolved'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int64'; ofType: null; }; } }; }; }; + 'ZoneWaitingRoomAnalyticsAdaptiveOrderBy': { name: 'ZoneWaitingRoomAnalyticsAdaptiveOrderBy'; enumValues: 'abandoningUsersPerMinute_ASC' | 'abandoningUsersPerMinute_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'maxEstimatedTimeMinutes_ASC' | 'maxEstimatedTimeMinutes_DESC' | 'newUsersPerMinuteConfig_ASC' | 'newUsersPerMinuteConfig_DESC' | 'newUsersPerMinute_ASC' | 'newUsersPerMinute_DESC' | 'sampleInterval_ASC' | 'sampleInterval_DESC' | 'sessionDuration_ASC' | 'sessionDuration_DESC' | 'sessionsRevoked_ASC' | 'sessionsRevoked_DESC' | 'timeBetweenRefreshesP50_ASC' | 'timeBetweenRefreshesP50_DESC' | 'timeBetweenRefreshesP75_ASC' | 'timeBetweenRefreshesP75_DESC' | 'timeBetweenRefreshesP90_ASC' | 'timeBetweenRefreshesP90_DESC' | 'timeBetweenRefreshesP95_ASC' | 'timeBetweenRefreshesP95_DESC' | 'timeInQueueP50_ASC' | 'timeInQueueP50_DESC' | 'timeInQueueP75_ASC' | 'timeInQueueP75_DESC' | 'timeInQueueP90_ASC' | 'timeInQueueP90_DESC' | 'timeInQueueP95_ASC' | 'timeInQueueP95_DESC' | 'timeOnOriginP50_ASC' | 'timeOnOriginP50_DESC' | 'timeOnOriginP75_ASC' | 'timeOnOriginP75_DESC' | 'timeOnOriginP90_ASC' | 'timeOnOriginP90_DESC' | 'timeOnOriginP95_ASC' | 'timeOnOriginP95_DESC' | 'totalActiveUsersConfig_ASC' | 'totalActiveUsersConfig_DESC' | 'totalActiveUsers_ASC' | 'totalActiveUsers_DESC' | 'totalQueuedUsers_ASC' | 'totalQueuedUsers_DESC' | 'totalTimeWaitedP50_ASC' | 'totalTimeWaitedP50_DESC' | 'totalTimeWaitedP75_ASC' | 'totalTimeWaitedP75_DESC' | 'totalTimeWaitedP90_ASC' | 'totalTimeWaitedP90_DESC' | 'totalTimeWaitedP95_ASC' | 'totalTimeWaitedP95_DESC' | 'turnstileFailures_ASC' | 'turnstileFailures_DESC' | 'turnstileInfiniteQueueRefreshes_ASC' | 'turnstileInfiniteQueueRefreshes_DESC' | 'turnstileIssued_ASC' | 'turnstileIssued_DESC' | 'turnstileSuccesses_ASC' | 'turnstileSuccesses_DESC' | 'turnstileUnsolved_ASC' | 'turnstileUnsolved_DESC' | 'waitingRoomId_ASC' | 'waitingRoomId_DESC' | 'waitingRoomName_ASC' | 'waitingRoomName_DESC'; }; + 'ZoneWorkersZoneInvocationsAdaptiveGroups': { kind: 'OBJECT'; name: 'ZoneWorkersZoneInvocationsAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'ZoneWorkersZoneInvocationsAdaptiveGroupsAvg'; ofType: null; } }; 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneWorkersZoneInvocationsAdaptiveGroupsConfidence'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'ZoneWorkersZoneInvocationsAdaptiveGroupsDimensions'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'ZoneWorkersZoneInvocationsAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'ZoneWorkersZoneInvocationsAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'ZoneWorkersZoneInvocationsAdaptiveGroupsAvg'; fields: { 'avgCpuTime': { name: 'avgCpuTime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'ZoneWorkersZoneInvocationsAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'ZoneWorkersZoneInvocationsAdaptiveGroupsConfidence'; fields: { 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'ZoneWorkersZoneInvocationsAdaptiveGroupsSumConfidence'; ofType: null; } }; }; }; + 'ZoneWorkersZoneInvocationsAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'ZoneWorkersZoneInvocationsAdaptiveGroupsDimensions'; fields: { 'constantScriptId': { name: 'constantScriptId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeSixHours': { name: 'datetimeSixHours'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'httpResponseStatus': { name: 'httpResponseStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; } }; 'status': { name: 'status'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'ZoneWorkersZoneInvocationsAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'ZoneWorkersZoneInvocationsAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneWorkersZoneInvocationsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneWorkersZoneInvocationsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'constantScriptId'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'constantScriptId_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'constantScriptId_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'constantScriptId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'constantScriptId_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'constantScriptId_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'constantScriptId_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'constantScriptId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'httpResponseStatus'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'httpResponseStatus_geq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'httpResponseStatus_gt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'httpResponseStatus_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'httpResponseStatus_leq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'httpResponseStatus_lt'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'httpResponseStatus_neq'; type: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; defaultValue: null }, { name: 'httpResponseStatus_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint16'; ofType: null; }; }; }; defaultValue: null }, { name: 'status'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'status_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'status_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'status_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'ZoneWorkersZoneInvocationsAdaptiveGroupsOrderBy': { name: 'ZoneWorkersZoneInvocationsAdaptiveGroupsOrderBy'; enumValues: 'avg_avgCpuTime_ASC' | 'avg_avgCpuTime_DESC' | 'constantScriptId_ASC' | 'constantScriptId_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetimeSixHours_ASC' | 'datetimeSixHours_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'httpResponseStatus_ASC' | 'httpResponseStatus_DESC' | 'scriptName_ASC' | 'scriptName_DESC' | 'stableId_ASC' | 'stableId_DESC' | 'status_ASC' | 'status_DESC' | 'sum_requests_ASC' | 'sum_requests_DESC' | 'sum_responseBodySize_ASC' | 'sum_responseBodySize_DESC' | 'sum_subrequests_ASC' | 'sum_subrequests_DESC' | 'sum_totalCpuTime_ASC' | 'sum_totalCpuTime_DESC'; }; + 'ZoneWorkersZoneInvocationsAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'ZoneWorkersZoneInvocationsAdaptiveGroupsSum'; fields: { 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'responseBodySize': { name: 'responseBodySize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'subrequests': { name: 'subrequests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'totalCpuTime': { name: 'totalCpuTime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'ZoneWorkersZoneInvocationsAdaptiveGroupsSumConfidence': { kind: 'OBJECT'; name: 'ZoneWorkersZoneInvocationsAdaptiveGroupsSumConfidence'; fields: { 'requests': { name: 'requests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'responseBodySize': { name: 'responseBodySize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'subrequests': { name: 'subrequests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'totalCpuTime': { name: 'totalCpuTime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'ZoneWorkersZoneSubrequestsAdaptiveGroups': { kind: 'OBJECT'; name: 'ZoneWorkersZoneSubrequestsAdaptiveGroups'; fields: { 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneWorkersZoneSubrequestsAdaptiveGroupsConfidence'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'ZoneWorkersZoneSubrequestsAdaptiveGroupsDimensions'; ofType: null; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'ZoneWorkersZoneSubrequestsAdaptiveGroupsSum'; ofType: null; } }; }; }; + 'ZoneWorkersZoneSubrequestsAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'ZoneWorkersZoneSubrequestsAdaptiveGroupsConfidence'; fields: { 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; 'sum': { name: 'sum'; type: { kind: 'OBJECT'; name: 'ZoneWorkersZoneSubrequestsAdaptiveGroupsSumConfidence'; ofType: null; } }; }; }; + 'ZoneWorkersZoneSubrequestsAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'ZoneWorkersZoneSubrequestsAdaptiveGroupsDimensions'; fields: { 'cacheStatus': { name: 'cacheStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeSixHours': { name: 'datetimeSixHours'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'hostname': { name: 'hostname'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'httpResponseStatus': { name: 'httpResponseStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'ZoneWorkersZoneSubrequestsAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'ZoneWorkersZoneSubrequestsAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneWorkersZoneSubrequestsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneWorkersZoneSubrequestsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'cacheStatus'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'cacheStatus_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'cacheStatus_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'cacheStatus_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'cacheStatus_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'cacheStatus_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'cacheStatus_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'cacheStatus_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeSixHours_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeSixHours_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'hostname'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'hostname_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'hostname_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'hostname_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'hostname_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'hostname_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'hostname_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'hostname_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'hostname_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'hostname_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'httpResponseStatus'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpResponseStatus_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpResponseStatus_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpResponseStatus_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'httpResponseStatus_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpResponseStatus_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpResponseStatus_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'httpResponseStatus_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }]; }; + 'ZoneWorkersZoneSubrequestsAdaptiveGroupsOrderBy': { name: 'ZoneWorkersZoneSubrequestsAdaptiveGroupsOrderBy'; enumValues: 'cacheStatus_ASC' | 'cacheStatus_DESC' | 'constantScriptId_ASC' | 'constantScriptId_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetimeSixHours_ASC' | 'datetimeSixHours_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'hostname_ASC' | 'hostname_DESC' | 'httpResponseStatus_ASC' | 'httpResponseStatus_DESC' | 'scriptName_ASC' | 'scriptName_DESC' | 'stableId_ASC' | 'stableId_DESC' | 'sum_requestBodySizeUncached_ASC' | 'sum_requestBodySizeUncached_DESC' | 'sum_requestBodySize_ASC' | 'sum_requestBodySize_DESC' | 'sum_responseBodySize_ASC' | 'sum_responseBodySize_DESC' | 'sum_subrequests_ASC' | 'sum_subrequests_DESC'; }; + 'ZoneWorkersZoneSubrequestsAdaptiveGroupsSum': { kind: 'OBJECT'; name: 'ZoneWorkersZoneSubrequestsAdaptiveGroupsSum'; fields: { 'requestBodySize': { name: 'requestBodySize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'requestBodySizeUncached': { name: 'requestBodySizeUncached'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'responseBodySize': { name: 'responseBodySize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'subrequests': { name: 'subrequests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'ZoneWorkersZoneSubrequestsAdaptiveGroupsSumConfidence': { kind: 'OBJECT'; name: 'ZoneWorkersZoneSubrequestsAdaptiveGroupsSumConfidence'; fields: { 'requestBodySize': { name: 'requestBodySize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'requestBodySizeUncached': { name: 'requestBodySizeUncached'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'responseBodySize': { name: 'responseBodySize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'subrequests': { name: 'subrequests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; }; }; + 'ZoneZarazActionsAdaptiveGroups': { kind: 'OBJECT'; name: 'ZoneZarazActionsAdaptiveGroups'; fields: { 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneZarazActionsAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'ZoneZarazActionsAdaptiveGroupsDimensions'; ofType: null; } }; }; }; + 'ZoneZarazActionsAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'ZoneZarazActionsAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'ZoneZarazActionsAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'ZoneZarazActionsAdaptiveGroupsDimensions'; fields: { 'actionName': { name: 'actionName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'toolName': { name: 'toolName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'ZoneZarazActionsAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'ZoneZarazActionsAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneZarazActionsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneZarazActionsAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'actionName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'actionName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'actionName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'actionName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'actionName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'actionName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'actionName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'actionName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'actionName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'actionName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'toolName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'toolName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'toolName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'toolName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'toolName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'toolName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'toolName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'toolName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'toolName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'toolName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'ZoneZarazActionsAdaptiveGroupsOrderBy': { name: 'ZoneZarazActionsAdaptiveGroupsOrderBy'; enumValues: 'actionName_ASC' | 'actionName_DESC' | 'count_ASC' | 'count_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'toolName_ASC' | 'toolName_DESC'; }; + 'ZoneZarazAnalyticsIdentitiesAdaptiveGroups': { kind: 'OBJECT'; name: 'ZoneZarazAnalyticsIdentitiesAdaptiveGroups'; fields: { 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneZarazAnalyticsIdentitiesAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'ZoneZarazAnalyticsIdentitiesAdaptiveGroupsDimensions'; ofType: null; } }; }; }; + 'ZoneZarazAnalyticsIdentitiesAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'ZoneZarazAnalyticsIdentitiesAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'ZoneZarazAnalyticsIdentitiesAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'ZoneZarazAnalyticsIdentitiesAdaptiveGroupsDimensions'; fields: { 'clientId': { name: 'clientId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'identity': { name: 'identity'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'ZoneZarazAnalyticsIdentitiesAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'ZoneZarazAnalyticsIdentitiesAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneZarazAnalyticsIdentitiesAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneZarazAnalyticsIdentitiesAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'identity'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'identity_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'identity_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'identity_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'identity_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'identity_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'identity_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'identity_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'identity_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'identity_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'ZoneZarazAnalyticsIdentitiesAdaptiveGroupsOrderBy': { name: 'ZoneZarazAnalyticsIdentitiesAdaptiveGroupsOrderBy'; enumValues: 'clientId_ASC' | 'clientId_DESC' | 'count_ASC' | 'count_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'identity_ASC' | 'identity_DESC'; }; + 'ZoneZarazAnalyticsOrderedTrackAdaptive': { kind: 'OBJECT'; name: 'ZoneZarazAnalyticsOrderedTrackAdaptive'; fields: { 'browserName': { name: 'browserName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'cityRegion': { name: 'cityRegion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientId': { name: 'clientId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'colors': { name: 'colors'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'country': { name: 'country'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetime': { name: 'datetime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'deviceModel': { name: 'deviceModel'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'deviceType': { name: 'deviceType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'deviceVendor': { name: 'deviceVendor'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ip': { name: 'ip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'language': { name: 'language'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'orderInClient': { name: 'orderInClient'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'orderInSession': { name: 'orderInSession'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'osName': { name: 'osName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'osVersion': { name: 'osVersion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'pageTitle': { name: 'pageTitle'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'resolution': { name: 'resolution'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'reverseOrderInClient': { name: 'reverseOrderInClient'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'reverseOrderInSession': { name: 'reverseOrderInSession'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'sampleInterval': { name: 'sampleInterval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'sessionId': { name: 'sessionId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'timezoneOffset': { name: 'timezoneOffset'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int32'; ofType: null; }; } }; 'trackData': { name: 'trackData'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'trackName': { name: 'trackName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'trafficSrc': { name: 'trafficSrc'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ua': { name: 'ua'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'uaObj': { name: 'uaObj'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'urlParams': { name: 'urlParams'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'urlPath': { name: 'urlPath'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'viewport': { name: 'viewport'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'ZoneZarazAnalyticsOrderedTrackAdaptiveFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'ZoneZarazAnalyticsOrderedTrackAdaptiveFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneZarazAnalyticsOrderedTrackAdaptiveFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneZarazAnalyticsOrderedTrackAdaptiveFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'browserName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'browserName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'browserName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'browserName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'browserName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'browserName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'browserName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'browserName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'browserName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'browserName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cityRegion'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cityRegion_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cityRegion_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cityRegion_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'cityRegion_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cityRegion_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cityRegion_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cityRegion_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cityRegion_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'cityRegion_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'colors'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'colors_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'colors_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'colors_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'colors_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'colors_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'colors_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'colors_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'country'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'country_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'country_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'country_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'country_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'country_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'country_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'country_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'country_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'country_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetime_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetime_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceModel'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceModel_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceModel_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceModel_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceModel_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceModel_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceModel_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceModel_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceModel_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceModel_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceType_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceType_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceVendor'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceVendor_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceVendor_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceVendor_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceVendor_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceVendor_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceVendor_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceVendor_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceVendor_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceVendor_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ip'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ip_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ip_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ip_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ip_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ip_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ip_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ip_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ip_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ip_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'language'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'language_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'language_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'language_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'language_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'language_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'language_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'language_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'language_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'language_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'orderInClient'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'orderInClient_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'orderInClient_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'orderInClient_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'orderInClient_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'orderInClient_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'orderInClient_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'orderInClient_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'orderInSession'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'orderInSession_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'orderInSession_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'orderInSession_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'orderInSession_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'orderInSession_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'orderInSession_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'orderInSession_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'osName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'osName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'osName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'osName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'osName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'osName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'osName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'osName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'osName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'osName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'osVersion'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'osVersion_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'osVersion_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'osVersion_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'osVersion_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'osVersion_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'osVersion_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'osVersion_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'osVersion_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'osVersion_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pageTitle'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pageTitle_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pageTitle_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pageTitle_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'pageTitle_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pageTitle_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pageTitle_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pageTitle_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pageTitle_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'pageTitle_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resolution'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'resolution_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'resolution_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'resolution_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'resolution_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'resolution_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'resolution_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'resolution_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'reverseOrderInClient'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'reverseOrderInClient_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'reverseOrderInClient_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'reverseOrderInClient_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'reverseOrderInClient_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'reverseOrderInClient_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'reverseOrderInClient_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'reverseOrderInClient_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'reverseOrderInSession'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'reverseOrderInSession_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'reverseOrderInSession_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'reverseOrderInSession_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'reverseOrderInSession_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'reverseOrderInSession_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'reverseOrderInSession_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'reverseOrderInSession_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'sampleInterval'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sampleInterval_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'sampleInterval_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'timezoneOffset'; type: { kind: 'SCALAR'; name: 'int32'; ofType: null; }; defaultValue: null }, { name: 'timezoneOffset_geq'; type: { kind: 'SCALAR'; name: 'int32'; ofType: null; }; defaultValue: null }, { name: 'timezoneOffset_gt'; type: { kind: 'SCALAR'; name: 'int32'; ofType: null; }; defaultValue: null }, { name: 'timezoneOffset_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int32'; ofType: null; }; }; }; defaultValue: null }, { name: 'timezoneOffset_leq'; type: { kind: 'SCALAR'; name: 'int32'; ofType: null; }; defaultValue: null }, { name: 'timezoneOffset_lt'; type: { kind: 'SCALAR'; name: 'int32'; ofType: null; }; defaultValue: null }, { name: 'timezoneOffset_neq'; type: { kind: 'SCALAR'; name: 'int32'; ofType: null; }; defaultValue: null }, { name: 'timezoneOffset_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int32'; ofType: null; }; }; }; defaultValue: null }, { name: 'trackData'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackData_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackData_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackData_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'trackData_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackData_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackData_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackData_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackData_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'trackData_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'trackName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'trackName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trafficSrc'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trafficSrc_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trafficSrc_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trafficSrc_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'trafficSrc_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trafficSrc_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trafficSrc_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trafficSrc_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trafficSrc_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'trafficSrc_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ua'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uaObj'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uaObj_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uaObj_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uaObj_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'uaObj_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uaObj_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uaObj_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uaObj_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uaObj_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'uaObj_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ua_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ua_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ua_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ua_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ua_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ua_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ua_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ua_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ua_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlParams'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlParams_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlParams_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlParams_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'urlParams_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlParams_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlParams_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlParams_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlParams_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'urlParams_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlPath'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlPath_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlPath_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlPath_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'urlPath_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlPath_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlPath_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlPath_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlPath_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'urlPath_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'viewport'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'viewport_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'viewport_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'viewport_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'viewport_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'viewport_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'viewport_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'viewport_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }]; }; + 'ZoneZarazAnalyticsOrderedTrackAdaptiveGroups': { kind: 'OBJECT'; name: 'ZoneZarazAnalyticsOrderedTrackAdaptiveGroups'; fields: { 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneZarazAnalyticsOrderedTrackAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'ZoneZarazAnalyticsOrderedTrackAdaptiveGroupsDimensions'; ofType: null; } }; 'uniq': { name: 'uniq'; type: { kind: 'OBJECT'; name: 'ZoneZarazAnalyticsOrderedTrackAdaptiveGroupsUniq'; ofType: null; } }; }; }; + 'ZoneZarazAnalyticsOrderedTrackAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'ZoneZarazAnalyticsOrderedTrackAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'ZoneZarazAnalyticsOrderedTrackAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'ZoneZarazAnalyticsOrderedTrackAdaptiveGroupsDimensions'; fields: { 'browserName': { name: 'browserName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'cityRegion': { name: 'cityRegion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientId': { name: 'clientId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'colors': { name: 'colors'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'country': { name: 'country'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'deviceModel': { name: 'deviceModel'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'deviceType': { name: 'deviceType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'deviceVendor': { name: 'deviceVendor'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ip': { name: 'ip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'language': { name: 'language'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'orderInClient': { name: 'orderInClient'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'orderInSession': { name: 'orderInSession'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'osName': { name: 'osName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'osVersion': { name: 'osVersion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'pageTitle': { name: 'pageTitle'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'resolution': { name: 'resolution'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'reverseOrderInClient': { name: 'reverseOrderInClient'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'reverseOrderInSession': { name: 'reverseOrderInSession'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'sessionId': { name: 'sessionId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'timezoneOffset': { name: 'timezoneOffset'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int32'; ofType: null; }; } }; 'trackData': { name: 'trackData'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'trackName': { name: 'trackName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'trafficSrc': { name: 'trafficSrc'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ua': { name: 'ua'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'uaObj': { name: 'uaObj'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'urlParams': { name: 'urlParams'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'urlPath': { name: 'urlPath'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'viewport': { name: 'viewport'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'ZoneZarazAnalyticsOrderedTrackAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'ZoneZarazAnalyticsOrderedTrackAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneZarazAnalyticsOrderedTrackAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneZarazAnalyticsOrderedTrackAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'browserName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'browserName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'browserName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'browserName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'browserName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'browserName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'browserName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'browserName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'browserName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'browserName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cityRegion'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cityRegion_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cityRegion_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cityRegion_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'cityRegion_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cityRegion_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cityRegion_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cityRegion_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cityRegion_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'cityRegion_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'colors'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'colors_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'colors_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'colors_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'colors_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'colors_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'colors_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'colors_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'country'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'country_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'country_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'country_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'country_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'country_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'country_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'country_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'country_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'country_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceModel'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceModel_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceModel_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceModel_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceModel_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceModel_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceModel_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceModel_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceModel_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceModel_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceType_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceType_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceVendor'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceVendor_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceVendor_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceVendor_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceVendor_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceVendor_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceVendor_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceVendor_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceVendor_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceVendor_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ip'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ip_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ip_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ip_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ip_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ip_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ip_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ip_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ip_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ip_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'language'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'language_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'language_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'language_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'language_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'language_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'language_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'language_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'language_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'language_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'orderInClient'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'orderInClient_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'orderInClient_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'orderInClient_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'orderInClient_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'orderInClient_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'orderInClient_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'orderInClient_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'orderInSession'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'orderInSession_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'orderInSession_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'orderInSession_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'orderInSession_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'orderInSession_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'orderInSession_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'orderInSession_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'osName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'osName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'osName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'osName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'osName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'osName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'osName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'osName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'osName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'osName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'osVersion'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'osVersion_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'osVersion_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'osVersion_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'osVersion_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'osVersion_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'osVersion_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'osVersion_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'osVersion_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'osVersion_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pageTitle'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pageTitle_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pageTitle_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pageTitle_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'pageTitle_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pageTitle_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pageTitle_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pageTitle_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pageTitle_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'pageTitle_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resolution'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'resolution_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'resolution_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'resolution_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'resolution_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'resolution_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'resolution_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'resolution_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'reverseOrderInClient'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'reverseOrderInClient_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'reverseOrderInClient_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'reverseOrderInClient_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'reverseOrderInClient_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'reverseOrderInClient_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'reverseOrderInClient_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'reverseOrderInClient_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'reverseOrderInSession'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'reverseOrderInSession_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'reverseOrderInSession_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'reverseOrderInSession_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'reverseOrderInSession_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'reverseOrderInSession_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'reverseOrderInSession_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'reverseOrderInSession_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'timezoneOffset'; type: { kind: 'SCALAR'; name: 'int32'; ofType: null; }; defaultValue: null }, { name: 'timezoneOffset_geq'; type: { kind: 'SCALAR'; name: 'int32'; ofType: null; }; defaultValue: null }, { name: 'timezoneOffset_gt'; type: { kind: 'SCALAR'; name: 'int32'; ofType: null; }; defaultValue: null }, { name: 'timezoneOffset_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int32'; ofType: null; }; }; }; defaultValue: null }, { name: 'timezoneOffset_leq'; type: { kind: 'SCALAR'; name: 'int32'; ofType: null; }; defaultValue: null }, { name: 'timezoneOffset_lt'; type: { kind: 'SCALAR'; name: 'int32'; ofType: null; }; defaultValue: null }, { name: 'timezoneOffset_neq'; type: { kind: 'SCALAR'; name: 'int32'; ofType: null; }; defaultValue: null }, { name: 'timezoneOffset_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int32'; ofType: null; }; }; }; defaultValue: null }, { name: 'trackData'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackData_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackData_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackData_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'trackData_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackData_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackData_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackData_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackData_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'trackData_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'trackName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'trackName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trafficSrc'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trafficSrc_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trafficSrc_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trafficSrc_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'trafficSrc_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trafficSrc_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trafficSrc_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trafficSrc_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trafficSrc_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'trafficSrc_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ua'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uaObj'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uaObj_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uaObj_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uaObj_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'uaObj_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uaObj_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uaObj_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uaObj_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uaObj_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'uaObj_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ua_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ua_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ua_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ua_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ua_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ua_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ua_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ua_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ua_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlParams'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlParams_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlParams_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlParams_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'urlParams_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlParams_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlParams_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlParams_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlParams_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'urlParams_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlPath'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlPath_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlPath_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlPath_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'urlPath_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlPath_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlPath_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlPath_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlPath_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'urlPath_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'viewport'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'viewport_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'viewport_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'viewport_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'viewport_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'viewport_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'viewport_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'viewport_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }]; }; + 'ZoneZarazAnalyticsOrderedTrackAdaptiveGroupsOrderBy': { name: 'ZoneZarazAnalyticsOrderedTrackAdaptiveGroupsOrderBy'; enumValues: 'browserName_ASC' | 'browserName_DESC' | 'cityRegion_ASC' | 'cityRegion_DESC' | 'clientId_ASC' | 'clientId_DESC' | 'colors_ASC' | 'colors_DESC' | 'count_ASC' | 'count_DESC' | 'country_ASC' | 'country_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'deviceModel_ASC' | 'deviceModel_DESC' | 'deviceType_ASC' | 'deviceType_DESC' | 'deviceVendor_ASC' | 'deviceVendor_DESC' | 'ip_ASC' | 'ip_DESC' | 'language_ASC' | 'language_DESC' | 'orderInClient_ASC' | 'orderInClient_DESC' | 'orderInSession_ASC' | 'orderInSession_DESC' | 'osName_ASC' | 'osName_DESC' | 'osVersion_ASC' | 'osVersion_DESC' | 'pageTitle_ASC' | 'pageTitle_DESC' | 'resolution_ASC' | 'resolution_DESC' | 'reverseOrderInClient_ASC' | 'reverseOrderInClient_DESC' | 'reverseOrderInSession_ASC' | 'reverseOrderInSession_DESC' | 'sessionId_ASC' | 'sessionId_DESC' | 'timezoneOffset_ASC' | 'timezoneOffset_DESC' | 'trackData_ASC' | 'trackData_DESC' | 'trackName_ASC' | 'trackName_DESC' | 'trafficSrc_ASC' | 'trafficSrc_DESC' | 'uaObj_ASC' | 'uaObj_DESC' | 'ua_ASC' | 'ua_DESC' | 'uniq_clientIdCount_ASC' | 'uniq_clientIdCount_DESC' | 'uniq_sessionIdCount_ASC' | 'uniq_sessionIdCount_DESC' | 'urlParams_ASC' | 'urlParams_DESC' | 'urlPath_ASC' | 'urlPath_DESC' | 'viewport_ASC' | 'viewport_DESC'; }; + 'ZoneZarazAnalyticsOrderedTrackAdaptiveGroupsUniq': { kind: 'OBJECT'; name: 'ZoneZarazAnalyticsOrderedTrackAdaptiveGroupsUniq'; fields: { 'clientIdCount': { name: 'clientIdCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'sessionIdCount': { name: 'sessionIdCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'ZoneZarazAnalyticsOrderedTrackAdaptiveOrderBy': { name: 'ZoneZarazAnalyticsOrderedTrackAdaptiveOrderBy'; enumValues: 'browserName_ASC' | 'browserName_DESC' | 'cityRegion_ASC' | 'cityRegion_DESC' | 'clientId_ASC' | 'clientId_DESC' | 'colors_ASC' | 'colors_DESC' | 'country_ASC' | 'country_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'datetime_ASC' | 'datetime_DESC' | 'deviceModel_ASC' | 'deviceModel_DESC' | 'deviceType_ASC' | 'deviceType_DESC' | 'deviceVendor_ASC' | 'deviceVendor_DESC' | 'ip_ASC' | 'ip_DESC' | 'language_ASC' | 'language_DESC' | 'orderInClient_ASC' | 'orderInClient_DESC' | 'orderInSession_ASC' | 'orderInSession_DESC' | 'osName_ASC' | 'osName_DESC' | 'osVersion_ASC' | 'osVersion_DESC' | 'pageTitle_ASC' | 'pageTitle_DESC' | 'resolution_ASC' | 'resolution_DESC' | 'reverseOrderInClient_ASC' | 'reverseOrderInClient_DESC' | 'reverseOrderInSession_ASC' | 'reverseOrderInSession_DESC' | 'sampleInterval_ASC' | 'sampleInterval_DESC' | 'sessionId_ASC' | 'sessionId_DESC' | 'timezoneOffset_ASC' | 'timezoneOffset_DESC' | 'trackData_ASC' | 'trackData_DESC' | 'trackName_ASC' | 'trackName_DESC' | 'trafficSrc_ASC' | 'trafficSrc_DESC' | 'uaObj_ASC' | 'uaObj_DESC' | 'ua_ASC' | 'ua_DESC' | 'urlParams_ASC' | 'urlParams_DESC' | 'urlPath_ASC' | 'urlPath_DESC' | 'viewport_ASC' | 'viewport_DESC'; }; + 'ZoneZarazAnalyticsTrackAdaptiveGroups': { kind: 'OBJECT'; name: 'ZoneZarazAnalyticsTrackAdaptiveGroups'; fields: { 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneZarazAnalyticsTrackAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'ZoneZarazAnalyticsTrackAdaptiveGroupsDimensions'; ofType: null; } }; 'uniq': { name: 'uniq'; type: { kind: 'OBJECT'; name: 'ZoneZarazAnalyticsTrackAdaptiveGroupsUniq'; ofType: null; } }; }; }; + 'ZoneZarazAnalyticsTrackAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'ZoneZarazAnalyticsTrackAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'ZoneZarazAnalyticsTrackAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'ZoneZarazAnalyticsTrackAdaptiveGroupsDimensions'; fields: { 'browserName': { name: 'browserName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'cityRegion': { name: 'cityRegion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientId': { name: 'clientId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'colors': { name: 'colors'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'country': { name: 'country'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'deviceModel': { name: 'deviceModel'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'deviceType': { name: 'deviceType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'deviceVendor': { name: 'deviceVendor'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ip': { name: 'ip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'language': { name: 'language'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'osName': { name: 'osName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'osVersion': { name: 'osVersion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'pageTitle': { name: 'pageTitle'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'resolution': { name: 'resolution'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'sessionId': { name: 'sessionId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'timezoneOffset': { name: 'timezoneOffset'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int32'; ofType: null; }; } }; 'trackData': { name: 'trackData'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'trackName': { name: 'trackName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'trafficSrc': { name: 'trafficSrc'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ua': { name: 'ua'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'uaObj': { name: 'uaObj'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'urlParams': { name: 'urlParams'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'urlPath': { name: 'urlPath'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'viewport': { name: 'viewport'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'ZoneZarazAnalyticsTrackAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'ZoneZarazAnalyticsTrackAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneZarazAnalyticsTrackAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneZarazAnalyticsTrackAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'browserName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'browserName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'browserName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'browserName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'browserName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'browserName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'browserName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'browserName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'browserName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'browserName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cityRegion'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cityRegion_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cityRegion_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cityRegion_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'cityRegion_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cityRegion_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cityRegion_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cityRegion_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cityRegion_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'cityRegion_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'colors'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'colors_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'colors_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'colors_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'colors_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'colors_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'colors_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'colors_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'country'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'country_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'country_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'country_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'country_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'country_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'country_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'country_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'country_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'country_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceModel'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceModel_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceModel_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceModel_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceModel_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceModel_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceModel_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceModel_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceModel_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceModel_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceType_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceType_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceVendor'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceVendor_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceVendor_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceVendor_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceVendor_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceVendor_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceVendor_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceVendor_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceVendor_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceVendor_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ip'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ip_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ip_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ip_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ip_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ip_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ip_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ip_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ip_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ip_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'language'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'language_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'language_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'language_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'language_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'language_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'language_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'language_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'language_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'language_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'osName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'osName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'osName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'osName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'osName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'osName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'osName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'osName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'osName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'osName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'osVersion'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'osVersion_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'osVersion_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'osVersion_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'osVersion_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'osVersion_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'osVersion_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'osVersion_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'osVersion_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'osVersion_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pageTitle'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pageTitle_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pageTitle_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pageTitle_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'pageTitle_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pageTitle_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pageTitle_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pageTitle_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pageTitle_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'pageTitle_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resolution'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'resolution_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'resolution_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'resolution_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'resolution_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'resolution_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'resolution_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'resolution_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'timezoneOffset'; type: { kind: 'SCALAR'; name: 'int32'; ofType: null; }; defaultValue: null }, { name: 'timezoneOffset_geq'; type: { kind: 'SCALAR'; name: 'int32'; ofType: null; }; defaultValue: null }, { name: 'timezoneOffset_gt'; type: { kind: 'SCALAR'; name: 'int32'; ofType: null; }; defaultValue: null }, { name: 'timezoneOffset_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int32'; ofType: null; }; }; }; defaultValue: null }, { name: 'timezoneOffset_leq'; type: { kind: 'SCALAR'; name: 'int32'; ofType: null; }; defaultValue: null }, { name: 'timezoneOffset_lt'; type: { kind: 'SCALAR'; name: 'int32'; ofType: null; }; defaultValue: null }, { name: 'timezoneOffset_neq'; type: { kind: 'SCALAR'; name: 'int32'; ofType: null; }; defaultValue: null }, { name: 'timezoneOffset_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int32'; ofType: null; }; }; }; defaultValue: null }, { name: 'trackData'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackData_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackData_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackData_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'trackData_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackData_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackData_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackData_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackData_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'trackData_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'trackName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'trackName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trafficSrc'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trafficSrc_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trafficSrc_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trafficSrc_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'trafficSrc_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trafficSrc_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trafficSrc_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trafficSrc_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trafficSrc_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'trafficSrc_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ua'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uaObj'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uaObj_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uaObj_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uaObj_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'uaObj_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uaObj_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uaObj_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uaObj_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uaObj_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'uaObj_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ua_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ua_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ua_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ua_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ua_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ua_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ua_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ua_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ua_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlParams'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlParams_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlParams_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlParams_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'urlParams_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlParams_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlParams_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlParams_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlParams_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'urlParams_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlPath'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlPath_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlPath_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlPath_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'urlPath_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlPath_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlPath_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlPath_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlPath_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'urlPath_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'viewport'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'viewport_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'viewport_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'viewport_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'viewport_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'viewport_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'viewport_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'viewport_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }]; }; + 'ZoneZarazAnalyticsTrackAdaptiveGroupsOrderBy': { name: 'ZoneZarazAnalyticsTrackAdaptiveGroupsOrderBy'; enumValues: 'browserName_ASC' | 'browserName_DESC' | 'cityRegion_ASC' | 'cityRegion_DESC' | 'clientId_ASC' | 'clientId_DESC' | 'colors_ASC' | 'colors_DESC' | 'count_ASC' | 'count_DESC' | 'country_ASC' | 'country_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'deviceModel_ASC' | 'deviceModel_DESC' | 'deviceType_ASC' | 'deviceType_DESC' | 'deviceVendor_ASC' | 'deviceVendor_DESC' | 'ip_ASC' | 'ip_DESC' | 'language_ASC' | 'language_DESC' | 'osName_ASC' | 'osName_DESC' | 'osVersion_ASC' | 'osVersion_DESC' | 'pageTitle_ASC' | 'pageTitle_DESC' | 'resolution_ASC' | 'resolution_DESC' | 'sessionId_ASC' | 'sessionId_DESC' | 'timezoneOffset_ASC' | 'timezoneOffset_DESC' | 'trackData_ASC' | 'trackData_DESC' | 'trackName_ASC' | 'trackName_DESC' | 'trafficSrc_ASC' | 'trafficSrc_DESC' | 'uaObj_ASC' | 'uaObj_DESC' | 'ua_ASC' | 'ua_DESC' | 'uniq_clientIdCount_ASC' | 'uniq_clientIdCount_DESC' | 'uniq_sessionIdCount_ASC' | 'uniq_sessionIdCount_DESC' | 'urlParams_ASC' | 'urlParams_DESC' | 'urlPath_ASC' | 'urlPath_DESC' | 'viewport_ASC' | 'viewport_DESC'; }; + 'ZoneZarazAnalyticsTrackAdaptiveGroupsUniq': { kind: 'OBJECT'; name: 'ZoneZarazAnalyticsTrackAdaptiveGroupsUniq'; fields: { 'clientIdCount': { name: 'clientIdCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'sessionIdCount': { name: 'sessionIdCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'ZoneZarazAnalyticsTrackTrafficSourcesAdaptiveGroups': { kind: 'OBJECT'; name: 'ZoneZarazAnalyticsTrackTrafficSourcesAdaptiveGroups'; fields: { 'avg': { name: 'avg'; type: { kind: 'OBJECT'; name: 'ZoneZarazAnalyticsTrackTrafficSourcesAdaptiveGroupsAvg'; ofType: null; } }; 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneZarazAnalyticsTrackTrafficSourcesAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'ZoneZarazAnalyticsTrackTrafficSourcesAdaptiveGroupsDimensions'; ofType: null; } }; 'uniq': { name: 'uniq'; type: { kind: 'OBJECT'; name: 'ZoneZarazAnalyticsTrackTrafficSourcesAdaptiveGroupsUniq'; ofType: null; } }; }; }; + 'ZoneZarazAnalyticsTrackTrafficSourcesAdaptiveGroupsAvg': { kind: 'OBJECT'; name: 'ZoneZarazAnalyticsTrackTrafficSourcesAdaptiveGroupsAvg'; fields: { 'sessionDuration': { name: 'sessionDuration'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'ZoneZarazAnalyticsTrackTrafficSourcesAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'ZoneZarazAnalyticsTrackTrafficSourcesAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'ZoneZarazAnalyticsTrackTrafficSourcesAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'ZoneZarazAnalyticsTrackTrafficSourcesAdaptiveGroupsDimensions'; fields: { 'cityRegion': { name: 'cityRegion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientId': { name: 'clientId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'country': { name: 'country'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'duration': { name: 'duration'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'exitPage': { name: 'exitPage'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'firstTrafficSrc': { name: 'firstTrafficSrc'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'landingPage': { name: 'landingPage'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sessionEnd': { name: 'sessionEnd'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'sessionEndFifteenMinutes': { name: 'sessionEndFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'sessionEndFiveMinutes': { name: 'sessionEndFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'sessionEndHour': { name: 'sessionEndHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'sessionEndMinute': { name: 'sessionEndMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'sessionId': { name: 'sessionId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sessionStart': { name: 'sessionStart'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'sessionStartFifteenMinutes': { name: 'sessionStartFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'sessionStartFiveMinutes': { name: 'sessionStartFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'sessionStartHour': { name: 'sessionStartHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'sessionStartMinute': { name: 'sessionStartMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'tracks': { name: 'tracks'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; }; }; + 'ZoneZarazAnalyticsTrackTrafficSourcesAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'ZoneZarazAnalyticsTrackTrafficSourcesAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneZarazAnalyticsTrackTrafficSourcesAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneZarazAnalyticsTrackTrafficSourcesAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'cityRegion'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cityRegion_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cityRegion_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cityRegion_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'cityRegion_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cityRegion_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cityRegion_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cityRegion_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cityRegion_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'cityRegion_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'country'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'country_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'country_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'country_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'country_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'country_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'country_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'country_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'country_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'country_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'duration'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'duration_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'duration_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'duration_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'duration_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'duration_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'duration_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'duration_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'exitPage'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'exitPage_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'exitPage_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'exitPage_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'exitPage_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'exitPage_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'exitPage_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'exitPage_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'exitPage_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'exitPage_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'firstTrafficSrc'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'firstTrafficSrc_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'firstTrafficSrc_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'firstTrafficSrc_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'firstTrafficSrc_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'firstTrafficSrc_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'firstTrafficSrc_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'firstTrafficSrc_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'firstTrafficSrc_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'firstTrafficSrc_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'landingPage'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'landingPage_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'landingPage_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'landingPage_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'landingPage_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'landingPage_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'landingPage_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'landingPage_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'landingPage_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'landingPage_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionEnd'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'sessionEndFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionEndFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionEndFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionEndFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionEndFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionEndFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionEndFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionEndFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionEndFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionEndFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionEndFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionEndFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionEndFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionEndFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionEndFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionEndFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionEndHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionEndHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionEndHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionEndHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionEndHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionEndHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionEndHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionEndHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionEndMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionEndMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionEndMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionEndMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionEndMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionEndMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionEndMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionEndMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionEnd_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'sessionEnd_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'sessionEnd_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionEnd_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'sessionEnd_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'sessionEnd_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'sessionEnd_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionStart'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'sessionStartFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionStartFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionStartFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionStartFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionStartFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionStartFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionStartFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionStartFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionStartFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionStartFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionStartFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionStartFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionStartFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionStartFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionStartFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionStartFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionStartHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionStartHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionStartHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionStartHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionStartHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionStartHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionStartHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionStartHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionStartMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionStartMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionStartMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionStartMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionStartMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionStartMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionStartMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionStartMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionStart_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'sessionStart_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'sessionStart_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionStart_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'sessionStart_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'sessionStart_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'sessionStart_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'tracks_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'tracks_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tracks_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'tracks_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'tracks_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'ZoneZarazAnalyticsTrackTrafficSourcesAdaptiveGroupsOrderBy': { name: 'ZoneZarazAnalyticsTrackTrafficSourcesAdaptiveGroupsOrderBy'; enumValues: 'avg_sessionDuration_ASC' | 'avg_sessionDuration_DESC' | 'cityRegion_ASC' | 'cityRegion_DESC' | 'clientId_ASC' | 'clientId_DESC' | 'count_ASC' | 'count_DESC' | 'country_ASC' | 'country_DESC' | 'duration_ASC' | 'duration_DESC' | 'exitPage_ASC' | 'exitPage_DESC' | 'firstTrafficSrc_ASC' | 'firstTrafficSrc_DESC' | 'landingPage_ASC' | 'landingPage_DESC' | 'sessionEndFifteenMinutes_ASC' | 'sessionEndFifteenMinutes_DESC' | 'sessionEndFiveMinutes_ASC' | 'sessionEndFiveMinutes_DESC' | 'sessionEndHour_ASC' | 'sessionEndHour_DESC' | 'sessionEndMinute_ASC' | 'sessionEndMinute_DESC' | 'sessionEnd_ASC' | 'sessionEnd_DESC' | 'sessionId_ASC' | 'sessionId_DESC' | 'sessionStartFifteenMinutes_ASC' | 'sessionStartFifteenMinutes_DESC' | 'sessionStartFiveMinutes_ASC' | 'sessionStartFiveMinutes_DESC' | 'sessionStartHour_ASC' | 'sessionStartHour_DESC' | 'sessionStartMinute_ASC' | 'sessionStartMinute_DESC' | 'sessionStart_ASC' | 'sessionStart_DESC' | 'tracks_ASC' | 'tracks_DESC' | 'uniq_clientIdCount_ASC' | 'uniq_clientIdCount_DESC' | 'uniq_sessionIdCount_ASC' | 'uniq_sessionIdCount_DESC'; }; + 'ZoneZarazAnalyticsTrackTrafficSourcesAdaptiveGroupsUniq': { kind: 'OBJECT'; name: 'ZoneZarazAnalyticsTrackTrafficSourcesAdaptiveGroupsUniq'; fields: { 'clientIdCount': { name: 'clientIdCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'sessionIdCount': { name: 'sessionIdCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'ZoneZarazAnalyticsTriggersAdaptiveGroups': { kind: 'OBJECT'; name: 'ZoneZarazAnalyticsTriggersAdaptiveGroups'; fields: { 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneZarazAnalyticsTriggersAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'ZoneZarazAnalyticsTriggersAdaptiveGroupsDimensions'; ofType: null; } }; 'uniq': { name: 'uniq'; type: { kind: 'OBJECT'; name: 'ZoneZarazAnalyticsTriggersAdaptiveGroupsUniq'; ofType: null; } }; }; }; + 'ZoneZarazAnalyticsTriggersAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'ZoneZarazAnalyticsTriggersAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'ZoneZarazAnalyticsTriggersAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'ZoneZarazAnalyticsTriggersAdaptiveGroupsDimensions'; fields: { 'browserName': { name: 'browserName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'cityRegion': { name: 'cityRegion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientId': { name: 'clientId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'colors': { name: 'colors'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'country': { name: 'country'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'deviceModel': { name: 'deviceModel'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'deviceType': { name: 'deviceType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'deviceVendor': { name: 'deviceVendor'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ip': { name: 'ip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'language': { name: 'language'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'osName': { name: 'osName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'osVersion': { name: 'osVersion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'pageTitle': { name: 'pageTitle'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'resolution': { name: 'resolution'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'sessionId': { name: 'sessionId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'timezoneOffset': { name: 'timezoneOffset'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int32'; ofType: null; }; } }; 'trafficSrc': { name: 'trafficSrc'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'triggerName': { name: 'triggerName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'ua': { name: 'ua'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'uaObj': { name: 'uaObj'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'urlParams': { name: 'urlParams'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'urlPath': { name: 'urlPath'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'viewport': { name: 'viewport'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'ZoneZarazAnalyticsTriggersAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'ZoneZarazAnalyticsTriggersAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneZarazAnalyticsTriggersAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneZarazAnalyticsTriggersAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'browserName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'browserName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'browserName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'browserName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'browserName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'browserName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'browserName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'browserName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'browserName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'browserName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cityRegion'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cityRegion_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cityRegion_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cityRegion_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'cityRegion_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cityRegion_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cityRegion_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cityRegion_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cityRegion_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'cityRegion_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'colors'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'colors_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'colors_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'colors_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'colors_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'colors_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'colors_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'colors_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'country'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'country_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'country_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'country_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'country_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'country_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'country_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'country_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'country_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'country_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceModel'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceModel_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceModel_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceModel_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceModel_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceModel_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceModel_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceModel_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceModel_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceModel_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceType_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceType_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceType_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceVendor'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceVendor_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceVendor_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceVendor_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceVendor_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceVendor_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceVendor_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceVendor_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'deviceVendor_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'deviceVendor_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ip'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ip_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ip_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ip_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ip_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ip_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ip_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ip_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ip_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ip_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'language'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'language_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'language_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'language_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'language_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'language_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'language_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'language_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'language_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'language_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'osName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'osName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'osName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'osName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'osName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'osName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'osName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'osName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'osName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'osName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'osVersion'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'osVersion_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'osVersion_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'osVersion_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'osVersion_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'osVersion_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'osVersion_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'osVersion_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'osVersion_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'osVersion_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pageTitle'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pageTitle_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pageTitle_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pageTitle_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'pageTitle_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pageTitle_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pageTitle_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pageTitle_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'pageTitle_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'pageTitle_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'resolution'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'resolution_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'resolution_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'resolution_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'resolution_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'resolution_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'resolution_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'resolution_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'timezoneOffset'; type: { kind: 'SCALAR'; name: 'int32'; ofType: null; }; defaultValue: null }, { name: 'timezoneOffset_geq'; type: { kind: 'SCALAR'; name: 'int32'; ofType: null; }; defaultValue: null }, { name: 'timezoneOffset_gt'; type: { kind: 'SCALAR'; name: 'int32'; ofType: null; }; defaultValue: null }, { name: 'timezoneOffset_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int32'; ofType: null; }; }; }; defaultValue: null }, { name: 'timezoneOffset_leq'; type: { kind: 'SCALAR'; name: 'int32'; ofType: null; }; defaultValue: null }, { name: 'timezoneOffset_lt'; type: { kind: 'SCALAR'; name: 'int32'; ofType: null; }; defaultValue: null }, { name: 'timezoneOffset_neq'; type: { kind: 'SCALAR'; name: 'int32'; ofType: null; }; defaultValue: null }, { name: 'timezoneOffset_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'int32'; ofType: null; }; }; }; defaultValue: null }, { name: 'trafficSrc'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trafficSrc_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trafficSrc_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trafficSrc_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'trafficSrc_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trafficSrc_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trafficSrc_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trafficSrc_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trafficSrc_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'trafficSrc_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'triggerName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'triggerName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'triggerName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'triggerName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'triggerName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'triggerName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'triggerName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'triggerName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'triggerName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'triggerName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ua'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uaObj'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uaObj_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uaObj_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uaObj_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'uaObj_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uaObj_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uaObj_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uaObj_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'uaObj_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'uaObj_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ua_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ua_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ua_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ua_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ua_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ua_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ua_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'ua_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'ua_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlParams'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlParams_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlParams_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlParams_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'urlParams_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlParams_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlParams_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlParams_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlParams_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'urlParams_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlPath'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlPath_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlPath_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlPath_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'urlPath_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlPath_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlPath_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlPath_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlPath_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'urlPath_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'viewport'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'viewport_geq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'viewport_gt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'viewport_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }, { name: 'viewport_leq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'viewport_lt'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'viewport_neq'; type: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; defaultValue: null }, { name: 'viewport_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; }; }; defaultValue: null }]; }; + 'ZoneZarazAnalyticsTriggersAdaptiveGroupsOrderBy': { name: 'ZoneZarazAnalyticsTriggersAdaptiveGroupsOrderBy'; enumValues: 'browserName_ASC' | 'browserName_DESC' | 'cityRegion_ASC' | 'cityRegion_DESC' | 'clientId_ASC' | 'clientId_DESC' | 'colors_ASC' | 'colors_DESC' | 'count_ASC' | 'count_DESC' | 'country_ASC' | 'country_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'deviceModel_ASC' | 'deviceModel_DESC' | 'deviceType_ASC' | 'deviceType_DESC' | 'deviceVendor_ASC' | 'deviceVendor_DESC' | 'ip_ASC' | 'ip_DESC' | 'language_ASC' | 'language_DESC' | 'osName_ASC' | 'osName_DESC' | 'osVersion_ASC' | 'osVersion_DESC' | 'pageTitle_ASC' | 'pageTitle_DESC' | 'resolution_ASC' | 'resolution_DESC' | 'sessionId_ASC' | 'sessionId_DESC' | 'timezoneOffset_ASC' | 'timezoneOffset_DESC' | 'trafficSrc_ASC' | 'trafficSrc_DESC' | 'triggerName_ASC' | 'triggerName_DESC' | 'uaObj_ASC' | 'uaObj_DESC' | 'ua_ASC' | 'ua_DESC' | 'uniq_clientIdCount_ASC' | 'uniq_clientIdCount_DESC' | 'uniq_sessionIdCount_ASC' | 'uniq_sessionIdCount_DESC' | 'urlParams_ASC' | 'urlParams_DESC' | 'urlPath_ASC' | 'urlPath_DESC' | 'viewport_ASC' | 'viewport_DESC'; }; + 'ZoneZarazAnalyticsTriggersAdaptiveGroupsUniq': { kind: 'OBJECT'; name: 'ZoneZarazAnalyticsTriggersAdaptiveGroupsUniq'; fields: { 'clientIdCount': { name: 'clientIdCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'sessionIdCount': { name: 'sessionIdCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'ZoneZarazAnalyticsTriggersTrafficSourcesAdaptiveGroups': { kind: 'OBJECT'; name: 'ZoneZarazAnalyticsTriggersTrafficSourcesAdaptiveGroups'; fields: { 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneZarazAnalyticsTriggersTrafficSourcesAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'ZoneZarazAnalyticsTriggersTrafficSourcesAdaptiveGroupsDimensions'; ofType: null; } }; 'uniq': { name: 'uniq'; type: { kind: 'OBJECT'; name: 'ZoneZarazAnalyticsTriggersTrafficSourcesAdaptiveGroupsUniq'; ofType: null; } }; }; }; + 'ZoneZarazAnalyticsTriggersTrafficSourcesAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'ZoneZarazAnalyticsTriggersTrafficSourcesAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'ZoneZarazAnalyticsTriggersTrafficSourcesAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'ZoneZarazAnalyticsTriggersTrafficSourcesAdaptiveGroupsDimensions'; fields: { 'cityRegion': { name: 'cityRegion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'clientId': { name: 'clientId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'country': { name: 'country'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'firstTrafficSrc': { name: 'firstTrafficSrc'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sessionEnd': { name: 'sessionEnd'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'sessionEndFifteenMinutes': { name: 'sessionEndFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'sessionEndFiveMinutes': { name: 'sessionEndFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'sessionEndHour': { name: 'sessionEndHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'sessionEndMinute': { name: 'sessionEndMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'sessionId': { name: 'sessionId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'sessionStart': { name: 'sessionStart'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'sessionStartFifteenMinutes': { name: 'sessionStartFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'sessionStartFiveMinutes': { name: 'sessionStartFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'sessionStartHour': { name: 'sessionStartHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'sessionStartMinute': { name: 'sessionStartMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'triggers': { name: 'triggers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; } }; }; }; + 'ZoneZarazAnalyticsTriggersTrafficSourcesAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'ZoneZarazAnalyticsTriggersTrafficSourcesAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneZarazAnalyticsTriggersTrafficSourcesAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneZarazAnalyticsTriggersTrafficSourcesAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'cityRegion'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cityRegion_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cityRegion_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cityRegion_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'cityRegion_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cityRegion_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cityRegion_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cityRegion_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'cityRegion_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'cityRegion_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'clientId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'clientId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'country'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'country_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'country_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'country_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'country_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'country_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'country_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'country_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'country_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'country_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'firstTrafficSrc'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'firstTrafficSrc_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'firstTrafficSrc_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'firstTrafficSrc_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'firstTrafficSrc_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'firstTrafficSrc_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'firstTrafficSrc_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'firstTrafficSrc_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'firstTrafficSrc_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'firstTrafficSrc_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionEnd'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'sessionEndFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionEndFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionEndFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionEndFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionEndFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionEndFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionEndFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionEndFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionEndFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionEndFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionEndFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionEndFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionEndFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionEndFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionEndFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionEndFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionEndHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionEndHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionEndHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionEndHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionEndHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionEndHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionEndHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionEndHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionEndMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionEndMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionEndMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionEndMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionEndMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionEndMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionEndMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionEndMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionEnd_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'sessionEnd_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'sessionEnd_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionEnd_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'sessionEnd_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'sessionEnd_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'sessionEnd_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionId'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionId_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionId_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionId_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'sessionStart'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'sessionStartFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionStartFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionStartFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionStartFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionStartFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionStartFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionStartFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionStartFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionStartFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionStartFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionStartFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionStartFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionStartFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionStartFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionStartFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionStartFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionStartHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionStartHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionStartHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionStartHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionStartHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionStartHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionStartHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionStartHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionStartMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionStartMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionStartMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionStartMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionStartMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionStartMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionStartMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'sessionStartMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionStart_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'sessionStart_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'sessionStart_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'sessionStart_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'sessionStart_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'sessionStart_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'sessionStart_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'triggers_has'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'triggers_hasall'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'triggers_hasany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'triggers_isempty'; type: { kind: 'SCALAR'; name: 'bool'; ofType: null; }; defaultValue: null }, { name: 'triggers_nothas'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'ZoneZarazAnalyticsTriggersTrafficSourcesAdaptiveGroupsOrderBy': { name: 'ZoneZarazAnalyticsTriggersTrafficSourcesAdaptiveGroupsOrderBy'; enumValues: 'cityRegion_ASC' | 'cityRegion_DESC' | 'clientId_ASC' | 'clientId_DESC' | 'count_ASC' | 'count_DESC' | 'country_ASC' | 'country_DESC' | 'firstTrafficSrc_ASC' | 'firstTrafficSrc_DESC' | 'sessionEndFifteenMinutes_ASC' | 'sessionEndFifteenMinutes_DESC' | 'sessionEndFiveMinutes_ASC' | 'sessionEndFiveMinutes_DESC' | 'sessionEndHour_ASC' | 'sessionEndHour_DESC' | 'sessionEndMinute_ASC' | 'sessionEndMinute_DESC' | 'sessionEnd_ASC' | 'sessionEnd_DESC' | 'sessionId_ASC' | 'sessionId_DESC' | 'sessionStartFifteenMinutes_ASC' | 'sessionStartFifteenMinutes_DESC' | 'sessionStartFiveMinutes_ASC' | 'sessionStartFiveMinutes_DESC' | 'sessionStartHour_ASC' | 'sessionStartHour_DESC' | 'sessionStartMinute_ASC' | 'sessionStartMinute_DESC' | 'sessionStart_ASC' | 'sessionStart_DESC' | 'triggers_ASC' | 'triggers_DESC' | 'uniq_clientIdCount_ASC' | 'uniq_clientIdCount_DESC' | 'uniq_sessionIdCount_ASC' | 'uniq_sessionIdCount_DESC'; }; + 'ZoneZarazAnalyticsTriggersTrafficSourcesAdaptiveGroupsUniq': { kind: 'OBJECT'; name: 'ZoneZarazAnalyticsTriggersTrafficSourcesAdaptiveGroupsUniq'; fields: { 'clientIdCount': { name: 'clientIdCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'sessionIdCount': { name: 'sessionIdCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; }; }; + 'ZoneZarazFetchAdaptiveGroups': { kind: 'OBJECT'; name: 'ZoneZarazFetchAdaptiveGroups'; fields: { 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneZarazFetchAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'ZoneZarazFetchAdaptiveGroupsDimensions'; ofType: null; } }; }; }; + 'ZoneZarazFetchAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'ZoneZarazFetchAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'ZoneZarazFetchAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'ZoneZarazFetchAdaptiveGroupsDimensions'; fields: { 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'status': { name: 'status'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; } }; 'url': { name: 'url'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'ZoneZarazFetchAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'ZoneZarazFetchAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneZarazFetchAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneZarazFetchAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'status'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'status_geq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'status_gt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'status_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'status_leq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'status_lt'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'status_neq'; type: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; defaultValue: null }, { name: 'status_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint32'; ofType: null; }; }; }; defaultValue: null }, { name: 'url'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'url_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'url_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'url_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'url_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'url_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'url_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'url_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'url_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'url_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'ZoneZarazFetchAdaptiveGroupsOrderBy': { name: 'ZoneZarazFetchAdaptiveGroupsOrderBy'; enumValues: 'count_ASC' | 'count_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'status_ASC' | 'status_DESC' | 'url_ASC' | 'url_DESC'; }; + 'ZoneZarazTrackAdaptiveGroups': { kind: 'OBJECT'; name: 'ZoneZarazTrackAdaptiveGroups'; fields: { 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneZarazTrackAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'ZoneZarazTrackAdaptiveGroupsDimensions'; ofType: null; } }; }; }; + 'ZoneZarazTrackAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'ZoneZarazTrackAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'ZoneZarazTrackAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'ZoneZarazTrackAdaptiveGroupsDimensions'; fields: { 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'trackName': { name: 'trackName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'urlPath': { name: 'urlPath'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'ZoneZarazTrackAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'ZoneZarazTrackAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneZarazTrackAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneZarazTrackAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'trackName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'trackName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'trackName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'trackName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlPath'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlPath_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlPath_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlPath_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'urlPath_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlPath_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlPath_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlPath_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'urlPath_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'urlPath_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'ZoneZarazTrackAdaptiveGroupsOrderBy': { name: 'ZoneZarazTrackAdaptiveGroupsOrderBy'; enumValues: 'count_ASC' | 'count_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'trackName_ASC' | 'trackName_DESC' | 'urlPath_ASC' | 'urlPath_DESC'; }; + 'ZoneZarazTriggersAdaptiveGroups': { kind: 'OBJECT'; name: 'ZoneZarazTriggersAdaptiveGroups'; fields: { 'confidence': { name: 'confidence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneZarazTriggersAdaptiveGroupsConfidence'; ofType: null; }; } }; 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'dimensions': { name: 'dimensions'; type: { kind: 'OBJECT'; name: 'ZoneZarazTriggersAdaptiveGroupsDimensions'; ofType: null; } }; }; }; + 'ZoneZarazTriggersAdaptiveGroupsConfidence': { kind: 'OBJECT'; name: 'ZoneZarazTriggersAdaptiveGroupsConfidence'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Confidence'; ofType: null; }; } }; 'level': { name: 'level'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'float64'; ofType: null; }; } }; }; }; + 'ZoneZarazTriggersAdaptiveGroupsDimensions': { kind: 'OBJECT'; name: 'ZoneZarazTriggersAdaptiveGroupsDimensions'; fields: { 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; } }; 'datetimeFifteenMinutes': { name: 'datetimeFifteenMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeFiveMinutes': { name: 'datetimeFiveMinutes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeHour': { name: 'datetimeHour'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'datetimeMinute': { name: 'datetimeMinute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; } }; 'triggerName': { name: 'triggerName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; + 'ZoneZarazTriggersAdaptiveGroupsFilter_InputObject': { kind: 'INPUT_OBJECT'; name: 'ZoneZarazTriggersAdaptiveGroupsFilter_InputObject'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneZarazTriggersAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ZoneZarazTriggersAdaptiveGroupsFilter_InputObject'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_geq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_leq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_neq'; type: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; defaultValue: null }, { name: 'date_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Date'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFifteenMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeFiveMinutes_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeFiveMinutes_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeHour_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeHour_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_geq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_gt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'datetimeMinute_leq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_lt'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_neq'; type: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; defaultValue: null }, { name: 'datetimeMinute_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Time'; ofType: null; }; }; }; defaultValue: null }, { name: 'triggerName'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'triggerName_geq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'triggerName_gt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'triggerName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'triggerName_leq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'triggerName_like'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'triggerName_lt'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'triggerName_neq'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }, { name: 'triggerName_notin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; }; }; defaultValue: null }, { name: 'triggerName_notlike'; type: { kind: 'SCALAR'; name: 'string'; ofType: null; }; defaultValue: null }]; }; + 'ZoneZarazTriggersAdaptiveGroupsOrderBy': { name: 'ZoneZarazTriggersAdaptiveGroupsOrderBy'; enumValues: 'count_ASC' | 'count_DESC' | 'date_ASC' | 'date_DESC' | 'datetimeFifteenMinutes_ASC' | 'datetimeFifteenMinutes_DESC' | 'datetimeFiveMinutes_ASC' | 'datetimeFiveMinutes_DESC' | 'datetimeHour_ASC' | 'datetimeHour_DESC' | 'datetimeMinute_ASC' | 'datetimeMinute_DESC' | 'triggerName_ASC' | 'triggerName_DESC'; }; + 'account': { kind: 'OBJECT'; name: 'account'; fields: { 'MagicWANConnectorMetricsAdaptiveGroups': { name: 'MagicWANConnectorMetricsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountMagicWANConnectorMetricsAdaptiveGroups'; ofType: null; }; }; }; } }; 'accessLoginRequestsAdaptiveGroups': { name: 'accessLoginRequestsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountAccessLoginRequestsAdaptiveGroups'; ofType: null; }; }; }; } }; 'accountTag': { name: 'accountTag'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'advancedDnsProtectionNetworkAnalyticsAdaptiveGroups': { name: 'advancedDnsProtectionNetworkAnalyticsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountAdvancedDnsProtectionNetworkAnalyticsAdaptiveGroups'; ofType: null; }; }; }; } }; 'advancedTcpProtectionNetworkAnalyticsAdaptiveGroups': { name: 'advancedTcpProtectionNetworkAnalyticsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountAdvancedTcpProtectionNetworkAnalyticsAdaptiveGroups'; ofType: null; }; }; }; } }; 'aegisIpUtilizationAdaptiveGroups': { name: 'aegisIpUtilizationAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountAegisIpUtilizationAdaptiveGroups'; ofType: null; }; }; }; } }; 'aiGatewayCacheAdaptiveGroups': { name: 'aiGatewayCacheAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountAiGatewayCacheAdaptiveGroups'; ofType: null; }; }; }; } }; 'aiGatewayErrorsAdaptiveGroups': { name: 'aiGatewayErrorsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountAiGatewayErrorsAdaptiveGroups'; ofType: null; }; }; }; } }; 'aiGatewayRequestsAdaptiveGroups': { name: 'aiGatewayRequestsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountAiGatewayRequestsAdaptiveGroups'; ofType: null; }; }; }; } }; 'aiGatewaySizeAdaptiveGroups': { name: 'aiGatewaySizeAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountAiGatewaySizeAdaptiveGroups'; ofType: null; }; }; }; } }; 'aiInferenceAdaptive': { name: 'aiInferenceAdaptive'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountAiInferenceAdaptive'; ofType: null; }; }; }; } }; 'aiInferenceAdaptiveGroups': { name: 'aiInferenceAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountAiInferenceAdaptiveGroups'; ofType: null; }; }; }; } }; 'autoRAGConfigAPIAdaptiveGroups': { name: 'autoRAGConfigAPIAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountAutoRAGConfigAPIAdaptiveGroups'; ofType: null; }; }; }; } }; 'autoRAGEngineAdaptiveGroups': { name: 'autoRAGEngineAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountAutoRAGEngineAdaptiveGroups'; ofType: null; }; }; }; } }; 'browserIsolationSessionsAdaptiveGroups': { name: 'browserIsolationSessionsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountBrowserIsolationSessionsAdaptiveGroups'; ofType: null; }; }; }; } }; 'browserIsolationUserActionsAdaptiveGroups': { name: 'browserIsolationUserActionsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountBrowserIsolationUserActionsAdaptiveGroups'; ofType: null; }; }; }; } }; 'browserRenderingApiAdaptiveGroups': { name: 'browserRenderingApiAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountBrowserRenderingApiAdaptiveGroups'; ofType: null; }; }; }; } }; 'browserRenderingBindingSessionsAdaptiveGroups': { name: 'browserRenderingBindingSessionsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountBrowserRenderingBindingSessionsAdaptiveGroups'; ofType: null; }; }; }; } }; 'browserRenderingBrowserTimeUsageAdaptiveGroups': { name: 'browserRenderingBrowserTimeUsageAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountBrowserRenderingBrowserTimeUsageAdaptiveGroups'; ofType: null; }; }; }; } }; 'browserRenderingEventsAdaptive': { name: 'browserRenderingEventsAdaptive'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountBrowserRenderingEventsAdaptive'; ofType: null; }; }; }; } }; 'browserRenderingEventsAdaptiveGroups': { name: 'browserRenderingEventsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountBrowserRenderingEventsAdaptiveGroups'; ofType: null; }; }; }; } }; 'callsStatusAdaptive': { name: 'callsStatusAdaptive'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountCallsStatusAdaptive'; ofType: null; }; }; }; } }; 'callsTurnUsageAdaptiveGroups': { name: 'callsTurnUsageAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountCallsTurnUsageAdaptiveGroups'; ofType: null; }; }; }; } }; 'callsUsageAdaptiveGroups': { name: 'callsUsageAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountCallsUsageAdaptiveGroups'; ofType: null; }; }; }; } }; 'cdnNetworkAnalyticsAdaptiveGroups': { name: 'cdnNetworkAnalyticsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountCdnNetworkAnalyticsAdaptiveGroups'; ofType: null; }; }; }; } }; 'cloudchamberMetricsAdaptiveGroups': { name: 'cloudchamberMetricsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountCloudchamberMetricsAdaptiveGroups'; ofType: null; }; }; }; } }; 'cloudflareTunnelsAnalyticsAdaptiveGroups': { name: 'cloudflareTunnelsAnalyticsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountCloudflareTunnelsAnalyticsAdaptiveGroups'; ofType: null; }; }; }; } }; 'containersMetricsAdaptiveGroups': { name: 'containersMetricsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountContainersMetricsAdaptiveGroups'; ofType: null; }; }; }; } }; 'd1AnalyticsAdaptiveGroups': { name: 'd1AnalyticsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountD1AnalyticsAdaptiveGroups'; ofType: null; }; }; }; } }; 'd1QueriesAdaptiveGroups': { name: 'd1QueriesAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountD1QueriesAdaptiveGroups'; ofType: null; }; }; }; } }; 'd1StorageAdaptiveGroups': { name: 'd1StorageAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountD1StorageAdaptiveGroups'; ofType: null; }; }; }; } }; 'dnsAnalyticsAdaptive': { name: 'dnsAnalyticsAdaptive'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountDnsAnalyticsAdaptive'; ofType: null; }; }; }; } }; 'dnsAnalyticsAdaptiveGroups': { name: 'dnsAnalyticsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountDnsAnalyticsAdaptiveGroups'; ofType: null; }; }; }; } }; 'dnsFirewallAnalyticsAdaptive': { name: 'dnsFirewallAnalyticsAdaptive'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountDnsFirewallAnalyticsAdaptive'; ofType: null; }; }; }; } }; 'dnsFirewallAnalyticsAdaptiveGroups': { name: 'dnsFirewallAnalyticsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountDnsFirewallAnalyticsAdaptiveGroups'; ofType: null; }; }; }; } }; 'dosdAttackAnalyticsGroups': { name: 'dosdAttackAnalyticsGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountDosdAttackAnalyticsGroups'; ofType: null; }; }; }; } }; 'dosdNetworkAnalyticsAdaptiveGroups': { name: 'dosdNetworkAnalyticsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountDosdNetworkAnalyticsAdaptiveGroups'; ofType: null; }; }; }; } }; 'durableObjectsInvocationsAdaptiveGroups': { name: 'durableObjectsInvocationsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountDurableObjectsInvocationsAdaptiveGroups'; ofType: null; }; }; }; } }; 'durableObjectsPeriodicGroups': { name: 'durableObjectsPeriodicGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountDurableObjectsPeriodicGroups'; ofType: null; }; }; }; } }; 'durableObjectsSqlStorageGroups': { name: 'durableObjectsSqlStorageGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountDurableObjectsSqlStorageGroups'; ofType: null; }; }; }; } }; 'durableObjectsStorageGroups': { name: 'durableObjectsStorageGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountDurableObjectsStorageGroups'; ofType: null; }; }; }; } }; 'durableObjectsSubrequestsAdaptiveGroups': { name: 'durableObjectsSubrequestsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountDurableObjectsSubrequestsAdaptiveGroups'; ofType: null; }; }; }; } }; 'fbmAttackAnalyticsGroups': { name: 'fbmAttackAnalyticsGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountFbmAttackAnalyticsGroups'; ofType: null; }; }; }; } }; 'firewallEventsAdaptive': { name: 'firewallEventsAdaptive'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountFirewallEventsAdaptive'; ofType: null; }; }; }; } }; 'firewallEventsAdaptiveGroups': { name: 'firewallEventsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountFirewallEventsAdaptiveGroups'; ofType: null; }; }; }; } }; 'flowtrackdNetworkAnalyticsAdaptiveGroups': { name: 'flowtrackdNetworkAnalyticsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountFlowtrackdNetworkAnalyticsAdaptiveGroups'; ofType: null; }; }; }; } }; 'gatewayL4DownstreamSessionsAdaptiveGroups': { name: 'gatewayL4DownstreamSessionsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountGatewayL4DownstreamSessionsAdaptiveGroups'; ofType: null; }; }; }; } }; 'gatewayL4SessionsAdaptiveGroups': { name: 'gatewayL4SessionsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountGatewayL4SessionsAdaptiveGroups'; ofType: null; }; }; }; } }; 'gatewayL4UpstreamSessionsAdaptiveGroups': { name: 'gatewayL4UpstreamSessionsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountGatewayL4UpstreamSessionsAdaptiveGroups'; ofType: null; }; }; }; } }; 'gatewayL7RequestsAdaptiveGroups': { name: 'gatewayL7RequestsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountGatewayL7RequestsAdaptiveGroups'; ofType: null; }; }; }; } }; 'gatewayResolverByCategoryAdaptiveGroups': { name: 'gatewayResolverByCategoryAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountGatewayResolverByCategoryAdaptiveGroups'; ofType: null; }; }; }; } }; 'gatewayResolverByCustomResolverGroups': { name: 'gatewayResolverByCustomResolverGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountGatewayResolverByCustomResolverGroups'; ofType: null; }; }; }; } }; 'gatewayResolverByRuleExecutionPerformanceAdaptiveGroups': { name: 'gatewayResolverByRuleExecutionPerformanceAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountGatewayResolverByRuleExecutionPerformanceAdaptiveGroups'; ofType: null; }; }; }; } }; 'gatewayResolverQueriesAdaptiveGroups': { name: 'gatewayResolverQueriesAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountGatewayResolverQueriesAdaptiveGroups'; ofType: null; }; }; }; } }; 'httpRequests1dGroups': { name: 'httpRequests1dGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountHttpRequests1dGroups'; ofType: null; }; }; }; } }; 'httpRequests1hGroups': { name: 'httpRequests1hGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountHttpRequests1hGroups'; ofType: null; }; }; }; } }; 'httpRequests1mGroups': { name: 'httpRequests1mGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountHttpRequests1mGroups'; ofType: null; }; }; }; } }; 'httpRequestsAdaptive': { name: 'httpRequestsAdaptive'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountHttpRequestsAdaptive'; ofType: null; }; }; }; } }; 'httpRequestsAdaptiveGroups': { name: 'httpRequestsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountHttpRequestsAdaptiveGroups'; ofType: null; }; }; }; } }; 'httpRequestsOverviewAdaptiveGroups': { name: 'httpRequestsOverviewAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountHttpRequestsOverviewAdaptiveGroups'; ofType: null; }; }; }; } }; 'hyperdriveQueriesAdaptiveGroups': { name: 'hyperdriveQueriesAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountHyperdriveQueriesAdaptiveGroups'; ofType: null; }; }; }; } }; 'imagesRequestsAdaptiveGroups': { name: 'imagesRequestsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountImagesRequestsAdaptiveGroups'; ofType: null; }; }; }; } }; 'imagesUniqueTransformations': { name: 'imagesUniqueTransformations'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountImagesUniqueTransformations'; ofType: null; }; }; }; } }; 'imagesUniqueTransformationsAccumulatedSinceStartOfMonth': { name: 'imagesUniqueTransformationsAccumulatedSinceStartOfMonth'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountImagesUniqueTransformationsAccumulatedSinceStartOfMonth'; ofType: null; }; }; }; } }; 'kvOperationsAdaptiveGroups': { name: 'kvOperationsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountKvOperationsAdaptiveGroups'; ofType: null; }; }; }; } }; 'kvStorageAdaptiveGroups': { name: 'kvStorageAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountKvStorageAdaptiveGroups'; ofType: null; }; }; }; } }; 'liveInputEventsAdaptive': { name: 'liveInputEventsAdaptive'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountLiveInputEventsAdaptive'; ofType: null; }; }; }; } }; 'liveInputEventsAdaptiveGroups': { name: 'liveInputEventsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountLiveInputEventsAdaptiveGroups'; ofType: null; }; }; }; } }; 'logExplorerIngestionAdaptiveGroups': { name: 'logExplorerIngestionAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountLogExplorerIngestionAdaptiveGroups'; ofType: null; }; }; }; } }; 'logpushHealthAdaptiveGroups': { name: 'logpushHealthAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountLogpushHealthAdaptiveGroups'; ofType: null; }; }; }; } }; 'magicEndpointHealthCheckAdaptiveGroups': { name: 'magicEndpointHealthCheckAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountMagicEndpointHealthCheckAdaptiveGroups'; ofType: null; }; }; }; } }; 'magicFirewallNetworkAnalyticsAdaptiveGroups': { name: 'magicFirewallNetworkAnalyticsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountMagicFirewallNetworkAnalyticsAdaptiveGroups'; ofType: null; }; }; }; } }; 'magicFirewallRateLimitNetworkAnalyticsAdaptiveGroups': { name: 'magicFirewallRateLimitNetworkAnalyticsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountMagicFirewallRateLimitNetworkAnalyticsAdaptiveGroups'; ofType: null; }; }; }; } }; 'magicFirewallSamplesAdaptiveGroups': { name: 'magicFirewallSamplesAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountMagicFirewallSamplesAdaptiveGroups'; ofType: null; }; }; }; } }; 'magicIDPSNetworkAnalyticsAdaptiveGroups': { name: 'magicIDPSNetworkAnalyticsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountMagicIDPSNetworkAnalyticsAdaptiveGroups'; ofType: null; }; }; }; } }; 'magicTransitNetworkAnalyticsAdaptiveGroups': { name: 'magicTransitNetworkAnalyticsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountMagicTransitNetworkAnalyticsAdaptiveGroups'; ofType: null; }; }; }; } }; 'magicTransitTunnelHealthCheckSLOsAdaptiveGroups': { name: 'magicTransitTunnelHealthCheckSLOsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountMagicTransitTunnelHealthCheckSLOsAdaptiveGroups'; ofType: null; }; }; }; } }; 'magicTransitTunnelHealthChecksAdaptiveGroups': { name: 'magicTransitTunnelHealthChecksAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountMagicTransitTunnelHealthChecksAdaptiveGroups'; ofType: null; }; }; }; } }; 'magicTransitTunnelTrafficAdaptiveGroups': { name: 'magicTransitTunnelTrafficAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountMagicTransitTunnelTrafficAdaptiveGroups'; ofType: null; }; }; }; } }; 'mconnTelemetryEventsAdaptiveGroups': { name: 'mconnTelemetryEventsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountMconnTelemetryEventsAdaptiveGroups'; ofType: null; }; }; }; } }; 'mconnTelemetryEventsStagingAdaptiveGroups': { name: 'mconnTelemetryEventsStagingAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountMconnTelemetryEventsStagingAdaptiveGroups'; ofType: null; }; }; }; } }; 'mconnTelemetrySnapshotDhcpLeasesAdaptiveGroups': { name: 'mconnTelemetrySnapshotDhcpLeasesAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotDhcpLeasesAdaptiveGroups'; ofType: null; }; }; }; } }; 'mconnTelemetrySnapshotDhcpLeasesStagingAdaptiveGroups': { name: 'mconnTelemetrySnapshotDhcpLeasesStagingAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotDhcpLeasesStagingAdaptiveGroups'; ofType: null; }; }; }; } }; 'mconnTelemetrySnapshotDisksAdaptiveGroups': { name: 'mconnTelemetrySnapshotDisksAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotDisksAdaptiveGroups'; ofType: null; }; }; }; } }; 'mconnTelemetrySnapshotDisksStagingAdaptiveGroups': { name: 'mconnTelemetrySnapshotDisksStagingAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotDisksStagingAdaptiveGroups'; ofType: null; }; }; }; } }; 'mconnTelemetrySnapshotInterfaceAddressesAdaptiveGroups': { name: 'mconnTelemetrySnapshotInterfaceAddressesAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotInterfaceAddressesAdaptiveGroups'; ofType: null; }; }; }; } }; 'mconnTelemetrySnapshotInterfaceAddressesStagingAdaptiveGroups': { name: 'mconnTelemetrySnapshotInterfaceAddressesStagingAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotInterfaceAddressesStagingAdaptiveGroups'; ofType: null; }; }; }; } }; 'mconnTelemetrySnapshotInterfacesAdaptiveGroups': { name: 'mconnTelemetrySnapshotInterfacesAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotInterfacesAdaptiveGroups'; ofType: null; }; }; }; } }; 'mconnTelemetrySnapshotInterfacesStagingAdaptiveGroups': { name: 'mconnTelemetrySnapshotInterfacesStagingAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotInterfacesStagingAdaptiveGroups'; ofType: null; }; }; }; } }; 'mconnTelemetrySnapshotMountsAdaptiveGroups': { name: 'mconnTelemetrySnapshotMountsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotMountsAdaptiveGroups'; ofType: null; }; }; }; } }; 'mconnTelemetrySnapshotMountsStagingAdaptiveGroups': { name: 'mconnTelemetrySnapshotMountsStagingAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotMountsStagingAdaptiveGroups'; ofType: null; }; }; }; } }; 'mconnTelemetrySnapshotNetdevsAdaptiveGroups': { name: 'mconnTelemetrySnapshotNetdevsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotNetdevsAdaptiveGroups'; ofType: null; }; }; }; } }; 'mconnTelemetrySnapshotNetdevsStagingAdaptiveGroups': { name: 'mconnTelemetrySnapshotNetdevsStagingAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotNetdevsStagingAdaptiveGroups'; ofType: null; }; }; }; } }; 'mconnTelemetrySnapshotThermalsAdaptiveGroups': { name: 'mconnTelemetrySnapshotThermalsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotThermalsAdaptiveGroups'; ofType: null; }; }; }; } }; 'mconnTelemetrySnapshotThermalsStagingAdaptiveGroups': { name: 'mconnTelemetrySnapshotThermalsStagingAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotThermalsStagingAdaptiveGroups'; ofType: null; }; }; }; } }; 'mconnTelemetrySnapshotTunnelsAdaptiveGroups': { name: 'mconnTelemetrySnapshotTunnelsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotTunnelsAdaptiveGroups'; ofType: null; }; }; }; } }; 'mconnTelemetrySnapshotTunnelsStagingAdaptiveGroups': { name: 'mconnTelemetrySnapshotTunnelsStagingAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotTunnelsStagingAdaptiveGroups'; ofType: null; }; }; }; } }; 'mconnTelemetrySnapshotsAdaptiveGroups': { name: 'mconnTelemetrySnapshotsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotsAdaptiveGroups'; ofType: null; }; }; }; } }; 'mconnTelemetrySnapshotsStagingAdaptiveGroups': { name: 'mconnTelemetrySnapshotsStagingAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountMconnTelemetrySnapshotsStagingAdaptiveGroups'; ofType: null; }; }; }; } }; 'mediaUniqueTransformations': { name: 'mediaUniqueTransformations'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountMediaUniqueTransformations'; ofType: null; }; }; }; } }; 'mediaUniqueTransformationsAccumulatedSinceStartOfMonth': { name: 'mediaUniqueTransformationsAccumulatedSinceStartOfMonth'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountMediaUniqueTransformationsAccumulatedSinceStartOfMonth'; ofType: null; }; }; }; } }; 'mnmAWSVPCFlowDataAdaptiveGroups': { name: 'mnmAWSVPCFlowDataAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountMnmAWSVPCFlowDataAdaptiveGroups'; ofType: null; }; }; }; } }; 'mnmFlowDataAdaptiveGroups': { name: 'mnmFlowDataAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountMnmFlowDataAdaptiveGroups'; ofType: null; }; }; }; } }; 'nelReportsAdaptiveGroups': { name: 'nelReportsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountNelReportsAdaptiveGroups'; ofType: null; }; }; }; } }; 'ohttpMetricsAdaptive': { name: 'ohttpMetricsAdaptive'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountOhttpMetricsAdaptive'; ofType: null; }; }; }; } }; 'ohttpMetricsAdaptiveGroups': { name: 'ohttpMetricsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountOhttpMetricsAdaptiveGroups'; ofType: null; }; }; }; } }; 'pagesFunctionsInvocationsAdaptiveGroups': { name: 'pagesFunctionsInvocationsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountPagesFunctionsInvocationsAdaptiveGroups'; ofType: null; }; }; }; } }; 'pipelinesDeliveryAdaptiveGroups': { name: 'pipelinesDeliveryAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountPipelinesDeliveryAdaptiveGroups'; ofType: null; }; }; }; } }; 'pipelinesIngestionAdaptiveGroups': { name: 'pipelinesIngestionAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountPipelinesIngestionAdaptiveGroups'; ofType: null; }; }; }; } }; 'pipelinesOperatorAdaptiveGroups': { name: 'pipelinesOperatorAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountPipelinesOperatorAdaptiveGroups'; ofType: null; }; }; }; } }; 'pipelinesOperatorStagingAdaptiveGroups': { name: 'pipelinesOperatorStagingAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountPipelinesOperatorStagingAdaptiveGroups'; ofType: null; }; }; }; } }; 'pipelinesSinkAdaptiveGroups': { name: 'pipelinesSinkAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountPipelinesSinkAdaptiveGroups'; ofType: null; }; }; }; } }; 'pipelinesSinkStagingAdaptiveGroups': { name: 'pipelinesSinkStagingAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountPipelinesSinkStagingAdaptiveGroups'; ofType: null; }; }; }; } }; 'programmableFlowProtectionNetworkAnalyticsAdaptiveGroups': { name: 'programmableFlowProtectionNetworkAnalyticsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountProgrammableFlowProtectionNetworkAnalyticsAdaptiveGroups'; ofType: null; }; }; }; } }; 'queueBacklogAdaptiveGroups': { name: 'queueBacklogAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountQueueBacklogAdaptiveGroups'; ofType: null; }; }; }; } }; 'queueConsumerMetricsAdaptiveGroups': { name: 'queueConsumerMetricsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountQueueConsumerMetricsAdaptiveGroups'; ofType: null; }; }; }; } }; 'queueDelayedBacklogAdaptiveGroups': { name: 'queueDelayedBacklogAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountQueueDelayedBacklogAdaptiveGroups'; ofType: null; }; }; }; } }; 'queueMessageOperationsAdaptiveGroups': { name: 'queueMessageOperationsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountQueueMessageOperationsAdaptiveGroups'; ofType: null; }; }; }; } }; 'r2OperationsAdaptiveGroups': { name: 'r2OperationsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountR2OperationsAdaptiveGroups'; ofType: null; }; }; }; } }; 'r2StorageAdaptiveGroups': { name: 'r2StorageAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountR2StorageAdaptiveGroups'; ofType: null; }; }; }; } }; 'rumPageloadEventsAdaptiveGroups': { name: 'rumPageloadEventsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountRumPageloadEventsAdaptiveGroups'; ofType: null; }; }; }; } }; 'rumPerformanceEventsAdaptiveGroups': { name: 'rumPerformanceEventsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountRumPerformanceEventsAdaptiveGroups'; ofType: null; }; }; }; } }; 'rumWebVitalsEventsAdaptive': { name: 'rumWebVitalsEventsAdaptive'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountRumWebVitalsEventsAdaptive'; ofType: null; }; }; }; } }; 'rumWebVitalsEventsAdaptiveGroups': { name: 'rumWebVitalsEventsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountRumWebVitalsEventsAdaptiveGroups'; ofType: null; }; }; }; } }; 'settings': { name: 'settings'; type: { kind: 'OBJECT'; name: 'AccountSettings'; ofType: null; } }; 'sinkholeRequestLogsAdaptive': { name: 'sinkholeRequestLogsAdaptive'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountSinkholeRequestLogsAdaptive'; ofType: null; }; }; }; } }; 'sinkholeRequestLogsAdaptiveGroups': { name: 'sinkholeRequestLogsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountSinkholeRequestLogsAdaptiveGroups'; ofType: null; }; }; }; } }; 'sippyOperationsAdaptiveGroups': { name: 'sippyOperationsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountSippyOperationsAdaptiveGroups'; ofType: null; }; }; }; } }; 'spectrumNetworkAnalyticsAdaptiveGroups': { name: 'spectrumNetworkAnalyticsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountSpectrumNetworkAnalyticsAdaptiveGroups'; ofType: null; }; }; }; } }; 'storageTraces': { name: 'storageTraces'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountStorageTraces'; ofType: null; }; }; }; } }; 'streamCMCDAdaptiveGroups': { name: 'streamCMCDAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountStreamCMCDAdaptiveGroups'; ofType: null; }; }; }; } }; 'streamMinutesViewedAdaptiveGroups': { name: 'streamMinutesViewedAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountStreamMinutesViewedAdaptiveGroups'; ofType: null; }; }; }; } }; 'toMarkdownConversionAdaptive': { name: 'toMarkdownConversionAdaptive'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountToMarkdownConversionAdaptive'; ofType: null; }; }; }; } }; 'toMarkdownConversionAdaptiveGroups': { name: 'toMarkdownConversionAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountToMarkdownConversionAdaptiveGroups'; ofType: null; }; }; }; } }; 'turnstileAdaptiveGroups': { name: 'turnstileAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountTurnstileAdaptiveGroups'; ofType: null; }; }; }; } }; 'vectorizeQueriesAdaptiveGroups': { name: 'vectorizeQueriesAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountVectorizeQueriesAdaptiveGroups'; ofType: null; }; }; }; } }; 'vectorizeStorageAdaptiveGroups': { name: 'vectorizeStorageAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountVectorizeStorageAdaptiveGroups'; ofType: null; }; }; }; } }; 'vectorizeV2OperationsAdaptiveGroups': { name: 'vectorizeV2OperationsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountVectorizeV2OperationsAdaptiveGroups'; ofType: null; }; }; }; } }; 'vectorizeV2QueriesAdaptiveGroups': { name: 'vectorizeV2QueriesAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountVectorizeV2QueriesAdaptiveGroups'; ofType: null; }; }; }; } }; 'vectorizeV2StorageAdaptiveGroups': { name: 'vectorizeV2StorageAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountVectorizeV2StorageAdaptiveGroups'; ofType: null; }; }; }; } }; 'vectorizeV2WritesAdaptiveGroups': { name: 'vectorizeV2WritesAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountVectorizeV2WritesAdaptiveGroups'; ofType: null; }; }; }; } }; 'videoBufferEventsAdaptiveGroups': { name: 'videoBufferEventsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountVideoBufferEventsAdaptiveGroups'; ofType: null; }; }; }; } }; 'videoPlaybackEventsAdaptiveGroups': { name: 'videoPlaybackEventsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountVideoPlaybackEventsAdaptiveGroups'; ofType: null; }; }; }; } }; 'videoQualityEventsAdaptiveGroups': { name: 'videoQualityEventsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountVideoQualityEventsAdaptiveGroups'; ofType: null; }; }; }; } }; 'warpDeviceAdaptiveGroups': { name: 'warpDeviceAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountWarpDeviceAdaptiveGroups'; ofType: null; }; }; }; } }; 'workerPlacementAdaptiveGroups': { name: 'workerPlacementAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountWorkerPlacementAdaptiveGroups'; ofType: null; }; }; }; } }; 'workersAnalyticsEngineAdaptiveGroups': { name: 'workersAnalyticsEngineAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountWorkersAnalyticsEngineAdaptiveGroups'; ofType: null; }; }; }; } }; 'workersBuildsBuildMinutesAdaptiveGroups': { name: 'workersBuildsBuildMinutesAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountWorkersBuildsBuildMinutesAdaptiveGroups'; ofType: null; }; }; }; } }; 'workersInvocationsAdaptive': { name: 'workersInvocationsAdaptive'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountWorkersInvocationsAdaptive'; ofType: null; }; }; }; } }; 'workersInvocationsScheduled': { name: 'workersInvocationsScheduled'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountWorkersInvocationsScheduled'; ofType: null; }; }; }; } }; 'workersOverviewDataAdaptiveGroups': { name: 'workersOverviewDataAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountWorkersOverviewDataAdaptiveGroups'; ofType: null; }; }; }; } }; 'workersOverviewRequestsAdaptiveGroups': { name: 'workersOverviewRequestsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountWorkersOverviewRequestsAdaptiveGroups'; ofType: null; }; }; }; } }; 'workersSubrequestsAdaptiveGroups': { name: 'workersSubrequestsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountWorkersSubrequestsAdaptiveGroups'; ofType: null; }; }; }; } }; 'workersVpcConnectionAdaptiveGroups': { name: 'workersVpcConnectionAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountWorkersVpcConnectionAdaptiveGroups'; ofType: null; }; }; }; } }; 'workflowsAdaptive': { name: 'workflowsAdaptive'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountWorkflowsAdaptive'; ofType: null; }; }; }; } }; 'workflowsAdaptiveGroups': { name: 'workflowsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountWorkflowsAdaptiveGroups'; ofType: null; }; }; }; } }; 'zarazTrackAdaptiveGroups': { name: 'zarazTrackAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountZarazTrackAdaptiveGroups'; ofType: null; }; }; }; } }; 'zarazTriggersAdaptiveGroups': { name: 'zarazTriggersAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountZarazTriggersAdaptiveGroups'; ofType: null; }; }; }; } }; 'zeroTrustPrivateNetworkDiscoveryGroups': { name: 'zeroTrustPrivateNetworkDiscoveryGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountZeroTrustPrivateNetworkDiscoveryGroups'; ofType: null; }; }; }; } }; 'zones': { name: 'zones'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'zone'; ofType: null; }; }; }; } }; }; }; + 'bool': unknown; + 'bytes': unknown; + 'float32': unknown; + 'float64': unknown; + 'int16': unknown; + 'int32': unknown; + 'int64': unknown; + 'int8': unknown; + 'organization': { kind: 'OBJECT'; name: 'organization'; fields: { 'httpRequestsAdaptiveGroups': { name: 'httpRequestsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'OrganizationHttpRequestsAdaptiveGroups'; ofType: null; }; }; }; } }; 'organizationTag': { name: 'organizationTag'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; 'settings': { name: 'settings'; type: { kind: 'OBJECT'; name: 'OrganizationSettings'; ofType: null; } }; }; }; + 'string': unknown; + 'uint16': unknown; + 'uint32': unknown; + 'uint64': unknown; + 'uint8': unknown; + 'viewer': { kind: 'OBJECT'; name: 'viewer'; fields: { 'accounts': { name: 'accounts'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'account'; ofType: null; }; }; }; } }; 'budget': { name: 'budget'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'uint64'; ofType: null; }; } }; 'organizations': { name: 'organizations'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'organization'; ofType: null; }; }; }; } }; 'zones': { name: 'zones'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'zone'; ofType: null; }; }; }; } }; }; }; + 'zone': { kind: 'OBJECT'; name: 'zone'; fields: { 'apiGatewayGraphqlQueryAnalyticsGroups': { name: 'apiGatewayGraphqlQueryAnalyticsGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneApiGatewayGraphqlQueryAnalyticsGroups'; ofType: null; }; }; }; } }; 'apiGatewayMatchedSessionIDsAdaptiveGroups': { name: 'apiGatewayMatchedSessionIDsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneApiGatewayMatchedSessionIDsAdaptiveGroups'; ofType: null; }; }; }; } }; 'apiGatewayMatchedSessionIDsPerEndpointAdaptiveGroups': { name: 'apiGatewayMatchedSessionIDsPerEndpointAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneApiGatewayMatchedSessionIDsPerEndpointAdaptiveGroups'; ofType: null; }; }; }; } }; 'apiGatewayMatchedSessionIDsPerEndpointFlattenedAdaptiveGroups': { name: 'apiGatewayMatchedSessionIDsPerEndpointFlattenedAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneApiGatewayMatchedSessionIDsPerEndpointFlattenedAdaptiveGroups'; ofType: null; }; }; }; } }; 'apiRequestSequencesGroups': { name: 'apiRequestSequencesGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneApiRequestSequencesGroups'; ofType: null; }; }; }; } }; 'cacheReserveOperationsAdaptiveGroups': { name: 'cacheReserveOperationsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneCacheReserveOperationsAdaptiveGroups'; ofType: null; }; }; }; } }; 'cacheReserveRequestsAdaptiveGroups': { name: 'cacheReserveRequestsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneCacheReserveRequestsAdaptiveGroups'; ofType: null; }; }; }; } }; 'cacheReserveStorageAdaptiveGroups': { name: 'cacheReserveStorageAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneCacheReserveStorageAdaptiveGroups'; ofType: null; }; }; }; } }; 'dmarcReportsAdaptive': { name: 'dmarcReportsAdaptive'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneDmarcReportsAdaptive'; ofType: null; }; }; }; } }; 'dmarcReportsSourcesAdaptiveGroups': { name: 'dmarcReportsSourcesAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneDmarcReportsSourcesAdaptiveGroups'; ofType: null; }; }; }; } }; 'dnsAnalyticsAdaptive': { name: 'dnsAnalyticsAdaptive'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneDnsAnalyticsAdaptive'; ofType: null; }; }; }; } }; 'dnsAnalyticsAdaptiveGroups': { name: 'dnsAnalyticsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneDnsAnalyticsAdaptiveGroups'; ofType: null; }; }; }; } }; 'emailRoutingAdaptive': { name: 'emailRoutingAdaptive'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneEmailRoutingAdaptive'; ofType: null; }; }; }; } }; 'emailRoutingAdaptiveGroups': { name: 'emailRoutingAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneEmailRoutingAdaptiveGroups'; ofType: null; }; }; }; } }; 'emailSendingAdaptive': { name: 'emailSendingAdaptive'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneEmailSendingAdaptive'; ofType: null; }; }; }; } }; 'emailSendingAdaptiveGroups': { name: 'emailSendingAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneEmailSendingAdaptiveGroups'; ofType: null; }; }; }; } }; 'firewallEventsAdaptive': { name: 'firewallEventsAdaptive'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneFirewallEventsAdaptive'; ofType: null; }; }; }; } }; 'firewallEventsAdaptiveByTimeGroups': { name: 'firewallEventsAdaptiveByTimeGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneFirewallEventsAdaptiveByTimeGroups'; ofType: null; }; }; }; } }; 'firewallEventsAdaptiveGroups': { name: 'firewallEventsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneFirewallEventsAdaptiveGroups'; ofType: null; }; }; }; } }; 'healthCheckEventsAdaptive': { name: 'healthCheckEventsAdaptive'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneHealthCheckEventsAdaptive'; ofType: null; }; }; }; } }; 'healthCheckEventsAdaptiveGroups': { name: 'healthCheckEventsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneHealthCheckEventsAdaptiveGroups'; ofType: null; }; }; }; } }; 'httpRequests1dByColoGroups': { name: 'httpRequests1dByColoGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneHttpRequests1dByColoGroups'; ofType: null; }; }; }; } }; 'httpRequests1dGroups': { name: 'httpRequests1dGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneHttpRequests1dGroups'; ofType: null; }; }; }; } }; 'httpRequests1hGroups': { name: 'httpRequests1hGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneHttpRequests1hGroups'; ofType: null; }; }; }; } }; 'httpRequests1mByColoGroups': { name: 'httpRequests1mByColoGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneHttpRequests1mByColoGroups'; ofType: null; }; }; }; } }; 'httpRequests1mGroups': { name: 'httpRequests1mGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneHttpRequests1mGroups'; ofType: null; }; }; }; } }; 'httpRequestsAdaptive': { name: 'httpRequestsAdaptive'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneHttpRequestsAdaptive'; ofType: null; }; }; }; } }; 'httpRequestsAdaptiveGroups': { name: 'httpRequestsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneHttpRequestsAdaptiveGroups'; ofType: null; }; }; }; } }; 'httpRequestsOverviewAdaptiveGroups': { name: 'httpRequestsOverviewAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneHttpRequestsOverviewAdaptiveGroups'; ofType: null; }; }; }; } }; 'imageResizingRequests1mGroups': { name: 'imageResizingRequests1mGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneImageResizingRequests1mGroups'; ofType: null; }; }; }; } }; 'loadBalancingRequestsAdaptive': { name: 'loadBalancingRequestsAdaptive'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneLoadBalancingRequestsAdaptive'; ofType: null; }; }; }; } }; 'loadBalancingRequestsAdaptiveGroups': { name: 'loadBalancingRequestsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneLoadBalancingRequestsAdaptiveGroups'; ofType: null; }; }; }; } }; 'logpushHealthAdaptiveGroups': { name: 'logpushHealthAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneLogpushHealthAdaptiveGroups'; ofType: null; }; }; }; } }; 'nelReportsAdaptiveGroups': { name: 'nelReportsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneNelReportsAdaptiveGroups'; ofType: null; }; }; }; } }; 'pageShieldReportsAdaptiveGroups': { name: 'pageShieldReportsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZonePageShieldReportsAdaptiveGroups'; ofType: null; }; }; }; } }; 'settings': { name: 'settings'; type: { kind: 'OBJECT'; name: 'ZoneSettings'; ofType: null; } }; 'userProfilesAdaptiveGroups': { name: 'userProfilesAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneUserProfilesAdaptiveGroups'; ofType: null; }; }; }; } }; 'userProfilesRawEventsGroups': { name: 'userProfilesRawEventsGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneUserProfilesRawEventsGroups'; ofType: null; }; }; }; } }; 'waitingRoomAnalyticsAdaptive': { name: 'waitingRoomAnalyticsAdaptive'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneWaitingRoomAnalyticsAdaptive'; ofType: null; }; }; }; } }; 'waitingRoomAnalyticsAdaptiveGroups': { name: 'waitingRoomAnalyticsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneWaitingRoomAnalyticsAdaptiveGroups'; ofType: null; }; }; }; } }; 'workersZoneInvocationsAdaptiveGroups': { name: 'workersZoneInvocationsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneWorkersZoneInvocationsAdaptiveGroups'; ofType: null; }; }; }; } }; 'workersZoneSubrequestsAdaptiveGroups': { name: 'workersZoneSubrequestsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneWorkersZoneSubrequestsAdaptiveGroups'; ofType: null; }; }; }; } }; 'zarazActionsAdaptiveGroups': { name: 'zarazActionsAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneZarazActionsAdaptiveGroups'; ofType: null; }; }; }; } }; 'zarazAnalyticsIdentitiesAdaptiveGroups': { name: 'zarazAnalyticsIdentitiesAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneZarazAnalyticsIdentitiesAdaptiveGroups'; ofType: null; }; }; }; } }; 'zarazAnalyticsOrderedTrackAdaptive': { name: 'zarazAnalyticsOrderedTrackAdaptive'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneZarazAnalyticsOrderedTrackAdaptive'; ofType: null; }; }; }; } }; 'zarazAnalyticsOrderedTrackAdaptiveGroups': { name: 'zarazAnalyticsOrderedTrackAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneZarazAnalyticsOrderedTrackAdaptiveGroups'; ofType: null; }; }; }; } }; 'zarazAnalyticsTrackAdaptiveGroups': { name: 'zarazAnalyticsTrackAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneZarazAnalyticsTrackAdaptiveGroups'; ofType: null; }; }; }; } }; 'zarazAnalyticsTrackTrafficSourcesAdaptiveGroups': { name: 'zarazAnalyticsTrackTrafficSourcesAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneZarazAnalyticsTrackTrafficSourcesAdaptiveGroups'; ofType: null; }; }; }; } }; 'zarazAnalyticsTriggersAdaptiveGroups': { name: 'zarazAnalyticsTriggersAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneZarazAnalyticsTriggersAdaptiveGroups'; ofType: null; }; }; }; } }; 'zarazAnalyticsTriggersTrafficSourcesAdaptiveGroups': { name: 'zarazAnalyticsTriggersTrafficSourcesAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneZarazAnalyticsTriggersTrafficSourcesAdaptiveGroups'; ofType: null; }; }; }; } }; 'zarazFetchAdaptiveGroups': { name: 'zarazFetchAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneZarazFetchAdaptiveGroups'; ofType: null; }; }; }; } }; 'zarazTrackAdaptiveGroups': { name: 'zarazTrackAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneZarazTrackAdaptiveGroups'; ofType: null; }; }; }; } }; 'zarazTriggersAdaptiveGroups': { name: 'zarazTriggersAdaptiveGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZoneZarazTriggersAdaptiveGroups'; ofType: null; }; }; }; } }; 'zoneTag': { name: 'zoneTag'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'string'; ofType: null; }; } }; }; }; +}; + +/** An IntrospectionQuery representation of your schema. + * + * @remarks + * This is an introspection of your schema saved as a file by GraphQLSP. + * It will automatically be used by `gql.tada` to infer the types of your GraphQL documents. + * If you need to reuse this data or update your `scalars`, update `tadaOutputLocation` to + * instead save to a .ts instead of a .d.ts file. + */ +export type introspection = { + name: never; + query: 'Query'; + mutation: 'Mutation'; + subscription: never; + types: introspection_types; +}; + +import * as gqlTada from 'gql.tada'; + +declare module 'gql.tada' { + interface setupSchema { + introspection: introspection + } +} \ No newline at end of file diff --git a/src/cloudflare/gql/queries.ts b/src/cloudflare/gql/queries.ts new file mode 100644 index 0000000..0bf0b38 --- /dev/null +++ b/src/cloudflare/gql/queries.ts @@ -0,0 +1,639 @@ +import { graphql } from "./client"; + +export const HTTPMetricsQuery = graphql(` + query HTTPMetrics( + $zoneIDs: [string!] + $mintime: Time! + $maxtime: Time! + $limit: uint64! + ) { + viewer { + zones(filter: { zoneTag_in: $zoneIDs }) { + zoneTag + httpRequests1mGroups( + limit: $limit + filter: { datetime_geq: $mintime, datetime_lt: $maxtime } + ) { + uniq { + uniques + } + sum { + browserMap { + pageViews + uaBrowserFamily + } + bytes + cachedBytes + cachedRequests + contentTypeMap { + bytes + requests + edgeResponseContentTypeName + } + countryMap { + bytes + clientCountryName + requests + threats + } + encryptedBytes + encryptedRequests + pageViews + requests + responseStatusMap { + edgeResponseStatus + requests + } + threatPathingMap { + requests + threatPathingName + } + threats + clientHTTPVersionMap { + clientHTTPProtocol + requests + } + clientSSLMap { + clientSSLProtocol + requests + } + ipClassMap { + ipType + requests + } + } + dimensions { + datetime + } + } + firewallEventsAdaptiveGroups( + limit: $limit + filter: { datetime_geq: $mintime, datetime_lt: $maxtime } + ) { + count + dimensions { + action + source + ruleId + clientRequestHTTPHost + clientCountryName + botScore + botScoreSrcName + } + } + } + } + } +`); + +export const HTTPMetricsQueryNoBots = graphql(` + query HTTPMetricsNoBots( + $zoneIDs: [string!] + $mintime: Time! + $maxtime: Time! + $limit: uint64! + ) { + viewer { + zones(filter: { zoneTag_in: $zoneIDs }) { + zoneTag + httpRequests1mGroups( + limit: $limit + filter: { datetime_geq: $mintime, datetime_lt: $maxtime } + ) { + uniq { + uniques + } + sum { + browserMap { + pageViews + uaBrowserFamily + } + bytes + cachedBytes + cachedRequests + contentTypeMap { + bytes + requests + edgeResponseContentTypeName + } + countryMap { + bytes + clientCountryName + requests + threats + } + encryptedBytes + encryptedRequests + pageViews + requests + responseStatusMap { + edgeResponseStatus + requests + } + threatPathingMap { + requests + threatPathingName + } + threats + clientHTTPVersionMap { + clientHTTPProtocol + requests + } + clientSSLMap { + clientSSLProtocol + requests + } + ipClassMap { + ipType + requests + } + } + dimensions { + datetime + } + } + firewallEventsAdaptiveGroups( + limit: $limit + filter: { datetime_geq: $mintime, datetime_lt: $maxtime } + ) { + count + dimensions { + action + source + ruleId + clientRequestHTTPHost + clientCountryName + } + } + } + } + } +`); + +export const FirewallMetricsQuery = graphql(` + query FirewallMetrics( + $zoneIDs: [string!] + $mintime: Time! + $maxtime: Time! + $limit: uint64! + ) { + viewer { + zones(filter: { zoneTag_in: $zoneIDs }) { + zoneTag + firewallEventsAdaptiveGroups( + limit: $limit + filter: { datetime_geq: $mintime, datetime_lt: $maxtime } + ) { + count + dimensions { + action + source + ruleId + clientRequestHTTPHost + clientCountryName + } + } + } + } + } +`); + +export const HealthCheckMetricsQuery = graphql(` + query HealthCheckMetrics( + $zoneIDs: [string!] + $mintime: Time! + $maxtime: Time! + $limit: uint64! + ) { + viewer { + zones(filter: { zoneTag_in: $zoneIDs }) { + zoneTag + healthCheckEventsAdaptiveGroups( + limit: $limit + filter: { datetime_geq: $mintime, datetime_lt: $maxtime } + ) { + count + avg { + rttMs + timeToFirstByteMs + tcpConnMs + tlsHandshakeMs + } + dimensions { + healthStatus + originIP + region + fqdn + failureReason + } + } + } + } + } +`); + +export const AdaptiveMetricsQuery = graphql(` + query AdaptiveMetrics( + $zoneIDs: [string!] + $mintime: Time! + $maxtime: Time! + $limit: uint64! + ) { + viewer { + zones(filter: { zoneTag_in: $zoneIDs }) { + zoneTag + httpRequestsAdaptiveGroups( + limit: $limit + filter: { + datetime_geq: $mintime + datetime_lt: $maxtime + cacheStatus_notin: ["hit"] + originResponseStatus_in: [ + 400 + 404 + 500 + 502 + 503 + 504 + 522 + 523 + 524 + ] + } + ) { + count + dimensions { + originResponseStatus + clientCountryName + clientRequestHTTPHost + } + avg { + originResponseDurationMs + } + } + } + } + } +`); + +export const EdgeCountryMetricsQuery = graphql(` + query EdgeCountryMetrics( + $zoneIDs: [string!] + $mintime: Time! + $maxtime: Time! + $limit: uint64! + ) { + viewer { + zones(filter: { zoneTag_in: $zoneIDs }) { + zoneTag + httpRequestsEdgeCountryHost: httpRequestsAdaptiveGroups( + limit: $limit + filter: { datetime_geq: $mintime, datetime_lt: $maxtime } + ) { + count + dimensions { + edgeResponseStatus + clientCountryName + clientRequestHTTPHost + } + } + } + } + } +`); + +export const ColoMetricsQuery = graphql(` + query ColoMetrics( + $zoneIDs: [string!] + $mintime: Time! + $maxtime: Time! + $limit: uint64! + ) { + viewer { + zones(filter: { zoneTag_in: $zoneIDs }) { + zoneTag + httpRequestsAdaptiveGroups( + limit: $limit + filter: { datetime_geq: $mintime, datetime_lt: $maxtime } + ) { + count + avg { + sampleInterval + } + dimensions { + clientRequestHTTPHost + coloCode + datetime + originResponseStatus + } + sum { + edgeResponseBytes + visits + } + } + } + } + } +`); + +export const ColoErrorMetricsQuery = graphql(` + query ColoErrorMetrics( + $zoneIDs: [string!] + $mintime: Time! + $maxtime: Time! + $limit: uint64! + ) { + viewer { + zones(filter: { zoneTag_in: $zoneIDs }) { + zoneTag + httpRequestsAdaptiveGroups( + limit: $limit + filter: { + datetime_geq: $mintime + datetime_lt: $maxtime + edgeResponseStatus_geq: 400 + } + ) { + count + dimensions { + clientRequestHTTPHost + coloCode + edgeResponseStatus + } + sum { + edgeResponseBytes + visits + } + } + } + } + } +`); + +export const WorkerTotalsQuery = graphql(` + query WorkerTotals( + $accountID: string! + $mintime: Time! + $maxtime: Time! + $limit: uint64! + ) { + viewer { + accounts(filter: { accountTag: $accountID }) { + workersInvocationsAdaptive( + limit: $limit + filter: { datetime_geq: $mintime, datetime_lt: $maxtime } + ) { + dimensions { + scriptName + status + } + sum { + requests + errors + duration + } + quantiles { + cpuTimeP50 + cpuTimeP75 + cpuTimeP99 + cpuTimeP999 + durationP50 + durationP75 + durationP99 + durationP999 + } + } + } + } + } +`); + +// Note: Cloudflare's accounts filter only supports single accountTag, not accountTag_in +// Use WorkerTotalsQuery for individual account queries + +export const LoadBalancerMetricsQuery = graphql(` + query LoadBalancerMetrics( + $zoneIDs: [string!] + $mintime: Time! + $maxtime: Time! + $limit: uint64! + ) { + viewer { + zones(filter: { zoneTag_in: $zoneIDs }) { + zoneTag + loadBalancingRequestsAdaptiveGroups( + filter: { datetime_geq: $mintime, datetime_lt: $maxtime } + limit: $limit + ) { + count + dimensions { + lbName + selectedPoolName + selectedOriginName + region + proxied + selectedPoolAvgRttMs + selectedPoolHealthy + steeringPolicy + numberOriginsSelected + } + } + loadBalancingRequestsAdaptive( + filter: { datetime_geq: $mintime, datetime_lt: $maxtime } + limit: $limit + ) { + lbName + pools { + id + poolName + healthy + healthCheckEnabled + avgRttMs + } + } + } + } + } +`); + +export const LogpushAccountMetricsQuery = graphql(` + query LogpushAccountMetrics( + $accountID: string! + $limit: uint64! + $mintime: Time! + $maxtime: Time! + ) { + viewer { + accounts(filter: { accountTag: $accountID }) { + logpushHealthAdaptiveGroups( + filter: { + datetime_geq: $mintime + datetime_lt: $maxtime + status_neq: 200 + } + limit: $limit + ) { + count + dimensions { + jobId + status + destinationType + datetime + final + } + } + } + } + } +`); + +// Note: Cloudflare's accounts filter only supports single accountTag, not accountTag_in +// Use LogpushAccountMetricsQuery for individual account queries + +export const LogpushZoneMetricsQuery = graphql(` + query LogpushZoneMetrics( + $zoneIDs: [string!] + $limit: uint64! + $mintime: Time! + $maxtime: Time! + ) { + viewer { + zones(filter: { zoneTag_in: $zoneIDs }) { + zoneTag + logpushHealthAdaptiveGroups( + filter: { + datetime_geq: $mintime + datetime_lt: $maxtime + status_neq: 200 + } + limit: $limit + ) { + count + dimensions { + jobId + status + destinationType + datetime + final + } + } + } + } + } +`); + +export const MagicTransitMetricsQuery = graphql(` + query MagicTransitMetrics( + $accountID: string! + $limit: uint64! + $mintime: Time! + $maxtime: Time! + ) { + viewer { + accounts(filter: { accountTag: $accountID }) { + magicTransitTunnelHealthChecksAdaptiveGroups( + limit: $limit + filter: { datetime_geq: $mintime, datetime_lt: $maxtime } + ) { + count + dimensions { + active + datetime + edgeColoCity + edgeColoCountry + edgePopName + remoteTunnelIPv4 + resultStatus + siteName + tunnelName + } + } + } + } + } +`); + +// Note: Cloudflare's accounts filter only supports single accountTag, not accountTag_in +// Use MagicTransitMetricsQuery for individual account queries + +export const RequestMethodMetricsQuery = graphql(` + query RequestMethodMetrics( + $zoneIDs: [string!] + $mintime: Time! + $maxtime: Time! + $limit: uint64! + ) { + viewer { + zones(filter: { zoneTag_in: $zoneIDs }) { + zoneTag + httpRequestsAdaptiveGroups( + limit: $limit + filter: { datetime_geq: $mintime, datetime_lt: $maxtime } + ) { + count + dimensions { + clientRequestHTTPMethodName + } + } + } + } + } +`); + +export const OriginStatusMetricsQuery = graphql(` + query OriginStatusMetrics( + $zoneIDs: [string!] + $mintime: Time! + $maxtime: Time! + $limit: uint64! + ) { + viewer { + zones(filter: { zoneTag_in: $zoneIDs }) { + zoneTag + httpRequestsAdaptiveGroups( + limit: $limit + filter: { datetime_geq: $mintime, datetime_lt: $maxtime } + ) { + count + dimensions { + originResponseStatus + clientCountryName + clientRequestHTTPHost + } + } + } + } + } +`); + +export const CacheMissMetricsQuery = graphql(` + query CacheMissMetrics( + $zoneIDs: [string!] + $mintime: Time! + $maxtime: Time! + $limit: uint64! + ) { + viewer { + zones(filter: { zoneTag_in: $zoneIDs }) { + zoneTag + httpRequestsAdaptiveGroups( + filter: { + datetime_geq: $mintime + datetime_lt: $maxtime + cacheStatus: "miss" + } + limit: $limit + ) { + count + avg { + originResponseDurationMs + } + dimensions { + clientCountryName + clientRequestHTTPHost + } + } + } + } + } +`); diff --git a/src/cloudflare/gql/schema.gql b/src/cloudflare/gql/schema.gql new file mode 100644 index 0000000..53bd0d7 --- /dev/null +++ b/src/cloudflare/gql/schema.gql @@ -0,0 +1,169198 @@ +"""Access login requests""" +type AccountAccessLoginRequestsAdaptiveGroups { + """""" + avg: AccountAccessLoginRequestsAdaptiveGroupsAvg + + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountAccessLoginRequestsAdaptiveGroupsConfidence! + + """Number of access login API events processed""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountAccessLoginRequestsAdaptiveGroupsDimensions +} + +"""""" +type AccountAccessLoginRequestsAdaptiveGroupsAvg { + """Average sample interval""" + sampleInterval: float64! +} + +"""""" +type AccountAccessLoginRequestsAdaptiveGroupsConfidence { + """Number of access login API events processed, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! +} + +"""""" +type AccountAccessLoginRequestsAdaptiveGroupsDimensions { + """Access application ID""" + appId: string! + + """Policy ID that approved the user""" + approvingPolicyId: string! + + """CF ray id""" + cfRayId: string! + + """Country tag""" + country: string! + + """The date the access login event was emitted""" + date: Date! + + """The date and time the access login event was emitted""" + datetime: Time! + + """ + The date and time the access login event was emitted truncated to the minute + """ + datetimeMinute: Time! + + """Device ID""" + deviceId: string! + + """Has existing JWT (0 = false, 1 = true)""" + hasExistingJWT: uint8! + + """Has Gateway enabled (0 = false, 1 = true)""" + hasGatewayEnabled: uint8! + + """Has WARP enabled (0 = false, 1 = true)""" + hasWarpEnabled: uint8! + + """Identity provider""" + identityProvider: string! + + """User IP address""" + ipAddress: string! + + """If the login was successful (0 = false, 1 = true)""" + isSuccessfulLogin: uint8! + + """MTLS certificate serial ID""" + mtlsCertSerialId: string! + + """MTLS common name""" + mtlsCommonName: string! + + """MTLS status (may show error message if status is not successful)""" + mtlsStatus: string! + + """Service token ID""" + serviceTokenId: string! + + """Service token version""" + serviceTokenVersion: uint64! + + """User UUID""" + userUuid: string! +} + +"""""" +input AccountAccessLoginRequestsAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountAccessLoginRequestsAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountAccessLoginRequestsAdaptiveGroupsFilter_InputObject!] + + """""" + appId: string + + """""" + appId_geq: string + + """""" + appId_gt: string + + """""" + appId_in: [string!] + + """""" + appId_leq: string + + """""" + appId_like: string + + """""" + appId_lt: string + + """""" + appId_neq: string + + """""" + appId_notin: [string!] + + """""" + appId_notlike: string + + """""" + approvingPolicyId: string + + """""" + approvingPolicyId_geq: string + + """""" + approvingPolicyId_gt: string + + """""" + approvingPolicyId_in: [string!] + + """""" + approvingPolicyId_leq: string + + """""" + approvingPolicyId_like: string + + """""" + approvingPolicyId_lt: string + + """""" + approvingPolicyId_neq: string + + """""" + approvingPolicyId_notin: [string!] + + """""" + approvingPolicyId_notlike: string + + """""" + cfRayId: string + + """""" + cfRayId_geq: string + + """""" + cfRayId_gt: string + + """""" + cfRayId_in: [string!] + + """""" + cfRayId_leq: string + + """""" + cfRayId_like: string + + """""" + cfRayId_lt: string + + """""" + cfRayId_neq: string + + """""" + cfRayId_notin: [string!] + + """""" + cfRayId_notlike: string + + """""" + country: string + + """""" + country_geq: string + + """""" + country_gt: string + + """""" + country_in: [string!] + + """""" + country_leq: string + + """""" + country_like: string + + """""" + country_lt: string + + """""" + country_neq: string + + """""" + country_notin: [string!] + + """""" + country_notlike: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + deviceId: string + + """""" + deviceId_geq: string + + """""" + deviceId_gt: string + + """""" + deviceId_in: [string!] + + """""" + deviceId_leq: string + + """""" + deviceId_like: string + + """""" + deviceId_lt: string + + """""" + deviceId_neq: string + + """""" + deviceId_notin: [string!] + + """""" + deviceId_notlike: string + + """""" + hasExistingJWT: uint8 + + """""" + hasExistingJWT_geq: uint8 + + """""" + hasExistingJWT_gt: uint8 + + """""" + hasExistingJWT_in: bytes + + """""" + hasExistingJWT_leq: uint8 + + """""" + hasExistingJWT_lt: uint8 + + """""" + hasExistingJWT_neq: uint8 + + """""" + hasExistingJWT_notin: bytes + + """""" + hasGatewayEnabled: uint8 + + """""" + hasGatewayEnabled_geq: uint8 + + """""" + hasGatewayEnabled_gt: uint8 + + """""" + hasGatewayEnabled_in: bytes + + """""" + hasGatewayEnabled_leq: uint8 + + """""" + hasGatewayEnabled_lt: uint8 + + """""" + hasGatewayEnabled_neq: uint8 + + """""" + hasGatewayEnabled_notin: bytes + + """""" + hasWarpEnabled: uint8 + + """""" + hasWarpEnabled_geq: uint8 + + """""" + hasWarpEnabled_gt: uint8 + + """""" + hasWarpEnabled_in: bytes + + """""" + hasWarpEnabled_leq: uint8 + + """""" + hasWarpEnabled_lt: uint8 + + """""" + hasWarpEnabled_neq: uint8 + + """""" + hasWarpEnabled_notin: bytes + + """""" + identityProvider: string + + """""" + identityProvider_geq: string + + """""" + identityProvider_gt: string + + """""" + identityProvider_in: [string!] + + """""" + identityProvider_leq: string + + """""" + identityProvider_like: string + + """""" + identityProvider_lt: string + + """""" + identityProvider_neq: string + + """""" + identityProvider_notin: [string!] + + """""" + identityProvider_notlike: string + + """""" + ipAddress: string + + """""" + ipAddress_geq: string + + """""" + ipAddress_gt: string + + """""" + ipAddress_in: [string!] + + """""" + ipAddress_leq: string + + """""" + ipAddress_like: string + + """""" + ipAddress_lt: string + + """""" + ipAddress_neq: string + + """""" + ipAddress_notin: [string!] + + """""" + ipAddress_notlike: string + + """""" + isSuccessfulLogin: uint8 + + """""" + isSuccessfulLogin_geq: uint8 + + """""" + isSuccessfulLogin_gt: uint8 + + """""" + isSuccessfulLogin_in: bytes + + """""" + isSuccessfulLogin_leq: uint8 + + """""" + isSuccessfulLogin_lt: uint8 + + """""" + isSuccessfulLogin_neq: uint8 + + """""" + isSuccessfulLogin_notin: bytes + + """""" + mtlsCertSerialId: string + + """""" + mtlsCertSerialId_geq: string + + """""" + mtlsCertSerialId_gt: string + + """""" + mtlsCertSerialId_in: [string!] + + """""" + mtlsCertSerialId_leq: string + + """""" + mtlsCertSerialId_like: string + + """""" + mtlsCertSerialId_lt: string + + """""" + mtlsCertSerialId_neq: string + + """""" + mtlsCertSerialId_notin: [string!] + + """""" + mtlsCertSerialId_notlike: string + + """""" + mtlsCommonName: string + + """""" + mtlsCommonName_geq: string + + """""" + mtlsCommonName_gt: string + + """""" + mtlsCommonName_in: [string!] + + """""" + mtlsCommonName_leq: string + + """""" + mtlsCommonName_like: string + + """""" + mtlsCommonName_lt: string + + """""" + mtlsCommonName_neq: string + + """""" + mtlsCommonName_notin: [string!] + + """""" + mtlsCommonName_notlike: string + + """""" + mtlsStatus: string + + """""" + mtlsStatus_geq: string + + """""" + mtlsStatus_gt: string + + """""" + mtlsStatus_in: [string!] + + """""" + mtlsStatus_leq: string + + """""" + mtlsStatus_like: string + + """""" + mtlsStatus_lt: string + + """""" + mtlsStatus_neq: string + + """""" + mtlsStatus_notin: [string!] + + """""" + mtlsStatus_notlike: string + + """""" + serviceTokenId: string + + """""" + serviceTokenId_geq: string + + """""" + serviceTokenId_gt: string + + """""" + serviceTokenId_in: [string!] + + """""" + serviceTokenId_leq: string + + """""" + serviceTokenId_like: string + + """""" + serviceTokenId_lt: string + + """""" + serviceTokenId_neq: string + + """""" + serviceTokenId_notin: [string!] + + """""" + serviceTokenId_notlike: string + + """""" + serviceTokenVersion: uint64 + + """""" + serviceTokenVersion_geq: uint64 + + """""" + serviceTokenVersion_gt: uint64 + + """""" + serviceTokenVersion_in: [uint64!] + + """""" + serviceTokenVersion_leq: uint64 + + """""" + serviceTokenVersion_lt: uint64 + + """""" + serviceTokenVersion_neq: uint64 + + """""" + serviceTokenVersion_notin: [uint64!] + + """""" + userUuid: string + + """""" + userUuid_geq: string + + """""" + userUuid_gt: string + + """""" + userUuid_in: [string!] + + """""" + userUuid_leq: string + + """""" + userUuid_like: string + + """""" + userUuid_lt: string + + """""" + userUuid_neq: string + + """""" + userUuid_notin: [string!] + + """""" + userUuid_notlike: string +} + +"""""" +enum AccountAccessLoginRequestsAdaptiveGroupsOrderBy { + """appId ascending""" + appId_ASC + + """appId descending""" + appId_DESC + + """approvingPolicyId ascending""" + approvingPolicyId_ASC + + """approvingPolicyId descending""" + approvingPolicyId_DESC + + """avg(sampleInterval) ascending""" + avg_sampleInterval_ASC + + """avg(sampleInterval) descending""" + avg_sampleInterval_DESC + + """cfRayId ascending""" + cfRayId_ASC + + """cfRayId descending""" + cfRayId_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """country ascending""" + country_ASC + + """country descending""" + country_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """deviceId ascending""" + deviceId_ASC + + """deviceId descending""" + deviceId_DESC + + """hasExistingJWT ascending""" + hasExistingJWT_ASC + + """hasExistingJWT descending""" + hasExistingJWT_DESC + + """hasGatewayEnabled ascending""" + hasGatewayEnabled_ASC + + """hasGatewayEnabled descending""" + hasGatewayEnabled_DESC + + """hasWarpEnabled ascending""" + hasWarpEnabled_ASC + + """hasWarpEnabled descending""" + hasWarpEnabled_DESC + + """identityProvider ascending""" + identityProvider_ASC + + """identityProvider descending""" + identityProvider_DESC + + """ipAddress ascending""" + ipAddress_ASC + + """ipAddress descending""" + ipAddress_DESC + + """isSuccessfulLogin ascending""" + isSuccessfulLogin_ASC + + """isSuccessfulLogin descending""" + isSuccessfulLogin_DESC + + """mtlsCertSerialId ascending""" + mtlsCertSerialId_ASC + + """mtlsCertSerialId descending""" + mtlsCertSerialId_DESC + + """mtlsCommonName ascending""" + mtlsCommonName_ASC + + """mtlsCommonName descending""" + mtlsCommonName_DESC + + """mtlsStatus ascending""" + mtlsStatus_ASC + + """mtlsStatus descending""" + mtlsStatus_DESC + + """serviceTokenId ascending""" + serviceTokenId_ASC + + """serviceTokenId descending""" + serviceTokenId_DESC + + """serviceTokenVersion ascending""" + serviceTokenVersion_ASC + + """serviceTokenVersion descending""" + serviceTokenVersion_DESC + + """userUuid ascending""" + userUuid_ASC + + """userUuid descending""" + userUuid_DESC +} + +"""Network analytics data for Advanced DNS Protection""" +type AccountAdvancedDnsProtectionNetworkAnalyticsAdaptiveGroups { + """The average of values for a metric per dimension""" + avg: AccountAdvancedDnsProtectionNetworkAnalyticsAdaptiveGroupsAvg + + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountAdvancedDnsProtectionNetworkAnalyticsAdaptiveGroupsConfidence! + + """List of dimensions to group by""" + dimensions: AccountAdvancedDnsProtectionNetworkAnalyticsAdaptiveGroupsDimensions + + """The sum of values for a metric per dimension""" + sum: AccountAdvancedDnsProtectionNetworkAnalyticsAdaptiveGroupsSum +} + +"""""" +type AccountAdvancedDnsProtectionNetworkAnalyticsAdaptiveGroupsAvg { + """ + Sum of bits received, divided by 1 second, providing a per-second bit rate when grouped by datetime + """ + bitRate: uint64! + + """ + Sum of bits received, divided by 86400 seconds, providing a per-second bit rate when grouped by date + """ + bitRateDay: uint64! + + """ + Sum of bits received, divided by 900 seconds, providing a per-second bit rate when grouped by datetimeFifteenMinutes + """ + bitRateFifteenMinutes: uint64! + + """ + Sum of bits received, divided by 300 seconds, providing a per-second bit rate when grouped by datetimeFiveMinutes + """ + bitRateFiveMinutes: uint64! + + """ + Sum of bits received, divided by 3600 seconds, providing a per-second bit rate when grouped by datetimeHour + """ + bitRateHour: uint64! + + """ + Sum of bits received, divided by 60 seconds, providing a per-second bit rate when grouped by datetimeMinute + """ + bitRateMinute: uint64! + + """ + Sum of bits received, divided by 10 seconds, providing a per-second bit rate when grouped by datetimeTenSeconds + """ + bitRateTenSeconds: uint64! + + """ + Sum of packets received, divided by 1 second, providing a per-second packet rate when grouped by datetime + """ + packetRate: uint64! + + """ + Sum of packets received, divided by 86400 seconds, providing a per-second packet rate when grouped by date + """ + packetRateDay: uint64! + + """ + Sum of packets received, divided by 900 seconds, providing a per-second packet rate when grouped by datetimeFifteenMinutes + """ + packetRateFifteenMinutes: uint64! + + """ + Sum of packets received, divided by 300 seconds, providing a per-second packet rate when grouped by datetimeFiveMinutes + """ + packetRateFiveMinutes: uint64! + + """ + Sum of packets received, divided by 3600 seconds, providing a per-second packet rate when grouped by datetimeHour + """ + packetRateHour: uint64! + + """ + Sum of packets received, divided by 60 seconds, providing a per-second packet rate when grouped by datetimeMinute + """ + packetRateMinute: uint64! + + """ + Sum of packets received, divided by 10 seconds, providing a per-second packet rate when grouped by datetimeTenSeconds + """ + packetRateTenSeconds: uint64! +} + +"""""" +type AccountAdvancedDnsProtectionNetworkAnalyticsAdaptiveGroupsAvgConfidence { + """Confidence interval for the corresponding point estimate""" + bitRate: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateDay: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateFifteenMinutes: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateFiveMinutes: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateHour: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateMinute: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateTenSeconds: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRate: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateDay: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateFifteenMinutes: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateFiveMinutes: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateHour: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateMinute: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateTenSeconds: Confidence! +} + +"""""" +type AccountAdvancedDnsProtectionNetworkAnalyticsAdaptiveGroupsConfidence { + """ + The average of values for a metric per dimension, with confidence intervals + """ + avg: AccountAdvancedDnsProtectionNetworkAnalyticsAdaptiveGroupsAvgConfidence + + """Confidence level that was requested""" + level: float64! + + """ + The sum of values for a metric per dimension, with confidence intervals + """ + sum: AccountAdvancedDnsProtectionNetworkAnalyticsAdaptiveGroupsSumConfidence +} + +"""""" +type AccountAdvancedDnsProtectionNetworkAnalyticsAdaptiveGroupsDimensions { + """Application tag associated with the packet""" + applicationTag: string! + + """ + City where the Cloudflare datacenter that received the packet is located + """ + coloCity: string! + + """ + Cloudflare datacenter that received the packet (nearest IATA airport code) + """ + coloCode: string! + + """ + Country where the Cloudflare datacenter that received the packet is located (ISO 3166-1 alpha-2) + """ + coloCountry: string! + + """ + Latitude and longitude where the Cloudflare datacenter that received the packet is located (Geohash encoding) + """ + coloGeohash: string! + + """ + Cloudflare datacenter that received the packet (unique site identifier) + """ + coloName: string! + + """Date that the packet was received""" + date: Date! + + """Date and time that the packet was received""" + datetime: Time! + + """ + Date and time that the packet was received, rounded to the start of the nearest fifteen minutes + """ + datetimeFifteenMinutes: Time! + + """ + Date and time that the packet was received, rounded to the start of the nearest five minutes + """ + datetimeFiveMinutes: Time! + + """ + Date and time that the packet was received, rounded to the start of the nearest hour + """ + datetimeHour: Time! + + """ + Date and time that the packet was received, rounded to the start of the nearest minute + """ + datetimeMinute: Time! + + """ + Date and time that the packet was received, rounded to the start of the nearest ten seconds + """ + datetimeTenSeconds: Time! + + """ + ASN associated with the destination IP of the packet, or 0 if there was no mapping available + """ + destinationAsn: uint32! + + """ + Name of ASN associated with the destination IP of the packet, if available + """ + destinationAsnName: string! + + """ + Country where the destination IP of the packet is located (ISO 3166-1 alpha-2) + """ + destinationCountry: string! + + """ + Latitude and longitude where the destination IP of the packet is located (Geohash encoding) + """ + destinationGeohash: string! + + """Value of the Destination Port header field in the TCP or UDP packet""" + destinationPort: uint16! + + """ + Direction of the packet relative to the customer network (possible values: inbound, outbound, lateral) + """ + direction: string! + + """The requested domain name in the DNS query""" + dnsQueryName: string! + + """The query type in the DNS query""" + dnsQueryType: string! + + """ + Value of the Ethertype header field in the Ethernet packet (2048 for IPv4; 34525 for IPv6) + """ + ethertype: uint16! + + """Value of the Checkusm header field in the GRE packet""" + greChecksum: uint16! + + """Value of the Ethertype header field in the GRE packet""" + greEthertype: uint16! + + """Length of the GRE packet header, in bytes""" + greHeaderLength: uint16! + + """Value of the Key header field in the GRE packet""" + greKey: uint32! + + """Value of the Sequence Number header field in the GRE packet""" + greSequenceNumber: uint32! + + """Value of the Version header field in the GRE packet""" + greVersion: uint8! + + """Value of the Checkusm header field in the ICMP packet""" + icmpChecksum: uint16! + + """Value of the Code header field in the ICMP packet""" + icmpCode: uint8! + + """Value of the Type header field in the ICMP packet""" + icmpType: uint8! + + """ + Value of the Destination Address header field in the IPv4 or IPv6 packet + """ + ipDestinationAddress: string! + + """ + Computed subnet of the Destination Address header field in the IPv4 or IPv6 packet (/24 for IPv4; /48 for IPv6) + """ + ipDestinationSubnet: string! + + """Value of the Fragment Offset header field in the IPv4 or IPv6 packet""" + ipFragmentOffset: uint16! + + """Length of the IPv4 or IPv6 packet header, in bytes""" + ipHeaderLength: uint16! + + """Value of the More Fragments header field in the IPv4 or IPv6 packet""" + ipMoreFragments: uint8! + + """Value of the Protocol header field in the IPv4 or IPv6 packet""" + ipProtocol: uint8! + + """ + Name of the protocol specified by the Protocol header field in the IPv4 or IPv6 packet + """ + ipProtocolName: string! + + """Value of the Source Address header field in the IPv4 or IPv6 packet""" + ipSourceAddress: string! + + """ + Computed subnet of the Source Address header field in the IPv4 or IPv6 packet (/24 for IPv4; /48 for IPv6) + """ + ipSourceSubnet: string! + + """Total length of the IPv4 or IPv6 packet, in bytes""" + ipTotalLength: uint16! + + """ + Total length of the IPv4 or IPv6 packet, in bytes, with the last two digits truncated + """ + ipTotalLengthBuckets: uint16! + + """ + Value of the TTL header field in the IPv4 packet or the Hop Limit header field in the IPv6 packet + """ + ipTtl: uint8! + + """ + Value of the TTL header field in the IPv4 packet or the Hop Limit header field in the IPv6 packet, with the last digit truncated + """ + ipTtlBuckets: uint8! + + """Value of the Checksum header field in the IPv4 packet""" + ipv4Checksum: uint16! + + """Value of the Don't Fragment header field in the IPv4 packet""" + ipv4DontFragment: uint8! + + """ + Value of the Differentiated Services Code Point header field in the IPv4 packet + """ + ipv4Dscp: uint8! + + """ + Value of the Explicit Congestion Notification header field in the IPv4 packet + """ + ipv4Ecn: uint8! + + """Value of the Identification header field in the IPv4 packet""" + ipv4Identification: uint16! + + """List of Options numbers included in the IPv4 packet header""" + ipv4Options: string! + + """ + Value of the Differentiated Services Code Point header field in the IPv6 packet + """ + ipv6Dscp: uint8! + + """ + Value of the Explicit Congestion Notification header field in the IPv6 packet + """ + ipv6Ecn: uint8! + + """List of Extension Header numbers included in the IPv6 packet header""" + ipv6ExtensionHeaders: string! + + """Value of the Flow Label header field in the IPv6 packet""" + ipv6FlowLabel: uint32! + + """Value of the Identification extension header field in the IPv6 packet""" + ipv6Identification: uint32! + + """IP lease tag associated with the packet""" + leaseTag: string! + + """Reason for applying a mitigation to the packet, if any""" + mitigationReason: string! + + """ + Whether the packet matched a local or global mitigation, if any (possible values: local, global) + """ + mitigationScope: string! + + """The action that was taken on the packet (possible values: pass, drop)""" + outcome: string! + + """IP prefix tag associated with the packet""" + prefixTag: string! + + """ABR sample interval""" + sampleInterval: uint32! + + """ + ASN associated with the source IP of the packet, or 0 if there was no mapping available + """ + sourceAsn: uint32! + + """Name of ASN associated with the source IP of the packet, if available""" + sourceAsnName: string! + + """ + Country where the source IP of the packet is located (ISO 3166-1 alpha-2) + """ + sourceCountry: string! + + """ + Latitude and longitude where the source IP of the packet is located (Geohash encoding) + """ + sourceGeohash: string! + + """Value of the Source Port header field in the TCP or UDP packet""" + sourcePort: uint16! + + """Value of the Acknowledgement Number header field in the TCP packet""" + tcpAcknowledgementNumber: uint32! + + """Value of the Checkusm header field in the TCP packet""" + tcpChecksum: uint16! + + """Value of the Data Offset header field in the TCP packet""" + tcpDataOffset: uint16! + + """Value of the Flags header field in the TCP packet""" + tcpFlags: uint8! + + """ + Human-readable string representation of the Flags header field in the TCP packet + """ + tcpFlagsString: string! + + """Value of the MSS option header field in the TCP packet""" + tcpMss: uint16! + + """List of Options numbers included in the TCP packet header""" + tcpOptions: string! + + """Value of the SACK Blocks option header field in the TCP packet""" + tcpSackBlocks: string! + + """Value of the SACK Permitted option header field in the TCP packet""" + tcpSackPermitted: uint8! + + """Value of the Sequence Number header field in the TCP packet""" + tcpSequenceNumber: uint32! + + """ + Value of the Timestamp Echo Reply option header field in the TCP packet + """ + tcpTimestampEcr: uint32! + + """Value of the Timestamp option header field in the TCP packet""" + tcpTimestampValue: uint32! + + """Value of the Urgent Pointer header field in the TCP packet""" + tcpUrgentPointer: uint16! + + """Value of the Window Scale option header field in the TCP packet""" + tcpWindowScale: uint16! + + """Value of the Window Size header field in the TCP packet""" + tcpWindowSize: uint16! + + """Value of the Checkusm header field in the UDP packet""" + udpChecksum: uint16! + + """Value of the Payload Length header field in the UDP packet""" + udpPayloadLength: uint16! + + """ + The action that Cloudflare thinks should be taken on the packet (possible values: pass, drop) + """ + verdict: string! +} + +"""""" +input AccountAdvancedDnsProtectionNetworkAnalyticsAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountAdvancedDnsProtectionNetworkAnalyticsAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountAdvancedDnsProtectionNetworkAnalyticsAdaptiveGroupsFilter_InputObject!] + + """""" + applicationTag: string + + """""" + applicationTag_geq: string + + """""" + applicationTag_gt: string + + """""" + applicationTag_in: [string!] + + """""" + applicationTag_leq: string + + """""" + applicationTag_like: string + + """""" + applicationTag_lt: string + + """""" + applicationTag_neq: string + + """""" + applicationTag_notin: [string!] + + """""" + applicationTag_notlike: string + + """""" + coloCity: string + + """""" + coloCity_geq: string + + """""" + coloCity_gt: string + + """""" + coloCity_in: [string!] + + """""" + coloCity_leq: string + + """""" + coloCity_like: string + + """""" + coloCity_lt: string + + """""" + coloCity_neq: string + + """""" + coloCity_notin: [string!] + + """""" + coloCity_notlike: string + + """""" + coloCode: string + + """""" + coloCode_geq: string + + """""" + coloCode_gt: string + + """""" + coloCode_in: [string!] + + """""" + coloCode_leq: string + + """""" + coloCode_like: string + + """""" + coloCode_lt: string + + """""" + coloCode_neq: string + + """""" + coloCode_notin: [string!] + + """""" + coloCode_notlike: string + + """""" + coloCountry: string + + """""" + coloCountry_geq: string + + """""" + coloCountry_gt: string + + """""" + coloCountry_in: [string!] + + """""" + coloCountry_leq: string + + """""" + coloCountry_like: string + + """""" + coloCountry_lt: string + + """""" + coloCountry_neq: string + + """""" + coloCountry_notin: [string!] + + """""" + coloCountry_notlike: string + + """""" + coloGeohash: string + + """""" + coloGeohash_geq: string + + """""" + coloGeohash_gt: string + + """""" + coloGeohash_in: [string!] + + """""" + coloGeohash_leq: string + + """""" + coloGeohash_like: string + + """""" + coloGeohash_lt: string + + """""" + coloGeohash_neq: string + + """""" + coloGeohash_notin: [string!] + + """""" + coloGeohash_notlike: string + + """""" + coloName: string + + """""" + coloName_geq: string + + """""" + coloName_gt: string + + """""" + coloName_in: [string!] + + """""" + coloName_leq: string + + """""" + coloName_like: string + + """""" + coloName_lt: string + + """""" + coloName_neq: string + + """""" + coloName_notin: [string!] + + """""" + coloName_notlike: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetimeTenSeconds: Time + + """""" + datetimeTenSeconds_geq: Time + + """""" + datetimeTenSeconds_gt: Time + + """""" + datetimeTenSeconds_in: [Time!] + + """""" + datetimeTenSeconds_leq: Time + + """""" + datetimeTenSeconds_lt: Time + + """""" + datetimeTenSeconds_neq: Time + + """""" + datetimeTenSeconds_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + destinationAsn: uint32 + + """""" + destinationAsnName: string + + """""" + destinationAsnName_geq: string + + """""" + destinationAsnName_gt: string + + """""" + destinationAsnName_in: [string!] + + """""" + destinationAsnName_leq: string + + """""" + destinationAsnName_like: string + + """""" + destinationAsnName_lt: string + + """""" + destinationAsnName_neq: string + + """""" + destinationAsnName_notin: [string!] + + """""" + destinationAsnName_notlike: string + + """""" + destinationAsn_geq: uint32 + + """""" + destinationAsn_gt: uint32 + + """""" + destinationAsn_in: [uint32!] + + """""" + destinationAsn_leq: uint32 + + """""" + destinationAsn_lt: uint32 + + """""" + destinationAsn_neq: uint32 + + """""" + destinationAsn_notin: [uint32!] + + """""" + destinationCountry: string + + """""" + destinationCountry_geq: string + + """""" + destinationCountry_gt: string + + """""" + destinationCountry_in: [string!] + + """""" + destinationCountry_leq: string + + """""" + destinationCountry_like: string + + """""" + destinationCountry_lt: string + + """""" + destinationCountry_neq: string + + """""" + destinationCountry_notin: [string!] + + """""" + destinationCountry_notlike: string + + """""" + destinationGeohash: string + + """""" + destinationGeohash_geq: string + + """""" + destinationGeohash_gt: string + + """""" + destinationGeohash_in: [string!] + + """""" + destinationGeohash_leq: string + + """""" + destinationGeohash_like: string + + """""" + destinationGeohash_lt: string + + """""" + destinationGeohash_neq: string + + """""" + destinationGeohash_notin: [string!] + + """""" + destinationGeohash_notlike: string + + """""" + destinationPort: uint16 + + """""" + destinationPort_geq: uint16 + + """""" + destinationPort_gt: uint16 + + """""" + destinationPort_in: [uint16!] + + """""" + destinationPort_leq: uint16 + + """""" + destinationPort_lt: uint16 + + """""" + destinationPort_neq: uint16 + + """""" + destinationPort_notin: [uint16!] + + """""" + direction: string + + """""" + direction_geq: string + + """""" + direction_gt: string + + """""" + direction_in: [string!] + + """""" + direction_leq: string + + """""" + direction_like: string + + """""" + direction_lt: string + + """""" + direction_neq: string + + """""" + direction_notin: [string!] + + """""" + direction_notlike: string + + """""" + dnsQueryName: string + + """""" + dnsQueryName_geq: string + + """""" + dnsQueryName_gt: string + + """""" + dnsQueryName_in: [string!] + + """""" + dnsQueryName_leq: string + + """""" + dnsQueryName_like: string + + """""" + dnsQueryName_lt: string + + """""" + dnsQueryName_neq: string + + """""" + dnsQueryName_notin: [string!] + + """""" + dnsQueryName_notlike: string + + """""" + dnsQueryType: string + + """""" + dnsQueryType_geq: string + + """""" + dnsQueryType_gt: string + + """""" + dnsQueryType_in: [string!] + + """""" + dnsQueryType_leq: string + + """""" + dnsQueryType_like: string + + """""" + dnsQueryType_lt: string + + """""" + dnsQueryType_neq: string + + """""" + dnsQueryType_notin: [string!] + + """""" + dnsQueryType_notlike: string + + """""" + ethertype: uint16 + + """""" + ethertype_geq: uint16 + + """""" + ethertype_gt: uint16 + + """""" + ethertype_in: [uint16!] + + """""" + ethertype_leq: uint16 + + """""" + ethertype_lt: uint16 + + """""" + ethertype_neq: uint16 + + """""" + ethertype_notin: [uint16!] + + """""" + greChecksum: uint16 + + """""" + greChecksum_geq: uint16 + + """""" + greChecksum_gt: uint16 + + """""" + greChecksum_in: [uint16!] + + """""" + greChecksum_leq: uint16 + + """""" + greChecksum_lt: uint16 + + """""" + greChecksum_neq: uint16 + + """""" + greChecksum_notin: [uint16!] + + """""" + greEthertype: uint16 + + """""" + greEthertype_geq: uint16 + + """""" + greEthertype_gt: uint16 + + """""" + greEthertype_in: [uint16!] + + """""" + greEthertype_leq: uint16 + + """""" + greEthertype_lt: uint16 + + """""" + greEthertype_neq: uint16 + + """""" + greEthertype_notin: [uint16!] + + """""" + greHeaderLength: uint16 + + """""" + greHeaderLength_geq: uint16 + + """""" + greHeaderLength_gt: uint16 + + """""" + greHeaderLength_in: [uint16!] + + """""" + greHeaderLength_leq: uint16 + + """""" + greHeaderLength_lt: uint16 + + """""" + greHeaderLength_neq: uint16 + + """""" + greHeaderLength_notin: [uint16!] + + """""" + greKey: uint32 + + """""" + greKey_geq: uint32 + + """""" + greKey_gt: uint32 + + """""" + greKey_in: [uint32!] + + """""" + greKey_leq: uint32 + + """""" + greKey_lt: uint32 + + """""" + greKey_neq: uint32 + + """""" + greKey_notin: [uint32!] + + """""" + greSequenceNumber: uint32 + + """""" + greSequenceNumber_geq: uint32 + + """""" + greSequenceNumber_gt: uint32 + + """""" + greSequenceNumber_in: [uint32!] + + """""" + greSequenceNumber_leq: uint32 + + """""" + greSequenceNumber_lt: uint32 + + """""" + greSequenceNumber_neq: uint32 + + """""" + greSequenceNumber_notin: [uint32!] + + """""" + greVersion: uint8 + + """""" + greVersion_geq: uint8 + + """""" + greVersion_gt: uint8 + + """""" + greVersion_in: bytes + + """""" + greVersion_leq: uint8 + + """""" + greVersion_lt: uint8 + + """""" + greVersion_neq: uint8 + + """""" + greVersion_notin: bytes + + """""" + icmpChecksum: uint16 + + """""" + icmpChecksum_geq: uint16 + + """""" + icmpChecksum_gt: uint16 + + """""" + icmpChecksum_in: [uint16!] + + """""" + icmpChecksum_leq: uint16 + + """""" + icmpChecksum_lt: uint16 + + """""" + icmpChecksum_neq: uint16 + + """""" + icmpChecksum_notin: [uint16!] + + """""" + icmpCode: uint8 + + """""" + icmpCode_geq: uint8 + + """""" + icmpCode_gt: uint8 + + """""" + icmpCode_in: bytes + + """""" + icmpCode_leq: uint8 + + """""" + icmpCode_lt: uint8 + + """""" + icmpCode_neq: uint8 + + """""" + icmpCode_notin: bytes + + """""" + icmpType: uint8 + + """""" + icmpType_geq: uint8 + + """""" + icmpType_gt: uint8 + + """""" + icmpType_in: bytes + + """""" + icmpType_leq: uint8 + + """""" + icmpType_lt: uint8 + + """""" + icmpType_neq: uint8 + + """""" + icmpType_notin: bytes + + """""" + ipDestinationAddress: string + + """""" + ipDestinationAddress_geq: string + + """""" + ipDestinationAddress_gt: string + + """""" + ipDestinationAddress_in: [string!] + + """""" + ipDestinationAddress_leq: string + + """""" + ipDestinationAddress_like: string + + """""" + ipDestinationAddress_lt: string + + """""" + ipDestinationAddress_neq: string + + """""" + ipDestinationAddress_notin: [string!] + + """""" + ipDestinationAddress_notlike: string + + """""" + ipDestinationSubnet: string + + """""" + ipDestinationSubnet_geq: string + + """""" + ipDestinationSubnet_gt: string + + """""" + ipDestinationSubnet_in: [string!] + + """""" + ipDestinationSubnet_leq: string + + """""" + ipDestinationSubnet_like: string + + """""" + ipDestinationSubnet_lt: string + + """""" + ipDestinationSubnet_neq: string + + """""" + ipDestinationSubnet_notin: [string!] + + """""" + ipDestinationSubnet_notlike: string + + """""" + ipFragmentOffset: uint16 + + """""" + ipFragmentOffset_geq: uint16 + + """""" + ipFragmentOffset_gt: uint16 + + """""" + ipFragmentOffset_in: [uint16!] + + """""" + ipFragmentOffset_leq: uint16 + + """""" + ipFragmentOffset_lt: uint16 + + """""" + ipFragmentOffset_neq: uint16 + + """""" + ipFragmentOffset_notin: [uint16!] + + """""" + ipHeaderLength: uint16 + + """""" + ipHeaderLength_geq: uint16 + + """""" + ipHeaderLength_gt: uint16 + + """""" + ipHeaderLength_in: [uint16!] + + """""" + ipHeaderLength_leq: uint16 + + """""" + ipHeaderLength_lt: uint16 + + """""" + ipHeaderLength_neq: uint16 + + """""" + ipHeaderLength_notin: [uint16!] + + """""" + ipMoreFragments: uint8 + + """""" + ipMoreFragments_geq: uint8 + + """""" + ipMoreFragments_gt: uint8 + + """""" + ipMoreFragments_in: bytes + + """""" + ipMoreFragments_leq: uint8 + + """""" + ipMoreFragments_lt: uint8 + + """""" + ipMoreFragments_neq: uint8 + + """""" + ipMoreFragments_notin: bytes + + """""" + ipProtocol: uint8 + + """""" + ipProtocolName: string + + """""" + ipProtocolName_geq: string + + """""" + ipProtocolName_gt: string + + """""" + ipProtocolName_in: [string!] + + """""" + ipProtocolName_leq: string + + """""" + ipProtocolName_like: string + + """""" + ipProtocolName_lt: string + + """""" + ipProtocolName_neq: string + + """""" + ipProtocolName_notin: [string!] + + """""" + ipProtocolName_notlike: string + + """""" + ipProtocol_geq: uint8 + + """""" + ipProtocol_gt: uint8 + + """""" + ipProtocol_in: bytes + + """""" + ipProtocol_leq: uint8 + + """""" + ipProtocol_lt: uint8 + + """""" + ipProtocol_neq: uint8 + + """""" + ipProtocol_notin: bytes + + """""" + ipSourceAddress: string + + """""" + ipSourceAddress_geq: string + + """""" + ipSourceAddress_gt: string + + """""" + ipSourceAddress_in: [string!] + + """""" + ipSourceAddress_leq: string + + """""" + ipSourceAddress_like: string + + """""" + ipSourceAddress_lt: string + + """""" + ipSourceAddress_neq: string + + """""" + ipSourceAddress_notin: [string!] + + """""" + ipSourceAddress_notlike: string + + """""" + ipSourceSubnet: string + + """""" + ipSourceSubnet_geq: string + + """""" + ipSourceSubnet_gt: string + + """""" + ipSourceSubnet_in: [string!] + + """""" + ipSourceSubnet_leq: string + + """""" + ipSourceSubnet_like: string + + """""" + ipSourceSubnet_lt: string + + """""" + ipSourceSubnet_neq: string + + """""" + ipSourceSubnet_notin: [string!] + + """""" + ipSourceSubnet_notlike: string + + """""" + ipTotalLength: uint16 + + """""" + ipTotalLengthBuckets: uint16 + + """""" + ipTotalLengthBuckets_geq: uint16 + + """""" + ipTotalLengthBuckets_gt: uint16 + + """""" + ipTotalLengthBuckets_in: [uint16!] + + """""" + ipTotalLengthBuckets_leq: uint16 + + """""" + ipTotalLengthBuckets_lt: uint16 + + """""" + ipTotalLengthBuckets_neq: uint16 + + """""" + ipTotalLengthBuckets_notin: [uint16!] + + """""" + ipTotalLength_geq: uint16 + + """""" + ipTotalLength_gt: uint16 + + """""" + ipTotalLength_in: [uint16!] + + """""" + ipTotalLength_leq: uint16 + + """""" + ipTotalLength_lt: uint16 + + """""" + ipTotalLength_neq: uint16 + + """""" + ipTotalLength_notin: [uint16!] + + """""" + ipTtl: uint8 + + """""" + ipTtlBuckets: uint8 + + """""" + ipTtlBuckets_geq: uint8 + + """""" + ipTtlBuckets_gt: uint8 + + """""" + ipTtlBuckets_in: bytes + + """""" + ipTtlBuckets_leq: uint8 + + """""" + ipTtlBuckets_lt: uint8 + + """""" + ipTtlBuckets_neq: uint8 + + """""" + ipTtlBuckets_notin: bytes + + """""" + ipTtl_geq: uint8 + + """""" + ipTtl_gt: uint8 + + """""" + ipTtl_in: bytes + + """""" + ipTtl_leq: uint8 + + """""" + ipTtl_lt: uint8 + + """""" + ipTtl_neq: uint8 + + """""" + ipTtl_notin: bytes + + """""" + ipv4Checksum: uint16 + + """""" + ipv4Checksum_geq: uint16 + + """""" + ipv4Checksum_gt: uint16 + + """""" + ipv4Checksum_in: [uint16!] + + """""" + ipv4Checksum_leq: uint16 + + """""" + ipv4Checksum_lt: uint16 + + """""" + ipv4Checksum_neq: uint16 + + """""" + ipv4Checksum_notin: [uint16!] + + """""" + ipv4DontFragment: uint8 + + """""" + ipv4DontFragment_geq: uint8 + + """""" + ipv4DontFragment_gt: uint8 + + """""" + ipv4DontFragment_in: bytes + + """""" + ipv4DontFragment_leq: uint8 + + """""" + ipv4DontFragment_lt: uint8 + + """""" + ipv4DontFragment_neq: uint8 + + """""" + ipv4DontFragment_notin: bytes + + """""" + ipv4Dscp: uint8 + + """""" + ipv4Dscp_geq: uint8 + + """""" + ipv4Dscp_gt: uint8 + + """""" + ipv4Dscp_in: bytes + + """""" + ipv4Dscp_leq: uint8 + + """""" + ipv4Dscp_lt: uint8 + + """""" + ipv4Dscp_neq: uint8 + + """""" + ipv4Dscp_notin: bytes + + """""" + ipv4Ecn: uint8 + + """""" + ipv4Ecn_geq: uint8 + + """""" + ipv4Ecn_gt: uint8 + + """""" + ipv4Ecn_in: bytes + + """""" + ipv4Ecn_leq: uint8 + + """""" + ipv4Ecn_lt: uint8 + + """""" + ipv4Ecn_neq: uint8 + + """""" + ipv4Ecn_notin: bytes + + """""" + ipv4Identification: uint16 + + """""" + ipv4Identification_geq: uint16 + + """""" + ipv4Identification_gt: uint16 + + """""" + ipv4Identification_in: [uint16!] + + """""" + ipv4Identification_leq: uint16 + + """""" + ipv4Identification_lt: uint16 + + """""" + ipv4Identification_neq: uint16 + + """""" + ipv4Identification_notin: [uint16!] + + """""" + ipv4Options: string + + """""" + ipv4Options_geq: string + + """""" + ipv4Options_gt: string + + """""" + ipv4Options_in: [string!] + + """""" + ipv4Options_leq: string + + """""" + ipv4Options_like: string + + """""" + ipv4Options_lt: string + + """""" + ipv4Options_neq: string + + """""" + ipv4Options_notin: [string!] + + """""" + ipv4Options_notlike: string + + """""" + ipv6Dscp: uint8 + + """""" + ipv6Dscp_geq: uint8 + + """""" + ipv6Dscp_gt: uint8 + + """""" + ipv6Dscp_in: bytes + + """""" + ipv6Dscp_leq: uint8 + + """""" + ipv6Dscp_lt: uint8 + + """""" + ipv6Dscp_neq: uint8 + + """""" + ipv6Dscp_notin: bytes + + """""" + ipv6Ecn: uint8 + + """""" + ipv6Ecn_geq: uint8 + + """""" + ipv6Ecn_gt: uint8 + + """""" + ipv6Ecn_in: bytes + + """""" + ipv6Ecn_leq: uint8 + + """""" + ipv6Ecn_lt: uint8 + + """""" + ipv6Ecn_neq: uint8 + + """""" + ipv6Ecn_notin: bytes + + """""" + ipv6ExtensionHeaders: string + + """""" + ipv6ExtensionHeaders_geq: string + + """""" + ipv6ExtensionHeaders_gt: string + + """""" + ipv6ExtensionHeaders_in: [string!] + + """""" + ipv6ExtensionHeaders_leq: string + + """""" + ipv6ExtensionHeaders_like: string + + """""" + ipv6ExtensionHeaders_lt: string + + """""" + ipv6ExtensionHeaders_neq: string + + """""" + ipv6ExtensionHeaders_notin: [string!] + + """""" + ipv6ExtensionHeaders_notlike: string + + """""" + ipv6FlowLabel: uint32 + + """""" + ipv6FlowLabel_geq: uint32 + + """""" + ipv6FlowLabel_gt: uint32 + + """""" + ipv6FlowLabel_in: [uint32!] + + """""" + ipv6FlowLabel_leq: uint32 + + """""" + ipv6FlowLabel_lt: uint32 + + """""" + ipv6FlowLabel_neq: uint32 + + """""" + ipv6FlowLabel_notin: [uint32!] + + """""" + ipv6Identification: uint32 + + """""" + ipv6Identification_geq: uint32 + + """""" + ipv6Identification_gt: uint32 + + """""" + ipv6Identification_in: [uint32!] + + """""" + ipv6Identification_leq: uint32 + + """""" + ipv6Identification_lt: uint32 + + """""" + ipv6Identification_neq: uint32 + + """""" + ipv6Identification_notin: [uint32!] + + """""" + leaseTag: string + + """""" + leaseTag_geq: string + + """""" + leaseTag_gt: string + + """""" + leaseTag_in: [string!] + + """""" + leaseTag_leq: string + + """""" + leaseTag_like: string + + """""" + leaseTag_lt: string + + """""" + leaseTag_neq: string + + """""" + leaseTag_notin: [string!] + + """""" + leaseTag_notlike: string + + """""" + mitigationReason: string + + """""" + mitigationReason_geq: string + + """""" + mitigationReason_gt: string + + """""" + mitigationReason_in: [string!] + + """""" + mitigationReason_leq: string + + """""" + mitigationReason_like: string + + """""" + mitigationReason_lt: string + + """""" + mitigationReason_neq: string + + """""" + mitigationReason_notin: [string!] + + """""" + mitigationReason_notlike: string + + """""" + mitigationScope: string + + """""" + mitigationScope_geq: string + + """""" + mitigationScope_gt: string + + """""" + mitigationScope_in: [string!] + + """""" + mitigationScope_leq: string + + """""" + mitigationScope_like: string + + """""" + mitigationScope_lt: string + + """""" + mitigationScope_neq: string + + """""" + mitigationScope_notin: [string!] + + """""" + mitigationScope_notlike: string + + """""" + outcome: string + + """""" + outcome_geq: string + + """""" + outcome_gt: string + + """""" + outcome_in: [string!] + + """""" + outcome_leq: string + + """""" + outcome_like: string + + """""" + outcome_lt: string + + """""" + outcome_neq: string + + """""" + outcome_notin: [string!] + + """""" + outcome_notlike: string + + """""" + prefixTag: string + + """""" + prefixTag_geq: string + + """""" + prefixTag_gt: string + + """""" + prefixTag_in: [string!] + + """""" + prefixTag_leq: string + + """""" + prefixTag_like: string + + """""" + prefixTag_lt: string + + """""" + prefixTag_neq: string + + """""" + prefixTag_notin: [string!] + + """""" + prefixTag_notlike: string + + """""" + sampleInterval: uint32 + + """""" + sampleInterval_geq: uint32 + + """""" + sampleInterval_gt: uint32 + + """""" + sampleInterval_in: [uint32!] + + """""" + sampleInterval_leq: uint32 + + """""" + sampleInterval_lt: uint32 + + """""" + sampleInterval_neq: uint32 + + """""" + sampleInterval_notin: [uint32!] + + """""" + sourceAsn: uint32 + + """""" + sourceAsnName: string + + """""" + sourceAsnName_geq: string + + """""" + sourceAsnName_gt: string + + """""" + sourceAsnName_in: [string!] + + """""" + sourceAsnName_leq: string + + """""" + sourceAsnName_like: string + + """""" + sourceAsnName_lt: string + + """""" + sourceAsnName_neq: string + + """""" + sourceAsnName_notin: [string!] + + """""" + sourceAsnName_notlike: string + + """""" + sourceAsn_geq: uint32 + + """""" + sourceAsn_gt: uint32 + + """""" + sourceAsn_in: [uint32!] + + """""" + sourceAsn_leq: uint32 + + """""" + sourceAsn_lt: uint32 + + """""" + sourceAsn_neq: uint32 + + """""" + sourceAsn_notin: [uint32!] + + """""" + sourceCountry: string + + """""" + sourceCountry_geq: string + + """""" + sourceCountry_gt: string + + """""" + sourceCountry_in: [string!] + + """""" + sourceCountry_leq: string + + """""" + sourceCountry_like: string + + """""" + sourceCountry_lt: string + + """""" + sourceCountry_neq: string + + """""" + sourceCountry_notin: [string!] + + """""" + sourceCountry_notlike: string + + """""" + sourceGeohash: string + + """""" + sourceGeohash_geq: string + + """""" + sourceGeohash_gt: string + + """""" + sourceGeohash_in: [string!] + + """""" + sourceGeohash_leq: string + + """""" + sourceGeohash_like: string + + """""" + sourceGeohash_lt: string + + """""" + sourceGeohash_neq: string + + """""" + sourceGeohash_notin: [string!] + + """""" + sourceGeohash_notlike: string + + """""" + sourcePort: uint16 + + """""" + sourcePort_geq: uint16 + + """""" + sourcePort_gt: uint16 + + """""" + sourcePort_in: [uint16!] + + """""" + sourcePort_leq: uint16 + + """""" + sourcePort_lt: uint16 + + """""" + sourcePort_neq: uint16 + + """""" + sourcePort_notin: [uint16!] + + """""" + tcpAcknowledgementNumber: uint32 + + """""" + tcpAcknowledgementNumber_geq: uint32 + + """""" + tcpAcknowledgementNumber_gt: uint32 + + """""" + tcpAcknowledgementNumber_in: [uint32!] + + """""" + tcpAcknowledgementNumber_leq: uint32 + + """""" + tcpAcknowledgementNumber_lt: uint32 + + """""" + tcpAcknowledgementNumber_neq: uint32 + + """""" + tcpAcknowledgementNumber_notin: [uint32!] + + """""" + tcpChecksum: uint16 + + """""" + tcpChecksum_geq: uint16 + + """""" + tcpChecksum_gt: uint16 + + """""" + tcpChecksum_in: [uint16!] + + """""" + tcpChecksum_leq: uint16 + + """""" + tcpChecksum_lt: uint16 + + """""" + tcpChecksum_neq: uint16 + + """""" + tcpChecksum_notin: [uint16!] + + """""" + tcpDataOffset: uint16 + + """""" + tcpDataOffset_geq: uint16 + + """""" + tcpDataOffset_gt: uint16 + + """""" + tcpDataOffset_in: [uint16!] + + """""" + tcpDataOffset_leq: uint16 + + """""" + tcpDataOffset_lt: uint16 + + """""" + tcpDataOffset_neq: uint16 + + """""" + tcpDataOffset_notin: [uint16!] + + """""" + tcpFlags: uint8 + + """""" + tcpFlagsString: string + + """""" + tcpFlagsString_geq: string + + """""" + tcpFlagsString_gt: string + + """""" + tcpFlagsString_in: [string!] + + """""" + tcpFlagsString_leq: string + + """""" + tcpFlagsString_like: string + + """""" + tcpFlagsString_lt: string + + """""" + tcpFlagsString_neq: string + + """""" + tcpFlagsString_notin: [string!] + + """""" + tcpFlagsString_notlike: string + + """""" + tcpFlags_geq: uint8 + + """""" + tcpFlags_gt: uint8 + + """""" + tcpFlags_in: bytes + + """""" + tcpFlags_leq: uint8 + + """""" + tcpFlags_lt: uint8 + + """""" + tcpFlags_neq: uint8 + + """""" + tcpFlags_notin: bytes + + """""" + tcpMss: uint16 + + """""" + tcpMss_geq: uint16 + + """""" + tcpMss_gt: uint16 + + """""" + tcpMss_in: [uint16!] + + """""" + tcpMss_leq: uint16 + + """""" + tcpMss_lt: uint16 + + """""" + tcpMss_neq: uint16 + + """""" + tcpMss_notin: [uint16!] + + """""" + tcpOptions: string + + """""" + tcpOptions_geq: string + + """""" + tcpOptions_gt: string + + """""" + tcpOptions_in: [string!] + + """""" + tcpOptions_leq: string + + """""" + tcpOptions_like: string + + """""" + tcpOptions_lt: string + + """""" + tcpOptions_neq: string + + """""" + tcpOptions_notin: [string!] + + """""" + tcpOptions_notlike: string + + """""" + tcpSackBlocks: string + + """""" + tcpSackBlocks_geq: string + + """""" + tcpSackBlocks_gt: string + + """""" + tcpSackBlocks_in: [string!] + + """""" + tcpSackBlocks_leq: string + + """""" + tcpSackBlocks_like: string + + """""" + tcpSackBlocks_lt: string + + """""" + tcpSackBlocks_neq: string + + """""" + tcpSackBlocks_notin: [string!] + + """""" + tcpSackBlocks_notlike: string + + """""" + tcpSackPermitted: uint8 + + """""" + tcpSackPermitted_geq: uint8 + + """""" + tcpSackPermitted_gt: uint8 + + """""" + tcpSackPermitted_in: bytes + + """""" + tcpSackPermitted_leq: uint8 + + """""" + tcpSackPermitted_lt: uint8 + + """""" + tcpSackPermitted_neq: uint8 + + """""" + tcpSackPermitted_notin: bytes + + """""" + tcpSequenceNumber: uint32 + + """""" + tcpSequenceNumber_geq: uint32 + + """""" + tcpSequenceNumber_gt: uint32 + + """""" + tcpSequenceNumber_in: [uint32!] + + """""" + tcpSequenceNumber_leq: uint32 + + """""" + tcpSequenceNumber_lt: uint32 + + """""" + tcpSequenceNumber_neq: uint32 + + """""" + tcpSequenceNumber_notin: [uint32!] + + """""" + tcpTimestampEcr: uint32 + + """""" + tcpTimestampEcr_geq: uint32 + + """""" + tcpTimestampEcr_gt: uint32 + + """""" + tcpTimestampEcr_in: [uint32!] + + """""" + tcpTimestampEcr_leq: uint32 + + """""" + tcpTimestampEcr_lt: uint32 + + """""" + tcpTimestampEcr_neq: uint32 + + """""" + tcpTimestampEcr_notin: [uint32!] + + """""" + tcpTimestampValue: uint32 + + """""" + tcpTimestampValue_geq: uint32 + + """""" + tcpTimestampValue_gt: uint32 + + """""" + tcpTimestampValue_in: [uint32!] + + """""" + tcpTimestampValue_leq: uint32 + + """""" + tcpTimestampValue_lt: uint32 + + """""" + tcpTimestampValue_neq: uint32 + + """""" + tcpTimestampValue_notin: [uint32!] + + """""" + tcpUrgentPointer: uint16 + + """""" + tcpUrgentPointer_geq: uint16 + + """""" + tcpUrgentPointer_gt: uint16 + + """""" + tcpUrgentPointer_in: [uint16!] + + """""" + tcpUrgentPointer_leq: uint16 + + """""" + tcpUrgentPointer_lt: uint16 + + """""" + tcpUrgentPointer_neq: uint16 + + """""" + tcpUrgentPointer_notin: [uint16!] + + """""" + tcpWindowScale: uint16 + + """""" + tcpWindowScale_geq: uint16 + + """""" + tcpWindowScale_gt: uint16 + + """""" + tcpWindowScale_in: [uint16!] + + """""" + tcpWindowScale_leq: uint16 + + """""" + tcpWindowScale_lt: uint16 + + """""" + tcpWindowScale_neq: uint16 + + """""" + tcpWindowScale_notin: [uint16!] + + """""" + tcpWindowSize: uint16 + + """""" + tcpWindowSize_geq: uint16 + + """""" + tcpWindowSize_gt: uint16 + + """""" + tcpWindowSize_in: [uint16!] + + """""" + tcpWindowSize_leq: uint16 + + """""" + tcpWindowSize_lt: uint16 + + """""" + tcpWindowSize_neq: uint16 + + """""" + tcpWindowSize_notin: [uint16!] + + """""" + udpChecksum: uint16 + + """""" + udpChecksum_geq: uint16 + + """""" + udpChecksum_gt: uint16 + + """""" + udpChecksum_in: [uint16!] + + """""" + udpChecksum_leq: uint16 + + """""" + udpChecksum_lt: uint16 + + """""" + udpChecksum_neq: uint16 + + """""" + udpChecksum_notin: [uint16!] + + """""" + udpPayloadLength: uint16 + + """""" + udpPayloadLength_geq: uint16 + + """""" + udpPayloadLength_gt: uint16 + + """""" + udpPayloadLength_in: [uint16!] + + """""" + udpPayloadLength_leq: uint16 + + """""" + udpPayloadLength_lt: uint16 + + """""" + udpPayloadLength_neq: uint16 + + """""" + udpPayloadLength_notin: [uint16!] + + """""" + verdict: string + + """""" + verdict_geq: string + + """""" + verdict_gt: string + + """""" + verdict_in: [string!] + + """""" + verdict_leq: string + + """""" + verdict_like: string + + """""" + verdict_lt: string + + """""" + verdict_neq: string + + """""" + verdict_notin: [string!] + + """""" + verdict_notlike: string +} + +"""""" +enum AccountAdvancedDnsProtectionNetworkAnalyticsAdaptiveGroupsOrderBy { + """applicationTag ascending""" + applicationTag_ASC + + """applicationTag descending""" + applicationTag_DESC + + """avg(bitRateDay) ascending""" + avg_bitRateDay_ASC + + """avg(bitRateDay) descending""" + avg_bitRateDay_DESC + + """avg(bitRateFifteenMinutes) ascending""" + avg_bitRateFifteenMinutes_ASC + + """avg(bitRateFifteenMinutes) descending""" + avg_bitRateFifteenMinutes_DESC + + """avg(bitRateFiveMinutes) ascending""" + avg_bitRateFiveMinutes_ASC + + """avg(bitRateFiveMinutes) descending""" + avg_bitRateFiveMinutes_DESC + + """avg(bitRateHour) ascending""" + avg_bitRateHour_ASC + + """avg(bitRateHour) descending""" + avg_bitRateHour_DESC + + """avg(bitRateMinute) ascending""" + avg_bitRateMinute_ASC + + """avg(bitRateMinute) descending""" + avg_bitRateMinute_DESC + + """avg(bitRateTenSeconds) ascending""" + avg_bitRateTenSeconds_ASC + + """avg(bitRateTenSeconds) descending""" + avg_bitRateTenSeconds_DESC + + """avg(bitRate) ascending""" + avg_bitRate_ASC + + """avg(bitRate) descending""" + avg_bitRate_DESC + + """avg(packetRateDay) ascending""" + avg_packetRateDay_ASC + + """avg(packetRateDay) descending""" + avg_packetRateDay_DESC + + """avg(packetRateFifteenMinutes) ascending""" + avg_packetRateFifteenMinutes_ASC + + """avg(packetRateFifteenMinutes) descending""" + avg_packetRateFifteenMinutes_DESC + + """avg(packetRateFiveMinutes) ascending""" + avg_packetRateFiveMinutes_ASC + + """avg(packetRateFiveMinutes) descending""" + avg_packetRateFiveMinutes_DESC + + """avg(packetRateHour) ascending""" + avg_packetRateHour_ASC + + """avg(packetRateHour) descending""" + avg_packetRateHour_DESC + + """avg(packetRateMinute) ascending""" + avg_packetRateMinute_ASC + + """avg(packetRateMinute) descending""" + avg_packetRateMinute_DESC + + """avg(packetRateTenSeconds) ascending""" + avg_packetRateTenSeconds_ASC + + """avg(packetRateTenSeconds) descending""" + avg_packetRateTenSeconds_DESC + + """avg(packetRate) ascending""" + avg_packetRate_ASC + + """avg(packetRate) descending""" + avg_packetRate_DESC + + """coloCity ascending""" + coloCity_ASC + + """coloCity descending""" + coloCity_DESC + + """coloCode ascending""" + coloCode_ASC + + """coloCode descending""" + coloCode_DESC + + """coloCountry ascending""" + coloCountry_ASC + + """coloCountry descending""" + coloCountry_DESC + + """coloGeohash ascending""" + coloGeohash_ASC + + """coloGeohash descending""" + coloGeohash_DESC + + """coloName ascending""" + coloName_ASC + + """coloName descending""" + coloName_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetimeTenSeconds ascending""" + datetimeTenSeconds_ASC + + """datetimeTenSeconds descending""" + datetimeTenSeconds_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """destinationAsnName ascending""" + destinationAsnName_ASC + + """destinationAsnName descending""" + destinationAsnName_DESC + + """destinationAsn ascending""" + destinationAsn_ASC + + """destinationAsn descending""" + destinationAsn_DESC + + """destinationCountry ascending""" + destinationCountry_ASC + + """destinationCountry descending""" + destinationCountry_DESC + + """destinationGeohash ascending""" + destinationGeohash_ASC + + """destinationGeohash descending""" + destinationGeohash_DESC + + """destinationPort ascending""" + destinationPort_ASC + + """destinationPort descending""" + destinationPort_DESC + + """direction ascending""" + direction_ASC + + """direction descending""" + direction_DESC + + """dnsQueryName ascending""" + dnsQueryName_ASC + + """dnsQueryName descending""" + dnsQueryName_DESC + + """dnsQueryType ascending""" + dnsQueryType_ASC + + """dnsQueryType descending""" + dnsQueryType_DESC + + """ethertype ascending""" + ethertype_ASC + + """ethertype descending""" + ethertype_DESC + + """greChecksum ascending""" + greChecksum_ASC + + """greChecksum descending""" + greChecksum_DESC + + """greEthertype ascending""" + greEthertype_ASC + + """greEthertype descending""" + greEthertype_DESC + + """greHeaderLength ascending""" + greHeaderLength_ASC + + """greHeaderLength descending""" + greHeaderLength_DESC + + """greKey ascending""" + greKey_ASC + + """greKey descending""" + greKey_DESC + + """greSequenceNumber ascending""" + greSequenceNumber_ASC + + """greSequenceNumber descending""" + greSequenceNumber_DESC + + """greVersion ascending""" + greVersion_ASC + + """greVersion descending""" + greVersion_DESC + + """icmpChecksum ascending""" + icmpChecksum_ASC + + """icmpChecksum descending""" + icmpChecksum_DESC + + """icmpCode ascending""" + icmpCode_ASC + + """icmpCode descending""" + icmpCode_DESC + + """icmpType ascending""" + icmpType_ASC + + """icmpType descending""" + icmpType_DESC + + """ipDestinationAddress ascending""" + ipDestinationAddress_ASC + + """ipDestinationAddress descending""" + ipDestinationAddress_DESC + + """ipDestinationSubnet ascending""" + ipDestinationSubnet_ASC + + """ipDestinationSubnet descending""" + ipDestinationSubnet_DESC + + """ipFragmentOffset ascending""" + ipFragmentOffset_ASC + + """ipFragmentOffset descending""" + ipFragmentOffset_DESC + + """ipHeaderLength ascending""" + ipHeaderLength_ASC + + """ipHeaderLength descending""" + ipHeaderLength_DESC + + """ipMoreFragments ascending""" + ipMoreFragments_ASC + + """ipMoreFragments descending""" + ipMoreFragments_DESC + + """ipProtocolName ascending""" + ipProtocolName_ASC + + """ipProtocolName descending""" + ipProtocolName_DESC + + """ipProtocol ascending""" + ipProtocol_ASC + + """ipProtocol descending""" + ipProtocol_DESC + + """ipSourceAddress ascending""" + ipSourceAddress_ASC + + """ipSourceAddress descending""" + ipSourceAddress_DESC + + """ipSourceSubnet ascending""" + ipSourceSubnet_ASC + + """ipSourceSubnet descending""" + ipSourceSubnet_DESC + + """ipTotalLengthBuckets ascending""" + ipTotalLengthBuckets_ASC + + """ipTotalLengthBuckets descending""" + ipTotalLengthBuckets_DESC + + """ipTotalLength ascending""" + ipTotalLength_ASC + + """ipTotalLength descending""" + ipTotalLength_DESC + + """ipTtlBuckets ascending""" + ipTtlBuckets_ASC + + """ipTtlBuckets descending""" + ipTtlBuckets_DESC + + """ipTtl ascending""" + ipTtl_ASC + + """ipTtl descending""" + ipTtl_DESC + + """ipv4Checksum ascending""" + ipv4Checksum_ASC + + """ipv4Checksum descending""" + ipv4Checksum_DESC + + """ipv4DontFragment ascending""" + ipv4DontFragment_ASC + + """ipv4DontFragment descending""" + ipv4DontFragment_DESC + + """ipv4Dscp ascending""" + ipv4Dscp_ASC + + """ipv4Dscp descending""" + ipv4Dscp_DESC + + """ipv4Ecn ascending""" + ipv4Ecn_ASC + + """ipv4Ecn descending""" + ipv4Ecn_DESC + + """ipv4Identification ascending""" + ipv4Identification_ASC + + """ipv4Identification descending""" + ipv4Identification_DESC + + """ipv4Options ascending""" + ipv4Options_ASC + + """ipv4Options descending""" + ipv4Options_DESC + + """ipv6Dscp ascending""" + ipv6Dscp_ASC + + """ipv6Dscp descending""" + ipv6Dscp_DESC + + """ipv6Ecn ascending""" + ipv6Ecn_ASC + + """ipv6Ecn descending""" + ipv6Ecn_DESC + + """ipv6ExtensionHeaders ascending""" + ipv6ExtensionHeaders_ASC + + """ipv6ExtensionHeaders descending""" + ipv6ExtensionHeaders_DESC + + """ipv6FlowLabel ascending""" + ipv6FlowLabel_ASC + + """ipv6FlowLabel descending""" + ipv6FlowLabel_DESC + + """ipv6Identification ascending""" + ipv6Identification_ASC + + """ipv6Identification descending""" + ipv6Identification_DESC + + """leaseTag ascending""" + leaseTag_ASC + + """leaseTag descending""" + leaseTag_DESC + + """mitigationReason ascending""" + mitigationReason_ASC + + """mitigationReason descending""" + mitigationReason_DESC + + """mitigationScope ascending""" + mitigationScope_ASC + + """mitigationScope descending""" + mitigationScope_DESC + + """outcome ascending""" + outcome_ASC + + """outcome descending""" + outcome_DESC + + """prefixTag ascending""" + prefixTag_ASC + + """prefixTag descending""" + prefixTag_DESC + + """sampleInterval ascending""" + sampleInterval_ASC + + """sampleInterval descending""" + sampleInterval_DESC + + """sourceAsnName ascending""" + sourceAsnName_ASC + + """sourceAsnName descending""" + sourceAsnName_DESC + + """sourceAsn ascending""" + sourceAsn_ASC + + """sourceAsn descending""" + sourceAsn_DESC + + """sourceCountry ascending""" + sourceCountry_ASC + + """sourceCountry descending""" + sourceCountry_DESC + + """sourceGeohash ascending""" + sourceGeohash_ASC + + """sourceGeohash descending""" + sourceGeohash_DESC + + """sourcePort ascending""" + sourcePort_ASC + + """sourcePort descending""" + sourcePort_DESC + + """sum(bits) ascending""" + sum_bits_ASC + + """sum(bits) descending""" + sum_bits_DESC + + """sum(packets) ascending""" + sum_packets_ASC + + """sum(packets) descending""" + sum_packets_DESC + + """system ascending""" + system_ASC + + """system descending""" + system_DESC + + """tcpAcknowledgementNumber ascending""" + tcpAcknowledgementNumber_ASC + + """tcpAcknowledgementNumber descending""" + tcpAcknowledgementNumber_DESC + + """tcpChecksum ascending""" + tcpChecksum_ASC + + """tcpChecksum descending""" + tcpChecksum_DESC + + """tcpDataOffset ascending""" + tcpDataOffset_ASC + + """tcpDataOffset descending""" + tcpDataOffset_DESC + + """tcpFlagsString ascending""" + tcpFlagsString_ASC + + """tcpFlagsString descending""" + tcpFlagsString_DESC + + """tcpFlags ascending""" + tcpFlags_ASC + + """tcpFlags descending""" + tcpFlags_DESC + + """tcpMss ascending""" + tcpMss_ASC + + """tcpMss descending""" + tcpMss_DESC + + """tcpOptions ascending""" + tcpOptions_ASC + + """tcpOptions descending""" + tcpOptions_DESC + + """tcpSackBlocks ascending""" + tcpSackBlocks_ASC + + """tcpSackBlocks descending""" + tcpSackBlocks_DESC + + """tcpSackPermitted ascending""" + tcpSackPermitted_ASC + + """tcpSackPermitted descending""" + tcpSackPermitted_DESC + + """tcpSequenceNumber ascending""" + tcpSequenceNumber_ASC + + """tcpSequenceNumber descending""" + tcpSequenceNumber_DESC + + """tcpTimestampEcr ascending""" + tcpTimestampEcr_ASC + + """tcpTimestampEcr descending""" + tcpTimestampEcr_DESC + + """tcpTimestampValue ascending""" + tcpTimestampValue_ASC + + """tcpTimestampValue descending""" + tcpTimestampValue_DESC + + """tcpUrgentPointer ascending""" + tcpUrgentPointer_ASC + + """tcpUrgentPointer descending""" + tcpUrgentPointer_DESC + + """tcpWindowScale ascending""" + tcpWindowScale_ASC + + """tcpWindowScale descending""" + tcpWindowScale_DESC + + """tcpWindowSize ascending""" + tcpWindowSize_ASC + + """tcpWindowSize descending""" + tcpWindowSize_DESC + + """udpChecksum ascending""" + udpChecksum_ASC + + """udpChecksum descending""" + udpChecksum_DESC + + """udpPayloadLength ascending""" + udpPayloadLength_ASC + + """udpPayloadLength descending""" + udpPayloadLength_DESC + + """verdict ascending""" + verdict_ASC + + """verdict descending""" + verdict_DESC +} + +"""""" +type AccountAdvancedDnsProtectionNetworkAnalyticsAdaptiveGroupsSum { + """Sum of bits received""" + bits: uint64! + + """Sum of packets received""" + packets: uint64! +} + +"""""" +type AccountAdvancedDnsProtectionNetworkAnalyticsAdaptiveGroupsSumConfidence { + """Confidence interval for the corresponding point estimate""" + bits: Confidence! + + """Confidence interval for the corresponding point estimate""" + packets: Confidence! +} + +"""Network analytics data for Advanced TCP Protection""" +type AccountAdvancedTcpProtectionNetworkAnalyticsAdaptiveGroups { + """The average of values for a metric per dimension""" + avg: AccountAdvancedTcpProtectionNetworkAnalyticsAdaptiveGroupsAvg + + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountAdvancedTcpProtectionNetworkAnalyticsAdaptiveGroupsConfidence! + + """List of dimensions to group by""" + dimensions: AccountAdvancedTcpProtectionNetworkAnalyticsAdaptiveGroupsDimensions + + """The sum of values for a metric per dimension""" + sum: AccountAdvancedTcpProtectionNetworkAnalyticsAdaptiveGroupsSum +} + +"""""" +type AccountAdvancedTcpProtectionNetworkAnalyticsAdaptiveGroupsAvg { + """ + Sum of bits received, divided by 1 second, providing a per-second bit rate when grouped by datetime + """ + bitRate: uint64! + + """ + Sum of bits received, divided by 86400 seconds, providing a per-second bit rate when grouped by date + """ + bitRateDay: uint64! + + """ + Sum of bits received, divided by 900 seconds, providing a per-second bit rate when grouped by datetimeFifteenMinutes + """ + bitRateFifteenMinutes: uint64! + + """ + Sum of bits received, divided by 300 seconds, providing a per-second bit rate when grouped by datetimeFiveMinutes + """ + bitRateFiveMinutes: uint64! + + """ + Sum of bits received, divided by 3600 seconds, providing a per-second bit rate when grouped by datetimeHour + """ + bitRateHour: uint64! + + """ + Sum of bits received, divided by 60 seconds, providing a per-second bit rate when grouped by datetimeMinute + """ + bitRateMinute: uint64! + + """ + Sum of bits received, divided by 10 seconds, providing a per-second bit rate when grouped by datetimeTenSeconds + """ + bitRateTenSeconds: uint64! + + """ + Sum of packets received, divided by 1 second, providing a per-second packet rate when grouped by datetime + """ + packetRate: uint64! + + """ + Sum of packets received, divided by 86400 seconds, providing a per-second packet rate when grouped by date + """ + packetRateDay: uint64! + + """ + Sum of packets received, divided by 900 seconds, providing a per-second packet rate when grouped by datetimeFifteenMinutes + """ + packetRateFifteenMinutes: uint64! + + """ + Sum of packets received, divided by 300 seconds, providing a per-second packet rate when grouped by datetimeFiveMinutes + """ + packetRateFiveMinutes: uint64! + + """ + Sum of packets received, divided by 3600 seconds, providing a per-second packet rate when grouped by datetimeHour + """ + packetRateHour: uint64! + + """ + Sum of packets received, divided by 60 seconds, providing a per-second packet rate when grouped by datetimeMinute + """ + packetRateMinute: uint64! + + """ + Sum of packets received, divided by 10 seconds, providing a per-second packet rate when grouped by datetimeTenSeconds + """ + packetRateTenSeconds: uint64! +} + +"""""" +type AccountAdvancedTcpProtectionNetworkAnalyticsAdaptiveGroupsAvgConfidence { + """Confidence interval for the corresponding point estimate""" + bitRate: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateDay: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateFifteenMinutes: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateFiveMinutes: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateHour: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateMinute: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateTenSeconds: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRate: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateDay: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateFifteenMinutes: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateFiveMinutes: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateHour: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateMinute: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateTenSeconds: Confidence! +} + +"""""" +type AccountAdvancedTcpProtectionNetworkAnalyticsAdaptiveGroupsConfidence { + """ + The average of values for a metric per dimension, with confidence intervals + """ + avg: AccountAdvancedTcpProtectionNetworkAnalyticsAdaptiveGroupsAvgConfidence + + """Confidence level that was requested""" + level: float64! + + """ + The sum of values for a metric per dimension, with confidence intervals + """ + sum: AccountAdvancedTcpProtectionNetworkAnalyticsAdaptiveGroupsSumConfidence +} + +"""""" +type AccountAdvancedTcpProtectionNetworkAnalyticsAdaptiveGroupsDimensions { + """Application tag associated with the packet""" + applicationTag: string! + + """ + City where the Cloudflare datacenter that received the packet is located + """ + coloCity: string! + + """ + Cloudflare datacenter that received the packet (nearest IATA airport code) + """ + coloCode: string! + + """ + Country where the Cloudflare datacenter that received the packet is located (ISO 3166-1 alpha-2) + """ + coloCountry: string! + + """ + Latitude and longitude where the Cloudflare datacenter that received the packet is located (Geohash encoding) + """ + coloGeohash: string! + + """ + Cloudflare datacenter that received the packet (unique site identifier) + """ + coloName: string! + + """Date that the packet was received""" + date: Date! + + """Date and time that the packet was received""" + datetime: Time! + + """ + Date and time that the packet was received, rounded to the start of the nearest fifteen minutes + """ + datetimeFifteenMinutes: Time! + + """ + Date and time that the packet was received, rounded to the start of the nearest five minutes + """ + datetimeFiveMinutes: Time! + + """ + Date and time that the packet was received, rounded to the start of the nearest hour + """ + datetimeHour: Time! + + """ + Date and time that the packet was received, rounded to the start of the nearest minute + """ + datetimeMinute: Time! + + """ + Date and time that the packet was received, rounded to the start of the nearest ten seconds + """ + datetimeTenSeconds: Time! + + """ + ASN associated with the destination IP of the packet, or 0 if there was no mapping available + """ + destinationAsn: uint32! + + """ + Name of ASN associated with the destination IP of the packet, if available + """ + destinationAsnName: string! + + """ + Country where the destination IP of the packet is located (ISO 3166-1 alpha-2) + """ + destinationCountry: string! + + """ + Latitude and longitude where the destination IP of the packet is located (Geohash encoding) + """ + destinationGeohash: string! + + """Value of the Destination Port header field in the TCP or UDP packet""" + destinationPort: uint16! + + """ + Direction of the packet relative to the customer network (possible values: inbound, outbound, lateral) + """ + direction: string! + + """ + Value of the Ethertype header field in the Ethernet packet (2048 for IPv4; 34525 for IPv6) + """ + ethertype: uint16! + + """Value of the Checkusm header field in the GRE packet""" + greChecksum: uint16! + + """Value of the Ethertype header field in the GRE packet""" + greEthertype: uint16! + + """Length of the GRE packet header, in bytes""" + greHeaderLength: uint16! + + """Value of the Key header field in the GRE packet""" + greKey: uint32! + + """Value of the Sequence Number header field in the GRE packet""" + greSequenceNumber: uint32! + + """Value of the Version header field in the GRE packet""" + greVersion: uint8! + + """Value of the Checkusm header field in the ICMP packet""" + icmpChecksum: uint16! + + """Value of the Code header field in the ICMP packet""" + icmpCode: uint8! + + """Value of the Type header field in the ICMP packet""" + icmpType: uint8! + + """ + Value of the Destination Address header field in the IPv4 or IPv6 packet + """ + ipDestinationAddress: string! + + """ + Computed subnet of the Destination Address header field in the IPv4 or IPv6 packet (/24 for IPv4; /48 for IPv6) + """ + ipDestinationSubnet: string! + + """Value of the Fragment Offset header field in the IPv4 or IPv6 packet""" + ipFragmentOffset: uint16! + + """Length of the IPv4 or IPv6 packet header, in bytes""" + ipHeaderLength: uint16! + + """Value of the More Fragments header field in the IPv4 or IPv6 packet""" + ipMoreFragments: uint8! + + """Value of the Protocol header field in the IPv4 or IPv6 packet""" + ipProtocol: uint8! + + """ + Name of the protocol specified by the Protocol header field in the IPv4 or IPv6 packet + """ + ipProtocolName: string! + + """Value of the Source Address header field in the IPv4 or IPv6 packet""" + ipSourceAddress: string! + + """ + Computed subnet of the Source Address header field in the IPv4 or IPv6 packet (/24 for IPv4; /48 for IPv6) + """ + ipSourceSubnet: string! + + """Total length of the IPv4 or IPv6 packet, in bytes""" + ipTotalLength: uint16! + + """ + Total length of the IPv4 or IPv6 packet, in bytes, with the last two digits truncated + """ + ipTotalLengthBuckets: uint16! + + """ + Value of the TTL header field in the IPv4 packet or the Hop Limit header field in the IPv6 packet + """ + ipTtl: uint8! + + """ + Value of the TTL header field in the IPv4 packet or the Hop Limit header field in the IPv6 packet, with the last digit truncated + """ + ipTtlBuckets: uint8! + + """Value of the Checksum header field in the IPv4 packet""" + ipv4Checksum: uint16! + + """Value of the Don't Fragment header field in the IPv4 packet""" + ipv4DontFragment: uint8! + + """ + Value of the Differentiated Services Code Point header field in the IPv4 packet + """ + ipv4Dscp: uint8! + + """ + Value of the Explicit Congestion Notification header field in the IPv4 packet + """ + ipv4Ecn: uint8! + + """Value of the Identification header field in the IPv4 packet""" + ipv4Identification: uint16! + + """List of Options numbers included in the IPv4 packet header""" + ipv4Options: string! + + """ + Value of the Differentiated Services Code Point header field in the IPv6 packet + """ + ipv6Dscp: uint8! + + """ + Value of the Explicit Congestion Notification header field in the IPv6 packet + """ + ipv6Ecn: uint8! + + """List of Extension Header numbers included in the IPv6 packet header""" + ipv6ExtensionHeaders: string! + + """Value of the Flow Label header field in the IPv6 packet""" + ipv6FlowLabel: uint32! + + """Value of the Identification extension header field in the IPv6 packet""" + ipv6Identification: uint32! + + """IP lease tag associated with the packet""" + leaseTag: string! + + """Reason for applying a mitigation to the packet, if any""" + mitigationReason: string! + + """ + Whether the packet matched a local or global mitigation, if any (possible values: local, global) + """ + mitigationScope: string! + + """The action that was taken on the packet (possible values: pass, drop)""" + outcome: string! + + """IP prefix tag associated with the packet""" + prefixTag: string! + + """State of the packet in the context of the protocol, if available""" + protocolState: string! + + """ABR sample interval""" + sampleInterval: uint32! + + """ + ASN associated with the source IP of the packet, or 0 if there was no mapping available + """ + sourceAsn: uint32! + + """Name of ASN associated with the source IP of the packet, if available""" + sourceAsnName: string! + + """ + Country where the source IP of the packet is located (ISO 3166-1 alpha-2) + """ + sourceCountry: string! + + """ + Latitude and longitude where the source IP of the packet is located (Geohash encoding) + """ + sourceGeohash: string! + + """Value of the Source Port header field in the TCP or UDP packet""" + sourcePort: uint16! + + """Value of the Acknowledgement Number header field in the TCP packet""" + tcpAcknowledgementNumber: uint32! + + """Value of the Checkusm header field in the TCP packet""" + tcpChecksum: uint16! + + """Value of the Data Offset header field in the TCP packet""" + tcpDataOffset: uint16! + + """Value of the Flags header field in the TCP packet""" + tcpFlags: uint8! + + """ + Human-readable string representation of the Flags header field in the TCP packet + """ + tcpFlagsString: string! + + """Value of the MSS option header field in the TCP packet""" + tcpMss: uint16! + + """List of Options numbers included in the TCP packet header""" + tcpOptions: string! + + """Value of the SACK Blocks option header field in the TCP packet""" + tcpSackBlocks: string! + + """Value of the SACK Permitted option header field in the TCP packet""" + tcpSackPermitted: uint8! + + """Value of the Sequence Number header field in the TCP packet""" + tcpSequenceNumber: uint32! + + """ + Value of the Timestamp Echo Reply option header field in the TCP packet + """ + tcpTimestampEcr: uint32! + + """Value of the Timestamp option header field in the TCP packet""" + tcpTimestampValue: uint32! + + """Value of the Urgent Pointer header field in the TCP packet""" + tcpUrgentPointer: uint16! + + """Value of the Window Scale option header field in the TCP packet""" + tcpWindowScale: uint16! + + """Value of the Window Size header field in the TCP packet""" + tcpWindowSize: uint16! + + """Value of the Checkusm header field in the UDP packet""" + udpChecksum: uint16! + + """Value of the Payload Length header field in the UDP packet""" + udpPayloadLength: uint16! + + """ + The action that Cloudflare thinks should be taken on the packet (possible values: pass, drop) + """ + verdict: string! +} + +"""""" +input AccountAdvancedTcpProtectionNetworkAnalyticsAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountAdvancedTcpProtectionNetworkAnalyticsAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountAdvancedTcpProtectionNetworkAnalyticsAdaptiveGroupsFilter_InputObject!] + + """""" + applicationTag: string + + """""" + applicationTag_geq: string + + """""" + applicationTag_gt: string + + """""" + applicationTag_in: [string!] + + """""" + applicationTag_leq: string + + """""" + applicationTag_like: string + + """""" + applicationTag_lt: string + + """""" + applicationTag_neq: string + + """""" + applicationTag_notin: [string!] + + """""" + applicationTag_notlike: string + + """""" + coloCity: string + + """""" + coloCity_geq: string + + """""" + coloCity_gt: string + + """""" + coloCity_in: [string!] + + """""" + coloCity_leq: string + + """""" + coloCity_like: string + + """""" + coloCity_lt: string + + """""" + coloCity_neq: string + + """""" + coloCity_notin: [string!] + + """""" + coloCity_notlike: string + + """""" + coloCode: string + + """""" + coloCode_geq: string + + """""" + coloCode_gt: string + + """""" + coloCode_in: [string!] + + """""" + coloCode_leq: string + + """""" + coloCode_like: string + + """""" + coloCode_lt: string + + """""" + coloCode_neq: string + + """""" + coloCode_notin: [string!] + + """""" + coloCode_notlike: string + + """""" + coloCountry: string + + """""" + coloCountry_geq: string + + """""" + coloCountry_gt: string + + """""" + coloCountry_in: [string!] + + """""" + coloCountry_leq: string + + """""" + coloCountry_like: string + + """""" + coloCountry_lt: string + + """""" + coloCountry_neq: string + + """""" + coloCountry_notin: [string!] + + """""" + coloCountry_notlike: string + + """""" + coloGeohash: string + + """""" + coloGeohash_geq: string + + """""" + coloGeohash_gt: string + + """""" + coloGeohash_in: [string!] + + """""" + coloGeohash_leq: string + + """""" + coloGeohash_like: string + + """""" + coloGeohash_lt: string + + """""" + coloGeohash_neq: string + + """""" + coloGeohash_notin: [string!] + + """""" + coloGeohash_notlike: string + + """""" + coloName: string + + """""" + coloName_geq: string + + """""" + coloName_gt: string + + """""" + coloName_in: [string!] + + """""" + coloName_leq: string + + """""" + coloName_like: string + + """""" + coloName_lt: string + + """""" + coloName_neq: string + + """""" + coloName_notin: [string!] + + """""" + coloName_notlike: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetimeTenSeconds: Time + + """""" + datetimeTenSeconds_geq: Time + + """""" + datetimeTenSeconds_gt: Time + + """""" + datetimeTenSeconds_in: [Time!] + + """""" + datetimeTenSeconds_leq: Time + + """""" + datetimeTenSeconds_lt: Time + + """""" + datetimeTenSeconds_neq: Time + + """""" + datetimeTenSeconds_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + destinationAsn: uint32 + + """""" + destinationAsnName: string + + """""" + destinationAsnName_geq: string + + """""" + destinationAsnName_gt: string + + """""" + destinationAsnName_in: [string!] + + """""" + destinationAsnName_leq: string + + """""" + destinationAsnName_like: string + + """""" + destinationAsnName_lt: string + + """""" + destinationAsnName_neq: string + + """""" + destinationAsnName_notin: [string!] + + """""" + destinationAsnName_notlike: string + + """""" + destinationAsn_geq: uint32 + + """""" + destinationAsn_gt: uint32 + + """""" + destinationAsn_in: [uint32!] + + """""" + destinationAsn_leq: uint32 + + """""" + destinationAsn_lt: uint32 + + """""" + destinationAsn_neq: uint32 + + """""" + destinationAsn_notin: [uint32!] + + """""" + destinationCountry: string + + """""" + destinationCountry_geq: string + + """""" + destinationCountry_gt: string + + """""" + destinationCountry_in: [string!] + + """""" + destinationCountry_leq: string + + """""" + destinationCountry_like: string + + """""" + destinationCountry_lt: string + + """""" + destinationCountry_neq: string + + """""" + destinationCountry_notin: [string!] + + """""" + destinationCountry_notlike: string + + """""" + destinationGeohash: string + + """""" + destinationGeohash_geq: string + + """""" + destinationGeohash_gt: string + + """""" + destinationGeohash_in: [string!] + + """""" + destinationGeohash_leq: string + + """""" + destinationGeohash_like: string + + """""" + destinationGeohash_lt: string + + """""" + destinationGeohash_neq: string + + """""" + destinationGeohash_notin: [string!] + + """""" + destinationGeohash_notlike: string + + """""" + destinationPort: uint16 + + """""" + destinationPort_geq: uint16 + + """""" + destinationPort_gt: uint16 + + """""" + destinationPort_in: [uint16!] + + """""" + destinationPort_leq: uint16 + + """""" + destinationPort_lt: uint16 + + """""" + destinationPort_neq: uint16 + + """""" + destinationPort_notin: [uint16!] + + """""" + direction: string + + """""" + direction_geq: string + + """""" + direction_gt: string + + """""" + direction_in: [string!] + + """""" + direction_leq: string + + """""" + direction_like: string + + """""" + direction_lt: string + + """""" + direction_neq: string + + """""" + direction_notin: [string!] + + """""" + direction_notlike: string + + """""" + ethertype: uint16 + + """""" + ethertype_geq: uint16 + + """""" + ethertype_gt: uint16 + + """""" + ethertype_in: [uint16!] + + """""" + ethertype_leq: uint16 + + """""" + ethertype_lt: uint16 + + """""" + ethertype_neq: uint16 + + """""" + ethertype_notin: [uint16!] + + """""" + greChecksum: uint16 + + """""" + greChecksum_geq: uint16 + + """""" + greChecksum_gt: uint16 + + """""" + greChecksum_in: [uint16!] + + """""" + greChecksum_leq: uint16 + + """""" + greChecksum_lt: uint16 + + """""" + greChecksum_neq: uint16 + + """""" + greChecksum_notin: [uint16!] + + """""" + greEthertype: uint16 + + """""" + greEthertype_geq: uint16 + + """""" + greEthertype_gt: uint16 + + """""" + greEthertype_in: [uint16!] + + """""" + greEthertype_leq: uint16 + + """""" + greEthertype_lt: uint16 + + """""" + greEthertype_neq: uint16 + + """""" + greEthertype_notin: [uint16!] + + """""" + greHeaderLength: uint16 + + """""" + greHeaderLength_geq: uint16 + + """""" + greHeaderLength_gt: uint16 + + """""" + greHeaderLength_in: [uint16!] + + """""" + greHeaderLength_leq: uint16 + + """""" + greHeaderLength_lt: uint16 + + """""" + greHeaderLength_neq: uint16 + + """""" + greHeaderLength_notin: [uint16!] + + """""" + greKey: uint32 + + """""" + greKey_geq: uint32 + + """""" + greKey_gt: uint32 + + """""" + greKey_in: [uint32!] + + """""" + greKey_leq: uint32 + + """""" + greKey_lt: uint32 + + """""" + greKey_neq: uint32 + + """""" + greKey_notin: [uint32!] + + """""" + greSequenceNumber: uint32 + + """""" + greSequenceNumber_geq: uint32 + + """""" + greSequenceNumber_gt: uint32 + + """""" + greSequenceNumber_in: [uint32!] + + """""" + greSequenceNumber_leq: uint32 + + """""" + greSequenceNumber_lt: uint32 + + """""" + greSequenceNumber_neq: uint32 + + """""" + greSequenceNumber_notin: [uint32!] + + """""" + greVersion: uint8 + + """""" + greVersion_geq: uint8 + + """""" + greVersion_gt: uint8 + + """""" + greVersion_in: bytes + + """""" + greVersion_leq: uint8 + + """""" + greVersion_lt: uint8 + + """""" + greVersion_neq: uint8 + + """""" + greVersion_notin: bytes + + """""" + icmpChecksum: uint16 + + """""" + icmpChecksum_geq: uint16 + + """""" + icmpChecksum_gt: uint16 + + """""" + icmpChecksum_in: [uint16!] + + """""" + icmpChecksum_leq: uint16 + + """""" + icmpChecksum_lt: uint16 + + """""" + icmpChecksum_neq: uint16 + + """""" + icmpChecksum_notin: [uint16!] + + """""" + icmpCode: uint8 + + """""" + icmpCode_geq: uint8 + + """""" + icmpCode_gt: uint8 + + """""" + icmpCode_in: bytes + + """""" + icmpCode_leq: uint8 + + """""" + icmpCode_lt: uint8 + + """""" + icmpCode_neq: uint8 + + """""" + icmpCode_notin: bytes + + """""" + icmpType: uint8 + + """""" + icmpType_geq: uint8 + + """""" + icmpType_gt: uint8 + + """""" + icmpType_in: bytes + + """""" + icmpType_leq: uint8 + + """""" + icmpType_lt: uint8 + + """""" + icmpType_neq: uint8 + + """""" + icmpType_notin: bytes + + """""" + ipDestinationAddress: string + + """""" + ipDestinationAddress_geq: string + + """""" + ipDestinationAddress_gt: string + + """""" + ipDestinationAddress_in: [string!] + + """""" + ipDestinationAddress_leq: string + + """""" + ipDestinationAddress_like: string + + """""" + ipDestinationAddress_lt: string + + """""" + ipDestinationAddress_neq: string + + """""" + ipDestinationAddress_notin: [string!] + + """""" + ipDestinationAddress_notlike: string + + """""" + ipDestinationSubnet: string + + """""" + ipDestinationSubnet_geq: string + + """""" + ipDestinationSubnet_gt: string + + """""" + ipDestinationSubnet_in: [string!] + + """""" + ipDestinationSubnet_leq: string + + """""" + ipDestinationSubnet_like: string + + """""" + ipDestinationSubnet_lt: string + + """""" + ipDestinationSubnet_neq: string + + """""" + ipDestinationSubnet_notin: [string!] + + """""" + ipDestinationSubnet_notlike: string + + """""" + ipFragmentOffset: uint16 + + """""" + ipFragmentOffset_geq: uint16 + + """""" + ipFragmentOffset_gt: uint16 + + """""" + ipFragmentOffset_in: [uint16!] + + """""" + ipFragmentOffset_leq: uint16 + + """""" + ipFragmentOffset_lt: uint16 + + """""" + ipFragmentOffset_neq: uint16 + + """""" + ipFragmentOffset_notin: [uint16!] + + """""" + ipHeaderLength: uint16 + + """""" + ipHeaderLength_geq: uint16 + + """""" + ipHeaderLength_gt: uint16 + + """""" + ipHeaderLength_in: [uint16!] + + """""" + ipHeaderLength_leq: uint16 + + """""" + ipHeaderLength_lt: uint16 + + """""" + ipHeaderLength_neq: uint16 + + """""" + ipHeaderLength_notin: [uint16!] + + """""" + ipMoreFragments: uint8 + + """""" + ipMoreFragments_geq: uint8 + + """""" + ipMoreFragments_gt: uint8 + + """""" + ipMoreFragments_in: bytes + + """""" + ipMoreFragments_leq: uint8 + + """""" + ipMoreFragments_lt: uint8 + + """""" + ipMoreFragments_neq: uint8 + + """""" + ipMoreFragments_notin: bytes + + """""" + ipProtocol: uint8 + + """""" + ipProtocolName: string + + """""" + ipProtocolName_geq: string + + """""" + ipProtocolName_gt: string + + """""" + ipProtocolName_in: [string!] + + """""" + ipProtocolName_leq: string + + """""" + ipProtocolName_like: string + + """""" + ipProtocolName_lt: string + + """""" + ipProtocolName_neq: string + + """""" + ipProtocolName_notin: [string!] + + """""" + ipProtocolName_notlike: string + + """""" + ipProtocol_geq: uint8 + + """""" + ipProtocol_gt: uint8 + + """""" + ipProtocol_in: bytes + + """""" + ipProtocol_leq: uint8 + + """""" + ipProtocol_lt: uint8 + + """""" + ipProtocol_neq: uint8 + + """""" + ipProtocol_notin: bytes + + """""" + ipSourceAddress: string + + """""" + ipSourceAddress_geq: string + + """""" + ipSourceAddress_gt: string + + """""" + ipSourceAddress_in: [string!] + + """""" + ipSourceAddress_leq: string + + """""" + ipSourceAddress_like: string + + """""" + ipSourceAddress_lt: string + + """""" + ipSourceAddress_neq: string + + """""" + ipSourceAddress_notin: [string!] + + """""" + ipSourceAddress_notlike: string + + """""" + ipSourceSubnet: string + + """""" + ipSourceSubnet_geq: string + + """""" + ipSourceSubnet_gt: string + + """""" + ipSourceSubnet_in: [string!] + + """""" + ipSourceSubnet_leq: string + + """""" + ipSourceSubnet_like: string + + """""" + ipSourceSubnet_lt: string + + """""" + ipSourceSubnet_neq: string + + """""" + ipSourceSubnet_notin: [string!] + + """""" + ipSourceSubnet_notlike: string + + """""" + ipTotalLength: uint16 + + """""" + ipTotalLengthBuckets: uint16 + + """""" + ipTotalLengthBuckets_geq: uint16 + + """""" + ipTotalLengthBuckets_gt: uint16 + + """""" + ipTotalLengthBuckets_in: [uint16!] + + """""" + ipTotalLengthBuckets_leq: uint16 + + """""" + ipTotalLengthBuckets_lt: uint16 + + """""" + ipTotalLengthBuckets_neq: uint16 + + """""" + ipTotalLengthBuckets_notin: [uint16!] + + """""" + ipTotalLength_geq: uint16 + + """""" + ipTotalLength_gt: uint16 + + """""" + ipTotalLength_in: [uint16!] + + """""" + ipTotalLength_leq: uint16 + + """""" + ipTotalLength_lt: uint16 + + """""" + ipTotalLength_neq: uint16 + + """""" + ipTotalLength_notin: [uint16!] + + """""" + ipTtl: uint8 + + """""" + ipTtlBuckets: uint8 + + """""" + ipTtlBuckets_geq: uint8 + + """""" + ipTtlBuckets_gt: uint8 + + """""" + ipTtlBuckets_in: bytes + + """""" + ipTtlBuckets_leq: uint8 + + """""" + ipTtlBuckets_lt: uint8 + + """""" + ipTtlBuckets_neq: uint8 + + """""" + ipTtlBuckets_notin: bytes + + """""" + ipTtl_geq: uint8 + + """""" + ipTtl_gt: uint8 + + """""" + ipTtl_in: bytes + + """""" + ipTtl_leq: uint8 + + """""" + ipTtl_lt: uint8 + + """""" + ipTtl_neq: uint8 + + """""" + ipTtl_notin: bytes + + """""" + ipv4Checksum: uint16 + + """""" + ipv4Checksum_geq: uint16 + + """""" + ipv4Checksum_gt: uint16 + + """""" + ipv4Checksum_in: [uint16!] + + """""" + ipv4Checksum_leq: uint16 + + """""" + ipv4Checksum_lt: uint16 + + """""" + ipv4Checksum_neq: uint16 + + """""" + ipv4Checksum_notin: [uint16!] + + """""" + ipv4DontFragment: uint8 + + """""" + ipv4DontFragment_geq: uint8 + + """""" + ipv4DontFragment_gt: uint8 + + """""" + ipv4DontFragment_in: bytes + + """""" + ipv4DontFragment_leq: uint8 + + """""" + ipv4DontFragment_lt: uint8 + + """""" + ipv4DontFragment_neq: uint8 + + """""" + ipv4DontFragment_notin: bytes + + """""" + ipv4Dscp: uint8 + + """""" + ipv4Dscp_geq: uint8 + + """""" + ipv4Dscp_gt: uint8 + + """""" + ipv4Dscp_in: bytes + + """""" + ipv4Dscp_leq: uint8 + + """""" + ipv4Dscp_lt: uint8 + + """""" + ipv4Dscp_neq: uint8 + + """""" + ipv4Dscp_notin: bytes + + """""" + ipv4Ecn: uint8 + + """""" + ipv4Ecn_geq: uint8 + + """""" + ipv4Ecn_gt: uint8 + + """""" + ipv4Ecn_in: bytes + + """""" + ipv4Ecn_leq: uint8 + + """""" + ipv4Ecn_lt: uint8 + + """""" + ipv4Ecn_neq: uint8 + + """""" + ipv4Ecn_notin: bytes + + """""" + ipv4Identification: uint16 + + """""" + ipv4Identification_geq: uint16 + + """""" + ipv4Identification_gt: uint16 + + """""" + ipv4Identification_in: [uint16!] + + """""" + ipv4Identification_leq: uint16 + + """""" + ipv4Identification_lt: uint16 + + """""" + ipv4Identification_neq: uint16 + + """""" + ipv4Identification_notin: [uint16!] + + """""" + ipv4Options: string + + """""" + ipv4Options_geq: string + + """""" + ipv4Options_gt: string + + """""" + ipv4Options_in: [string!] + + """""" + ipv4Options_leq: string + + """""" + ipv4Options_like: string + + """""" + ipv4Options_lt: string + + """""" + ipv4Options_neq: string + + """""" + ipv4Options_notin: [string!] + + """""" + ipv4Options_notlike: string + + """""" + ipv6Dscp: uint8 + + """""" + ipv6Dscp_geq: uint8 + + """""" + ipv6Dscp_gt: uint8 + + """""" + ipv6Dscp_in: bytes + + """""" + ipv6Dscp_leq: uint8 + + """""" + ipv6Dscp_lt: uint8 + + """""" + ipv6Dscp_neq: uint8 + + """""" + ipv6Dscp_notin: bytes + + """""" + ipv6Ecn: uint8 + + """""" + ipv6Ecn_geq: uint8 + + """""" + ipv6Ecn_gt: uint8 + + """""" + ipv6Ecn_in: bytes + + """""" + ipv6Ecn_leq: uint8 + + """""" + ipv6Ecn_lt: uint8 + + """""" + ipv6Ecn_neq: uint8 + + """""" + ipv6Ecn_notin: bytes + + """""" + ipv6ExtensionHeaders: string + + """""" + ipv6ExtensionHeaders_geq: string + + """""" + ipv6ExtensionHeaders_gt: string + + """""" + ipv6ExtensionHeaders_in: [string!] + + """""" + ipv6ExtensionHeaders_leq: string + + """""" + ipv6ExtensionHeaders_like: string + + """""" + ipv6ExtensionHeaders_lt: string + + """""" + ipv6ExtensionHeaders_neq: string + + """""" + ipv6ExtensionHeaders_notin: [string!] + + """""" + ipv6ExtensionHeaders_notlike: string + + """""" + ipv6FlowLabel: uint32 + + """""" + ipv6FlowLabel_geq: uint32 + + """""" + ipv6FlowLabel_gt: uint32 + + """""" + ipv6FlowLabel_in: [uint32!] + + """""" + ipv6FlowLabel_leq: uint32 + + """""" + ipv6FlowLabel_lt: uint32 + + """""" + ipv6FlowLabel_neq: uint32 + + """""" + ipv6FlowLabel_notin: [uint32!] + + """""" + ipv6Identification: uint32 + + """""" + ipv6Identification_geq: uint32 + + """""" + ipv6Identification_gt: uint32 + + """""" + ipv6Identification_in: [uint32!] + + """""" + ipv6Identification_leq: uint32 + + """""" + ipv6Identification_lt: uint32 + + """""" + ipv6Identification_neq: uint32 + + """""" + ipv6Identification_notin: [uint32!] + + """""" + leaseTag: string + + """""" + leaseTag_geq: string + + """""" + leaseTag_gt: string + + """""" + leaseTag_in: [string!] + + """""" + leaseTag_leq: string + + """""" + leaseTag_like: string + + """""" + leaseTag_lt: string + + """""" + leaseTag_neq: string + + """""" + leaseTag_notin: [string!] + + """""" + leaseTag_notlike: string + + """""" + mitigationReason: string + + """""" + mitigationReason_geq: string + + """""" + mitigationReason_gt: string + + """""" + mitigationReason_in: [string!] + + """""" + mitigationReason_leq: string + + """""" + mitigationReason_like: string + + """""" + mitigationReason_lt: string + + """""" + mitigationReason_neq: string + + """""" + mitigationReason_notin: [string!] + + """""" + mitigationReason_notlike: string + + """""" + mitigationScope: string + + """""" + mitigationScope_geq: string + + """""" + mitigationScope_gt: string + + """""" + mitigationScope_in: [string!] + + """""" + mitigationScope_leq: string + + """""" + mitigationScope_like: string + + """""" + mitigationScope_lt: string + + """""" + mitigationScope_neq: string + + """""" + mitigationScope_notin: [string!] + + """""" + mitigationScope_notlike: string + + """""" + outcome: string + + """""" + outcome_geq: string + + """""" + outcome_gt: string + + """""" + outcome_in: [string!] + + """""" + outcome_leq: string + + """""" + outcome_like: string + + """""" + outcome_lt: string + + """""" + outcome_neq: string + + """""" + outcome_notin: [string!] + + """""" + outcome_notlike: string + + """""" + prefixTag: string + + """""" + prefixTag_geq: string + + """""" + prefixTag_gt: string + + """""" + prefixTag_in: [string!] + + """""" + prefixTag_leq: string + + """""" + prefixTag_like: string + + """""" + prefixTag_lt: string + + """""" + prefixTag_neq: string + + """""" + prefixTag_notin: [string!] + + """""" + prefixTag_notlike: string + + """""" + protocolState: string + + """""" + protocolState_geq: string + + """""" + protocolState_gt: string + + """""" + protocolState_in: [string!] + + """""" + protocolState_leq: string + + """""" + protocolState_like: string + + """""" + protocolState_lt: string + + """""" + protocolState_neq: string + + """""" + protocolState_notin: [string!] + + """""" + protocolState_notlike: string + + """""" + sampleInterval: uint32 + + """""" + sampleInterval_geq: uint32 + + """""" + sampleInterval_gt: uint32 + + """""" + sampleInterval_in: [uint32!] + + """""" + sampleInterval_leq: uint32 + + """""" + sampleInterval_lt: uint32 + + """""" + sampleInterval_neq: uint32 + + """""" + sampleInterval_notin: [uint32!] + + """""" + sourceAsn: uint32 + + """""" + sourceAsnName: string + + """""" + sourceAsnName_geq: string + + """""" + sourceAsnName_gt: string + + """""" + sourceAsnName_in: [string!] + + """""" + sourceAsnName_leq: string + + """""" + sourceAsnName_like: string + + """""" + sourceAsnName_lt: string + + """""" + sourceAsnName_neq: string + + """""" + sourceAsnName_notin: [string!] + + """""" + sourceAsnName_notlike: string + + """""" + sourceAsn_geq: uint32 + + """""" + sourceAsn_gt: uint32 + + """""" + sourceAsn_in: [uint32!] + + """""" + sourceAsn_leq: uint32 + + """""" + sourceAsn_lt: uint32 + + """""" + sourceAsn_neq: uint32 + + """""" + sourceAsn_notin: [uint32!] + + """""" + sourceCountry: string + + """""" + sourceCountry_geq: string + + """""" + sourceCountry_gt: string + + """""" + sourceCountry_in: [string!] + + """""" + sourceCountry_leq: string + + """""" + sourceCountry_like: string + + """""" + sourceCountry_lt: string + + """""" + sourceCountry_neq: string + + """""" + sourceCountry_notin: [string!] + + """""" + sourceCountry_notlike: string + + """""" + sourceGeohash: string + + """""" + sourceGeohash_geq: string + + """""" + sourceGeohash_gt: string + + """""" + sourceGeohash_in: [string!] + + """""" + sourceGeohash_leq: string + + """""" + sourceGeohash_like: string + + """""" + sourceGeohash_lt: string + + """""" + sourceGeohash_neq: string + + """""" + sourceGeohash_notin: [string!] + + """""" + sourceGeohash_notlike: string + + """""" + sourcePort: uint16 + + """""" + sourcePort_geq: uint16 + + """""" + sourcePort_gt: uint16 + + """""" + sourcePort_in: [uint16!] + + """""" + sourcePort_leq: uint16 + + """""" + sourcePort_lt: uint16 + + """""" + sourcePort_neq: uint16 + + """""" + sourcePort_notin: [uint16!] + + """""" + tcpAcknowledgementNumber: uint32 + + """""" + tcpAcknowledgementNumber_geq: uint32 + + """""" + tcpAcknowledgementNumber_gt: uint32 + + """""" + tcpAcknowledgementNumber_in: [uint32!] + + """""" + tcpAcknowledgementNumber_leq: uint32 + + """""" + tcpAcknowledgementNumber_lt: uint32 + + """""" + tcpAcknowledgementNumber_neq: uint32 + + """""" + tcpAcknowledgementNumber_notin: [uint32!] + + """""" + tcpChecksum: uint16 + + """""" + tcpChecksum_geq: uint16 + + """""" + tcpChecksum_gt: uint16 + + """""" + tcpChecksum_in: [uint16!] + + """""" + tcpChecksum_leq: uint16 + + """""" + tcpChecksum_lt: uint16 + + """""" + tcpChecksum_neq: uint16 + + """""" + tcpChecksum_notin: [uint16!] + + """""" + tcpDataOffset: uint16 + + """""" + tcpDataOffset_geq: uint16 + + """""" + tcpDataOffset_gt: uint16 + + """""" + tcpDataOffset_in: [uint16!] + + """""" + tcpDataOffset_leq: uint16 + + """""" + tcpDataOffset_lt: uint16 + + """""" + tcpDataOffset_neq: uint16 + + """""" + tcpDataOffset_notin: [uint16!] + + """""" + tcpFlags: uint8 + + """""" + tcpFlagsString: string + + """""" + tcpFlagsString_geq: string + + """""" + tcpFlagsString_gt: string + + """""" + tcpFlagsString_in: [string!] + + """""" + tcpFlagsString_leq: string + + """""" + tcpFlagsString_like: string + + """""" + tcpFlagsString_lt: string + + """""" + tcpFlagsString_neq: string + + """""" + tcpFlagsString_notin: [string!] + + """""" + tcpFlagsString_notlike: string + + """""" + tcpFlags_geq: uint8 + + """""" + tcpFlags_gt: uint8 + + """""" + tcpFlags_in: bytes + + """""" + tcpFlags_leq: uint8 + + """""" + tcpFlags_lt: uint8 + + """""" + tcpFlags_neq: uint8 + + """""" + tcpFlags_notin: bytes + + """""" + tcpMss: uint16 + + """""" + tcpMss_geq: uint16 + + """""" + tcpMss_gt: uint16 + + """""" + tcpMss_in: [uint16!] + + """""" + tcpMss_leq: uint16 + + """""" + tcpMss_lt: uint16 + + """""" + tcpMss_neq: uint16 + + """""" + tcpMss_notin: [uint16!] + + """""" + tcpOptions: string + + """""" + tcpOptions_geq: string + + """""" + tcpOptions_gt: string + + """""" + tcpOptions_in: [string!] + + """""" + tcpOptions_leq: string + + """""" + tcpOptions_like: string + + """""" + tcpOptions_lt: string + + """""" + tcpOptions_neq: string + + """""" + tcpOptions_notin: [string!] + + """""" + tcpOptions_notlike: string + + """""" + tcpSackBlocks: string + + """""" + tcpSackBlocks_geq: string + + """""" + tcpSackBlocks_gt: string + + """""" + tcpSackBlocks_in: [string!] + + """""" + tcpSackBlocks_leq: string + + """""" + tcpSackBlocks_like: string + + """""" + tcpSackBlocks_lt: string + + """""" + tcpSackBlocks_neq: string + + """""" + tcpSackBlocks_notin: [string!] + + """""" + tcpSackBlocks_notlike: string + + """""" + tcpSackPermitted: uint8 + + """""" + tcpSackPermitted_geq: uint8 + + """""" + tcpSackPermitted_gt: uint8 + + """""" + tcpSackPermitted_in: bytes + + """""" + tcpSackPermitted_leq: uint8 + + """""" + tcpSackPermitted_lt: uint8 + + """""" + tcpSackPermitted_neq: uint8 + + """""" + tcpSackPermitted_notin: bytes + + """""" + tcpSequenceNumber: uint32 + + """""" + tcpSequenceNumber_geq: uint32 + + """""" + tcpSequenceNumber_gt: uint32 + + """""" + tcpSequenceNumber_in: [uint32!] + + """""" + tcpSequenceNumber_leq: uint32 + + """""" + tcpSequenceNumber_lt: uint32 + + """""" + tcpSequenceNumber_neq: uint32 + + """""" + tcpSequenceNumber_notin: [uint32!] + + """""" + tcpTimestampEcr: uint32 + + """""" + tcpTimestampEcr_geq: uint32 + + """""" + tcpTimestampEcr_gt: uint32 + + """""" + tcpTimestampEcr_in: [uint32!] + + """""" + tcpTimestampEcr_leq: uint32 + + """""" + tcpTimestampEcr_lt: uint32 + + """""" + tcpTimestampEcr_neq: uint32 + + """""" + tcpTimestampEcr_notin: [uint32!] + + """""" + tcpTimestampValue: uint32 + + """""" + tcpTimestampValue_geq: uint32 + + """""" + tcpTimestampValue_gt: uint32 + + """""" + tcpTimestampValue_in: [uint32!] + + """""" + tcpTimestampValue_leq: uint32 + + """""" + tcpTimestampValue_lt: uint32 + + """""" + tcpTimestampValue_neq: uint32 + + """""" + tcpTimestampValue_notin: [uint32!] + + """""" + tcpUrgentPointer: uint16 + + """""" + tcpUrgentPointer_geq: uint16 + + """""" + tcpUrgentPointer_gt: uint16 + + """""" + tcpUrgentPointer_in: [uint16!] + + """""" + tcpUrgentPointer_leq: uint16 + + """""" + tcpUrgentPointer_lt: uint16 + + """""" + tcpUrgentPointer_neq: uint16 + + """""" + tcpUrgentPointer_notin: [uint16!] + + """""" + tcpWindowScale: uint16 + + """""" + tcpWindowScale_geq: uint16 + + """""" + tcpWindowScale_gt: uint16 + + """""" + tcpWindowScale_in: [uint16!] + + """""" + tcpWindowScale_leq: uint16 + + """""" + tcpWindowScale_lt: uint16 + + """""" + tcpWindowScale_neq: uint16 + + """""" + tcpWindowScale_notin: [uint16!] + + """""" + tcpWindowSize: uint16 + + """""" + tcpWindowSize_geq: uint16 + + """""" + tcpWindowSize_gt: uint16 + + """""" + tcpWindowSize_in: [uint16!] + + """""" + tcpWindowSize_leq: uint16 + + """""" + tcpWindowSize_lt: uint16 + + """""" + tcpWindowSize_neq: uint16 + + """""" + tcpWindowSize_notin: [uint16!] + + """""" + udpChecksum: uint16 + + """""" + udpChecksum_geq: uint16 + + """""" + udpChecksum_gt: uint16 + + """""" + udpChecksum_in: [uint16!] + + """""" + udpChecksum_leq: uint16 + + """""" + udpChecksum_lt: uint16 + + """""" + udpChecksum_neq: uint16 + + """""" + udpChecksum_notin: [uint16!] + + """""" + udpPayloadLength: uint16 + + """""" + udpPayloadLength_geq: uint16 + + """""" + udpPayloadLength_gt: uint16 + + """""" + udpPayloadLength_in: [uint16!] + + """""" + udpPayloadLength_leq: uint16 + + """""" + udpPayloadLength_lt: uint16 + + """""" + udpPayloadLength_neq: uint16 + + """""" + udpPayloadLength_notin: [uint16!] + + """""" + verdict: string + + """""" + verdict_geq: string + + """""" + verdict_gt: string + + """""" + verdict_in: [string!] + + """""" + verdict_leq: string + + """""" + verdict_like: string + + """""" + verdict_lt: string + + """""" + verdict_neq: string + + """""" + verdict_notin: [string!] + + """""" + verdict_notlike: string +} + +"""""" +enum AccountAdvancedTcpProtectionNetworkAnalyticsAdaptiveGroupsOrderBy { + """applicationTag ascending""" + applicationTag_ASC + + """applicationTag descending""" + applicationTag_DESC + + """avg(bitRateDay) ascending""" + avg_bitRateDay_ASC + + """avg(bitRateDay) descending""" + avg_bitRateDay_DESC + + """avg(bitRateFifteenMinutes) ascending""" + avg_bitRateFifteenMinutes_ASC + + """avg(bitRateFifteenMinutes) descending""" + avg_bitRateFifteenMinutes_DESC + + """avg(bitRateFiveMinutes) ascending""" + avg_bitRateFiveMinutes_ASC + + """avg(bitRateFiveMinutes) descending""" + avg_bitRateFiveMinutes_DESC + + """avg(bitRateHour) ascending""" + avg_bitRateHour_ASC + + """avg(bitRateHour) descending""" + avg_bitRateHour_DESC + + """avg(bitRateMinute) ascending""" + avg_bitRateMinute_ASC + + """avg(bitRateMinute) descending""" + avg_bitRateMinute_DESC + + """avg(bitRateTenSeconds) ascending""" + avg_bitRateTenSeconds_ASC + + """avg(bitRateTenSeconds) descending""" + avg_bitRateTenSeconds_DESC + + """avg(bitRate) ascending""" + avg_bitRate_ASC + + """avg(bitRate) descending""" + avg_bitRate_DESC + + """avg(packetRateDay) ascending""" + avg_packetRateDay_ASC + + """avg(packetRateDay) descending""" + avg_packetRateDay_DESC + + """avg(packetRateFifteenMinutes) ascending""" + avg_packetRateFifteenMinutes_ASC + + """avg(packetRateFifteenMinutes) descending""" + avg_packetRateFifteenMinutes_DESC + + """avg(packetRateFiveMinutes) ascending""" + avg_packetRateFiveMinutes_ASC + + """avg(packetRateFiveMinutes) descending""" + avg_packetRateFiveMinutes_DESC + + """avg(packetRateHour) ascending""" + avg_packetRateHour_ASC + + """avg(packetRateHour) descending""" + avg_packetRateHour_DESC + + """avg(packetRateMinute) ascending""" + avg_packetRateMinute_ASC + + """avg(packetRateMinute) descending""" + avg_packetRateMinute_DESC + + """avg(packetRateTenSeconds) ascending""" + avg_packetRateTenSeconds_ASC + + """avg(packetRateTenSeconds) descending""" + avg_packetRateTenSeconds_DESC + + """avg(packetRate) ascending""" + avg_packetRate_ASC + + """avg(packetRate) descending""" + avg_packetRate_DESC + + """coloCity ascending""" + coloCity_ASC + + """coloCity descending""" + coloCity_DESC + + """coloCode ascending""" + coloCode_ASC + + """coloCode descending""" + coloCode_DESC + + """coloCountry ascending""" + coloCountry_ASC + + """coloCountry descending""" + coloCountry_DESC + + """coloGeohash ascending""" + coloGeohash_ASC + + """coloGeohash descending""" + coloGeohash_DESC + + """coloName ascending""" + coloName_ASC + + """coloName descending""" + coloName_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetimeTenSeconds ascending""" + datetimeTenSeconds_ASC + + """datetimeTenSeconds descending""" + datetimeTenSeconds_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """destinationAsnName ascending""" + destinationAsnName_ASC + + """destinationAsnName descending""" + destinationAsnName_DESC + + """destinationAsn ascending""" + destinationAsn_ASC + + """destinationAsn descending""" + destinationAsn_DESC + + """destinationCountry ascending""" + destinationCountry_ASC + + """destinationCountry descending""" + destinationCountry_DESC + + """destinationGeohash ascending""" + destinationGeohash_ASC + + """destinationGeohash descending""" + destinationGeohash_DESC + + """destinationPort ascending""" + destinationPort_ASC + + """destinationPort descending""" + destinationPort_DESC + + """direction ascending""" + direction_ASC + + """direction descending""" + direction_DESC + + """ethertype ascending""" + ethertype_ASC + + """ethertype descending""" + ethertype_DESC + + """greChecksum ascending""" + greChecksum_ASC + + """greChecksum descending""" + greChecksum_DESC + + """greEthertype ascending""" + greEthertype_ASC + + """greEthertype descending""" + greEthertype_DESC + + """greHeaderLength ascending""" + greHeaderLength_ASC + + """greHeaderLength descending""" + greHeaderLength_DESC + + """greKey ascending""" + greKey_ASC + + """greKey descending""" + greKey_DESC + + """greSequenceNumber ascending""" + greSequenceNumber_ASC + + """greSequenceNumber descending""" + greSequenceNumber_DESC + + """greVersion ascending""" + greVersion_ASC + + """greVersion descending""" + greVersion_DESC + + """icmpChecksum ascending""" + icmpChecksum_ASC + + """icmpChecksum descending""" + icmpChecksum_DESC + + """icmpCode ascending""" + icmpCode_ASC + + """icmpCode descending""" + icmpCode_DESC + + """icmpType ascending""" + icmpType_ASC + + """icmpType descending""" + icmpType_DESC + + """ipDestinationAddress ascending""" + ipDestinationAddress_ASC + + """ipDestinationAddress descending""" + ipDestinationAddress_DESC + + """ipDestinationSubnet ascending""" + ipDestinationSubnet_ASC + + """ipDestinationSubnet descending""" + ipDestinationSubnet_DESC + + """ipFragmentOffset ascending""" + ipFragmentOffset_ASC + + """ipFragmentOffset descending""" + ipFragmentOffset_DESC + + """ipHeaderLength ascending""" + ipHeaderLength_ASC + + """ipHeaderLength descending""" + ipHeaderLength_DESC + + """ipMoreFragments ascending""" + ipMoreFragments_ASC + + """ipMoreFragments descending""" + ipMoreFragments_DESC + + """ipProtocolName ascending""" + ipProtocolName_ASC + + """ipProtocolName descending""" + ipProtocolName_DESC + + """ipProtocol ascending""" + ipProtocol_ASC + + """ipProtocol descending""" + ipProtocol_DESC + + """ipSourceAddress ascending""" + ipSourceAddress_ASC + + """ipSourceAddress descending""" + ipSourceAddress_DESC + + """ipSourceSubnet ascending""" + ipSourceSubnet_ASC + + """ipSourceSubnet descending""" + ipSourceSubnet_DESC + + """ipTotalLengthBuckets ascending""" + ipTotalLengthBuckets_ASC + + """ipTotalLengthBuckets descending""" + ipTotalLengthBuckets_DESC + + """ipTotalLength ascending""" + ipTotalLength_ASC + + """ipTotalLength descending""" + ipTotalLength_DESC + + """ipTtlBuckets ascending""" + ipTtlBuckets_ASC + + """ipTtlBuckets descending""" + ipTtlBuckets_DESC + + """ipTtl ascending""" + ipTtl_ASC + + """ipTtl descending""" + ipTtl_DESC + + """ipv4Checksum ascending""" + ipv4Checksum_ASC + + """ipv4Checksum descending""" + ipv4Checksum_DESC + + """ipv4DontFragment ascending""" + ipv4DontFragment_ASC + + """ipv4DontFragment descending""" + ipv4DontFragment_DESC + + """ipv4Dscp ascending""" + ipv4Dscp_ASC + + """ipv4Dscp descending""" + ipv4Dscp_DESC + + """ipv4Ecn ascending""" + ipv4Ecn_ASC + + """ipv4Ecn descending""" + ipv4Ecn_DESC + + """ipv4Identification ascending""" + ipv4Identification_ASC + + """ipv4Identification descending""" + ipv4Identification_DESC + + """ipv4Options ascending""" + ipv4Options_ASC + + """ipv4Options descending""" + ipv4Options_DESC + + """ipv6Dscp ascending""" + ipv6Dscp_ASC + + """ipv6Dscp descending""" + ipv6Dscp_DESC + + """ipv6Ecn ascending""" + ipv6Ecn_ASC + + """ipv6Ecn descending""" + ipv6Ecn_DESC + + """ipv6ExtensionHeaders ascending""" + ipv6ExtensionHeaders_ASC + + """ipv6ExtensionHeaders descending""" + ipv6ExtensionHeaders_DESC + + """ipv6FlowLabel ascending""" + ipv6FlowLabel_ASC + + """ipv6FlowLabel descending""" + ipv6FlowLabel_DESC + + """ipv6Identification ascending""" + ipv6Identification_ASC + + """ipv6Identification descending""" + ipv6Identification_DESC + + """leaseTag ascending""" + leaseTag_ASC + + """leaseTag descending""" + leaseTag_DESC + + """mitigationReason ascending""" + mitigationReason_ASC + + """mitigationReason descending""" + mitigationReason_DESC + + """mitigationScope ascending""" + mitigationScope_ASC + + """mitigationScope descending""" + mitigationScope_DESC + + """outcome ascending""" + outcome_ASC + + """outcome descending""" + outcome_DESC + + """prefixTag ascending""" + prefixTag_ASC + + """prefixTag descending""" + prefixTag_DESC + + """protocolState ascending""" + protocolState_ASC + + """protocolState descending""" + protocolState_DESC + + """sampleInterval ascending""" + sampleInterval_ASC + + """sampleInterval descending""" + sampleInterval_DESC + + """sourceAsnName ascending""" + sourceAsnName_ASC + + """sourceAsnName descending""" + sourceAsnName_DESC + + """sourceAsn ascending""" + sourceAsn_ASC + + """sourceAsn descending""" + sourceAsn_DESC + + """sourceCountry ascending""" + sourceCountry_ASC + + """sourceCountry descending""" + sourceCountry_DESC + + """sourceGeohash ascending""" + sourceGeohash_ASC + + """sourceGeohash descending""" + sourceGeohash_DESC + + """sourcePort ascending""" + sourcePort_ASC + + """sourcePort descending""" + sourcePort_DESC + + """sum(bits) ascending""" + sum_bits_ASC + + """sum(bits) descending""" + sum_bits_DESC + + """sum(packets) ascending""" + sum_packets_ASC + + """sum(packets) descending""" + sum_packets_DESC + + """system ascending""" + system_ASC + + """system descending""" + system_DESC + + """tcpAcknowledgementNumber ascending""" + tcpAcknowledgementNumber_ASC + + """tcpAcknowledgementNumber descending""" + tcpAcknowledgementNumber_DESC + + """tcpChecksum ascending""" + tcpChecksum_ASC + + """tcpChecksum descending""" + tcpChecksum_DESC + + """tcpDataOffset ascending""" + tcpDataOffset_ASC + + """tcpDataOffset descending""" + tcpDataOffset_DESC + + """tcpFlagsString ascending""" + tcpFlagsString_ASC + + """tcpFlagsString descending""" + tcpFlagsString_DESC + + """tcpFlags ascending""" + tcpFlags_ASC + + """tcpFlags descending""" + tcpFlags_DESC + + """tcpMss ascending""" + tcpMss_ASC + + """tcpMss descending""" + tcpMss_DESC + + """tcpOptions ascending""" + tcpOptions_ASC + + """tcpOptions descending""" + tcpOptions_DESC + + """tcpSackBlocks ascending""" + tcpSackBlocks_ASC + + """tcpSackBlocks descending""" + tcpSackBlocks_DESC + + """tcpSackPermitted ascending""" + tcpSackPermitted_ASC + + """tcpSackPermitted descending""" + tcpSackPermitted_DESC + + """tcpSequenceNumber ascending""" + tcpSequenceNumber_ASC + + """tcpSequenceNumber descending""" + tcpSequenceNumber_DESC + + """tcpTimestampEcr ascending""" + tcpTimestampEcr_ASC + + """tcpTimestampEcr descending""" + tcpTimestampEcr_DESC + + """tcpTimestampValue ascending""" + tcpTimestampValue_ASC + + """tcpTimestampValue descending""" + tcpTimestampValue_DESC + + """tcpUrgentPointer ascending""" + tcpUrgentPointer_ASC + + """tcpUrgentPointer descending""" + tcpUrgentPointer_DESC + + """tcpWindowScale ascending""" + tcpWindowScale_ASC + + """tcpWindowScale descending""" + tcpWindowScale_DESC + + """tcpWindowSize ascending""" + tcpWindowSize_ASC + + """tcpWindowSize descending""" + tcpWindowSize_DESC + + """udpChecksum ascending""" + udpChecksum_ASC + + """udpChecksum descending""" + udpChecksum_DESC + + """udpPayloadLength ascending""" + udpPayloadLength_ASC + + """udpPayloadLength descending""" + udpPayloadLength_DESC + + """verdict ascending""" + verdict_ASC + + """verdict descending""" + verdict_DESC +} + +"""""" +type AccountAdvancedTcpProtectionNetworkAnalyticsAdaptiveGroupsSum { + """Sum of bits received""" + bits: uint64! + + """Sum of packets received""" + packets: uint64! +} + +"""""" +type AccountAdvancedTcpProtectionNetworkAnalyticsAdaptiveGroupsSumConfidence { + """Confidence interval for the corresponding point estimate""" + bits: Confidence! + + """Confidence interval for the corresponding point estimate""" + packets: Confidence! +} + +"""Beta. Aegis IP utilization metrics""" +type AccountAegisIpUtilizationAdaptiveGroups { + """The avg of values for a metric per dimension""" + avg: AccountAegisIpUtilizationAdaptiveGroupsAvg + + """List of dimensions to group by""" + dimensions: AccountAegisIpUtilizationAdaptiveGroupsDimensions + + """The max of values for a metric per dimension""" + max: AccountAegisIpUtilizationAdaptiveGroupsMax +} + +"""""" +type AccountAegisIpUtilizationAdaptiveGroupsAvg { + """Average utilization (%)""" + utilization: float64! +} + +"""""" +type AccountAegisIpUtilizationAdaptiveGroupsDimensions { + """Timestamp bucketed by 5 minutes""" + datetimeFiveMinutes: Time! + + """PoP, Aegis IP and origin. Can be used as a grouping key""" + popUtilizationKey: string! +} + +"""""" +input AccountAegisIpUtilizationAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountAegisIpUtilizationAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountAegisIpUtilizationAdaptiveGroupsFilter_InputObject!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + egressIp: string + + """""" + egressIp_geq: string + + """""" + egressIp_gt: string + + """""" + egressIp_in: [string!] + + """""" + egressIp_leq: string + + """""" + egressIp_like: string + + """""" + egressIp_lt: string + + """""" + egressIp_neq: string + + """""" + egressIp_notin: [string!] + + """""" + egressIp_notlike: string + + """""" + origin: string + + """""" + origin_geq: string + + """""" + origin_gt: string + + """""" + origin_in: [string!] + + """""" + origin_leq: string + + """""" + origin_like: string + + """""" + origin_lt: string + + """""" + origin_neq: string + + """""" + origin_notin: [string!] + + """""" + origin_notlike: string + + """""" + popName: string + + """""" + popName_geq: string + + """""" + popName_gt: string + + """""" + popName_in: [string!] + + """""" + popName_leq: string + + """""" + popName_like: string + + """""" + popName_lt: string + + """""" + popName_neq: string + + """""" + popName_notin: [string!] + + """""" + popName_notlike: string + + """""" + popUtilizationKey: string + + """""" + popUtilizationKey_geq: string + + """""" + popUtilizationKey_gt: string + + """""" + popUtilizationKey_in: [string!] + + """""" + popUtilizationKey_leq: string + + """""" + popUtilizationKey_like: string + + """""" + popUtilizationKey_lt: string + + """""" + popUtilizationKey_neq: string + + """""" + popUtilizationKey_notin: [string!] + + """""" + popUtilizationKey_notlike: string +} + +"""""" +type AccountAegisIpUtilizationAdaptiveGroupsMax { + """Maximum utilization (%) in a single datacenter""" + utilization: float64! +} + +"""""" +enum AccountAegisIpUtilizationAdaptiveGroupsOrderBy { + """avg(utilization) ascending""" + avg_utilization_ASC + + """avg(utilization) descending""" + avg_utilization_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """max(utilization) ascending""" + max_utilization_ASC + + """max(utilization) descending""" + max_utilization_DESC + + """popUtilizationKey ascending""" + popUtilizationKey_ASC + + """popUtilizationKey descending""" + popUtilizationKey_DESC +} + +"""AI Gateway Cache""" +type AccountAiGatewayCacheAdaptiveGroups { + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountAiGatewayCacheAdaptiveGroupsConfidence! + + """ + Total number of requests for an account with caching enabled: including hits and misses + """ + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountAiGatewayCacheAdaptiveGroupsDimensions +} + +"""""" +type AccountAiGatewayCacheAdaptiveGroupsConfidence { + """ + Total number of requests for an account with caching enabled: including hits and misses, with confidence intervals + """ + count: Confidence! + + """Confidence level that was requested""" + level: float64! +} + +"""""" +type AccountAiGatewayCacheAdaptiveGroupsDimensions { + """Cache Hit or Miss: 1 = cache hit, 0 = cache miss""" + cacheOp: uint8! + + """The date when trigger was triggerd""" + date: Date! + + """The date and time truncated to fifteen minutes""" + datetimeFifteenMinutes: Time! + + """The date and time truncated to five minutes""" + datetimeFiveMinutes: Time! + + """The date and time truncated to the hour""" + datetimeHour: Time! + + """The date and time truncated to the minute""" + datetimeMinute: Time! + + """Gateway name""" + gateway: string! + + """Which model was the request sent to""" + model: string! + + """Which provider was the request sent to""" + provider: string! + + """Number of tokens in the request""" + tokensIn: uint64! + + """Number of tokens in the response""" + tokensOut: uint64! +} + +"""""" +input AccountAiGatewayCacheAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountAiGatewayCacheAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountAiGatewayCacheAdaptiveGroupsFilter_InputObject!] + + """""" + cacheOp: uint8 + + """""" + cacheOp_geq: uint8 + + """""" + cacheOp_gt: uint8 + + """""" + cacheOp_in: bytes + + """""" + cacheOp_leq: uint8 + + """""" + cacheOp_lt: uint8 + + """""" + cacheOp_neq: uint8 + + """""" + cacheOp_notin: bytes + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + gateway: string + + """""" + gateway_geq: string + + """""" + gateway_gt: string + + """""" + gateway_in: [string!] + + """""" + gateway_leq: string + + """""" + gateway_like: string + + """""" + gateway_lt: string + + """""" + gateway_neq: string + + """""" + gateway_notin: [string!] + + """""" + gateway_notlike: string + + """""" + model: string + + """""" + model_geq: string + + """""" + model_gt: string + + """""" + model_in: [string!] + + """""" + model_leq: string + + """""" + model_like: string + + """""" + model_lt: string + + """""" + model_neq: string + + """""" + model_notin: [string!] + + """""" + model_notlike: string + + """""" + provider: string + + """""" + provider_geq: string + + """""" + provider_gt: string + + """""" + provider_in: [string!] + + """""" + provider_leq: string + + """""" + provider_like: string + + """""" + provider_lt: string + + """""" + provider_neq: string + + """""" + provider_notin: [string!] + + """""" + provider_notlike: string + + """""" + tokensIn: uint64 + + """""" + tokensIn_geq: uint64 + + """""" + tokensIn_gt: uint64 + + """""" + tokensIn_in: [uint64!] + + """""" + tokensIn_leq: uint64 + + """""" + tokensIn_lt: uint64 + + """""" + tokensIn_neq: uint64 + + """""" + tokensIn_notin: [uint64!] + + """""" + tokensOut: uint64 + + """""" + tokensOut_geq: uint64 + + """""" + tokensOut_gt: uint64 + + """""" + tokensOut_in: [uint64!] + + """""" + tokensOut_leq: uint64 + + """""" + tokensOut_lt: uint64 + + """""" + tokensOut_neq: uint64 + + """""" + tokensOut_notin: [uint64!] +} + +"""""" +enum AccountAiGatewayCacheAdaptiveGroupsOrderBy { + """cacheOp ascending""" + cacheOp_ASC + + """cacheOp descending""" + cacheOp_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """gateway ascending""" + gateway_ASC + + """gateway descending""" + gateway_DESC + + """model ascending""" + model_ASC + + """model descending""" + model_DESC + + """provider ascending""" + provider_ASC + + """provider descending""" + provider_DESC + + """tokensIn ascending""" + tokensIn_ASC + + """tokensIn descending""" + tokensIn_DESC + + """tokensOut ascending""" + tokensOut_ASC + + """tokensOut descending""" + tokensOut_DESC +} + +"""AI Gateway Errors""" +type AccountAiGatewayErrorsAdaptiveGroups { + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountAiGatewayErrorsAdaptiveGroupsConfidence! + + """Number of errors""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountAiGatewayErrorsAdaptiveGroupsDimensions +} + +"""""" +type AccountAiGatewayErrorsAdaptiveGroupsConfidence { + """Number of errors, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! +} + +"""""" +type AccountAiGatewayErrorsAdaptiveGroupsDimensions { + """The date when trigger was triggerd""" + date: Date! + + """The date and time truncated to fifteen minutes""" + datetimeFifteenMinutes: Time! + + """The date and time truncated to five minutes""" + datetimeFiveMinutes: Time! + + """The date and time truncated to the hour""" + datetimeHour: Time! + + """The date and time truncated to the minute""" + datetimeMinute: Time! + + """Gateway name""" + gateway: string! + + """Which models was the request sent to""" + model: string! + + """Which provider was the request sent to""" + provider: string! +} + +"""""" +input AccountAiGatewayErrorsAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountAiGatewayErrorsAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountAiGatewayErrorsAdaptiveGroupsFilter_InputObject!] + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + gateway: string + + """""" + gateway_geq: string + + """""" + gateway_gt: string + + """""" + gateway_in: [string!] + + """""" + gateway_leq: string + + """""" + gateway_like: string + + """""" + gateway_lt: string + + """""" + gateway_neq: string + + """""" + gateway_notin: [string!] + + """""" + gateway_notlike: string + + """""" + model: string + + """""" + model_geq: string + + """""" + model_gt: string + + """""" + model_in: [string!] + + """""" + model_leq: string + + """""" + model_like: string + + """""" + model_lt: string + + """""" + model_neq: string + + """""" + model_notin: [string!] + + """""" + model_notlike: string + + """""" + provider: string + + """""" + provider_geq: string + + """""" + provider_gt: string + + """""" + provider_in: [string!] + + """""" + provider_leq: string + + """""" + provider_like: string + + """""" + provider_lt: string + + """""" + provider_neq: string + + """""" + provider_notin: [string!] + + """""" + provider_notlike: string +} + +"""""" +enum AccountAiGatewayErrorsAdaptiveGroupsOrderBy { + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """gateway ascending""" + gateway_ASC + + """gateway descending""" + gateway_DESC + + """model ascending""" + model_ASC + + """model descending""" + model_DESC + + """provider ascending""" + provider_ASC + + """provider descending""" + provider_DESC +} + +"""AI Gateway Requests""" +type AccountAiGatewayRequestsAdaptiveGroups { + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountAiGatewayRequestsAdaptiveGroupsConfidence! + + """Number of processed requests""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountAiGatewayRequestsAdaptiveGroupsDimensions + + """The sum of values for a metric per dimension""" + sum: AccountAiGatewayRequestsAdaptiveGroupsSum +} + +"""""" +type AccountAiGatewayRequestsAdaptiveGroupsConfidence { + """Number of processed requests, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! + + """ + The sum of values for a metric per dimension, with confidence intervals + """ + sum: AccountAiGatewayRequestsAdaptiveGroupsSumConfidence +} + +"""""" +type AccountAiGatewayRequestsAdaptiveGroupsDimensions { + """Was the response served from cache?: 1 = cache hit, 0 = cache misss""" + cached: uint8! + + """Cost per request""" + cost: float64! + + """The date when trigger was triggered""" + date: Date! + + """The date and time truncated to fifteen minutes""" + datetimeFifteenMinutes: Time! + + """The date and time truncated to five minutes""" + datetimeFiveMinutes: Time! + + """The date and time truncated to the hour""" + datetimeHour: Time! + + """The date and time truncated to the minute""" + datetimeMinute: Time! + + """Was the response an error: 1 , 0 for no error""" + error: uint8! + + """Gateway name""" + gateway: string! + + """Metadata keys saved on ai-gateway request""" + metadataKeys: [string!]! + + """Metadata saved in on ai-gateway request""" + metadataRaw: string! + + """Metadata values saved on ai-gateway request""" + metadataValues: [string!]! + + """Which models was the request sent to""" + model: string! + + """Prompts used on ai-gateway request""" + prompts: string! + + """Prompts Ids used on ai-gateway request""" + promptsIds: [string!]! + + """Prompts versions used on ai-gateway request""" + promptsVersions: [string!]! + + """Which provider was the request sent to""" + provider: string! + + """ + Was the request rate limited?: 1 = rate limit applied, 0 = rate limit not applied + """ + rateLimited: uint8! + + """HTTP Status Code of provider response""" + statusCode: uint16! + + """Number of tokens in the request""" + tokensIn: uint64! + + """Number of tokens in the response""" + tokensOut: uint64! + + """Was the request use wholesale: 1 = applied, 0 = not applied""" + wholesale: uint8! +} + +"""""" +input AccountAiGatewayRequestsAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountAiGatewayRequestsAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountAiGatewayRequestsAdaptiveGroupsFilter_InputObject!] + + """""" + cached: uint8 + + """""" + cached_geq: uint8 + + """""" + cached_gt: uint8 + + """""" + cached_in: bytes + + """""" + cached_leq: uint8 + + """""" + cached_lt: uint8 + + """""" + cached_neq: uint8 + + """""" + cached_notin: bytes + + """""" + cost: float64 + + """""" + cost_geq: float64 + + """""" + cost_gt: float64 + + """""" + cost_in: [float64!] + + """""" + cost_leq: float64 + + """""" + cost_lt: float64 + + """""" + cost_neq: float64 + + """""" + cost_notin: [float64!] + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + error: uint8 + + """""" + error_geq: uint8 + + """""" + error_gt: uint8 + + """""" + error_in: bytes + + """""" + error_leq: uint8 + + """""" + error_lt: uint8 + + """""" + error_neq: uint8 + + """""" + error_notin: bytes + + """""" + gateway: string + + """""" + gateway_geq: string + + """""" + gateway_gt: string + + """""" + gateway_in: [string!] + + """""" + gateway_leq: string + + """""" + gateway_like: string + + """""" + gateway_lt: string + + """""" + gateway_neq: string + + """""" + gateway_notin: [string!] + + """""" + gateway_notlike: string + + """""" + metadataKeys_has: string + + """""" + metadataKeys_hasall: [string!] + + """""" + metadataKeys_hasany: [string!] + + """""" + metadataKeys_isempty: bool + + """""" + metadataKeys_nothas: string + + """""" + metadataRaw: string + + """""" + metadataRaw_geq: string + + """""" + metadataRaw_gt: string + + """""" + metadataRaw_in: [string!] + + """""" + metadataRaw_leq: string + + """""" + metadataRaw_like: string + + """""" + metadataRaw_lt: string + + """""" + metadataRaw_neq: string + + """""" + metadataRaw_notin: [string!] + + """""" + metadataRaw_notlike: string + + """""" + metadataValues_has: string + + """""" + metadataValues_hasall: [string!] + + """""" + metadataValues_hasany: [string!] + + """""" + metadataValues_isempty: bool + + """""" + metadataValues_nothas: string + + """""" + model: string + + """""" + model_geq: string + + """""" + model_gt: string + + """""" + model_in: [string!] + + """""" + model_leq: string + + """""" + model_like: string + + """""" + model_lt: string + + """""" + model_neq: string + + """""" + model_notin: [string!] + + """""" + model_notlike: string + + """""" + prompts: string + + """""" + promptsIds_has: string + + """""" + promptsIds_hasall: [string!] + + """""" + promptsIds_hasany: [string!] + + """""" + promptsIds_isempty: bool + + """""" + promptsIds_nothas: string + + """""" + promptsVersions_has: string + + """""" + promptsVersions_hasall: [string!] + + """""" + promptsVersions_hasany: [string!] + + """""" + promptsVersions_isempty: bool + + """""" + promptsVersions_nothas: string + + """""" + prompts_geq: string + + """""" + prompts_gt: string + + """""" + prompts_in: [string!] + + """""" + prompts_leq: string + + """""" + prompts_like: string + + """""" + prompts_lt: string + + """""" + prompts_neq: string + + """""" + prompts_notin: [string!] + + """""" + prompts_notlike: string + + """""" + provider: string + + """""" + provider_geq: string + + """""" + provider_gt: string + + """""" + provider_in: [string!] + + """""" + provider_leq: string + + """""" + provider_like: string + + """""" + provider_lt: string + + """""" + provider_neq: string + + """""" + provider_notin: [string!] + + """""" + provider_notlike: string + + """""" + rateLimited: uint8 + + """""" + rateLimited_geq: uint8 + + """""" + rateLimited_gt: uint8 + + """""" + rateLimited_in: bytes + + """""" + rateLimited_leq: uint8 + + """""" + rateLimited_lt: uint8 + + """""" + rateLimited_neq: uint8 + + """""" + rateLimited_notin: bytes + + """""" + statusCode: uint16 + + """""" + statusCode_geq: uint16 + + """""" + statusCode_gt: uint16 + + """""" + statusCode_in: [uint16!] + + """""" + statusCode_leq: uint16 + + """""" + statusCode_lt: uint16 + + """""" + statusCode_neq: uint16 + + """""" + statusCode_notin: [uint16!] + + """""" + tokensIn: uint64 + + """""" + tokensIn_geq: uint64 + + """""" + tokensIn_gt: uint64 + + """""" + tokensIn_in: [uint64!] + + """""" + tokensIn_leq: uint64 + + """""" + tokensIn_lt: uint64 + + """""" + tokensIn_neq: uint64 + + """""" + tokensIn_notin: [uint64!] + + """""" + tokensOut: uint64 + + """""" + tokensOut_geq: uint64 + + """""" + tokensOut_gt: uint64 + + """""" + tokensOut_in: [uint64!] + + """""" + tokensOut_leq: uint64 + + """""" + tokensOut_lt: uint64 + + """""" + tokensOut_neq: uint64 + + """""" + tokensOut_notin: [uint64!] + + """""" + wholesale: uint8 + + """""" + wholesale_geq: uint8 + + """""" + wholesale_gt: uint8 + + """""" + wholesale_in: bytes + + """""" + wholesale_leq: uint8 + + """""" + wholesale_lt: uint8 + + """""" + wholesale_neq: uint8 + + """""" + wholesale_notin: bytes +} + +"""""" +enum AccountAiGatewayRequestsAdaptiveGroupsOrderBy { + """cached ascending""" + cached_ASC + + """cached descending""" + cached_DESC + + """cost ascending""" + cost_ASC + + """cost descending""" + cost_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """error ascending""" + error_ASC + + """error descending""" + error_DESC + + """gateway ascending""" + gateway_ASC + + """gateway descending""" + gateway_DESC + + """metadataKeys ascending""" + metadataKeys_ASC + + """metadataKeys descending""" + metadataKeys_DESC + + """metadataRaw ascending""" + metadataRaw_ASC + + """metadataRaw descending""" + metadataRaw_DESC + + """metadataValues ascending""" + metadataValues_ASC + + """metadataValues descending""" + metadataValues_DESC + + """model ascending""" + model_ASC + + """model descending""" + model_DESC + + """promptsIds ascending""" + promptsIds_ASC + + """promptsIds descending""" + promptsIds_DESC + + """promptsVersions ascending""" + promptsVersions_ASC + + """promptsVersions descending""" + promptsVersions_DESC + + """prompts ascending""" + prompts_ASC + + """prompts descending""" + prompts_DESC + + """provider ascending""" + provider_ASC + + """provider descending""" + provider_DESC + + """rateLimited ascending""" + rateLimited_ASC + + """rateLimited descending""" + rateLimited_DESC + + """statusCode ascending""" + statusCode_ASC + + """statusCode descending""" + statusCode_DESC + + """sum(cachedRequests) ascending""" + sum_cachedRequests_ASC + + """sum(cachedRequests) descending""" + sum_cachedRequests_DESC + + """sum(cachedTokensIn) ascending""" + sum_cachedTokensIn_ASC + + """sum(cachedTokensIn) descending""" + sum_cachedTokensIn_DESC + + """sum(cachedTokensOut) ascending""" + sum_cachedTokensOut_ASC + + """sum(cachedTokensOut) descending""" + sum_cachedTokensOut_DESC + + """sum(cost) ascending""" + sum_cost_ASC + + """sum(cost) descending""" + sum_cost_DESC + + """sum(erroredRequests) ascending""" + sum_erroredRequests_ASC + + """sum(erroredRequests) descending""" + sum_erroredRequests_DESC + + """sum(uncachedTokensIn) ascending""" + sum_uncachedTokensIn_ASC + + """sum(uncachedTokensIn) descending""" + sum_uncachedTokensIn_DESC + + """sum(uncachedTokensOut) ascending""" + sum_uncachedTokensOut_ASC + + """sum(uncachedTokensOut) descending""" + sum_uncachedTokensOut_DESC + + """tokensIn ascending""" + tokensIn_ASC + + """tokensIn descending""" + tokensIn_DESC + + """tokensOut ascending""" + tokensOut_ASC + + """tokensOut descending""" + tokensOut_DESC + + """wholesale ascending""" + wholesale_ASC + + """wholesale descending""" + wholesale_DESC +} + +"""""" +type AccountAiGatewayRequestsAdaptiveGroupsSum { + """Sum of cached requests""" + cachedRequests: uint64! + + """Sum of cached tokens in""" + cachedTokensIn: uint64! + + """Sum of cached tokens out""" + cachedTokensOut: uint64! + + """ + Total cost" + """ + cost: float64! + + """Sum of errored requests""" + erroredRequests: uint64! + + """Sum of uncached tokens in""" + uncachedTokensIn: uint64! + + """Sum of uncached tokens out""" + uncachedTokensOut: uint64! +} + +"""""" +type AccountAiGatewayRequestsAdaptiveGroupsSumConfidence { + """Confidence interval for the corresponding point estimate""" + cachedRequests: Confidence! + + """Confidence interval for the corresponding point estimate""" + cachedTokensIn: Confidence! + + """Confidence interval for the corresponding point estimate""" + cachedTokensOut: Confidence! + + """Confidence interval for the corresponding point estimate""" + cost: Confidence! + + """Confidence interval for the corresponding point estimate""" + erroredRequests: Confidence! + + """Confidence interval for the corresponding point estimate""" + uncachedTokensIn: Confidence! + + """Confidence interval for the corresponding point estimate""" + uncachedTokensOut: Confidence! +} + +"""AI Gateway Stored Rows""" +type AccountAiGatewaySizeAdaptiveGroups { + """List of dimensions to group by""" + dimensions: AccountAiGatewaySizeAdaptiveGroupsDimensions + + """The max of values for a metric per dimension""" + max: AccountAiGatewaySizeAdaptiveGroupsMax +} + +"""""" +type AccountAiGatewaySizeAdaptiveGroupsDimensions { + """The date when trigger was triggerd""" + date: Date! + + """The date and time truncated to fifteen minutes""" + datetimeFifteenMinutes: Time! + + """The date and time truncated to five minutes""" + datetimeFiveMinutes: Time! + + """The date and time truncated to the hour""" + datetimeHour: Time! + + """The date and time truncated to the minute""" + datetimeMinute: Time! + + """Gateway name""" + gateway: string! + + """Log Management active or not: 1 = active, 0 = not active""" + logManagement: uint8! + + """Number of rows stored in a gateway""" + rows: uint64! +} + +"""""" +input AccountAiGatewaySizeAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountAiGatewaySizeAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountAiGatewaySizeAdaptiveGroupsFilter_InputObject!] + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + gateway: string + + """""" + gateway_geq: string + + """""" + gateway_gt: string + + """""" + gateway_in: [string!] + + """""" + gateway_leq: string + + """""" + gateway_like: string + + """""" + gateway_lt: string + + """""" + gateway_neq: string + + """""" + gateway_notin: [string!] + + """""" + gateway_notlike: string + + """""" + logManagement: uint8 + + """""" + logManagement_geq: uint8 + + """""" + logManagement_gt: uint8 + + """""" + logManagement_in: bytes + + """""" + logManagement_leq: uint8 + + """""" + logManagement_lt: uint8 + + """""" + logManagement_neq: uint8 + + """""" + logManagement_notin: bytes + + """""" + rows: uint64 + + """""" + rows_geq: uint64 + + """""" + rows_gt: uint64 + + """""" + rows_in: [uint64!] + + """""" + rows_leq: uint64 + + """""" + rows_lt: uint64 + + """""" + rows_neq: uint64 + + """""" + rows_notin: [uint64!] +} + +"""""" +type AccountAiGatewaySizeAdaptiveGroupsMax { + """Max of stored rows""" + rows: uint64! +} + +"""""" +enum AccountAiGatewaySizeAdaptiveGroupsOrderBy { + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """gateway ascending""" + gateway_ASC + + """gateway descending""" + gateway_DESC + + """logManagement ascending""" + logManagement_ASC + + """logManagement descending""" + logManagement_DESC + + """max(rows) ascending""" + max_rows_ASC + + """max(rows) descending""" + max_rows_DESC + + """rows ascending""" + rows_ASC + + """rows descending""" + rows_DESC +} + +"""AI Inference logs with adaptive sampling""" +type AccountAiInferenceAdaptive { + """Audio seconds""" + audioSeconds: float64! + + """Name for cost metric 1""" + costMetricName1: string! + + """Name for cost metric 2""" + costMetricName2: string! + + """Value for cost metric 1""" + costMetricValue1: float64! + + """Value for cost metric 2""" + costMetricValue2: float64! + + """The date when inferance was triggered""" + datetime: Time! + + """Error code""" + errorCode: uint32! + + """Inference steps""" + inferenceSteps: float64! + + """Inference time ms""" + inferenceTimeMs: uint64! + + """Input length""" + inputLength: float64! + + """Input tokens""" + inputTokens: float64! + + """ModelId that was trigger to inference""" + modelId: string! + + """Model that was trigger to inference is Beta""" + modelIsBeta: uint8! + + """Monetization unit""" + neurons: float64! + + """Output tokens""" + outputTokens: float64! + + """Processed pixels""" + processedPixels: float64! + + """Processed tiles""" + processedTiles: float64! + + """Request size in bytes""" + requestBytesIn: uint64! + + """Request size out bytes""" + requestBytesOut: uint64! + + """Source who triggered (worker binding, pages binding, rest api)""" + requestSource: string! + + """ABR sample interval""" + sampleInterval: uint32! + + """Individual elements from the tags string""" + tag: string! + + """Total tiles""" + totalTiles: float64! +} + +"""""" +input AccountAiInferenceAdaptiveFilter_InputObject { + """""" + AND: [AccountAiInferenceAdaptiveFilter_InputObject!] + + """""" + OR: [AccountAiInferenceAdaptiveFilter_InputObject!] + + """""" + audioSeconds: float64 + + """""" + audioSeconds_geq: float64 + + """""" + audioSeconds_gt: float64 + + """""" + audioSeconds_in: [float64!] + + """""" + audioSeconds_leq: float64 + + """""" + audioSeconds_lt: float64 + + """""" + audioSeconds_neq: float64 + + """""" + audioSeconds_notin: [float64!] + + """""" + costMetricName1: string + + """""" + costMetricName1_geq: string + + """""" + costMetricName1_gt: string + + """""" + costMetricName1_in: [string!] + + """""" + costMetricName1_leq: string + + """""" + costMetricName1_like: string + + """""" + costMetricName1_lt: string + + """""" + costMetricName1_neq: string + + """""" + costMetricName1_notin: [string!] + + """""" + costMetricName1_notlike: string + + """""" + costMetricName2: string + + """""" + costMetricName2_geq: string + + """""" + costMetricName2_gt: string + + """""" + costMetricName2_in: [string!] + + """""" + costMetricName2_leq: string + + """""" + costMetricName2_like: string + + """""" + costMetricName2_lt: string + + """""" + costMetricName2_neq: string + + """""" + costMetricName2_notin: [string!] + + """""" + costMetricName2_notlike: string + + """""" + costMetricValue1: float64 + + """""" + costMetricValue1_geq: float64 + + """""" + costMetricValue1_gt: float64 + + """""" + costMetricValue1_in: [float64!] + + """""" + costMetricValue1_leq: float64 + + """""" + costMetricValue1_lt: float64 + + """""" + costMetricValue1_neq: float64 + + """""" + costMetricValue1_notin: [float64!] + + """""" + costMetricValue2: float64 + + """""" + costMetricValue2_geq: float64 + + """""" + costMetricValue2_gt: float64 + + """""" + costMetricValue2_in: [float64!] + + """""" + costMetricValue2_leq: float64 + + """""" + costMetricValue2_lt: float64 + + """""" + costMetricValue2_neq: float64 + + """""" + costMetricValue2_notin: [float64!] + + """""" + datetime: Time + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + errorCode: uint32 + + """""" + errorCode_geq: uint32 + + """""" + errorCode_gt: uint32 + + """""" + errorCode_in: [uint32!] + + """""" + errorCode_leq: uint32 + + """""" + errorCode_lt: uint32 + + """""" + errorCode_neq: uint32 + + """""" + errorCode_notin: [uint32!] + + """""" + inferenceSteps: float64 + + """""" + inferenceSteps_geq: float64 + + """""" + inferenceSteps_gt: float64 + + """""" + inferenceSteps_in: [float64!] + + """""" + inferenceSteps_leq: float64 + + """""" + inferenceSteps_lt: float64 + + """""" + inferenceSteps_neq: float64 + + """""" + inferenceSteps_notin: [float64!] + + """""" + inferenceTimeMs: uint64 + + """""" + inferenceTimeMs_geq: uint64 + + """""" + inferenceTimeMs_gt: uint64 + + """""" + inferenceTimeMs_in: [uint64!] + + """""" + inferenceTimeMs_leq: uint64 + + """""" + inferenceTimeMs_lt: uint64 + + """""" + inferenceTimeMs_neq: uint64 + + """""" + inferenceTimeMs_notin: [uint64!] + + """""" + inputLength: float64 + + """""" + inputLength_geq: float64 + + """""" + inputLength_gt: float64 + + """""" + inputLength_in: [float64!] + + """""" + inputLength_leq: float64 + + """""" + inputLength_lt: float64 + + """""" + inputLength_neq: float64 + + """""" + inputLength_notin: [float64!] + + """""" + inputTokens: float64 + + """""" + inputTokens_geq: float64 + + """""" + inputTokens_gt: float64 + + """""" + inputTokens_in: [float64!] + + """""" + inputTokens_leq: float64 + + """""" + inputTokens_lt: float64 + + """""" + inputTokens_neq: float64 + + """""" + inputTokens_notin: [float64!] + + """""" + modelId: string + + """""" + modelId_geq: string + + """""" + modelId_gt: string + + """""" + modelId_in: [string!] + + """""" + modelId_leq: string + + """""" + modelId_like: string + + """""" + modelId_lt: string + + """""" + modelId_neq: string + + """""" + modelId_notin: [string!] + + """""" + modelId_notlike: string + + """""" + modelIsBeta: uint8 + + """""" + modelIsBeta_geq: uint8 + + """""" + modelIsBeta_gt: uint8 + + """""" + modelIsBeta_in: bytes + + """""" + modelIsBeta_leq: uint8 + + """""" + modelIsBeta_lt: uint8 + + """""" + modelIsBeta_neq: uint8 + + """""" + modelIsBeta_notin: bytes + + """""" + neurons: float64 + + """""" + neurons_geq: float64 + + """""" + neurons_gt: float64 + + """""" + neurons_in: [float64!] + + """""" + neurons_leq: float64 + + """""" + neurons_lt: float64 + + """""" + neurons_neq: float64 + + """""" + neurons_notin: [float64!] + + """""" + outputTokens: float64 + + """""" + outputTokens_geq: float64 + + """""" + outputTokens_gt: float64 + + """""" + outputTokens_in: [float64!] + + """""" + outputTokens_leq: float64 + + """""" + outputTokens_lt: float64 + + """""" + outputTokens_neq: float64 + + """""" + outputTokens_notin: [float64!] + + """""" + processedPixels: float64 + + """""" + processedPixels_geq: float64 + + """""" + processedPixels_gt: float64 + + """""" + processedPixels_in: [float64!] + + """""" + processedPixels_leq: float64 + + """""" + processedPixels_lt: float64 + + """""" + processedPixels_neq: float64 + + """""" + processedPixels_notin: [float64!] + + """""" + processedTiles: float64 + + """""" + processedTiles_geq: float64 + + """""" + processedTiles_gt: float64 + + """""" + processedTiles_in: [float64!] + + """""" + processedTiles_leq: float64 + + """""" + processedTiles_lt: float64 + + """""" + processedTiles_neq: float64 + + """""" + processedTiles_notin: [float64!] + + """""" + requestBytesIn: uint64 + + """""" + requestBytesIn_geq: uint64 + + """""" + requestBytesIn_gt: uint64 + + """""" + requestBytesIn_in: [uint64!] + + """""" + requestBytesIn_leq: uint64 + + """""" + requestBytesIn_lt: uint64 + + """""" + requestBytesIn_neq: uint64 + + """""" + requestBytesIn_notin: [uint64!] + + """""" + requestBytesOut: uint64 + + """""" + requestBytesOut_geq: uint64 + + """""" + requestBytesOut_gt: uint64 + + """""" + requestBytesOut_in: [uint64!] + + """""" + requestBytesOut_leq: uint64 + + """""" + requestBytesOut_lt: uint64 + + """""" + requestBytesOut_neq: uint64 + + """""" + requestBytesOut_notin: [uint64!] + + """""" + requestSource: string + + """""" + requestSource_geq: string + + """""" + requestSource_gt: string + + """""" + requestSource_in: [string!] + + """""" + requestSource_leq: string + + """""" + requestSource_like: string + + """""" + requestSource_lt: string + + """""" + requestSource_neq: string + + """""" + requestSource_notin: [string!] + + """""" + requestSource_notlike: string + + """""" + sampleInterval: uint32 + + """""" + sampleInterval_geq: uint32 + + """""" + sampleInterval_gt: uint32 + + """""" + sampleInterval_in: [uint32!] + + """""" + sampleInterval_leq: uint32 + + """""" + sampleInterval_lt: uint32 + + """""" + sampleInterval_neq: uint32 + + """""" + sampleInterval_notin: [uint32!] + + """""" + tag: string + + """""" + tag_geq: string + + """""" + tag_gt: string + + """""" + tag_in: [string!] + + """""" + tag_leq: string + + """""" + tag_like: string + + """""" + tag_lt: string + + """""" + tag_neq: string + + """""" + tag_notin: [string!] + + """""" + tag_notlike: string + + """""" + totalTiles: float64 + + """""" + totalTiles_geq: float64 + + """""" + totalTiles_gt: float64 + + """""" + totalTiles_in: [float64!] + + """""" + totalTiles_leq: float64 + + """""" + totalTiles_lt: float64 + + """""" + totalTiles_neq: float64 + + """""" + totalTiles_notin: [float64!] +} + +"""Aggregated AI Inference logs with adaptive sampling""" +type AccountAiInferenceAdaptiveGroups { + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountAiInferenceAdaptiveGroupsConfidence! + + """Total number of inferences for an account""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountAiInferenceAdaptiveGroupsDimensions + + """""" + sum: AccountAiInferenceAdaptiveGroupsSum +} + +"""""" +type AccountAiInferenceAdaptiveGroupsConfidence { + """Total number of inferences for an account, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! + + """""" + sum: AccountAiInferenceAdaptiveGroupsSumConfidence +} + +"""""" +type AccountAiInferenceAdaptiveGroupsDimensions { + """Name for cost metric 1""" + costMetricName1: string! + + """Name for cost metric 2""" + costMetricName2: string! + + """Value for cost metric 1""" + costMetricValue1: float64! + + """Value for cost metric 2""" + costMetricValue2: float64! + + """The date when the inference starts""" + date: Date! + + """The date when the inference starts""" + datetime: Time! + + """The date and time truncated to fifteen minutes""" + datetimeFifteenMinutes: Time! + + """The date and time truncated to five minutes""" + datetimeFiveMinutes: Time! + + """The date and time truncated to the hour""" + datetimeHour: Time! + + """The date and time truncated to the minute""" + datetimeMinute: Time! + + """The date and time truncated to six hours""" + datetimeSixHours: Time! + + """Error code""" + errorCode: uint32! + + """Inference time ms""" + inferenceTimeMs: uint64! + + """ModelId that was trigger to inference""" + modelId: string! + + """Model that was trigger to inference is Beta""" + modelIsBeta: uint8! + + """Monetization unit""" + neurons: float64! + + """Request size in bytes""" + requestBytesIn: uint64! + + """Request size out bytes""" + requestBytesOut: uint64! + + """Source who triggered (worker binding, pages binding, rest api)""" + requestSource: string! + + """Individual elements from the tags string""" + tag: string! +} + +"""""" +input AccountAiInferenceAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountAiInferenceAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountAiInferenceAdaptiveGroupsFilter_InputObject!] + + """""" + costMetricName1: string + + """""" + costMetricName1_geq: string + + """""" + costMetricName1_gt: string + + """""" + costMetricName1_in: [string!] + + """""" + costMetricName1_leq: string + + """""" + costMetricName1_like: string + + """""" + costMetricName1_lt: string + + """""" + costMetricName1_neq: string + + """""" + costMetricName1_notin: [string!] + + """""" + costMetricName1_notlike: string + + """""" + costMetricName2: string + + """""" + costMetricName2_geq: string + + """""" + costMetricName2_gt: string + + """""" + costMetricName2_in: [string!] + + """""" + costMetricName2_leq: string + + """""" + costMetricName2_like: string + + """""" + costMetricName2_lt: string + + """""" + costMetricName2_neq: string + + """""" + costMetricName2_notin: [string!] + + """""" + costMetricName2_notlike: string + + """""" + costMetricValue1: float64 + + """""" + costMetricValue1_geq: float64 + + """""" + costMetricValue1_gt: float64 + + """""" + costMetricValue1_in: [float64!] + + """""" + costMetricValue1_leq: float64 + + """""" + costMetricValue1_lt: float64 + + """""" + costMetricValue1_neq: float64 + + """""" + costMetricValue1_notin: [float64!] + + """""" + costMetricValue2: float64 + + """""" + costMetricValue2_geq: float64 + + """""" + costMetricValue2_gt: float64 + + """""" + costMetricValue2_in: [float64!] + + """""" + costMetricValue2_leq: float64 + + """""" + costMetricValue2_lt: float64 + + """""" + costMetricValue2_neq: float64 + + """""" + costMetricValue2_notin: [float64!] + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetimeSixHours: Time + + """""" + datetimeSixHours_geq: Time + + """""" + datetimeSixHours_gt: Time + + """""" + datetimeSixHours_in: [Time!] + + """""" + datetimeSixHours_leq: Time + + """""" + datetimeSixHours_lt: Time + + """""" + datetimeSixHours_neq: Time + + """""" + datetimeSixHours_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + errorCode: uint32 + + """""" + errorCode_geq: uint32 + + """""" + errorCode_gt: uint32 + + """""" + errorCode_in: [uint32!] + + """""" + errorCode_leq: uint32 + + """""" + errorCode_lt: uint32 + + """""" + errorCode_neq: uint32 + + """""" + errorCode_notin: [uint32!] + + """""" + inferenceTimeMs: uint64 + + """""" + inferenceTimeMs_geq: uint64 + + """""" + inferenceTimeMs_gt: uint64 + + """""" + inferenceTimeMs_in: [uint64!] + + """""" + inferenceTimeMs_leq: uint64 + + """""" + inferenceTimeMs_lt: uint64 + + """""" + inferenceTimeMs_neq: uint64 + + """""" + inferenceTimeMs_notin: [uint64!] + + """""" + modelId: string + + """""" + modelId_geq: string + + """""" + modelId_gt: string + + """""" + modelId_in: [string!] + + """""" + modelId_leq: string + + """""" + modelId_like: string + + """""" + modelId_lt: string + + """""" + modelId_neq: string + + """""" + modelId_notin: [string!] + + """""" + modelId_notlike: string + + """""" + modelIsBeta: uint8 + + """""" + modelIsBeta_geq: uint8 + + """""" + modelIsBeta_gt: uint8 + + """""" + modelIsBeta_in: bytes + + """""" + modelIsBeta_leq: uint8 + + """""" + modelIsBeta_lt: uint8 + + """""" + modelIsBeta_neq: uint8 + + """""" + modelIsBeta_notin: bytes + + """""" + neurons: float64 + + """""" + neurons_geq: float64 + + """""" + neurons_gt: float64 + + """""" + neurons_in: [float64!] + + """""" + neurons_leq: float64 + + """""" + neurons_lt: float64 + + """""" + neurons_neq: float64 + + """""" + neurons_notin: [float64!] + + """""" + requestBytesIn: uint64 + + """""" + requestBytesIn_geq: uint64 + + """""" + requestBytesIn_gt: uint64 + + """""" + requestBytesIn_in: [uint64!] + + """""" + requestBytesIn_leq: uint64 + + """""" + requestBytesIn_lt: uint64 + + """""" + requestBytesIn_neq: uint64 + + """""" + requestBytesIn_notin: [uint64!] + + """""" + requestBytesOut: uint64 + + """""" + requestBytesOut_geq: uint64 + + """""" + requestBytesOut_gt: uint64 + + """""" + requestBytesOut_in: [uint64!] + + """""" + requestBytesOut_leq: uint64 + + """""" + requestBytesOut_lt: uint64 + + """""" + requestBytesOut_neq: uint64 + + """""" + requestBytesOut_notin: [uint64!] + + """""" + requestSource: string + + """""" + requestSource_geq: string + + """""" + requestSource_gt: string + + """""" + requestSource_in: [string!] + + """""" + requestSource_leq: string + + """""" + requestSource_like: string + + """""" + requestSource_lt: string + + """""" + requestSource_neq: string + + """""" + requestSource_notin: [string!] + + """""" + requestSource_notlike: string + + """""" + tag: string + + """""" + tag_geq: string + + """""" + tag_gt: string + + """""" + tag_in: [string!] + + """""" + tag_leq: string + + """""" + tag_like: string + + """""" + tag_lt: string + + """""" + tag_neq: string + + """""" + tag_notin: [string!] + + """""" + tag_notlike: string +} + +"""""" +enum AccountAiInferenceAdaptiveGroupsOrderBy { + """costMetricName1 ascending""" + costMetricName1_ASC + + """costMetricName1 descending""" + costMetricName1_DESC + + """costMetricName2 ascending""" + costMetricName2_ASC + + """costMetricName2 descending""" + costMetricName2_DESC + + """costMetricValue1 ascending""" + costMetricValue1_ASC + + """costMetricValue1 descending""" + costMetricValue1_DESC + + """costMetricValue2 ascending""" + costMetricValue2_ASC + + """costMetricValue2 descending""" + costMetricValue2_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetimeSixHours ascending""" + datetimeSixHours_ASC + + """datetimeSixHours descending""" + datetimeSixHours_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """errorCode ascending""" + errorCode_ASC + + """errorCode descending""" + errorCode_DESC + + """inferenceTimeMs ascending""" + inferenceTimeMs_ASC + + """inferenceTimeMs descending""" + inferenceTimeMs_DESC + + """modelId ascending""" + modelId_ASC + + """modelId descending""" + modelId_DESC + + """modelIsBeta ascending""" + modelIsBeta_ASC + + """modelIsBeta descending""" + modelIsBeta_DESC + + """neurons ascending""" + neurons_ASC + + """neurons descending""" + neurons_DESC + + """requestBytesIn ascending""" + requestBytesIn_ASC + + """requestBytesIn descending""" + requestBytesIn_DESC + + """requestBytesOut ascending""" + requestBytesOut_ASC + + """requestBytesOut descending""" + requestBytesOut_DESC + + """requestSource ascending""" + requestSource_ASC + + """requestSource descending""" + requestSource_DESC + + """sum(totalAudioSeconds) ascending""" + sum_totalAudioSeconds_ASC + + """sum(totalAudioSeconds) descending""" + sum_totalAudioSeconds_DESC + + """sum(totalCostMetricValue1) ascending""" + sum_totalCostMetricValue1_ASC + + """sum(totalCostMetricValue1) descending""" + sum_totalCostMetricValue1_DESC + + """sum(totalCostMetricValue2) ascending""" + sum_totalCostMetricValue2_ASC + + """sum(totalCostMetricValue2) descending""" + sum_totalCostMetricValue2_DESC + + """sum(totalInferenceSteps) ascending""" + sum_totalInferenceSteps_ASC + + """sum(totalInferenceSteps) descending""" + sum_totalInferenceSteps_DESC + + """sum(totalInferenceTimeMs) ascending""" + sum_totalInferenceTimeMs_ASC + + """sum(totalInferenceTimeMs) descending""" + sum_totalInferenceTimeMs_DESC + + """sum(totalInputLength) ascending""" + sum_totalInputLength_ASC + + """sum(totalInputLength) descending""" + sum_totalInputLength_DESC + + """sum(totalInputTokens) ascending""" + sum_totalInputTokens_ASC + + """sum(totalInputTokens) descending""" + sum_totalInputTokens_DESC + + """sum(totalNeurons) ascending""" + sum_totalNeurons_ASC + + """sum(totalNeurons) descending""" + sum_totalNeurons_DESC + + """sum(totalOutputTokens) ascending""" + sum_totalOutputTokens_ASC + + """sum(totalOutputTokens) descending""" + sum_totalOutputTokens_DESC + + """sum(totalProcessedPixels) ascending""" + sum_totalProcessedPixels_ASC + + """sum(totalProcessedPixels) descending""" + sum_totalProcessedPixels_DESC + + """sum(totalProcessedTiles) ascending""" + sum_totalProcessedTiles_ASC + + """sum(totalProcessedTiles) descending""" + sum_totalProcessedTiles_DESC + + """sum(totalRequestBytesIn) ascending""" + sum_totalRequestBytesIn_ASC + + """sum(totalRequestBytesIn) descending""" + sum_totalRequestBytesIn_DESC + + """sum(totalRequestBytesOut) ascending""" + sum_totalRequestBytesOut_ASC + + """sum(totalRequestBytesOut) descending""" + sum_totalRequestBytesOut_DESC + + """sum(totalTiles) ascending""" + sum_totalTiles_ASC + + """sum(totalTiles) descending""" + sum_totalTiles_DESC + + """tag ascending""" + tag_ASC + + """tag descending""" + tag_DESC +} + +"""""" +type AccountAiInferenceAdaptiveGroupsSum { + """Total audio seconds""" + totalAudioSeconds: float64! + + """Total value for cost metric 1""" + totalCostMetricValue1: float64! + + """Total value for cost metric 2""" + totalCostMetricValue2: float64! + + """Total inference steps""" + totalInferenceSteps: float64! + + """Total inference time ms""" + totalInferenceTimeMs: uint64! + + """Total input length""" + totalInputLength: float64! + + """Total input tokens""" + totalInputTokens: float64! + + """Total neurons""" + totalNeurons: float64! + + """Total output tokens""" + totalOutputTokens: float64! + + """Total processed pixels""" + totalProcessedPixels: float64! + + """Total processed tiles""" + totalProcessedTiles: float64! + + """Total bytes in per request""" + totalRequestBytesIn: uint64! + + """Total bytes out per request""" + totalRequestBytesOut: uint64! + + """Total tiles""" + totalTiles: float64! +} + +"""""" +type AccountAiInferenceAdaptiveGroupsSumConfidence { + """Confidence interval for the corresponding point estimate""" + totalAudioSeconds: Confidence! + + """Confidence interval for the corresponding point estimate""" + totalCostMetricValue1: Confidence! + + """Confidence interval for the corresponding point estimate""" + totalCostMetricValue2: Confidence! + + """Confidence interval for the corresponding point estimate""" + totalInferenceSteps: Confidence! + + """Confidence interval for the corresponding point estimate""" + totalInferenceTimeMs: Confidence! + + """Confidence interval for the corresponding point estimate""" + totalInputLength: Confidence! + + """Confidence interval for the corresponding point estimate""" + totalInputTokens: Confidence! + + """Confidence interval for the corresponding point estimate""" + totalNeurons: Confidence! + + """Confidence interval for the corresponding point estimate""" + totalOutputTokens: Confidence! + + """Confidence interval for the corresponding point estimate""" + totalProcessedPixels: Confidence! + + """Confidence interval for the corresponding point estimate""" + totalProcessedTiles: Confidence! + + """Confidence interval for the corresponding point estimate""" + totalRequestBytesIn: Confidence! + + """Confidence interval for the corresponding point estimate""" + totalRequestBytesOut: Confidence! + + """Confidence interval for the corresponding point estimate""" + totalTiles: Confidence! +} + +"""""" +enum AccountAiInferenceAdaptiveOrderBy { + """audioSeconds ascending""" + audioSeconds_ASC + + """audioSeconds descending""" + audioSeconds_DESC + + """costMetricName1 ascending""" + costMetricName1_ASC + + """costMetricName1 descending""" + costMetricName1_DESC + + """costMetricName2 ascending""" + costMetricName2_ASC + + """costMetricName2 descending""" + costMetricName2_DESC + + """costMetricValue1 ascending""" + costMetricValue1_ASC + + """costMetricValue1 descending""" + costMetricValue1_DESC + + """costMetricValue2 ascending""" + costMetricValue2_ASC + + """costMetricValue2 descending""" + costMetricValue2_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """errorCode ascending""" + errorCode_ASC + + """errorCode descending""" + errorCode_DESC + + """inferenceSteps ascending""" + inferenceSteps_ASC + + """inferenceSteps descending""" + inferenceSteps_DESC + + """inferenceTimeMs ascending""" + inferenceTimeMs_ASC + + """inferenceTimeMs descending""" + inferenceTimeMs_DESC + + """inputLength ascending""" + inputLength_ASC + + """inputLength descending""" + inputLength_DESC + + """inputTokens ascending""" + inputTokens_ASC + + """inputTokens descending""" + inputTokens_DESC + + """modelId ascending""" + modelId_ASC + + """modelId descending""" + modelId_DESC + + """modelIsBeta ascending""" + modelIsBeta_ASC + + """modelIsBeta descending""" + modelIsBeta_DESC + + """neurons ascending""" + neurons_ASC + + """neurons descending""" + neurons_DESC + + """outputTokens ascending""" + outputTokens_ASC + + """outputTokens descending""" + outputTokens_DESC + + """processedPixels ascending""" + processedPixels_ASC + + """processedPixels descending""" + processedPixels_DESC + + """processedTiles ascending""" + processedTiles_ASC + + """processedTiles descending""" + processedTiles_DESC + + """requestBytesIn ascending""" + requestBytesIn_ASC + + """requestBytesIn descending""" + requestBytesIn_DESC + + """requestBytesOut ascending""" + requestBytesOut_ASC + + """requestBytesOut descending""" + requestBytesOut_DESC + + """requestSource ascending""" + requestSource_ASC + + """requestSource descending""" + requestSource_DESC + + """sampleInterval ascending""" + sampleInterval_ASC + + """sampleInterval descending""" + sampleInterval_DESC + + """tag ascending""" + tag_ASC + + """tag descending""" + tag_DESC + + """totalTiles ascending""" + totalTiles_ASC + + """totalTiles descending""" + totalTiles_DESC +} + +"""AutoRAG Config API Search Analytics""" +type AccountAutoRAGConfigAPIAdaptiveGroups { + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountAutoRAGConfigAPIAdaptiveGroupsConfidence! + + """List of dimensions to group by""" + dimensions: AccountAutoRAGConfigAPIAdaptiveGroupsDimensions + + """The sum of values for a metric per dimension""" + sum: AccountAutoRAGConfigAPIAdaptiveGroupsSum +} + +"""""" +type AccountAutoRAGConfigAPIAdaptiveGroupsConfidence { + """Confidence level that was requested""" + level: float64! + + """ + The sum of values for a metric per dimension, with confidence intervals + """ + sum: AccountAutoRAGConfigAPIAdaptiveGroupsSumConfidence +} + +"""""" +type AccountAutoRAGConfigAPIAdaptiveGroupsDimensions { + """Whether the prompt for AI Search is included (0 = false, 1 = true)""" + aiPromptIncluded: uint8! + + """ + The time in milliseconds it took to do generate a response with AI Search + """ + aiSearchDurationMs: int64! + + """The size in tokens of the input for response generation with AI Search""" + aiSearchInputSizeTokens: int64! + + """The model used for AI Search, if it was used""" + aiSearchModel: string! + + """The size in tokens of the AI Search generated response""" + aiSearchResultSizeTokens: int64! + + """An array of file sizes of the files returned in this search""" + chuckSizeTokensArray: [int64!]! + + """How much overlap exists between contiguous chunks""" + chunkOverlap: int64! + + """The size of text chunks""" + chunkSize: int64! + + """The date when trigger was triggered""" + date: Date! + + """The date and time truncated to fifteen minutes""" + datetimeFifteenMinutes: Time! + + """The date and time truncated to five minutes""" + datetimeFiveMinutes: Time! + + """The date and time truncated to the hour""" + datetimeHour: Time! + + """The date and time truncated to the minute""" + datetimeMinute: Time! + + """ + Whether re-ranking was used when performing this search task (0 = false, 1 = true) + """ + doReranking: uint8! + + """ + Whether to do query rewriting when performing searches with this RAG (0 = false, 1 = true) + """ + doRewrite: uint8! + + """The model used to generate embeddings""" + embeddingModel: string! + + """Whether chunking is enabled for this AutoRAG (0 = false, 1 = true)""" + enableChunking: uint8! + + """An array of IDs of the files returned in this search""" + fileIdArray: [string!]! + + """An array of names of the files returned in this search""" + filenameArray: [string!]! + + """The time in milliseconds it took to retrieve files for this search""" + getFilesDurationMs: int64! + + """ + The time in milliseconds it took to generate embeddings for this search's query + """ + getQueryVectorsAvgDurationMs: int64! + + """The time in milliseconds it took to retrieve stored file embeddings""" + getResultVectorsAvgDurationMs: int64! + + """Whether the search response was streamed or not (0 = false, 1 = true)""" + isStream: uint8! + + """THe max number of results that can be returned""" + maxResults: int64! + + """ + The number of chunks to retrieve from the vector store, calculated based on the configured number of results to retrieve + """ + numChunksToRetrieve: int64! + + """The number of returned results""" + numResults: int64! + + """The size of the given query in tokens""" + querySizeTokens: int64! + + """AutoRAG Id""" + rag: string! + + """ + Whether to this search implied regenerating markdown for returned results (0 = false, 1 = true) + """ + regenerateMarkdown: uint8! + + """ + The time in milliseconds it took to re-rank results based on this search's query + """ + rerankingDurationMs: int64! + + """The reranking model used in this search""" + rerankingModel: string! + + """The time in milliseconds that it took to rewrite the query""" + rewriteDurationMs: int64! + + """The size in tokens of the rewritten input""" + rewriteInputSizeTokens: int64! + + """The model used for rewriting queries""" + rewriteModel: string! + + """Whether the rewrite prompt is included (0 = false, 1 = true)""" + rewritePromptIncluded: uint8! + + """The size in tokens of the rewritten query""" + rewriteResultSizeTokens: int64! + + """An array of matching scores of the files returned in this search""" + scoreArray: [float64!]! + + """The score threshold over which matches are included in the result""" + scoreThreshold: float64! + + """AutoRAG Search Type""" + searchType: string! + + """The total time in milliseconds that performing this search took""" + totalDurationMs: int64! +} + +"""""" +input AccountAutoRAGConfigAPIAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountAutoRAGConfigAPIAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountAutoRAGConfigAPIAdaptiveGroupsFilter_InputObject!] + + """""" + aiPromptIncluded: uint8 + + """""" + aiPromptIncluded_geq: uint8 + + """""" + aiPromptIncluded_gt: uint8 + + """""" + aiPromptIncluded_in: bytes + + """""" + aiPromptIncluded_leq: uint8 + + """""" + aiPromptIncluded_lt: uint8 + + """""" + aiPromptIncluded_neq: uint8 + + """""" + aiPromptIncluded_notin: bytes + + """""" + aiSearchDurationMs: int64 + + """""" + aiSearchDurationMs_geq: int64 + + """""" + aiSearchDurationMs_gt: int64 + + """""" + aiSearchDurationMs_in: [int64!] + + """""" + aiSearchDurationMs_leq: int64 + + """""" + aiSearchDurationMs_lt: int64 + + """""" + aiSearchDurationMs_neq: int64 + + """""" + aiSearchDurationMs_notin: [int64!] + + """""" + aiSearchInputSizeTokens: int64 + + """""" + aiSearchInputSizeTokens_geq: int64 + + """""" + aiSearchInputSizeTokens_gt: int64 + + """""" + aiSearchInputSizeTokens_in: [int64!] + + """""" + aiSearchInputSizeTokens_leq: int64 + + """""" + aiSearchInputSizeTokens_lt: int64 + + """""" + aiSearchInputSizeTokens_neq: int64 + + """""" + aiSearchInputSizeTokens_notin: [int64!] + + """""" + aiSearchModel: string + + """""" + aiSearchModel_geq: string + + """""" + aiSearchModel_gt: string + + """""" + aiSearchModel_in: [string!] + + """""" + aiSearchModel_leq: string + + """""" + aiSearchModel_like: string + + """""" + aiSearchModel_lt: string + + """""" + aiSearchModel_neq: string + + """""" + aiSearchModel_notin: [string!] + + """""" + aiSearchModel_notlike: string + + """""" + aiSearchResultSizeTokens: int64 + + """""" + aiSearchResultSizeTokens_geq: int64 + + """""" + aiSearchResultSizeTokens_gt: int64 + + """""" + aiSearchResultSizeTokens_in: [int64!] + + """""" + aiSearchResultSizeTokens_leq: int64 + + """""" + aiSearchResultSizeTokens_lt: int64 + + """""" + aiSearchResultSizeTokens_neq: int64 + + """""" + aiSearchResultSizeTokens_notin: [int64!] + + """""" + chuckSizeTokensArray_has: int64 + + """""" + chuckSizeTokensArray_hasall: [int64!] + + """""" + chuckSizeTokensArray_hasany: [int64!] + + """""" + chuckSizeTokensArray_isempty: bool + + """""" + chuckSizeTokensArray_nothas: int64 + + """""" + chunkOverlap: int64 + + """""" + chunkOverlap_geq: int64 + + """""" + chunkOverlap_gt: int64 + + """""" + chunkOverlap_in: [int64!] + + """""" + chunkOverlap_leq: int64 + + """""" + chunkOverlap_lt: int64 + + """""" + chunkOverlap_neq: int64 + + """""" + chunkOverlap_notin: [int64!] + + """""" + chunkSize: int64 + + """""" + chunkSize_geq: int64 + + """""" + chunkSize_gt: int64 + + """""" + chunkSize_in: [int64!] + + """""" + chunkSize_leq: int64 + + """""" + chunkSize_lt: int64 + + """""" + chunkSize_neq: int64 + + """""" + chunkSize_notin: [int64!] + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + doReranking: uint8 + + """""" + doReranking_geq: uint8 + + """""" + doReranking_gt: uint8 + + """""" + doReranking_in: bytes + + """""" + doReranking_leq: uint8 + + """""" + doReranking_lt: uint8 + + """""" + doReranking_neq: uint8 + + """""" + doReranking_notin: bytes + + """""" + doRewrite: uint8 + + """""" + doRewrite_geq: uint8 + + """""" + doRewrite_gt: uint8 + + """""" + doRewrite_in: bytes + + """""" + doRewrite_leq: uint8 + + """""" + doRewrite_lt: uint8 + + """""" + doRewrite_neq: uint8 + + """""" + doRewrite_notin: bytes + + """""" + embeddingModel: string + + """""" + embeddingModel_geq: string + + """""" + embeddingModel_gt: string + + """""" + embeddingModel_in: [string!] + + """""" + embeddingModel_leq: string + + """""" + embeddingModel_like: string + + """""" + embeddingModel_lt: string + + """""" + embeddingModel_neq: string + + """""" + embeddingModel_notin: [string!] + + """""" + embeddingModel_notlike: string + + """""" + enableChunking: uint8 + + """""" + enableChunking_geq: uint8 + + """""" + enableChunking_gt: uint8 + + """""" + enableChunking_in: bytes + + """""" + enableChunking_leq: uint8 + + """""" + enableChunking_lt: uint8 + + """""" + enableChunking_neq: uint8 + + """""" + enableChunking_notin: bytes + + """""" + fileIdArray_has: string + + """""" + fileIdArray_hasall: [string!] + + """""" + fileIdArray_hasany: [string!] + + """""" + fileIdArray_isempty: bool + + """""" + fileIdArray_nothas: string + + """""" + filenameArray_has: string + + """""" + filenameArray_hasall: [string!] + + """""" + filenameArray_hasany: [string!] + + """""" + filenameArray_isempty: bool + + """""" + filenameArray_nothas: string + + """""" + getFilesDurationMs: int64 + + """""" + getFilesDurationMs_geq: int64 + + """""" + getFilesDurationMs_gt: int64 + + """""" + getFilesDurationMs_in: [int64!] + + """""" + getFilesDurationMs_leq: int64 + + """""" + getFilesDurationMs_lt: int64 + + """""" + getFilesDurationMs_neq: int64 + + """""" + getFilesDurationMs_notin: [int64!] + + """""" + getQueryVectorsAvgDurationMs: int64 + + """""" + getQueryVectorsAvgDurationMs_geq: int64 + + """""" + getQueryVectorsAvgDurationMs_gt: int64 + + """""" + getQueryVectorsAvgDurationMs_in: [int64!] + + """""" + getQueryVectorsAvgDurationMs_leq: int64 + + """""" + getQueryVectorsAvgDurationMs_lt: int64 + + """""" + getQueryVectorsAvgDurationMs_neq: int64 + + """""" + getQueryVectorsAvgDurationMs_notin: [int64!] + + """""" + getResultVectorsAvgDurationMs: int64 + + """""" + getResultVectorsAvgDurationMs_geq: int64 + + """""" + getResultVectorsAvgDurationMs_gt: int64 + + """""" + getResultVectorsAvgDurationMs_in: [int64!] + + """""" + getResultVectorsAvgDurationMs_leq: int64 + + """""" + getResultVectorsAvgDurationMs_lt: int64 + + """""" + getResultVectorsAvgDurationMs_neq: int64 + + """""" + getResultVectorsAvgDurationMs_notin: [int64!] + + """""" + isStream: uint8 + + """""" + isStream_geq: uint8 + + """""" + isStream_gt: uint8 + + """""" + isStream_in: bytes + + """""" + isStream_leq: uint8 + + """""" + isStream_lt: uint8 + + """""" + isStream_neq: uint8 + + """""" + isStream_notin: bytes + + """""" + maxResults: int64 + + """""" + maxResults_geq: int64 + + """""" + maxResults_gt: int64 + + """""" + maxResults_in: [int64!] + + """""" + maxResults_leq: int64 + + """""" + maxResults_lt: int64 + + """""" + maxResults_neq: int64 + + """""" + maxResults_notin: [int64!] + + """""" + numChunksToRetrieve: int64 + + """""" + numChunksToRetrieve_geq: int64 + + """""" + numChunksToRetrieve_gt: int64 + + """""" + numChunksToRetrieve_in: [int64!] + + """""" + numChunksToRetrieve_leq: int64 + + """""" + numChunksToRetrieve_lt: int64 + + """""" + numChunksToRetrieve_neq: int64 + + """""" + numChunksToRetrieve_notin: [int64!] + + """""" + numResults: int64 + + """""" + numResults_geq: int64 + + """""" + numResults_gt: int64 + + """""" + numResults_in: [int64!] + + """""" + numResults_leq: int64 + + """""" + numResults_lt: int64 + + """""" + numResults_neq: int64 + + """""" + numResults_notin: [int64!] + + """""" + querySizeTokens: int64 + + """""" + querySizeTokens_geq: int64 + + """""" + querySizeTokens_gt: int64 + + """""" + querySizeTokens_in: [int64!] + + """""" + querySizeTokens_leq: int64 + + """""" + querySizeTokens_lt: int64 + + """""" + querySizeTokens_neq: int64 + + """""" + querySizeTokens_notin: [int64!] + + """""" + rag: string + + """""" + rag_geq: string + + """""" + rag_gt: string + + """""" + rag_in: [string!] + + """""" + rag_leq: string + + """""" + rag_like: string + + """""" + rag_lt: string + + """""" + rag_neq: string + + """""" + rag_notin: [string!] + + """""" + rag_notlike: string + + """""" + regenerateMarkdown: uint8 + + """""" + regenerateMarkdown_geq: uint8 + + """""" + regenerateMarkdown_gt: uint8 + + """""" + regenerateMarkdown_in: bytes + + """""" + regenerateMarkdown_leq: uint8 + + """""" + regenerateMarkdown_lt: uint8 + + """""" + regenerateMarkdown_neq: uint8 + + """""" + regenerateMarkdown_notin: bytes + + """""" + rerankingDurationMs: int64 + + """""" + rerankingDurationMs_geq: int64 + + """""" + rerankingDurationMs_gt: int64 + + """""" + rerankingDurationMs_in: [int64!] + + """""" + rerankingDurationMs_leq: int64 + + """""" + rerankingDurationMs_lt: int64 + + """""" + rerankingDurationMs_neq: int64 + + """""" + rerankingDurationMs_notin: [int64!] + + """""" + rerankingModel: string + + """""" + rerankingModel_geq: string + + """""" + rerankingModel_gt: string + + """""" + rerankingModel_in: [string!] + + """""" + rerankingModel_leq: string + + """""" + rerankingModel_like: string + + """""" + rerankingModel_lt: string + + """""" + rerankingModel_neq: string + + """""" + rerankingModel_notin: [string!] + + """""" + rerankingModel_notlike: string + + """""" + rewriteDurationMs: int64 + + """""" + rewriteDurationMs_geq: int64 + + """""" + rewriteDurationMs_gt: int64 + + """""" + rewriteDurationMs_in: [int64!] + + """""" + rewriteDurationMs_leq: int64 + + """""" + rewriteDurationMs_lt: int64 + + """""" + rewriteDurationMs_neq: int64 + + """""" + rewriteDurationMs_notin: [int64!] + + """""" + rewriteInputSizeTokens: int64 + + """""" + rewriteInputSizeTokens_geq: int64 + + """""" + rewriteInputSizeTokens_gt: int64 + + """""" + rewriteInputSizeTokens_in: [int64!] + + """""" + rewriteInputSizeTokens_leq: int64 + + """""" + rewriteInputSizeTokens_lt: int64 + + """""" + rewriteInputSizeTokens_neq: int64 + + """""" + rewriteInputSizeTokens_notin: [int64!] + + """""" + rewriteModel: string + + """""" + rewriteModel_geq: string + + """""" + rewriteModel_gt: string + + """""" + rewriteModel_in: [string!] + + """""" + rewriteModel_leq: string + + """""" + rewriteModel_like: string + + """""" + rewriteModel_lt: string + + """""" + rewriteModel_neq: string + + """""" + rewriteModel_notin: [string!] + + """""" + rewriteModel_notlike: string + + """""" + rewritePromptIncluded: uint8 + + """""" + rewritePromptIncluded_geq: uint8 + + """""" + rewritePromptIncluded_gt: uint8 + + """""" + rewritePromptIncluded_in: bytes + + """""" + rewritePromptIncluded_leq: uint8 + + """""" + rewritePromptIncluded_lt: uint8 + + """""" + rewritePromptIncluded_neq: uint8 + + """""" + rewritePromptIncluded_notin: bytes + + """""" + rewriteResultSizeTokens: int64 + + """""" + rewriteResultSizeTokens_geq: int64 + + """""" + rewriteResultSizeTokens_gt: int64 + + """""" + rewriteResultSizeTokens_in: [int64!] + + """""" + rewriteResultSizeTokens_leq: int64 + + """""" + rewriteResultSizeTokens_lt: int64 + + """""" + rewriteResultSizeTokens_neq: int64 + + """""" + rewriteResultSizeTokens_notin: [int64!] + + """""" + scoreArray_has: float64 + + """""" + scoreArray_hasall: [float64!] + + """""" + scoreArray_hasany: [float64!] + + """""" + scoreArray_isempty: bool + + """""" + scoreArray_nothas: float64 + + """""" + scoreThreshold: float64 + + """""" + scoreThreshold_geq: float64 + + """""" + scoreThreshold_gt: float64 + + """""" + scoreThreshold_in: [float64!] + + """""" + scoreThreshold_leq: float64 + + """""" + scoreThreshold_lt: float64 + + """""" + scoreThreshold_neq: float64 + + """""" + scoreThreshold_notin: [float64!] + + """""" + searchType: string + + """""" + searchType_geq: string + + """""" + searchType_gt: string + + """""" + searchType_in: [string!] + + """""" + searchType_leq: string + + """""" + searchType_like: string + + """""" + searchType_lt: string + + """""" + searchType_neq: string + + """""" + searchType_notin: [string!] + + """""" + searchType_notlike: string + + """""" + totalDurationMs: int64 + + """""" + totalDurationMs_geq: int64 + + """""" + totalDurationMs_gt: int64 + + """""" + totalDurationMs_in: [int64!] + + """""" + totalDurationMs_leq: int64 + + """""" + totalDurationMs_lt: int64 + + """""" + totalDurationMs_neq: int64 + + """""" + totalDurationMs_notin: [int64!] +} + +"""""" +enum AccountAutoRAGConfigAPIAdaptiveGroupsOrderBy { + """aiPromptIncluded ascending""" + aiPromptIncluded_ASC + + """aiPromptIncluded descending""" + aiPromptIncluded_DESC + + """aiSearchDurationMs ascending""" + aiSearchDurationMs_ASC + + """aiSearchDurationMs descending""" + aiSearchDurationMs_DESC + + """aiSearchInputSizeTokens ascending""" + aiSearchInputSizeTokens_ASC + + """aiSearchInputSizeTokens descending""" + aiSearchInputSizeTokens_DESC + + """aiSearchModel ascending""" + aiSearchModel_ASC + + """aiSearchModel descending""" + aiSearchModel_DESC + + """aiSearchResultSizeTokens ascending""" + aiSearchResultSizeTokens_ASC + + """aiSearchResultSizeTokens descending""" + aiSearchResultSizeTokens_DESC + + """chuckSizeTokensArray ascending""" + chuckSizeTokensArray_ASC + + """chuckSizeTokensArray descending""" + chuckSizeTokensArray_DESC + + """chunkOverlap ascending""" + chunkOverlap_ASC + + """chunkOverlap descending""" + chunkOverlap_DESC + + """chunkSize ascending""" + chunkSize_ASC + + """chunkSize descending""" + chunkSize_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """doReranking ascending""" + doReranking_ASC + + """doReranking descending""" + doReranking_DESC + + """doRewrite ascending""" + doRewrite_ASC + + """doRewrite descending""" + doRewrite_DESC + + """embeddingModel ascending""" + embeddingModel_ASC + + """embeddingModel descending""" + embeddingModel_DESC + + """enableChunking ascending""" + enableChunking_ASC + + """enableChunking descending""" + enableChunking_DESC + + """fileIdArray ascending""" + fileIdArray_ASC + + """fileIdArray descending""" + fileIdArray_DESC + + """filenameArray ascending""" + filenameArray_ASC + + """filenameArray descending""" + filenameArray_DESC + + """getFilesDurationMs ascending""" + getFilesDurationMs_ASC + + """getFilesDurationMs descending""" + getFilesDurationMs_DESC + + """getQueryVectorsAvgDurationMs ascending""" + getQueryVectorsAvgDurationMs_ASC + + """getQueryVectorsAvgDurationMs descending""" + getQueryVectorsAvgDurationMs_DESC + + """getResultVectorsAvgDurationMs ascending""" + getResultVectorsAvgDurationMs_ASC + + """getResultVectorsAvgDurationMs descending""" + getResultVectorsAvgDurationMs_DESC + + """isStream ascending""" + isStream_ASC + + """isStream descending""" + isStream_DESC + + """maxResults ascending""" + maxResults_ASC + + """maxResults descending""" + maxResults_DESC + + """numChunksToRetrieve ascending""" + numChunksToRetrieve_ASC + + """numChunksToRetrieve descending""" + numChunksToRetrieve_DESC + + """numResults ascending""" + numResults_ASC + + """numResults descending""" + numResults_DESC + + """querySizeTokens ascending""" + querySizeTokens_ASC + + """querySizeTokens descending""" + querySizeTokens_DESC + + """rag ascending""" + rag_ASC + + """rag descending""" + rag_DESC + + """regenerateMarkdown ascending""" + regenerateMarkdown_ASC + + """regenerateMarkdown descending""" + regenerateMarkdown_DESC + + """rerankingDurationMs ascending""" + rerankingDurationMs_ASC + + """rerankingDurationMs descending""" + rerankingDurationMs_DESC + + """rerankingModel ascending""" + rerankingModel_ASC + + """rerankingModel descending""" + rerankingModel_DESC + + """rewriteDurationMs ascending""" + rewriteDurationMs_ASC + + """rewriteDurationMs descending""" + rewriteDurationMs_DESC + + """rewriteInputSizeTokens ascending""" + rewriteInputSizeTokens_ASC + + """rewriteInputSizeTokens descending""" + rewriteInputSizeTokens_DESC + + """rewriteModel ascending""" + rewriteModel_ASC + + """rewriteModel descending""" + rewriteModel_DESC + + """rewritePromptIncluded ascending""" + rewritePromptIncluded_ASC + + """rewritePromptIncluded descending""" + rewritePromptIncluded_DESC + + """rewriteResultSizeTokens ascending""" + rewriteResultSizeTokens_ASC + + """rewriteResultSizeTokens descending""" + rewriteResultSizeTokens_DESC + + """scoreArray ascending""" + scoreArray_ASC + + """scoreArray descending""" + scoreArray_DESC + + """scoreThreshold ascending""" + scoreThreshold_ASC + + """scoreThreshold descending""" + scoreThreshold_DESC + + """searchType ascending""" + searchType_ASC + + """searchType descending""" + searchType_DESC + + """sum(aiSearchCount) ascending""" + sum_aiSearchCount_ASC + + """sum(aiSearchCount) descending""" + sum_aiSearchCount_DESC + + """sum(searchCount) ascending""" + sum_searchCount_ASC + + """sum(searchCount) descending""" + sum_searchCount_DESC + + """totalDurationMs ascending""" + totalDurationMs_ASC + + """totalDurationMs descending""" + totalDurationMs_DESC +} + +"""""" +type AccountAutoRAGConfigAPIAdaptiveGroupsSum { + """The number of AI Searches for this RAG""" + aiSearchCount: uint64! + + """The number of Searches for this RAG""" + searchCount: uint64! +} + +"""""" +type AccountAutoRAGConfigAPIAdaptiveGroupsSumConfidence { + """Confidence interval for the corresponding point estimate""" + aiSearchCount: Confidence! + + """Confidence interval for the corresponding point estimate""" + searchCount: Confidence! +} + +"""AutoRAG Engine Ingestion Analytics""" +type AccountAutoRAGEngineAdaptiveGroups { + """List of dimensions to group by""" + dimensions: AccountAutoRAGEngineAdaptiveGroupsDimensions + + """The max of values for a metric per dimension""" + max: AccountAutoRAGEngineAdaptiveGroupsMax +} + +"""""" +type AccountAutoRAGEngineAdaptiveGroupsDimensions { + """Number of completed items""" + completed: int64! + + """The date when trigger was triggered""" + date: Date! + + """The date and time truncated to fifteen minutes""" + datetimeFifteenMinutes: Time! + + """The date and time truncated to five minutes""" + datetimeFiveMinutes: Time! + + """The date and time truncated to the hour""" + datetimeHour: Time! + + """The date and time truncated to the minute""" + datetimeMinute: Time! + + """Number of errored items""" + errored: int64! + + """Number of queued items""" + queued: int64! + + """AutoRAG Id""" + rag: string! + + """Number of running items""" + running: int64! + + """AutoRAG Source Type""" + sourceType: string! +} + +"""""" +input AccountAutoRAGEngineAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountAutoRAGEngineAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountAutoRAGEngineAdaptiveGroupsFilter_InputObject!] + + """""" + completed: int64 + + """""" + completed_geq: int64 + + """""" + completed_gt: int64 + + """""" + completed_in: [int64!] + + """""" + completed_leq: int64 + + """""" + completed_lt: int64 + + """""" + completed_neq: int64 + + """""" + completed_notin: [int64!] + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + errored: int64 + + """""" + errored_geq: int64 + + """""" + errored_gt: int64 + + """""" + errored_in: [int64!] + + """""" + errored_leq: int64 + + """""" + errored_lt: int64 + + """""" + errored_neq: int64 + + """""" + errored_notin: [int64!] + + """""" + queued: int64 + + """""" + queued_geq: int64 + + """""" + queued_gt: int64 + + """""" + queued_in: [int64!] + + """""" + queued_leq: int64 + + """""" + queued_lt: int64 + + """""" + queued_neq: int64 + + """""" + queued_notin: [int64!] + + """""" + rag: string + + """""" + rag_geq: string + + """""" + rag_gt: string + + """""" + rag_in: [string!] + + """""" + rag_leq: string + + """""" + rag_like: string + + """""" + rag_lt: string + + """""" + rag_neq: string + + """""" + rag_notin: [string!] + + """""" + rag_notlike: string + + """""" + running: int64 + + """""" + running_geq: int64 + + """""" + running_gt: int64 + + """""" + running_in: [int64!] + + """""" + running_leq: int64 + + """""" + running_lt: int64 + + """""" + running_neq: int64 + + """""" + running_notin: [int64!] + + """""" + sourceType: string + + """""" + sourceType_geq: string + + """""" + sourceType_gt: string + + """""" + sourceType_in: [string!] + + """""" + sourceType_leq: string + + """""" + sourceType_like: string + + """""" + sourceType_lt: string + + """""" + sourceType_neq: string + + """""" + sourceType_notin: [string!] + + """""" + sourceType_notlike: string +} + +"""""" +type AccountAutoRAGEngineAdaptiveGroupsMax { + """Max of completed items""" + completed: int64! + + """Max of errored items""" + errored: int64! + + """Max of queued items""" + queued: int64! + + """Max of running items""" + running: int64! +} + +"""""" +enum AccountAutoRAGEngineAdaptiveGroupsOrderBy { + """completed ascending""" + completed_ASC + + """completed descending""" + completed_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """errored ascending""" + errored_ASC + + """errored descending""" + errored_DESC + + """max(completed) ascending""" + max_completed_ASC + + """max(completed) descending""" + max_completed_DESC + + """max(errored) ascending""" + max_errored_ASC + + """max(errored) descending""" + max_errored_DESC + + """max(queued) ascending""" + max_queued_ASC + + """max(queued) descending""" + max_queued_DESC + + """max(running) ascending""" + max_running_ASC + + """max(running) descending""" + max_running_DESC + + """queued ascending""" + queued_ASC + + """queued descending""" + queued_DESC + + """rag ascending""" + rag_ASC + + """rag descending""" + rag_DESC + + """running ascending""" + running_ASC + + """running descending""" + running_DESC + + """sourceType ascending""" + sourceType_ASC + + """sourceType descending""" + sourceType_DESC +} + +"""Aggregated count of Browser Isolation sessions""" +type AccountBrowserIsolationSessionsAdaptiveGroups { + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountBrowserIsolationSessionsAdaptiveGroupsConfidence! + + """Number of browser sessions""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountBrowserIsolationSessionsAdaptiveGroupsDimensions +} + +"""""" +type AccountBrowserIsolationSessionsAdaptiveGroupsConfidence { + """Number of browser sessions, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! +} + +"""""" +type AccountBrowserIsolationSessionsAdaptiveGroupsDimensions { + """""" + datetime: Time! +} + +"""""" +input AccountBrowserIsolationSessionsAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountBrowserIsolationSessionsAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountBrowserIsolationSessionsAdaptiveGroupsFilter_InputObject!] + + """""" + datetime: Time + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] +} + +"""""" +enum AccountBrowserIsolationSessionsAdaptiveGroupsOrderBy { + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC +} + +"""Aggregated count of Browser Isolation User Actions matches""" +type AccountBrowserIsolationUserActionsAdaptiveGroups { + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountBrowserIsolationUserActionsAdaptiveGroupsConfidence! + + """Number of user actions""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountBrowserIsolationUserActionsAdaptiveGroupsDimensions +} + +"""""" +type AccountBrowserIsolationUserActionsAdaptiveGroupsConfidence { + """Number of user actions, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! +} + +"""""" +type AccountBrowserIsolationUserActionsAdaptiveGroupsDimensions { + """""" + datetime: Time! + + """Decision applied to user action. Possible values are allow | block""" + decision: string! + + """ + User action type. Possible values are copy | paste | download | upload | print + """ + type: string! +} + +"""""" +input AccountBrowserIsolationUserActionsAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountBrowserIsolationUserActionsAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountBrowserIsolationUserActionsAdaptiveGroupsFilter_InputObject!] + + """""" + datetime: Time + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + decision: string + + """""" + decision_geq: string + + """""" + decision_gt: string + + """""" + decision_in: [string!] + + """""" + decision_leq: string + + """""" + decision_like: string + + """""" + decision_lt: string + + """""" + decision_neq: string + + """""" + decision_notin: [string!] + + """""" + decision_notlike: string + + """""" + type: string + + """""" + type_geq: string + + """""" + type_gt: string + + """""" + type_in: [string!] + + """""" + type_leq: string + + """""" + type_like: string + + """""" + type_lt: string + + """""" + type_neq: string + + """""" + type_notin: [string!] + + """""" + type_notlike: string +} + +"""""" +enum AccountBrowserIsolationUserActionsAdaptiveGroupsOrderBy { + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """decision ascending""" + decision_ASC + + """decision descending""" + decision_DESC + + """type ascending""" + type_ASC + + """type descending""" + type_DESC +} + +"""Aggregated Browser Rendering API events with adaptive sampling""" +type AccountBrowserRenderingApiAdaptiveGroups { + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountBrowserRenderingApiAdaptiveGroupsConfidence! + + """Total number of Browser Rendering REST API requests for an account""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountBrowserRenderingApiAdaptiveGroupsDimensions +} + +"""""" +type AccountBrowserRenderingApiAdaptiveGroupsConfidence { + """ + Total number of Browser Rendering REST API requests for an account, with confidence intervals + """ + count: Confidence! + + """Confidence level that was requested""" + level: float64! +} + +"""""" +type AccountBrowserRenderingApiAdaptiveGroupsDimensions { + """End date and time of the browser session pertaining to the request""" + browserSessionEndTime: Time! + + """Start date and time of the browser session pertaining to the request""" + browserSessionStartTime: Time! + + """The date of the event""" + date: Date! + + """The date and time of the event truncated to fifteen minutes""" + datetimeFifteenMinutes: Time! + + """The date and time of the event truncated to five minutes""" + datetimeFiveMinutes: Time! + + """The date and time of the event truncated to the hour""" + datetimeHour: Time! + + """The date and time of the event truncated to the minute""" + datetimeMinute: Time! + + """Browser Rendering REST API endpoint of the request""" + endpoint: string! + + """End date and time of the request""" + requestEndTime: Time! + + """Start date and time of the request""" + requestStartTime: Time! + + """Browser session ID""" + sessionId: string! + + """HTTP response status code""" + status: uint64! + + """ + Account tier: 'free' or 'paid' for accounts with Workers Free or Paid plan, correspondingly + """ + tier: string! +} + +"""""" +input AccountBrowserRenderingApiAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountBrowserRenderingApiAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountBrowserRenderingApiAdaptiveGroupsFilter_InputObject!] + + """""" + browserSessionEndTime: Time + + """""" + browserSessionEndTime_geq: Time + + """""" + browserSessionEndTime_gt: Time + + """""" + browserSessionEndTime_in: [Time!] + + """""" + browserSessionEndTime_leq: Time + + """""" + browserSessionEndTime_lt: Time + + """""" + browserSessionEndTime_neq: Time + + """""" + browserSessionEndTime_notin: [Time!] + + """""" + browserSessionStartTime: Time + + """""" + browserSessionStartTime_geq: Time + + """""" + browserSessionStartTime_gt: Time + + """""" + browserSessionStartTime_in: [Time!] + + """""" + browserSessionStartTime_leq: Time + + """""" + browserSessionStartTime_lt: Time + + """""" + browserSessionStartTime_neq: Time + + """""" + browserSessionStartTime_notin: [Time!] + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + endpoint: string + + """""" + endpoint_geq: string + + """""" + endpoint_gt: string + + """""" + endpoint_in: [string!] + + """""" + endpoint_leq: string + + """""" + endpoint_like: string + + """""" + endpoint_lt: string + + """""" + endpoint_neq: string + + """""" + endpoint_notin: [string!] + + """""" + endpoint_notlike: string + + """""" + requestEndTime: Time + + """""" + requestEndTime_geq: Time + + """""" + requestEndTime_gt: Time + + """""" + requestEndTime_in: [Time!] + + """""" + requestEndTime_leq: Time + + """""" + requestEndTime_lt: Time + + """""" + requestEndTime_neq: Time + + """""" + requestEndTime_notin: [Time!] + + """""" + requestStartTime: Time + + """""" + requestStartTime_geq: Time + + """""" + requestStartTime_gt: Time + + """""" + requestStartTime_in: [Time!] + + """""" + requestStartTime_leq: Time + + """""" + requestStartTime_lt: Time + + """""" + requestStartTime_neq: Time + + """""" + requestStartTime_notin: [Time!] + + """""" + sessionId: string + + """""" + sessionId_geq: string + + """""" + sessionId_gt: string + + """""" + sessionId_in: [string!] + + """""" + sessionId_leq: string + + """""" + sessionId_like: string + + """""" + sessionId_lt: string + + """""" + sessionId_neq: string + + """""" + sessionId_notin: [string!] + + """""" + sessionId_notlike: string + + """""" + status: uint64 + + """""" + status_geq: uint64 + + """""" + status_gt: uint64 + + """""" + status_in: [uint64!] + + """""" + status_leq: uint64 + + """""" + status_lt: uint64 + + """""" + status_neq: uint64 + + """""" + status_notin: [uint64!] + + """""" + tier: string + + """""" + tier_geq: string + + """""" + tier_gt: string + + """""" + tier_in: [string!] + + """""" + tier_leq: string + + """""" + tier_like: string + + """""" + tier_lt: string + + """""" + tier_neq: string + + """""" + tier_notin: [string!] + + """""" + tier_notlike: string +} + +"""""" +enum AccountBrowserRenderingApiAdaptiveGroupsOrderBy { + """browserSessionEndTime ascending""" + browserSessionEndTime_ASC + + """browserSessionEndTime descending""" + browserSessionEndTime_DESC + + """browserSessionStartTime ascending""" + browserSessionStartTime_ASC + + """browserSessionStartTime descending""" + browserSessionStartTime_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """endpoint ascending""" + endpoint_ASC + + """endpoint descending""" + endpoint_DESC + + """env ascending""" + env_ASC + + """env descending""" + env_DESC + + """requestEndTime ascending""" + requestEndTime_ASC + + """requestEndTime descending""" + requestEndTime_DESC + + """requestStartTime ascending""" + requestStartTime_ASC + + """requestStartTime descending""" + requestStartTime_DESC + + """sessionId ascending""" + sessionId_ASC + + """sessionId descending""" + sessionId_DESC + + """status ascending""" + status_ASC + + """status descending""" + status_DESC + + """tier ascending""" + tier_ASC + + """tier descending""" + tier_DESC +} + +""" +Aggregated Browser Rendering worker binding sessions with adaptive sampling +""" +type AccountBrowserRenderingBindingSessionsAdaptiveGroups { + """The average value for a metric per dimension""" + avg: AccountBrowserRenderingBindingSessionsAdaptiveGroupsAvg + + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountBrowserRenderingBindingSessionsAdaptiveGroupsConfidence! + + """Total number of sessions for an account""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountBrowserRenderingBindingSessionsAdaptiveGroupsDimensions + + """The maximum value for a metric per dimension""" + max: AccountBrowserRenderingBindingSessionsAdaptiveGroupsMax + + """""" + uniq: AccountBrowserRenderingBindingSessionsAdaptiveGroupsUniq +} + +"""""" +type AccountBrowserRenderingBindingSessionsAdaptiveGroupsAvg { + """Average concurrent browser sessions""" + avgConcurrentSessions: uint64! +} + +"""""" +type AccountBrowserRenderingBindingSessionsAdaptiveGroupsConfidence { + """Total number of sessions for an account, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! +} + +"""""" +type AccountBrowserRenderingBindingSessionsAdaptiveGroupsDimensions { + """Number of browser sessions used concurrently at the time of the event""" + concurrentSessions: uint64! + + """The date of the event""" + date: Date! + + """The date and time of the event truncated to fifteen minutes""" + datetimeFifteenMinutes: Time! + + """The date and time of the event truncated to five minutes""" + datetimeFiveMinutes: Time! + + """The date and time of the event truncated to the hour""" + datetimeHour: Time! + + """The date and time of the event truncated to the minute""" + datetimeMinute: Time! + + """Browser session ID""" + sessionId: string! +} + +"""""" +input AccountBrowserRenderingBindingSessionsAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountBrowserRenderingBindingSessionsAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountBrowserRenderingBindingSessionsAdaptiveGroupsFilter_InputObject!] + + """""" + concurrentSessions: uint64 + + """""" + concurrentSessions_geq: uint64 + + """""" + concurrentSessions_gt: uint64 + + """""" + concurrentSessions_in: [uint64!] + + """""" + concurrentSessions_leq: uint64 + + """""" + concurrentSessions_lt: uint64 + + """""" + concurrentSessions_neq: uint64 + + """""" + concurrentSessions_notin: [uint64!] + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + sessionId: string + + """""" + sessionId_geq: string + + """""" + sessionId_gt: string + + """""" + sessionId_in: [string!] + + """""" + sessionId_leq: string + + """""" + sessionId_like: string + + """""" + sessionId_lt: string + + """""" + sessionId_neq: string + + """""" + sessionId_notin: [string!] + + """""" + sessionId_notlike: string +} + +"""""" +type AccountBrowserRenderingBindingSessionsAdaptiveGroupsMax { + """Maximum concurrent browser sessions""" + maxConcurrentSessions: uint64! +} + +"""""" +enum AccountBrowserRenderingBindingSessionsAdaptiveGroupsOrderBy { + """avg(avgConcurrentSessions) ascending""" + avg_avgConcurrentSessions_ASC + + """avg(avgConcurrentSessions) descending""" + avg_avgConcurrentSessions_DESC + + """concurrentSessions ascending""" + concurrentSessions_ASC + + """concurrentSessions descending""" + concurrentSessions_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """max(maxConcurrentSessions) ascending""" + max_maxConcurrentSessions_ASC + + """max(maxConcurrentSessions) descending""" + max_maxConcurrentSessions_DESC + + """sessionId ascending""" + sessionId_ASC + + """sessionId descending""" + sessionId_DESC + + """uniq(sessionIdCount) ascending""" + uniq_sessionIdCount_ASC + + """uniq(sessionIdCount) descending""" + uniq_sessionIdCount_DESC +} + +"""""" +type AccountBrowserRenderingBindingSessionsAdaptiveGroupsUniq { + """Unique browser sessions""" + sessionIdCount: uint32! +} + +""" +Aggregated Browser Rendering and Browser Rendering REST API browser sessions with adaptive sampling +""" +type AccountBrowserRenderingBrowserTimeUsageAdaptiveGroups { + """The average value for a metric per dimension""" + avg: AccountBrowserRenderingBrowserTimeUsageAdaptiveGroupsAvg + + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountBrowserRenderingBrowserTimeUsageAdaptiveGroupsConfidence! + + """ + Total number of Browser Rendering and Browser Rendering REST API browser sessions for an account + """ + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountBrowserRenderingBrowserTimeUsageAdaptiveGroupsDimensions + + """The maximum value for a metric per dimension""" + max: AccountBrowserRenderingBrowserTimeUsageAdaptiveGroupsMax + + """The minimum value for a metric per dimension""" + min: AccountBrowserRenderingBrowserTimeUsageAdaptiveGroupsMin + + """The total value for a metric per dimension""" + sum: AccountBrowserRenderingBrowserTimeUsageAdaptiveGroupsSum +} + +"""""" +type AccountBrowserRenderingBrowserTimeUsageAdaptiveGroupsAvg { + """Average browser session duration in ms""" + avgSessionDurationMs: uint64! +} + +"""""" +type AccountBrowserRenderingBrowserTimeUsageAdaptiveGroupsConfidence { + """ + Total number of Browser Rendering and Browser Rendering REST API browser sessions for an account, with confidence intervals + """ + count: Confidence! + + """Confidence level that was requested""" + level: float64! + + """The total value for a metric per dimension, with confidence intervals""" + sum: AccountBrowserRenderingBrowserTimeUsageAdaptiveGroupsSumConfidence +} + +"""""" +type AccountBrowserRenderingBrowserTimeUsageAdaptiveGroupsDimensions { + """The date of the event""" + date: Date! + + """The date and time of the event truncated to fifteen minutes""" + datetimeFifteenMinutes: Time! + + """The date and time of the event truncated to five minutes""" + datetimeFiveMinutes: Time! + + """The date and time of the event truncated to the hour""" + datetimeHour: Time! + + """The date and time of the event truncated to the minute""" + datetimeMinute: Time! + + """Browser session duration in ms""" + sessionDurationMs: uint64! + + """End date and time of the browser session""" + sessionEnd: Time! + + """Browser session ID""" + sessionId: string! + + """Start date and time of the browser session""" + sessionStart: Time! +} + +"""""" +input AccountBrowserRenderingBrowserTimeUsageAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountBrowserRenderingBrowserTimeUsageAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountBrowserRenderingBrowserTimeUsageAdaptiveGroupsFilter_InputObject!] + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + sessionDurationMs: uint64 + + """""" + sessionDurationMs_geq: uint64 + + """""" + sessionDurationMs_gt: uint64 + + """""" + sessionDurationMs_in: [uint64!] + + """""" + sessionDurationMs_leq: uint64 + + """""" + sessionDurationMs_lt: uint64 + + """""" + sessionDurationMs_neq: uint64 + + """""" + sessionDurationMs_notin: [uint64!] + + """""" + sessionEnd: Time + + """""" + sessionEnd_geq: Time + + """""" + sessionEnd_gt: Time + + """""" + sessionEnd_in: [Time!] + + """""" + sessionEnd_leq: Time + + """""" + sessionEnd_lt: Time + + """""" + sessionEnd_neq: Time + + """""" + sessionEnd_notin: [Time!] + + """""" + sessionId: string + + """""" + sessionId_geq: string + + """""" + sessionId_gt: string + + """""" + sessionId_in: [string!] + + """""" + sessionId_leq: string + + """""" + sessionId_like: string + + """""" + sessionId_lt: string + + """""" + sessionId_neq: string + + """""" + sessionId_notin: [string!] + + """""" + sessionId_notlike: string + + """""" + sessionStart: Time + + """""" + sessionStart_geq: Time + + """""" + sessionStart_gt: Time + + """""" + sessionStart_in: [Time!] + + """""" + sessionStart_leq: Time + + """""" + sessionStart_lt: Time + + """""" + sessionStart_neq: Time + + """""" + sessionStart_notin: [Time!] +} + +"""""" +type AccountBrowserRenderingBrowserTimeUsageAdaptiveGroupsMax { + """Max browser session duration in ms""" + maxSessionDurationMs: uint64! +} + +"""""" +type AccountBrowserRenderingBrowserTimeUsageAdaptiveGroupsMin { + """Min browser session duration in ms""" + minSessionDurationMs: uint64! +} + +"""""" +enum AccountBrowserRenderingBrowserTimeUsageAdaptiveGroupsOrderBy { + """avg(avgSessionDurationMs) ascending""" + avg_avgSessionDurationMs_ASC + + """avg(avgSessionDurationMs) descending""" + avg_avgSessionDurationMs_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """max(maxSessionDurationMs) ascending""" + max_maxSessionDurationMs_ASC + + """max(maxSessionDurationMs) descending""" + max_maxSessionDurationMs_DESC + + """min(minSessionDurationMs) ascending""" + min_minSessionDurationMs_ASC + + """min(minSessionDurationMs) descending""" + min_minSessionDurationMs_DESC + + """rowNum ascending""" + rowNum_ASC + + """rowNum descending""" + rowNum_DESC + + """sessionDurationMs ascending""" + sessionDurationMs_ASC + + """sessionDurationMs descending""" + sessionDurationMs_DESC + + """sessionEnd ascending""" + sessionEnd_ASC + + """sessionEnd descending""" + sessionEnd_DESC + + """sessionId ascending""" + sessionId_ASC + + """sessionId descending""" + sessionId_DESC + + """sessionStart ascending""" + sessionStart_ASC + + """sessionStart descending""" + sessionStart_DESC + + """sum(totalSessionDurationMs) ascending""" + sum_totalSessionDurationMs_ASC + + """sum(totalSessionDurationMs) descending""" + sum_totalSessionDurationMs_DESC +} + +"""""" +type AccountBrowserRenderingBrowserTimeUsageAdaptiveGroupsSum { + """Total browser sessions duration in ms""" + totalSessionDurationMs: uint64! +} + +"""""" +type AccountBrowserRenderingBrowserTimeUsageAdaptiveGroupsSumConfidence { + """Confidence interval for the corresponding point estimate""" + totalSessionDurationMs: Confidence! +} + +"""Browser Rendering events with adaptive sampling""" +type AccountBrowserRenderingEventsAdaptive { + "Browser session close code. Enum (-1, N/A) (0, Unknown) (1, NormalClosure) (2, BrowserIdle) (3, ClientClosedEarly) (4, ChromiumChrashed) (5, ClientAbnormalClosure) (6, ServerAbnormalClosure) (7, ClientError) (8, ServerError) (9, WorkerError) (10, ClientNeverConnected) (11, BrowserSessionEvicted) (12, UsedBrowserTimeLimitExceeded)\n" + browserCloseReason: string! + + """Browser session end time""" + browserEndTime: Time! + + """Browser session start time""" + browserStartTime: Time! + + """Number of browser sessions used concurrently at the time of the event""" + concurrentSessions: uint64! + + """When worker ended devtools connection to browser session""" + connectionEndTime: Time! + + """Worker connection ID, when available""" + connectionId: string! + + """When worker started devtools connection to browser session""" + connectionStartTime: Time! + + """The time of the event""" + datetime: Time! + + """ABR sample interval""" + sampleInterval: uint32! + + """Name of worker who initiated the request""" + scriptName: string! + + """Browser session ID""" + sessionId: string! +} + +"""""" +input AccountBrowserRenderingEventsAdaptiveFilter_InputObject { + """""" + AND: [AccountBrowserRenderingEventsAdaptiveFilter_InputObject!] + + """""" + OR: [AccountBrowserRenderingEventsAdaptiveFilter_InputObject!] + + """""" + browserCloseReason: string + + """""" + browserCloseReason_geq: string + + """""" + browserCloseReason_gt: string + + """""" + browserCloseReason_in: [string!] + + """""" + browserCloseReason_leq: string + + """""" + browserCloseReason_like: string + + """""" + browserCloseReason_lt: string + + """""" + browserCloseReason_neq: string + + """""" + browserCloseReason_notin: [string!] + + """""" + browserCloseReason_notlike: string + + """""" + browserEndTime: Time + + """""" + browserEndTime_geq: Time + + """""" + browserEndTime_gt: Time + + """""" + browserEndTime_in: [Time!] + + """""" + browserEndTime_leq: Time + + """""" + browserEndTime_lt: Time + + """""" + browserEndTime_neq: Time + + """""" + browserEndTime_notin: [Time!] + + """""" + browserStartTime: Time + + """""" + browserStartTime_geq: Time + + """""" + browserStartTime_gt: Time + + """""" + browserStartTime_in: [Time!] + + """""" + browserStartTime_leq: Time + + """""" + browserStartTime_lt: Time + + """""" + browserStartTime_neq: Time + + """""" + browserStartTime_notin: [Time!] + + """""" + concurrentSessions: uint64 + + """""" + concurrentSessions_geq: uint64 + + """""" + concurrentSessions_gt: uint64 + + """""" + concurrentSessions_in: [uint64!] + + """""" + concurrentSessions_leq: uint64 + + """""" + concurrentSessions_lt: uint64 + + """""" + concurrentSessions_neq: uint64 + + """""" + concurrentSessions_notin: [uint64!] + + """""" + connectionEndTime: Time + + """""" + connectionEndTime_geq: Time + + """""" + connectionEndTime_gt: Time + + """""" + connectionEndTime_in: [Time!] + + """""" + connectionEndTime_leq: Time + + """""" + connectionEndTime_lt: Time + + """""" + connectionEndTime_neq: Time + + """""" + connectionEndTime_notin: [Time!] + + """""" + connectionId: string + + """""" + connectionId_geq: string + + """""" + connectionId_gt: string + + """""" + connectionId_in: [string!] + + """""" + connectionId_leq: string + + """""" + connectionId_like: string + + """""" + connectionId_lt: string + + """""" + connectionId_neq: string + + """""" + connectionId_notin: [string!] + + """""" + connectionId_notlike: string + + """""" + connectionStartTime: Time + + """""" + connectionStartTime_geq: Time + + """""" + connectionStartTime_gt: Time + + """""" + connectionStartTime_in: [Time!] + + """""" + connectionStartTime_leq: Time + + """""" + connectionStartTime_lt: Time + + """""" + connectionStartTime_neq: Time + + """""" + connectionStartTime_notin: [Time!] + + """""" + datetime: Time + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + sampleInterval: uint32 + + """""" + sampleInterval_geq: uint32 + + """""" + sampleInterval_gt: uint32 + + """""" + sampleInterval_in: [uint32!] + + """""" + sampleInterval_leq: uint32 + + """""" + sampleInterval_lt: uint32 + + """""" + sampleInterval_neq: uint32 + + """""" + sampleInterval_notin: [uint32!] + + """""" + scriptName: string + + """""" + scriptName_geq: string + + """""" + scriptName_gt: string + + """""" + scriptName_in: [string!] + + """""" + scriptName_leq: string + + """""" + scriptName_like: string + + """""" + scriptName_lt: string + + """""" + scriptName_neq: string + + """""" + scriptName_notin: [string!] + + """""" + scriptName_notlike: string + + """""" + sessionId: string + + """""" + sessionId_geq: string + + """""" + sessionId_gt: string + + """""" + sessionId_in: [string!] + + """""" + sessionId_leq: string + + """""" + sessionId_like: string + + """""" + sessionId_lt: string + + """""" + sessionId_neq: string + + """""" + sessionId_notin: [string!] + + """""" + sessionId_notlike: string +} + +"""Aggregated Browser Rendering events with adaptive sampling""" +type AccountBrowserRenderingEventsAdaptiveGroups { + """The average value for a metric per dimension""" + avg: AccountBrowserRenderingEventsAdaptiveGroupsAvg + + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountBrowserRenderingEventsAdaptiveGroupsConfidence! + + """Total number of events for an account""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountBrowserRenderingEventsAdaptiveGroupsDimensions + + """The maximum value for a metric per dimension""" + max: AccountBrowserRenderingEventsAdaptiveGroupsMax + + """The minimum value for a metric per dimension""" + min: AccountBrowserRenderingEventsAdaptiveGroupsMin + + """""" + uniq: AccountBrowserRenderingEventsAdaptiveGroupsUniq +} + +"""""" +type AccountBrowserRenderingEventsAdaptiveGroupsAvg { + """Average concurrent browser sessions""" + avgConcurrentSessions: uint64! +} + +"""""" +type AccountBrowserRenderingEventsAdaptiveGroupsConfidence { + """Total number of events for an account, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! +} + +"""""" +type AccountBrowserRenderingEventsAdaptiveGroupsDimensions { + "Browser session close code. Enum (-1, N/A) (0, Unknown) (1, NormalClosure) (2, BrowserIdle) (3, ClientClosedEarly) (4, ChromiumChrashed) (5, ClientAbnormalClosure) (6, ServerAbnormalClosure) (7, ClientError) (8, ServerError) (9, WorkerError) (10, ClientNeverConnected) (11, BrowserSessionEvicted) (12, UsedBrowserTimeLimitExceeded)\n" + browserCloseReason: string! + + """Number of browser sessions used concurrently at the time of the event""" + concurrentSessions: uint64! + + """Worker connection ID, when available""" + connectionId: string! + + """The date of the event""" + date: Date! + + """The date and time of the event truncated to fifteen minutes""" + datetimeFifteenMinutes: Time! + + """The date and time of the event truncated to five minutes""" + datetimeFiveMinutes: Time! + + """The date and time of the event truncated to the hour""" + datetimeHour: Time! + + """The date and time of the event truncated to the minute""" + datetimeMinute: Time! + + """Name of worker who initiated the request""" + scriptName: string! + + """Browser session ID""" + sessionId: string! +} + +"""""" +input AccountBrowserRenderingEventsAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountBrowserRenderingEventsAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountBrowserRenderingEventsAdaptiveGroupsFilter_InputObject!] + + """""" + browserCloseReason: string + + """""" + browserCloseReason_geq: string + + """""" + browserCloseReason_gt: string + + """""" + browserCloseReason_in: [string!] + + """""" + browserCloseReason_leq: string + + """""" + browserCloseReason_like: string + + """""" + browserCloseReason_lt: string + + """""" + browserCloseReason_neq: string + + """""" + browserCloseReason_notin: [string!] + + """""" + browserCloseReason_notlike: string + + """""" + concurrentSessions: uint64 + + """""" + concurrentSessions_geq: uint64 + + """""" + concurrentSessions_gt: uint64 + + """""" + concurrentSessions_in: [uint64!] + + """""" + concurrentSessions_leq: uint64 + + """""" + concurrentSessions_lt: uint64 + + """""" + concurrentSessions_neq: uint64 + + """""" + concurrentSessions_notin: [uint64!] + + """""" + connectionId: string + + """""" + connectionId_geq: string + + """""" + connectionId_gt: string + + """""" + connectionId_in: [string!] + + """""" + connectionId_leq: string + + """""" + connectionId_like: string + + """""" + connectionId_lt: string + + """""" + connectionId_neq: string + + """""" + connectionId_notin: [string!] + + """""" + connectionId_notlike: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + scriptName: string + + """""" + scriptName_geq: string + + """""" + scriptName_gt: string + + """""" + scriptName_in: [string!] + + """""" + scriptName_leq: string + + """""" + scriptName_like: string + + """""" + scriptName_lt: string + + """""" + scriptName_neq: string + + """""" + scriptName_notin: [string!] + + """""" + scriptName_notlike: string + + """""" + sessionId: string + + """""" + sessionId_geq: string + + """""" + sessionId_gt: string + + """""" + sessionId_in: [string!] + + """""" + sessionId_leq: string + + """""" + sessionId_like: string + + """""" + sessionId_lt: string + + """""" + sessionId_neq: string + + """""" + sessionId_notin: [string!] + + """""" + sessionId_notlike: string +} + +"""""" +type AccountBrowserRenderingEventsAdaptiveGroupsMax { + """Browser close reason""" + finalBrowserCloseReason: string! + + """Browser end time""" + latestBrowserEndTime: Time! +} + +"""""" +type AccountBrowserRenderingEventsAdaptiveGroupsMin { + """Browser start time""" + earliestBrowserStartTime: Time! +} + +"""""" +enum AccountBrowserRenderingEventsAdaptiveGroupsOrderBy { + """avg(avgConcurrentSessions) ascending""" + avg_avgConcurrentSessions_ASC + + """avg(avgConcurrentSessions) descending""" + avg_avgConcurrentSessions_DESC + + """browserCloseReason ascending""" + browserCloseReason_ASC + + """browserCloseReason descending""" + browserCloseReason_DESC + + """concurrentSessions ascending""" + concurrentSessions_ASC + + """concurrentSessions descending""" + concurrentSessions_DESC + + """connectionId ascending""" + connectionId_ASC + + """connectionId descending""" + connectionId_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """max(finalBrowserCloseReason) ascending""" + max_finalBrowserCloseReason_ASC + + """max(finalBrowserCloseReason) descending""" + max_finalBrowserCloseReason_DESC + + """max(latestBrowserEndTime) ascending""" + max_latestBrowserEndTime_ASC + + """max(latestBrowserEndTime) descending""" + max_latestBrowserEndTime_DESC + + """min(earliestBrowserStartTime) ascending""" + min_earliestBrowserStartTime_ASC + + """min(earliestBrowserStartTime) descending""" + min_earliestBrowserStartTime_DESC + + """scriptName ascending""" + scriptName_ASC + + """scriptName descending""" + scriptName_DESC + + """sessionId ascending""" + sessionId_ASC + + """sessionId descending""" + sessionId_DESC + + """uniq(connectionIdCount) ascending""" + uniq_connectionIdCount_ASC + + """uniq(connectionIdCount) descending""" + uniq_connectionIdCount_DESC + + """uniq(sessionIdCount) ascending""" + uniq_sessionIdCount_ASC + + """uniq(sessionIdCount) descending""" + uniq_sessionIdCount_DESC +} + +"""""" +type AccountBrowserRenderingEventsAdaptiveGroupsUniq { + """Unique worker connections""" + connectionIdCount: uint32! + + """Unique browser sessions""" + sessionIdCount: uint32! +} + +"""""" +enum AccountBrowserRenderingEventsAdaptiveOrderBy { + """browserCloseReason ascending""" + browserCloseReason_ASC + + """browserCloseReason descending""" + browserCloseReason_DESC + + """browserEndTime ascending""" + browserEndTime_ASC + + """browserEndTime descending""" + browserEndTime_DESC + + """browserStartTime ascending""" + browserStartTime_ASC + + """browserStartTime descending""" + browserStartTime_DESC + + """concurrentSessions ascending""" + concurrentSessions_ASC + + """concurrentSessions descending""" + concurrentSessions_DESC + + """connectionEndTime ascending""" + connectionEndTime_ASC + + """connectionEndTime descending""" + connectionEndTime_DESC + + """connectionId ascending""" + connectionId_ASC + + """connectionId descending""" + connectionId_DESC + + """connectionStartTime ascending""" + connectionStartTime_ASC + + """connectionStartTime descending""" + connectionStartTime_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """sampleInterval ascending""" + sampleInterval_ASC + + """sampleInterval descending""" + sampleInterval_DESC + + """scriptName ascending""" + scriptName_ASC + + """scriptName descending""" + scriptName_DESC + + """sessionId ascending""" + sessionId_ASC + + """sessionId descending""" + sessionId_DESC +} + +""" +(TESTING ONLY, NOT FOR PRODUCTION) Raw Calls events with adaptive sampling +""" +type AccountCallsStatusAdaptive { + """The appId that generated traffic""" + appId: string! + + """The date and time the event was recorded""" + datetime: Time! + + """The description of the event related to a session or a track""" + event: string! + + """The generated string that identifies a PeerConnection""" + sessionId: string! + + """The track identifier provided to us within a PeerConnection""" + trackId: string! +} + +"""""" +input AccountCallsStatusAdaptiveFilter_InputObject { + """""" + AND: [AccountCallsStatusAdaptiveFilter_InputObject!] + + """""" + OR: [AccountCallsStatusAdaptiveFilter_InputObject!] + + """""" + appId: string + + """""" + appId_geq: string + + """""" + appId_gt: string + + """""" + appId_in: [string!] + + """""" + appId_leq: string + + """""" + appId_like: string + + """""" + appId_lt: string + + """""" + appId_neq: string + + """""" + appId_notin: [string!] + + """""" + appId_notlike: string + + """""" + datetime: Time + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + event: string + + """""" + event_geq: string + + """""" + event_gt: string + + """""" + event_in: [string!] + + """""" + event_leq: string + + """""" + event_like: string + + """""" + event_lt: string + + """""" + event_neq: string + + """""" + event_notin: [string!] + + """""" + event_notlike: string + + """""" + sessionId: string + + """""" + sessionId_geq: string + + """""" + sessionId_gt: string + + """""" + sessionId_in: [string!] + + """""" + sessionId_leq: string + + """""" + sessionId_like: string + + """""" + sessionId_lt: string + + """""" + sessionId_neq: string + + """""" + sessionId_notin: [string!] + + """""" + sessionId_notlike: string + + """""" + trackId: string + + """""" + trackId_geq: string + + """""" + trackId_gt: string + + """""" + trackId_in: [string!] + + """""" + trackId_leq: string + + """""" + trackId_like: string + + """""" + trackId_lt: string + + """""" + trackId_neq: string + + """""" + trackId_notin: [string!] + + """""" + trackId_notlike: string +} + +"""""" +enum AccountCallsStatusAdaptiveOrderBy { + """appId ascending""" + appId_ASC + + """appId descending""" + appId_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """event ascending""" + event_ASC + + """event descending""" + event_DESC + + """sessionId ascending""" + sessionId_ASC + + """sessionId descending""" + sessionId_DESC + + """trackId ascending""" + trackId_ASC + + """trackId descending""" + trackId_DESC +} + +""" +Aggregated Calls TURN bandwidth usage with adaptive sampling" +""" +type AccountCallsTurnUsageAdaptiveGroups { + """""" + avg: AccountCallsTurnUsageAdaptiveGroupsAvg + + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountCallsTurnUsageAdaptiveGroupsConfidence! + + """List of dimensions to group by""" + dimensions: AccountCallsTurnUsageAdaptiveGroupsDimensions + + """The sum of values for a metric per dimension""" + sum: AccountCallsTurnUsageAdaptiveGroupsSum +} + +"""""" +type AccountCallsTurnUsageAdaptiveGroupsAvg { + """Average concurrent connections when grouped by datetimeFifteenMinutes""" + concurrentConnectionsFifteenMinutes: uint64! + + """Average concurrent connections when grouped by datetimeFiveMinutes""" + concurrentConnectionsFiveMinutes: uint64! + + """Average concurrent connections when grouped by datetimeHour""" + concurrentConnectionsHour: uint64! + + """Average concurrent connections when grouped by datetimeMinute""" + concurrentConnectionsMinute: uint64! +} + +"""""" +type AccountCallsTurnUsageAdaptiveGroupsAvgConfidence { + """Confidence interval for the corresponding point estimate""" + concurrentConnectionsFifteenMinutes: Confidence! + + """Confidence interval for the corresponding point estimate""" + concurrentConnectionsFiveMinutes: Confidence! + + """Confidence interval for the corresponding point estimate""" + concurrentConnectionsHour: Confidence! + + """Confidence interval for the corresponding point estimate""" + concurrentConnectionsMinute: Confidence! +} + +"""""" +type AccountCallsTurnUsageAdaptiveGroupsConfidence { + """""" + avg: AccountCallsTurnUsageAdaptiveGroupsAvgConfidence + + """Confidence level that was requested""" + level: float64! + + """ + The sum of values for a metric per dimension, with confidence intervals + """ + sum: AccountCallsTurnUsageAdaptiveGroupsSumConfidence +} + +"""""" +type AccountCallsTurnUsageAdaptiveGroupsDimensions { + """ + The customIdentifier (provided when credential was generated) that generated traffic + """ + customIdentifier: string! + + """City of the Cloudflare datacenter""" + datacenterCity: string! + + """IATA airport code of the Cloudflare datacenter""" + datacenterCode: string! + + """Country of the Cloudflare datacenter""" + datacenterCountry: string! + + """Region of the Cloudflare datacenter""" + datacenterRegion: string! + + """Calls TURN bandwidth metrics date""" + date: Date! + + """Calls TURN bandwidth metrics timestamp, truncated to fifteen minutes""" + datetimeFifteenMinutes: Time! + + """Calls TURN bandwidth metrics timestamp, truncated to five minutes""" + datetimeFiveMinutes: Time! + + """Calls TURN bandwidth metrics timestamp, truncated to the hour""" + datetimeHour: Time! + + """Calls TURN bandwidth metrics timestamp, truncated to the minute""" + datetimeMinute: Time! + + """The credentials created by this keyId that generated traffic""" + keyId: string! + + """The username from credential that generated traffic""" + username: string! +} + +"""""" +input AccountCallsTurnUsageAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountCallsTurnUsageAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountCallsTurnUsageAdaptiveGroupsFilter_InputObject!] + + """""" + customIdentifier: string + + """""" + customIdentifier_geq: string + + """""" + customIdentifier_gt: string + + """""" + customIdentifier_in: [string!] + + """""" + customIdentifier_leq: string + + """""" + customIdentifier_like: string + + """""" + customIdentifier_lt: string + + """""" + customIdentifier_neq: string + + """""" + customIdentifier_notin: [string!] + + """""" + customIdentifier_notlike: string + + """""" + datacenterCity: string + + """""" + datacenterCity_geq: string + + """""" + datacenterCity_gt: string + + """""" + datacenterCity_in: [string!] + + """""" + datacenterCity_leq: string + + """""" + datacenterCity_like: string + + """""" + datacenterCity_lt: string + + """""" + datacenterCity_neq: string + + """""" + datacenterCity_notin: [string!] + + """""" + datacenterCity_notlike: string + + """""" + datacenterCode: string + + """""" + datacenterCode_geq: string + + """""" + datacenterCode_gt: string + + """""" + datacenterCode_in: [string!] + + """""" + datacenterCode_leq: string + + """""" + datacenterCode_like: string + + """""" + datacenterCode_lt: string + + """""" + datacenterCode_neq: string + + """""" + datacenterCode_notin: [string!] + + """""" + datacenterCode_notlike: string + + """""" + datacenterCountry: string + + """""" + datacenterCountry_geq: string + + """""" + datacenterCountry_gt: string + + """""" + datacenterCountry_in: [string!] + + """""" + datacenterCountry_leq: string + + """""" + datacenterCountry_like: string + + """""" + datacenterCountry_lt: string + + """""" + datacenterCountry_neq: string + + """""" + datacenterCountry_notin: [string!] + + """""" + datacenterCountry_notlike: string + + """""" + datacenterRegion: string + + """""" + datacenterRegion_geq: string + + """""" + datacenterRegion_gt: string + + """""" + datacenterRegion_in: [string!] + + """""" + datacenterRegion_leq: string + + """""" + datacenterRegion_like: string + + """""" + datacenterRegion_lt: string + + """""" + datacenterRegion_neq: string + + """""" + datacenterRegion_notin: [string!] + + """""" + datacenterRegion_notlike: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + keyId: string + + """""" + keyId_geq: string + + """""" + keyId_gt: string + + """""" + keyId_in: [string!] + + """""" + keyId_leq: string + + """""" + keyId_like: string + + """""" + keyId_lt: string + + """""" + keyId_neq: string + + """""" + keyId_notin: [string!] + + """""" + keyId_notlike: string + + """""" + username: string + + """""" + username_geq: string + + """""" + username_gt: string + + """""" + username_in: [string!] + + """""" + username_leq: string + + """""" + username_like: string + + """""" + username_lt: string + + """""" + username_neq: string + + """""" + username_notin: [string!] + + """""" + username_notlike: string +} + +"""""" +enum AccountCallsTurnUsageAdaptiveGroupsOrderBy { + """avg(concurrentConnectionsFifteenMinutes) ascending""" + avg_concurrentConnectionsFifteenMinutes_ASC + + """avg(concurrentConnectionsFifteenMinutes) descending""" + avg_concurrentConnectionsFifteenMinutes_DESC + + """avg(concurrentConnectionsFiveMinutes) ascending""" + avg_concurrentConnectionsFiveMinutes_ASC + + """avg(concurrentConnectionsFiveMinutes) descending""" + avg_concurrentConnectionsFiveMinutes_DESC + + """avg(concurrentConnectionsHour) ascending""" + avg_concurrentConnectionsHour_ASC + + """avg(concurrentConnectionsHour) descending""" + avg_concurrentConnectionsHour_DESC + + """avg(concurrentConnectionsMinute) ascending""" + avg_concurrentConnectionsMinute_ASC + + """avg(concurrentConnectionsMinute) descending""" + avg_concurrentConnectionsMinute_DESC + + """customIdentifier ascending""" + customIdentifier_ASC + + """customIdentifier descending""" + customIdentifier_DESC + + """datacenterCity ascending""" + datacenterCity_ASC + + """datacenterCity descending""" + datacenterCity_DESC + + """datacenterCode ascending""" + datacenterCode_ASC + + """datacenterCode descending""" + datacenterCode_DESC + + """datacenterCountry ascending""" + datacenterCountry_ASC + + """datacenterCountry descending""" + datacenterCountry_DESC + + """datacenterRegion ascending""" + datacenterRegion_ASC + + """datacenterRegion descending""" + datacenterRegion_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """keyId ascending""" + keyId_ASC + + """keyId descending""" + keyId_DESC + + """sum(egressBytes) ascending""" + sum_egressBytes_ASC + + """sum(egressBytes) descending""" + sum_egressBytes_DESC + + """sum(ingressBytes) ascending""" + sum_ingressBytes_ASC + + """sum(ingressBytes) descending""" + sum_ingressBytes_DESC + + """username ascending""" + username_ASC + + """username descending""" + username_DESC +} + +"""""" +type AccountCallsTurnUsageAdaptiveGroupsSum { + """ + The total bytes sent by Calls TURN, observed over the queried time period + """ + egressBytes: int64! + + """ + The total bytes received by Calls TURN, observed over the queried time period + """ + ingressBytes: int64! +} + +"""""" +type AccountCallsTurnUsageAdaptiveGroupsSumConfidence { + """Confidence interval for the corresponding point estimate""" + egressBytes: Confidence! + + """Confidence interval for the corresponding point estimate""" + ingressBytes: Confidence! +} + +"""Beta. Aggregated Calls SFU bandwidth usage with adaptive sampling""" +type AccountCallsUsageAdaptiveGroups { + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountCallsUsageAdaptiveGroupsConfidence! + + """List of dimensions to group by""" + dimensions: AccountCallsUsageAdaptiveGroupsDimensions + + """The sum of values for a metric per dimension""" + sum: AccountCallsUsageAdaptiveGroupsSum +} + +"""""" +type AccountCallsUsageAdaptiveGroupsConfidence { + """Confidence level that was requested""" + level: float64! + + """ + The sum of values for a metric per dimension, with confidence intervals + """ + sum: AccountCallsUsageAdaptiveGroupsSumConfidence +} + +"""""" +type AccountCallsUsageAdaptiveGroupsDimensions { + """The appId that generated traffic""" + appId: string! + + """Calls bandwidth metrics date""" + date: Date! + + """Calls bandwidth metrics timestamp, truncated to fifteen minutes""" + datetimeFifteenMinutes: Time! + + """Calls bandwidth metrics timestamp, truncated to five minutes""" + datetimeFiveMinutes: Time! + + """Calls bandwidth metrics timestamp, truncated to the hour""" + datetimeHour: Time! + + """Calls bandwidth metrics timestamp, truncated to the minute""" + datetimeMinute: Time! + + """The generated string that identifies a PeerConnection""" + sessionId: string! + + """The track identifier provided to us within a PeerConnection""" + trackId: string! + + """Describes if the track contains video, audio, or data""" + trackType: string! +} + +"""""" +input AccountCallsUsageAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountCallsUsageAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountCallsUsageAdaptiveGroupsFilter_InputObject!] + + """""" + appId: string + + """""" + appId_geq: string + + """""" + appId_gt: string + + """""" + appId_in: [string!] + + """""" + appId_leq: string + + """""" + appId_like: string + + """""" + appId_lt: string + + """""" + appId_neq: string + + """""" + appId_notin: [string!] + + """""" + appId_notlike: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + sessionId: string + + """""" + sessionId_geq: string + + """""" + sessionId_gt: string + + """""" + sessionId_in: [string!] + + """""" + sessionId_leq: string + + """""" + sessionId_like: string + + """""" + sessionId_lt: string + + """""" + sessionId_neq: string + + """""" + sessionId_notin: [string!] + + """""" + sessionId_notlike: string + + """""" + trackId: string + + """""" + trackId_geq: string + + """""" + trackId_gt: string + + """""" + trackId_in: [string!] + + """""" + trackId_leq: string + + """""" + trackId_like: string + + """""" + trackId_lt: string + + """""" + trackId_neq: string + + """""" + trackId_notin: [string!] + + """""" + trackId_notlike: string + + """""" + trackType: string + + """""" + trackType_geq: string + + """""" + trackType_gt: string + + """""" + trackType_in: [string!] + + """""" + trackType_leq: string + + """""" + trackType_like: string + + """""" + trackType_lt: string + + """""" + trackType_neq: string + + """""" + trackType_notin: [string!] + + """""" + trackType_notlike: string +} + +"""""" +enum AccountCallsUsageAdaptiveGroupsOrderBy { + """appId ascending""" + appId_ASC + + """appId descending""" + appId_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """sessionId ascending""" + sessionId_ASC + + """sessionId descending""" + sessionId_DESC + + """sum(egressBytes) ascending""" + sum_egressBytes_ASC + + """sum(egressBytes) descending""" + sum_egressBytes_DESC + + """sum(ingressBytes) ascending""" + sum_ingressBytes_ASC + + """sum(ingressBytes) descending""" + sum_ingressBytes_DESC + + """trackId ascending""" + trackId_ASC + + """trackId descending""" + trackId_DESC + + """trackType ascending""" + trackType_ASC + + """trackType descending""" + trackType_DESC +} + +"""""" +type AccountCallsUsageAdaptiveGroupsSum { + """The total bytes sent by Calls, observed over the queried time period""" + egressBytes: int64! + + """ + The total bytes received by Calls, observed over the queried time period + """ + ingressBytes: int64! +} + +"""""" +type AccountCallsUsageAdaptiveGroupsSumConfidence { + """Confidence interval for the corresponding point estimate""" + egressBytes: Confidence! + + """Confidence interval for the corresponding point estimate""" + ingressBytes: Confidence! +} + +"""Network analytics data for Cloudflare CDN traffic""" +type AccountCdnNetworkAnalyticsAdaptiveGroups { + """The average of values for a metric per dimension""" + avg: AccountCdnNetworkAnalyticsAdaptiveGroupsAvg + + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountCdnNetworkAnalyticsAdaptiveGroupsConfidence! + + """List of dimensions to group by""" + dimensions: AccountCdnNetworkAnalyticsAdaptiveGroupsDimensions + + """The sum of values for a metric per dimension""" + sum: AccountCdnNetworkAnalyticsAdaptiveGroupsSum +} + +"""""" +type AccountCdnNetworkAnalyticsAdaptiveGroupsAvg { + """ + Sum of bits received, divided by 1 second, providing a per-second bit rate when grouped by datetime + """ + bitRate: uint64! + + """ + Sum of bits received, divided by 86400 seconds, providing a per-second bit rate when grouped by date + """ + bitRateDay: uint64! + + """ + Sum of bits received, divided by 900 seconds, providing a per-second bit rate when grouped by datetimeFifteenMinutes + """ + bitRateFifteenMinutes: uint64! + + """ + Sum of bits received, divided by 300 seconds, providing a per-second bit rate when grouped by datetimeFiveMinutes + """ + bitRateFiveMinutes: uint64! + + """ + Sum of bits received, divided by 3600 seconds, providing a per-second bit rate when grouped by datetimeHour + """ + bitRateHour: uint64! + + """ + Sum of bits received, divided by 60 seconds, providing a per-second bit rate when grouped by datetimeMinute + """ + bitRateMinute: uint64! + + """ + Sum of bits received, divided by 10 seconds, providing a per-second bit rate when grouped by datetimeTenSeconds + """ + bitRateTenSeconds: uint64! + + """ + Sum of packets received, divided by 1 second, providing a per-second packet rate when grouped by datetime + """ + packetRate: uint64! + + """ + Sum of packets received, divided by 86400 seconds, providing a per-second packet rate when grouped by date + """ + packetRateDay: uint64! + + """ + Sum of packets received, divided by 900 seconds, providing a per-second packet rate when grouped by datetimeFifteenMinutes + """ + packetRateFifteenMinutes: uint64! + + """ + Sum of packets received, divided by 300 seconds, providing a per-second packet rate when grouped by datetimeFiveMinutes + """ + packetRateFiveMinutes: uint64! + + """ + Sum of packets received, divided by 3600 seconds, providing a per-second packet rate when grouped by datetimeHour + """ + packetRateHour: uint64! + + """ + Sum of packets received, divided by 60 seconds, providing a per-second packet rate when grouped by datetimeMinute + """ + packetRateMinute: uint64! + + """ + Sum of packets received, divided by 10 seconds, providing a per-second packet rate when grouped by datetimeTenSeconds + """ + packetRateTenSeconds: uint64! +} + +"""""" +type AccountCdnNetworkAnalyticsAdaptiveGroupsAvgConfidence { + """Confidence interval for the corresponding point estimate""" + bitRate: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateDay: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateFifteenMinutes: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateFiveMinutes: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateHour: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateMinute: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateTenSeconds: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRate: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateDay: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateFifteenMinutes: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateFiveMinutes: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateHour: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateMinute: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateTenSeconds: Confidence! +} + +"""""" +type AccountCdnNetworkAnalyticsAdaptiveGroupsConfidence { + """ + The average of values for a metric per dimension, with confidence intervals + """ + avg: AccountCdnNetworkAnalyticsAdaptiveGroupsAvgConfidence + + """Confidence level that was requested""" + level: float64! + + """ + The sum of values for a metric per dimension, with confidence intervals + """ + sum: AccountCdnNetworkAnalyticsAdaptiveGroupsSumConfidence +} + +"""""" +type AccountCdnNetworkAnalyticsAdaptiveGroupsDimensions { + """Application tag associated with the packet""" + applicationTag: string! + + """ + City where the Cloudflare datacenter that received the packet is located + """ + coloCity: string! + + """ + Cloudflare datacenter that received the packet (nearest IATA airport code) + """ + coloCode: string! + + """ + Country where the Cloudflare datacenter that received the packet is located (ISO 3166-1 alpha-2) + """ + coloCountry: string! + + """ + Latitude and longitude where the Cloudflare datacenter that received the packet is located (Geohash encoding) + """ + coloGeohash: string! + + """ + Cloudflare datacenter that received the packet (unique site identifier) + """ + coloName: string! + + """Date that the packet was received""" + date: Date! + + """Date and time that the packet was received""" + datetime: Time! + + """ + Date and time that the packet was received, rounded to the start of the nearest fifteen minutes + """ + datetimeFifteenMinutes: Time! + + """ + Date and time that the packet was received, rounded to the start of the nearest five minutes + """ + datetimeFiveMinutes: Time! + + """ + Date and time that the packet was received, rounded to the start of the nearest hour + """ + datetimeHour: Time! + + """ + Date and time that the packet was received, rounded to the start of the nearest minute + """ + datetimeMinute: Time! + + """ + Date and time that the packet was received, rounded to the start of the nearest ten seconds + """ + datetimeTenSeconds: Time! + + """ + ASN associated with the destination IP of the packet, or 0 if there was no mapping available + """ + destinationAsn: uint32! + + """ + Name of ASN associated with the destination IP of the packet, if available + """ + destinationAsnName: string! + + """ + Country where the destination IP of the packet is located (ISO 3166-1 alpha-2) + """ + destinationCountry: string! + + """Device tag associated with the destination IP of the packet""" + destinationDeviceTag: string! + + """ + Latitude and longitude where the destination IP of the packet is located (Geohash encoding) + """ + destinationGeohash: string! + + """Value of the Destination Port header field in the TCP or UDP packet""" + destinationPort: uint16! + + """ + Direction of the packet relative to the customer network (possible values: inbound, outbound, lateral) + """ + direction: string! + + """ + Value of the Ethertype header field in the Ethernet packet (2048 for IPv4; 34525 for IPv6) + """ + ethertype: uint16! + + """Value of the Checkusm header field in the GRE packet""" + greChecksum: uint16! + + """Value of the Ethertype header field in the GRE packet""" + greEthertype: uint16! + + """Length of the GRE packet header, in bytes""" + greHeaderLength: uint16! + + """Value of the Key header field in the GRE packet""" + greKey: uint32! + + """Value of the Sequence Number header field in the GRE packet""" + greSequenceNumber: uint32! + + """Value of the Version header field in the GRE packet""" + greVersion: uint8! + + """Value of the Checkusm header field in the ICMP packet""" + icmpChecksum: uint16! + + """Value of the Code header field in the ICMP packet""" + icmpCode: uint8! + + """Value of the Type header field in the ICMP packet""" + icmpType: uint8! + + """ + Value of the Destination Address header field in the IPv4 or IPv6 packet + """ + ipDestinationAddress: string! + + """ + Computed subnet of the Destination Address header field in the IPv4 or IPv6 packet (/24 for IPv4; /48 for IPv6) + """ + ipDestinationSubnet: string! + + """Value of the Fragment Offset header field in the IPv4 or IPv6 packet""" + ipFragmentOffset: uint16! + + """Length of the IPv4 or IPv6 packet header, in bytes""" + ipHeaderLength: uint16! + + """Value of the More Fragments header field in the IPv4 or IPv6 packet""" + ipMoreFragments: uint8! + + """Value of the Protocol header field in the IPv4 or IPv6 packet""" + ipProtocol: uint8! + + """ + Name of the protocol specified by the Protocol header field in the IPv4 or IPv6 packet + """ + ipProtocolName: string! + + """Value of the Source Address header field in the IPv4 or IPv6 packet""" + ipSourceAddress: string! + + """ + Computed subnet of the Source Address header field in the IPv4 or IPv6 packet (/24 for IPv4; /48 for IPv6) + """ + ipSourceSubnet: string! + + """Total length of the IPv4 or IPv6 packet, in bytes""" + ipTotalLength: uint16! + + """ + Total length of the IPv4 or IPv6 packet, in bytes, with the last two digits truncated + """ + ipTotalLengthBuckets: uint16! + + """ + Value of the TTL header field in the IPv4 packet or the Hop Limit header field in the IPv6 packet + """ + ipTtl: uint8! + + """ + Value of the TTL header field in the IPv4 packet or the Hop Limit header field in the IPv6 packet, with the last digit truncated + """ + ipTtlBuckets: uint8! + + """Value of the Checksum header field in the IPv4 packet""" + ipv4Checksum: uint16! + + """Value of the Don't Fragment header field in the IPv4 packet""" + ipv4DontFragment: uint8! + + """ + Value of the Differentiated Services Code Point header field in the IPv4 packet + """ + ipv4Dscp: uint8! + + """ + Value of the Explicit Congestion Notification header field in the IPv4 packet + """ + ipv4Ecn: uint8! + + """Value of the Identification header field in the IPv4 packet""" + ipv4Identification: uint16! + + """List of Options numbers included in the IPv4 packet header""" + ipv4Options: string! + + """ + Value of the Differentiated Services Code Point header field in the IPv6 packet + """ + ipv6Dscp: uint8! + + """ + Value of the Explicit Congestion Notification header field in the IPv6 packet + """ + ipv6Ecn: uint8! + + """List of Extension Header numbers included in the IPv6 packet header""" + ipv6ExtensionHeaders: string! + + """Value of the Flow Label header field in the IPv6 packet""" + ipv6FlowLabel: uint32! + + """Value of the Identification extension header field in the IPv6 packet""" + ipv6Identification: uint32! + + """IP lease tag associated with the packet""" + leaseTag: string! + + """ + Which system dropped the packet (possible values: dosd, flowtrackd, magic-firewall) + """ + mitigationSystem: string! + + """The action that was taken on the packet (possible values: pass, drop)""" + outcome: string! + + """Cloudflare PoP that received the packet (unique site identifier)""" + popName: string! + + """IP prefix tag associated with the packet""" + prefixTag: string! + + """ABR sample interval""" + sampleInterval: uint32! + + """ + ASN associated with the source IP of the packet, or 0 if there was no mapping available + """ + sourceAsn: uint32! + + """Name of ASN associated with the source IP of the packet, if available""" + sourceAsnName: string! + + """ + Country where the source IP of the packet is located (ISO 3166-1 alpha-2) + """ + sourceCountry: string! + + """Device tag associated with the source IP of the packet""" + sourceDeviceTag: string! + + """ + Latitude and longitude where the source IP of the packet is located (Geohash encoding) + """ + sourceGeohash: string! + + """Value of the Source Port header field in the TCP or UDP packet""" + sourcePort: uint16! + + """Value of the Acknowledgement Number header field in the TCP packet""" + tcpAcknowledgementNumber: uint32! + + """Value of the Checkusm header field in the TCP packet""" + tcpChecksum: uint16! + + """Value of the Data Offset header field in the TCP packet""" + tcpDataOffset: uint16! + + """Value of the Flags header field in the TCP packet""" + tcpFlags: uint8! + + """ + Human-readable string representation of the Flags header field in the TCP packet + """ + tcpFlagsString: string! + + """Value of the MSS option header field in the TCP packet""" + tcpMss: uint16! + + """List of Options numbers included in the TCP packet header""" + tcpOptions: string! + + """Value of the SACK Blocks option header field in the TCP packet""" + tcpSackBlocks: string! + + """Value of the SACK Permitted option header field in the TCP packet""" + tcpSackPermitted: uint8! + + """Value of the Sequence Number header field in the TCP packet""" + tcpSequenceNumber: uint32! + + """ + Value of the Timestamp Echo Reply option header field in the TCP packet + """ + tcpTimestampEcr: uint32! + + """Value of the Timestamp option header field in the TCP packet""" + tcpTimestampValue: uint32! + + """Value of the Urgent Pointer header field in the TCP packet""" + tcpUrgentPointer: uint16! + + """Value of the Window Scale option header field in the TCP packet""" + tcpWindowScale: uint16! + + """Value of the Window Size header field in the TCP packet""" + tcpWindowSize: uint16! + + """Value of the Checkusm header field in the UDP packet""" + udpChecksum: uint16! + + """Value of the Payload Length header field in the UDP packet""" + udpPayloadLength: uint16! +} + +"""""" +input AccountCdnNetworkAnalyticsAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountCdnNetworkAnalyticsAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountCdnNetworkAnalyticsAdaptiveGroupsFilter_InputObject!] + + """""" + applicationTag: string + + """""" + applicationTag_geq: string + + """""" + applicationTag_gt: string + + """""" + applicationTag_in: [string!] + + """""" + applicationTag_leq: string + + """""" + applicationTag_like: string + + """""" + applicationTag_lt: string + + """""" + applicationTag_neq: string + + """""" + applicationTag_notin: [string!] + + """""" + applicationTag_notlike: string + + """""" + coloCity: string + + """""" + coloCity_geq: string + + """""" + coloCity_gt: string + + """""" + coloCity_in: [string!] + + """""" + coloCity_leq: string + + """""" + coloCity_like: string + + """""" + coloCity_lt: string + + """""" + coloCity_neq: string + + """""" + coloCity_notin: [string!] + + """""" + coloCity_notlike: string + + """""" + coloCode: string + + """""" + coloCode_geq: string + + """""" + coloCode_gt: string + + """""" + coloCode_in: [string!] + + """""" + coloCode_leq: string + + """""" + coloCode_like: string + + """""" + coloCode_lt: string + + """""" + coloCode_neq: string + + """""" + coloCode_notin: [string!] + + """""" + coloCode_notlike: string + + """""" + coloCountry: string + + """""" + coloCountry_geq: string + + """""" + coloCountry_gt: string + + """""" + coloCountry_in: [string!] + + """""" + coloCountry_leq: string + + """""" + coloCountry_like: string + + """""" + coloCountry_lt: string + + """""" + coloCountry_neq: string + + """""" + coloCountry_notin: [string!] + + """""" + coloCountry_notlike: string + + """""" + coloGeohash: string + + """""" + coloGeohash_geq: string + + """""" + coloGeohash_gt: string + + """""" + coloGeohash_in: [string!] + + """""" + coloGeohash_leq: string + + """""" + coloGeohash_like: string + + """""" + coloGeohash_lt: string + + """""" + coloGeohash_neq: string + + """""" + coloGeohash_notin: [string!] + + """""" + coloGeohash_notlike: string + + """""" + coloName: string + + """""" + coloName_geq: string + + """""" + coloName_gt: string + + """""" + coloName_in: [string!] + + """""" + coloName_leq: string + + """""" + coloName_like: string + + """""" + coloName_lt: string + + """""" + coloName_neq: string + + """""" + coloName_notin: [string!] + + """""" + coloName_notlike: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetimeTenSeconds: Time + + """""" + datetimeTenSeconds_geq: Time + + """""" + datetimeTenSeconds_gt: Time + + """""" + datetimeTenSeconds_in: [Time!] + + """""" + datetimeTenSeconds_leq: Time + + """""" + datetimeTenSeconds_lt: Time + + """""" + datetimeTenSeconds_neq: Time + + """""" + datetimeTenSeconds_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + destinationAsn: uint32 + + """""" + destinationAsnName: string + + """""" + destinationAsnName_geq: string + + """""" + destinationAsnName_gt: string + + """""" + destinationAsnName_in: [string!] + + """""" + destinationAsnName_leq: string + + """""" + destinationAsnName_like: string + + """""" + destinationAsnName_lt: string + + """""" + destinationAsnName_neq: string + + """""" + destinationAsnName_notin: [string!] + + """""" + destinationAsnName_notlike: string + + """""" + destinationAsn_geq: uint32 + + """""" + destinationAsn_gt: uint32 + + """""" + destinationAsn_in: [uint32!] + + """""" + destinationAsn_leq: uint32 + + """""" + destinationAsn_lt: uint32 + + """""" + destinationAsn_neq: uint32 + + """""" + destinationAsn_notin: [uint32!] + + """""" + destinationCountry: string + + """""" + destinationCountry_geq: string + + """""" + destinationCountry_gt: string + + """""" + destinationCountry_in: [string!] + + """""" + destinationCountry_leq: string + + """""" + destinationCountry_like: string + + """""" + destinationCountry_lt: string + + """""" + destinationCountry_neq: string + + """""" + destinationCountry_notin: [string!] + + """""" + destinationCountry_notlike: string + + """""" + destinationDeviceTag: string + + """""" + destinationDeviceTag_geq: string + + """""" + destinationDeviceTag_gt: string + + """""" + destinationDeviceTag_in: [string!] + + """""" + destinationDeviceTag_leq: string + + """""" + destinationDeviceTag_like: string + + """""" + destinationDeviceTag_lt: string + + """""" + destinationDeviceTag_neq: string + + """""" + destinationDeviceTag_notin: [string!] + + """""" + destinationDeviceTag_notlike: string + + """""" + destinationGeohash: string + + """""" + destinationGeohash_geq: string + + """""" + destinationGeohash_gt: string + + """""" + destinationGeohash_in: [string!] + + """""" + destinationGeohash_leq: string + + """""" + destinationGeohash_like: string + + """""" + destinationGeohash_lt: string + + """""" + destinationGeohash_neq: string + + """""" + destinationGeohash_notin: [string!] + + """""" + destinationGeohash_notlike: string + + """""" + destinationPort: uint16 + + """""" + destinationPort_geq: uint16 + + """""" + destinationPort_gt: uint16 + + """""" + destinationPort_in: [uint16!] + + """""" + destinationPort_leq: uint16 + + """""" + destinationPort_lt: uint16 + + """""" + destinationPort_neq: uint16 + + """""" + destinationPort_notin: [uint16!] + + """""" + direction: string + + """""" + direction_geq: string + + """""" + direction_gt: string + + """""" + direction_in: [string!] + + """""" + direction_leq: string + + """""" + direction_like: string + + """""" + direction_lt: string + + """""" + direction_neq: string + + """""" + direction_notin: [string!] + + """""" + direction_notlike: string + + """""" + ethertype: uint16 + + """""" + ethertype_geq: uint16 + + """""" + ethertype_gt: uint16 + + """""" + ethertype_in: [uint16!] + + """""" + ethertype_leq: uint16 + + """""" + ethertype_lt: uint16 + + """""" + ethertype_neq: uint16 + + """""" + ethertype_notin: [uint16!] + + """""" + greChecksum: uint16 + + """""" + greChecksum_geq: uint16 + + """""" + greChecksum_gt: uint16 + + """""" + greChecksum_in: [uint16!] + + """""" + greChecksum_leq: uint16 + + """""" + greChecksum_lt: uint16 + + """""" + greChecksum_neq: uint16 + + """""" + greChecksum_notin: [uint16!] + + """""" + greEthertype: uint16 + + """""" + greEthertype_geq: uint16 + + """""" + greEthertype_gt: uint16 + + """""" + greEthertype_in: [uint16!] + + """""" + greEthertype_leq: uint16 + + """""" + greEthertype_lt: uint16 + + """""" + greEthertype_neq: uint16 + + """""" + greEthertype_notin: [uint16!] + + """""" + greHeaderLength: uint16 + + """""" + greHeaderLength_geq: uint16 + + """""" + greHeaderLength_gt: uint16 + + """""" + greHeaderLength_in: [uint16!] + + """""" + greHeaderLength_leq: uint16 + + """""" + greHeaderLength_lt: uint16 + + """""" + greHeaderLength_neq: uint16 + + """""" + greHeaderLength_notin: [uint16!] + + """""" + greKey: uint32 + + """""" + greKey_geq: uint32 + + """""" + greKey_gt: uint32 + + """""" + greKey_in: [uint32!] + + """""" + greKey_leq: uint32 + + """""" + greKey_lt: uint32 + + """""" + greKey_neq: uint32 + + """""" + greKey_notin: [uint32!] + + """""" + greSequenceNumber: uint32 + + """""" + greSequenceNumber_geq: uint32 + + """""" + greSequenceNumber_gt: uint32 + + """""" + greSequenceNumber_in: [uint32!] + + """""" + greSequenceNumber_leq: uint32 + + """""" + greSequenceNumber_lt: uint32 + + """""" + greSequenceNumber_neq: uint32 + + """""" + greSequenceNumber_notin: [uint32!] + + """""" + greVersion: uint8 + + """""" + greVersion_geq: uint8 + + """""" + greVersion_gt: uint8 + + """""" + greVersion_in: bytes + + """""" + greVersion_leq: uint8 + + """""" + greVersion_lt: uint8 + + """""" + greVersion_neq: uint8 + + """""" + greVersion_notin: bytes + + """""" + icmpChecksum: uint16 + + """""" + icmpChecksum_geq: uint16 + + """""" + icmpChecksum_gt: uint16 + + """""" + icmpChecksum_in: [uint16!] + + """""" + icmpChecksum_leq: uint16 + + """""" + icmpChecksum_lt: uint16 + + """""" + icmpChecksum_neq: uint16 + + """""" + icmpChecksum_notin: [uint16!] + + """""" + icmpCode: uint8 + + """""" + icmpCode_geq: uint8 + + """""" + icmpCode_gt: uint8 + + """""" + icmpCode_in: bytes + + """""" + icmpCode_leq: uint8 + + """""" + icmpCode_lt: uint8 + + """""" + icmpCode_neq: uint8 + + """""" + icmpCode_notin: bytes + + """""" + icmpType: uint8 + + """""" + icmpType_geq: uint8 + + """""" + icmpType_gt: uint8 + + """""" + icmpType_in: bytes + + """""" + icmpType_leq: uint8 + + """""" + icmpType_lt: uint8 + + """""" + icmpType_neq: uint8 + + """""" + icmpType_notin: bytes + + """""" + ipDestinationAddress: string + + """""" + ipDestinationAddress_geq: string + + """""" + ipDestinationAddress_gt: string + + """""" + ipDestinationAddress_in: [string!] + + """""" + ipDestinationAddress_leq: string + + """""" + ipDestinationAddress_like: string + + """""" + ipDestinationAddress_lt: string + + """""" + ipDestinationAddress_neq: string + + """""" + ipDestinationAddress_notin: [string!] + + """""" + ipDestinationAddress_notlike: string + + """""" + ipDestinationSubnet: string + + """""" + ipDestinationSubnet_geq: string + + """""" + ipDestinationSubnet_gt: string + + """""" + ipDestinationSubnet_in: [string!] + + """""" + ipDestinationSubnet_leq: string + + """""" + ipDestinationSubnet_like: string + + """""" + ipDestinationSubnet_lt: string + + """""" + ipDestinationSubnet_neq: string + + """""" + ipDestinationSubnet_notin: [string!] + + """""" + ipDestinationSubnet_notlike: string + + """""" + ipFragmentOffset: uint16 + + """""" + ipFragmentOffset_geq: uint16 + + """""" + ipFragmentOffset_gt: uint16 + + """""" + ipFragmentOffset_in: [uint16!] + + """""" + ipFragmentOffset_leq: uint16 + + """""" + ipFragmentOffset_lt: uint16 + + """""" + ipFragmentOffset_neq: uint16 + + """""" + ipFragmentOffset_notin: [uint16!] + + """""" + ipHeaderLength: uint16 + + """""" + ipHeaderLength_geq: uint16 + + """""" + ipHeaderLength_gt: uint16 + + """""" + ipHeaderLength_in: [uint16!] + + """""" + ipHeaderLength_leq: uint16 + + """""" + ipHeaderLength_lt: uint16 + + """""" + ipHeaderLength_neq: uint16 + + """""" + ipHeaderLength_notin: [uint16!] + + """""" + ipMoreFragments: uint8 + + """""" + ipMoreFragments_geq: uint8 + + """""" + ipMoreFragments_gt: uint8 + + """""" + ipMoreFragments_in: bytes + + """""" + ipMoreFragments_leq: uint8 + + """""" + ipMoreFragments_lt: uint8 + + """""" + ipMoreFragments_neq: uint8 + + """""" + ipMoreFragments_notin: bytes + + """""" + ipProtocol: uint8 + + """""" + ipProtocolName: string + + """""" + ipProtocolName_geq: string + + """""" + ipProtocolName_gt: string + + """""" + ipProtocolName_in: [string!] + + """""" + ipProtocolName_leq: string + + """""" + ipProtocolName_like: string + + """""" + ipProtocolName_lt: string + + """""" + ipProtocolName_neq: string + + """""" + ipProtocolName_notin: [string!] + + """""" + ipProtocolName_notlike: string + + """""" + ipProtocol_geq: uint8 + + """""" + ipProtocol_gt: uint8 + + """""" + ipProtocol_in: bytes + + """""" + ipProtocol_leq: uint8 + + """""" + ipProtocol_lt: uint8 + + """""" + ipProtocol_neq: uint8 + + """""" + ipProtocol_notin: bytes + + """""" + ipSourceAddress: string + + """""" + ipSourceAddress_geq: string + + """""" + ipSourceAddress_gt: string + + """""" + ipSourceAddress_in: [string!] + + """""" + ipSourceAddress_leq: string + + """""" + ipSourceAddress_like: string + + """""" + ipSourceAddress_lt: string + + """""" + ipSourceAddress_neq: string + + """""" + ipSourceAddress_notin: [string!] + + """""" + ipSourceAddress_notlike: string + + """""" + ipSourceSubnet: string + + """""" + ipSourceSubnet_geq: string + + """""" + ipSourceSubnet_gt: string + + """""" + ipSourceSubnet_in: [string!] + + """""" + ipSourceSubnet_leq: string + + """""" + ipSourceSubnet_like: string + + """""" + ipSourceSubnet_lt: string + + """""" + ipSourceSubnet_neq: string + + """""" + ipSourceSubnet_notin: [string!] + + """""" + ipSourceSubnet_notlike: string + + """""" + ipTotalLength: uint16 + + """""" + ipTotalLengthBuckets: uint16 + + """""" + ipTotalLengthBuckets_geq: uint16 + + """""" + ipTotalLengthBuckets_gt: uint16 + + """""" + ipTotalLengthBuckets_in: [uint16!] + + """""" + ipTotalLengthBuckets_leq: uint16 + + """""" + ipTotalLengthBuckets_lt: uint16 + + """""" + ipTotalLengthBuckets_neq: uint16 + + """""" + ipTotalLengthBuckets_notin: [uint16!] + + """""" + ipTotalLength_geq: uint16 + + """""" + ipTotalLength_gt: uint16 + + """""" + ipTotalLength_in: [uint16!] + + """""" + ipTotalLength_leq: uint16 + + """""" + ipTotalLength_lt: uint16 + + """""" + ipTotalLength_neq: uint16 + + """""" + ipTotalLength_notin: [uint16!] + + """""" + ipTtl: uint8 + + """""" + ipTtlBuckets: uint8 + + """""" + ipTtlBuckets_geq: uint8 + + """""" + ipTtlBuckets_gt: uint8 + + """""" + ipTtlBuckets_in: bytes + + """""" + ipTtlBuckets_leq: uint8 + + """""" + ipTtlBuckets_lt: uint8 + + """""" + ipTtlBuckets_neq: uint8 + + """""" + ipTtlBuckets_notin: bytes + + """""" + ipTtl_geq: uint8 + + """""" + ipTtl_gt: uint8 + + """""" + ipTtl_in: bytes + + """""" + ipTtl_leq: uint8 + + """""" + ipTtl_lt: uint8 + + """""" + ipTtl_neq: uint8 + + """""" + ipTtl_notin: bytes + + """""" + ipv4Checksum: uint16 + + """""" + ipv4Checksum_geq: uint16 + + """""" + ipv4Checksum_gt: uint16 + + """""" + ipv4Checksum_in: [uint16!] + + """""" + ipv4Checksum_leq: uint16 + + """""" + ipv4Checksum_lt: uint16 + + """""" + ipv4Checksum_neq: uint16 + + """""" + ipv4Checksum_notin: [uint16!] + + """""" + ipv4DontFragment: uint8 + + """""" + ipv4DontFragment_geq: uint8 + + """""" + ipv4DontFragment_gt: uint8 + + """""" + ipv4DontFragment_in: bytes + + """""" + ipv4DontFragment_leq: uint8 + + """""" + ipv4DontFragment_lt: uint8 + + """""" + ipv4DontFragment_neq: uint8 + + """""" + ipv4DontFragment_notin: bytes + + """""" + ipv4Dscp: uint8 + + """""" + ipv4Dscp_geq: uint8 + + """""" + ipv4Dscp_gt: uint8 + + """""" + ipv4Dscp_in: bytes + + """""" + ipv4Dscp_leq: uint8 + + """""" + ipv4Dscp_lt: uint8 + + """""" + ipv4Dscp_neq: uint8 + + """""" + ipv4Dscp_notin: bytes + + """""" + ipv4Ecn: uint8 + + """""" + ipv4Ecn_geq: uint8 + + """""" + ipv4Ecn_gt: uint8 + + """""" + ipv4Ecn_in: bytes + + """""" + ipv4Ecn_leq: uint8 + + """""" + ipv4Ecn_lt: uint8 + + """""" + ipv4Ecn_neq: uint8 + + """""" + ipv4Ecn_notin: bytes + + """""" + ipv4Identification: uint16 + + """""" + ipv4Identification_geq: uint16 + + """""" + ipv4Identification_gt: uint16 + + """""" + ipv4Identification_in: [uint16!] + + """""" + ipv4Identification_leq: uint16 + + """""" + ipv4Identification_lt: uint16 + + """""" + ipv4Identification_neq: uint16 + + """""" + ipv4Identification_notin: [uint16!] + + """""" + ipv4Options: string + + """""" + ipv4Options_geq: string + + """""" + ipv4Options_gt: string + + """""" + ipv4Options_in: [string!] + + """""" + ipv4Options_leq: string + + """""" + ipv4Options_like: string + + """""" + ipv4Options_lt: string + + """""" + ipv4Options_neq: string + + """""" + ipv4Options_notin: [string!] + + """""" + ipv4Options_notlike: string + + """""" + ipv6Dscp: uint8 + + """""" + ipv6Dscp_geq: uint8 + + """""" + ipv6Dscp_gt: uint8 + + """""" + ipv6Dscp_in: bytes + + """""" + ipv6Dscp_leq: uint8 + + """""" + ipv6Dscp_lt: uint8 + + """""" + ipv6Dscp_neq: uint8 + + """""" + ipv6Dscp_notin: bytes + + """""" + ipv6Ecn: uint8 + + """""" + ipv6Ecn_geq: uint8 + + """""" + ipv6Ecn_gt: uint8 + + """""" + ipv6Ecn_in: bytes + + """""" + ipv6Ecn_leq: uint8 + + """""" + ipv6Ecn_lt: uint8 + + """""" + ipv6Ecn_neq: uint8 + + """""" + ipv6Ecn_notin: bytes + + """""" + ipv6ExtensionHeaders: string + + """""" + ipv6ExtensionHeaders_geq: string + + """""" + ipv6ExtensionHeaders_gt: string + + """""" + ipv6ExtensionHeaders_in: [string!] + + """""" + ipv6ExtensionHeaders_leq: string + + """""" + ipv6ExtensionHeaders_like: string + + """""" + ipv6ExtensionHeaders_lt: string + + """""" + ipv6ExtensionHeaders_neq: string + + """""" + ipv6ExtensionHeaders_notin: [string!] + + """""" + ipv6ExtensionHeaders_notlike: string + + """""" + ipv6FlowLabel: uint32 + + """""" + ipv6FlowLabel_geq: uint32 + + """""" + ipv6FlowLabel_gt: uint32 + + """""" + ipv6FlowLabel_in: [uint32!] + + """""" + ipv6FlowLabel_leq: uint32 + + """""" + ipv6FlowLabel_lt: uint32 + + """""" + ipv6FlowLabel_neq: uint32 + + """""" + ipv6FlowLabel_notin: [uint32!] + + """""" + ipv6Identification: uint32 + + """""" + ipv6Identification_geq: uint32 + + """""" + ipv6Identification_gt: uint32 + + """""" + ipv6Identification_in: [uint32!] + + """""" + ipv6Identification_leq: uint32 + + """""" + ipv6Identification_lt: uint32 + + """""" + ipv6Identification_neq: uint32 + + """""" + ipv6Identification_notin: [uint32!] + + """""" + leaseTag: string + + """""" + leaseTag_geq: string + + """""" + leaseTag_gt: string + + """""" + leaseTag_in: [string!] + + """""" + leaseTag_leq: string + + """""" + leaseTag_like: string + + """""" + leaseTag_lt: string + + """""" + leaseTag_neq: string + + """""" + leaseTag_notin: [string!] + + """""" + leaseTag_notlike: string + + """""" + mitigationSystem: string + + """""" + mitigationSystem_geq: string + + """""" + mitigationSystem_gt: string + + """""" + mitigationSystem_in: [string!] + + """""" + mitigationSystem_leq: string + + """""" + mitigationSystem_like: string + + """""" + mitigationSystem_lt: string + + """""" + mitigationSystem_neq: string + + """""" + mitigationSystem_notin: [string!] + + """""" + mitigationSystem_notlike: string + + """""" + outcome: string + + """""" + outcome_geq: string + + """""" + outcome_gt: string + + """""" + outcome_in: [string!] + + """""" + outcome_leq: string + + """""" + outcome_like: string + + """""" + outcome_lt: string + + """""" + outcome_neq: string + + """""" + outcome_notin: [string!] + + """""" + outcome_notlike: string + + """""" + popName: string + + """""" + popName_geq: string + + """""" + popName_gt: string + + """""" + popName_in: [string!] + + """""" + popName_leq: string + + """""" + popName_like: string + + """""" + popName_lt: string + + """""" + popName_neq: string + + """""" + popName_notin: [string!] + + """""" + popName_notlike: string + + """""" + prefixTag: string + + """""" + prefixTag_geq: string + + """""" + prefixTag_gt: string + + """""" + prefixTag_in: [string!] + + """""" + prefixTag_leq: string + + """""" + prefixTag_like: string + + """""" + prefixTag_lt: string + + """""" + prefixTag_neq: string + + """""" + prefixTag_notin: [string!] + + """""" + prefixTag_notlike: string + + """""" + sampleInterval: uint32 + + """""" + sampleInterval_geq: uint32 + + """""" + sampleInterval_gt: uint32 + + """""" + sampleInterval_in: [uint32!] + + """""" + sampleInterval_leq: uint32 + + """""" + sampleInterval_lt: uint32 + + """""" + sampleInterval_neq: uint32 + + """""" + sampleInterval_notin: [uint32!] + + """""" + sourceAsn: uint32 + + """""" + sourceAsnName: string + + """""" + sourceAsnName_geq: string + + """""" + sourceAsnName_gt: string + + """""" + sourceAsnName_in: [string!] + + """""" + sourceAsnName_leq: string + + """""" + sourceAsnName_like: string + + """""" + sourceAsnName_lt: string + + """""" + sourceAsnName_neq: string + + """""" + sourceAsnName_notin: [string!] + + """""" + sourceAsnName_notlike: string + + """""" + sourceAsn_geq: uint32 + + """""" + sourceAsn_gt: uint32 + + """""" + sourceAsn_in: [uint32!] + + """""" + sourceAsn_leq: uint32 + + """""" + sourceAsn_lt: uint32 + + """""" + sourceAsn_neq: uint32 + + """""" + sourceAsn_notin: [uint32!] + + """""" + sourceCountry: string + + """""" + sourceCountry_geq: string + + """""" + sourceCountry_gt: string + + """""" + sourceCountry_in: [string!] + + """""" + sourceCountry_leq: string + + """""" + sourceCountry_like: string + + """""" + sourceCountry_lt: string + + """""" + sourceCountry_neq: string + + """""" + sourceCountry_notin: [string!] + + """""" + sourceCountry_notlike: string + + """""" + sourceDeviceTag: string + + """""" + sourceDeviceTag_geq: string + + """""" + sourceDeviceTag_gt: string + + """""" + sourceDeviceTag_in: [string!] + + """""" + sourceDeviceTag_leq: string + + """""" + sourceDeviceTag_like: string + + """""" + sourceDeviceTag_lt: string + + """""" + sourceDeviceTag_neq: string + + """""" + sourceDeviceTag_notin: [string!] + + """""" + sourceDeviceTag_notlike: string + + """""" + sourceGeohash: string + + """""" + sourceGeohash_geq: string + + """""" + sourceGeohash_gt: string + + """""" + sourceGeohash_in: [string!] + + """""" + sourceGeohash_leq: string + + """""" + sourceGeohash_like: string + + """""" + sourceGeohash_lt: string + + """""" + sourceGeohash_neq: string + + """""" + sourceGeohash_notin: [string!] + + """""" + sourceGeohash_notlike: string + + """""" + sourcePort: uint16 + + """""" + sourcePort_geq: uint16 + + """""" + sourcePort_gt: uint16 + + """""" + sourcePort_in: [uint16!] + + """""" + sourcePort_leq: uint16 + + """""" + sourcePort_lt: uint16 + + """""" + sourcePort_neq: uint16 + + """""" + sourcePort_notin: [uint16!] + + """""" + tcpAcknowledgementNumber: uint32 + + """""" + tcpAcknowledgementNumber_geq: uint32 + + """""" + tcpAcknowledgementNumber_gt: uint32 + + """""" + tcpAcknowledgementNumber_in: [uint32!] + + """""" + tcpAcknowledgementNumber_leq: uint32 + + """""" + tcpAcknowledgementNumber_lt: uint32 + + """""" + tcpAcknowledgementNumber_neq: uint32 + + """""" + tcpAcknowledgementNumber_notin: [uint32!] + + """""" + tcpChecksum: uint16 + + """""" + tcpChecksum_geq: uint16 + + """""" + tcpChecksum_gt: uint16 + + """""" + tcpChecksum_in: [uint16!] + + """""" + tcpChecksum_leq: uint16 + + """""" + tcpChecksum_lt: uint16 + + """""" + tcpChecksum_neq: uint16 + + """""" + tcpChecksum_notin: [uint16!] + + """""" + tcpDataOffset: uint16 + + """""" + tcpDataOffset_geq: uint16 + + """""" + tcpDataOffset_gt: uint16 + + """""" + tcpDataOffset_in: [uint16!] + + """""" + tcpDataOffset_leq: uint16 + + """""" + tcpDataOffset_lt: uint16 + + """""" + tcpDataOffset_neq: uint16 + + """""" + tcpDataOffset_notin: [uint16!] + + """""" + tcpFlags: uint8 + + """""" + tcpFlagsString: string + + """""" + tcpFlagsString_geq: string + + """""" + tcpFlagsString_gt: string + + """""" + tcpFlagsString_in: [string!] + + """""" + tcpFlagsString_leq: string + + """""" + tcpFlagsString_like: string + + """""" + tcpFlagsString_lt: string + + """""" + tcpFlagsString_neq: string + + """""" + tcpFlagsString_notin: [string!] + + """""" + tcpFlagsString_notlike: string + + """""" + tcpFlags_geq: uint8 + + """""" + tcpFlags_gt: uint8 + + """""" + tcpFlags_in: bytes + + """""" + tcpFlags_leq: uint8 + + """""" + tcpFlags_lt: uint8 + + """""" + tcpFlags_neq: uint8 + + """""" + tcpFlags_notin: bytes + + """""" + tcpMss: uint16 + + """""" + tcpMss_geq: uint16 + + """""" + tcpMss_gt: uint16 + + """""" + tcpMss_in: [uint16!] + + """""" + tcpMss_leq: uint16 + + """""" + tcpMss_lt: uint16 + + """""" + tcpMss_neq: uint16 + + """""" + tcpMss_notin: [uint16!] + + """""" + tcpOptions: string + + """""" + tcpOptions_geq: string + + """""" + tcpOptions_gt: string + + """""" + tcpOptions_in: [string!] + + """""" + tcpOptions_leq: string + + """""" + tcpOptions_like: string + + """""" + tcpOptions_lt: string + + """""" + tcpOptions_neq: string + + """""" + tcpOptions_notin: [string!] + + """""" + tcpOptions_notlike: string + + """""" + tcpSackBlocks: string + + """""" + tcpSackBlocks_geq: string + + """""" + tcpSackBlocks_gt: string + + """""" + tcpSackBlocks_in: [string!] + + """""" + tcpSackBlocks_leq: string + + """""" + tcpSackBlocks_like: string + + """""" + tcpSackBlocks_lt: string + + """""" + tcpSackBlocks_neq: string + + """""" + tcpSackBlocks_notin: [string!] + + """""" + tcpSackBlocks_notlike: string + + """""" + tcpSackPermitted: uint8 + + """""" + tcpSackPermitted_geq: uint8 + + """""" + tcpSackPermitted_gt: uint8 + + """""" + tcpSackPermitted_in: bytes + + """""" + tcpSackPermitted_leq: uint8 + + """""" + tcpSackPermitted_lt: uint8 + + """""" + tcpSackPermitted_neq: uint8 + + """""" + tcpSackPermitted_notin: bytes + + """""" + tcpSequenceNumber: uint32 + + """""" + tcpSequenceNumber_geq: uint32 + + """""" + tcpSequenceNumber_gt: uint32 + + """""" + tcpSequenceNumber_in: [uint32!] + + """""" + tcpSequenceNumber_leq: uint32 + + """""" + tcpSequenceNumber_lt: uint32 + + """""" + tcpSequenceNumber_neq: uint32 + + """""" + tcpSequenceNumber_notin: [uint32!] + + """""" + tcpTimestampEcr: uint32 + + """""" + tcpTimestampEcr_geq: uint32 + + """""" + tcpTimestampEcr_gt: uint32 + + """""" + tcpTimestampEcr_in: [uint32!] + + """""" + tcpTimestampEcr_leq: uint32 + + """""" + tcpTimestampEcr_lt: uint32 + + """""" + tcpTimestampEcr_neq: uint32 + + """""" + tcpTimestampEcr_notin: [uint32!] + + """""" + tcpTimestampValue: uint32 + + """""" + tcpTimestampValue_geq: uint32 + + """""" + tcpTimestampValue_gt: uint32 + + """""" + tcpTimestampValue_in: [uint32!] + + """""" + tcpTimestampValue_leq: uint32 + + """""" + tcpTimestampValue_lt: uint32 + + """""" + tcpTimestampValue_neq: uint32 + + """""" + tcpTimestampValue_notin: [uint32!] + + """""" + tcpUrgentPointer: uint16 + + """""" + tcpUrgentPointer_geq: uint16 + + """""" + tcpUrgentPointer_gt: uint16 + + """""" + tcpUrgentPointer_in: [uint16!] + + """""" + tcpUrgentPointer_leq: uint16 + + """""" + tcpUrgentPointer_lt: uint16 + + """""" + tcpUrgentPointer_neq: uint16 + + """""" + tcpUrgentPointer_notin: [uint16!] + + """""" + tcpWindowScale: uint16 + + """""" + tcpWindowScale_geq: uint16 + + """""" + tcpWindowScale_gt: uint16 + + """""" + tcpWindowScale_in: [uint16!] + + """""" + tcpWindowScale_leq: uint16 + + """""" + tcpWindowScale_lt: uint16 + + """""" + tcpWindowScale_neq: uint16 + + """""" + tcpWindowScale_notin: [uint16!] + + """""" + tcpWindowSize: uint16 + + """""" + tcpWindowSize_geq: uint16 + + """""" + tcpWindowSize_gt: uint16 + + """""" + tcpWindowSize_in: [uint16!] + + """""" + tcpWindowSize_leq: uint16 + + """""" + tcpWindowSize_lt: uint16 + + """""" + tcpWindowSize_neq: uint16 + + """""" + tcpWindowSize_notin: [uint16!] + + """""" + udpChecksum: uint16 + + """""" + udpChecksum_geq: uint16 + + """""" + udpChecksum_gt: uint16 + + """""" + udpChecksum_in: [uint16!] + + """""" + udpChecksum_leq: uint16 + + """""" + udpChecksum_lt: uint16 + + """""" + udpChecksum_neq: uint16 + + """""" + udpChecksum_notin: [uint16!] + + """""" + udpPayloadLength: uint16 + + """""" + udpPayloadLength_geq: uint16 + + """""" + udpPayloadLength_gt: uint16 + + """""" + udpPayloadLength_in: [uint16!] + + """""" + udpPayloadLength_leq: uint16 + + """""" + udpPayloadLength_lt: uint16 + + """""" + udpPayloadLength_neq: uint16 + + """""" + udpPayloadLength_notin: [uint16!] +} + +"""""" +enum AccountCdnNetworkAnalyticsAdaptiveGroupsOrderBy { + """applicationTag ascending""" + applicationTag_ASC + + """applicationTag descending""" + applicationTag_DESC + + """avg(bitRateDay) ascending""" + avg_bitRateDay_ASC + + """avg(bitRateDay) descending""" + avg_bitRateDay_DESC + + """avg(bitRateFifteenMinutes) ascending""" + avg_bitRateFifteenMinutes_ASC + + """avg(bitRateFifteenMinutes) descending""" + avg_bitRateFifteenMinutes_DESC + + """avg(bitRateFiveMinutes) ascending""" + avg_bitRateFiveMinutes_ASC + + """avg(bitRateFiveMinutes) descending""" + avg_bitRateFiveMinutes_DESC + + """avg(bitRateHour) ascending""" + avg_bitRateHour_ASC + + """avg(bitRateHour) descending""" + avg_bitRateHour_DESC + + """avg(bitRateMinute) ascending""" + avg_bitRateMinute_ASC + + """avg(bitRateMinute) descending""" + avg_bitRateMinute_DESC + + """avg(bitRateTenSeconds) ascending""" + avg_bitRateTenSeconds_ASC + + """avg(bitRateTenSeconds) descending""" + avg_bitRateTenSeconds_DESC + + """avg(bitRate) ascending""" + avg_bitRate_ASC + + """avg(bitRate) descending""" + avg_bitRate_DESC + + """avg(packetRateDay) ascending""" + avg_packetRateDay_ASC + + """avg(packetRateDay) descending""" + avg_packetRateDay_DESC + + """avg(packetRateFifteenMinutes) ascending""" + avg_packetRateFifteenMinutes_ASC + + """avg(packetRateFifteenMinutes) descending""" + avg_packetRateFifteenMinutes_DESC + + """avg(packetRateFiveMinutes) ascending""" + avg_packetRateFiveMinutes_ASC + + """avg(packetRateFiveMinutes) descending""" + avg_packetRateFiveMinutes_DESC + + """avg(packetRateHour) ascending""" + avg_packetRateHour_ASC + + """avg(packetRateHour) descending""" + avg_packetRateHour_DESC + + """avg(packetRateMinute) ascending""" + avg_packetRateMinute_ASC + + """avg(packetRateMinute) descending""" + avg_packetRateMinute_DESC + + """avg(packetRateTenSeconds) ascending""" + avg_packetRateTenSeconds_ASC + + """avg(packetRateTenSeconds) descending""" + avg_packetRateTenSeconds_DESC + + """avg(packetRate) ascending""" + avg_packetRate_ASC + + """avg(packetRate) descending""" + avg_packetRate_DESC + + """coloCity ascending""" + coloCity_ASC + + """coloCity descending""" + coloCity_DESC + + """coloCode ascending""" + coloCode_ASC + + """coloCode descending""" + coloCode_DESC + + """coloCountry ascending""" + coloCountry_ASC + + """coloCountry descending""" + coloCountry_DESC + + """coloGeohash ascending""" + coloGeohash_ASC + + """coloGeohash descending""" + coloGeohash_DESC + + """coloName ascending""" + coloName_ASC + + """coloName descending""" + coloName_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetimeTenSeconds ascending""" + datetimeTenSeconds_ASC + + """datetimeTenSeconds descending""" + datetimeTenSeconds_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """destinationAsnName ascending""" + destinationAsnName_ASC + + """destinationAsnName descending""" + destinationAsnName_DESC + + """destinationAsn ascending""" + destinationAsn_ASC + + """destinationAsn descending""" + destinationAsn_DESC + + """destinationCountry ascending""" + destinationCountry_ASC + + """destinationCountry descending""" + destinationCountry_DESC + + """destinationDeviceTag ascending""" + destinationDeviceTag_ASC + + """destinationDeviceTag descending""" + destinationDeviceTag_DESC + + """destinationGeohash ascending""" + destinationGeohash_ASC + + """destinationGeohash descending""" + destinationGeohash_DESC + + """destinationPort ascending""" + destinationPort_ASC + + """destinationPort descending""" + destinationPort_DESC + + """destinationService ascending""" + destinationService_ASC + + """destinationService descending""" + destinationService_DESC + + """direction ascending""" + direction_ASC + + """direction descending""" + direction_DESC + + """ethertype ascending""" + ethertype_ASC + + """ethertype descending""" + ethertype_DESC + + """greChecksum ascending""" + greChecksum_ASC + + """greChecksum descending""" + greChecksum_DESC + + """greEthertype ascending""" + greEthertype_ASC + + """greEthertype descending""" + greEthertype_DESC + + """greHeaderLength ascending""" + greHeaderLength_ASC + + """greHeaderLength descending""" + greHeaderLength_DESC + + """greKey ascending""" + greKey_ASC + + """greKey descending""" + greKey_DESC + + """greSequenceNumber ascending""" + greSequenceNumber_ASC + + """greSequenceNumber descending""" + greSequenceNumber_DESC + + """greVersion ascending""" + greVersion_ASC + + """greVersion descending""" + greVersion_DESC + + """icmpChecksum ascending""" + icmpChecksum_ASC + + """icmpChecksum descending""" + icmpChecksum_DESC + + """icmpCode ascending""" + icmpCode_ASC + + """icmpCode descending""" + icmpCode_DESC + + """icmpType ascending""" + icmpType_ASC + + """icmpType descending""" + icmpType_DESC + + """ipDestinationAddress ascending""" + ipDestinationAddress_ASC + + """ipDestinationAddress descending""" + ipDestinationAddress_DESC + + """ipDestinationSubnet ascending""" + ipDestinationSubnet_ASC + + """ipDestinationSubnet descending""" + ipDestinationSubnet_DESC + + """ipFragmentOffset ascending""" + ipFragmentOffset_ASC + + """ipFragmentOffset descending""" + ipFragmentOffset_DESC + + """ipHeaderLength ascending""" + ipHeaderLength_ASC + + """ipHeaderLength descending""" + ipHeaderLength_DESC + + """ipMoreFragments ascending""" + ipMoreFragments_ASC + + """ipMoreFragments descending""" + ipMoreFragments_DESC + + """ipProtocolName ascending""" + ipProtocolName_ASC + + """ipProtocolName descending""" + ipProtocolName_DESC + + """ipProtocol ascending""" + ipProtocol_ASC + + """ipProtocol descending""" + ipProtocol_DESC + + """ipSourceAddress ascending""" + ipSourceAddress_ASC + + """ipSourceAddress descending""" + ipSourceAddress_DESC + + """ipSourceSubnet ascending""" + ipSourceSubnet_ASC + + """ipSourceSubnet descending""" + ipSourceSubnet_DESC + + """ipTotalLengthBuckets ascending""" + ipTotalLengthBuckets_ASC + + """ipTotalLengthBuckets descending""" + ipTotalLengthBuckets_DESC + + """ipTotalLength ascending""" + ipTotalLength_ASC + + """ipTotalLength descending""" + ipTotalLength_DESC + + """ipTtlBuckets ascending""" + ipTtlBuckets_ASC + + """ipTtlBuckets descending""" + ipTtlBuckets_DESC + + """ipTtl ascending""" + ipTtl_ASC + + """ipTtl descending""" + ipTtl_DESC + + """ipv4Checksum ascending""" + ipv4Checksum_ASC + + """ipv4Checksum descending""" + ipv4Checksum_DESC + + """ipv4DontFragment ascending""" + ipv4DontFragment_ASC + + """ipv4DontFragment descending""" + ipv4DontFragment_DESC + + """ipv4Dscp ascending""" + ipv4Dscp_ASC + + """ipv4Dscp descending""" + ipv4Dscp_DESC + + """ipv4Ecn ascending""" + ipv4Ecn_ASC + + """ipv4Ecn descending""" + ipv4Ecn_DESC + + """ipv4Identification ascending""" + ipv4Identification_ASC + + """ipv4Identification descending""" + ipv4Identification_DESC + + """ipv4Options ascending""" + ipv4Options_ASC + + """ipv4Options descending""" + ipv4Options_DESC + + """ipv6Dscp ascending""" + ipv6Dscp_ASC + + """ipv6Dscp descending""" + ipv6Dscp_DESC + + """ipv6Ecn ascending""" + ipv6Ecn_ASC + + """ipv6Ecn descending""" + ipv6Ecn_DESC + + """ipv6ExtensionHeaders ascending""" + ipv6ExtensionHeaders_ASC + + """ipv6ExtensionHeaders descending""" + ipv6ExtensionHeaders_DESC + + """ipv6FlowLabel ascending""" + ipv6FlowLabel_ASC + + """ipv6FlowLabel descending""" + ipv6FlowLabel_DESC + + """ipv6Identification ascending""" + ipv6Identification_ASC + + """ipv6Identification descending""" + ipv6Identification_DESC + + """leaseTag ascending""" + leaseTag_ASC + + """leaseTag descending""" + leaseTag_DESC + + """mitigationSystem ascending""" + mitigationSystem_ASC + + """mitigationSystem descending""" + mitigationSystem_DESC + + """outcome ascending""" + outcome_ASC + + """outcome descending""" + outcome_DESC + + """popName ascending""" + popName_ASC + + """popName descending""" + popName_DESC + + """prefixTag ascending""" + prefixTag_ASC + + """prefixTag descending""" + prefixTag_DESC + + """sampleInterval ascending""" + sampleInterval_ASC + + """sampleInterval descending""" + sampleInterval_DESC + + """sourceAsnName ascending""" + sourceAsnName_ASC + + """sourceAsnName descending""" + sourceAsnName_DESC + + """sourceAsn ascending""" + sourceAsn_ASC + + """sourceAsn descending""" + sourceAsn_DESC + + """sourceCountry ascending""" + sourceCountry_ASC + + """sourceCountry descending""" + sourceCountry_DESC + + """sourceDeviceTag ascending""" + sourceDeviceTag_ASC + + """sourceDeviceTag descending""" + sourceDeviceTag_DESC + + """sourceGeohash ascending""" + sourceGeohash_ASC + + """sourceGeohash descending""" + sourceGeohash_DESC + + """sourcePort ascending""" + sourcePort_ASC + + """sourcePort descending""" + sourcePort_DESC + + """sourceService ascending""" + sourceService_ASC + + """sourceService descending""" + sourceService_DESC + + """sum(bits) ascending""" + sum_bits_ASC + + """sum(bits) descending""" + sum_bits_DESC + + """sum(packets) ascending""" + sum_packets_ASC + + """sum(packets) descending""" + sum_packets_DESC + + """system ascending""" + system_ASC + + """system descending""" + system_DESC + + """tcpAcknowledgementNumber ascending""" + tcpAcknowledgementNumber_ASC + + """tcpAcknowledgementNumber descending""" + tcpAcknowledgementNumber_DESC + + """tcpChecksum ascending""" + tcpChecksum_ASC + + """tcpChecksum descending""" + tcpChecksum_DESC + + """tcpDataOffset ascending""" + tcpDataOffset_ASC + + """tcpDataOffset descending""" + tcpDataOffset_DESC + + """tcpFlagsString ascending""" + tcpFlagsString_ASC + + """tcpFlagsString descending""" + tcpFlagsString_DESC + + """tcpFlags ascending""" + tcpFlags_ASC + + """tcpFlags descending""" + tcpFlags_DESC + + """tcpMss ascending""" + tcpMss_ASC + + """tcpMss descending""" + tcpMss_DESC + + """tcpOptions ascending""" + tcpOptions_ASC + + """tcpOptions descending""" + tcpOptions_DESC + + """tcpSackBlocks ascending""" + tcpSackBlocks_ASC + + """tcpSackBlocks descending""" + tcpSackBlocks_DESC + + """tcpSackPermitted ascending""" + tcpSackPermitted_ASC + + """tcpSackPermitted descending""" + tcpSackPermitted_DESC + + """tcpSequenceNumber ascending""" + tcpSequenceNumber_ASC + + """tcpSequenceNumber descending""" + tcpSequenceNumber_DESC + + """tcpTimestampEcr ascending""" + tcpTimestampEcr_ASC + + """tcpTimestampEcr descending""" + tcpTimestampEcr_DESC + + """tcpTimestampValue ascending""" + tcpTimestampValue_ASC + + """tcpTimestampValue descending""" + tcpTimestampValue_DESC + + """tcpUrgentPointer ascending""" + tcpUrgentPointer_ASC + + """tcpUrgentPointer descending""" + tcpUrgentPointer_DESC + + """tcpWindowScale ascending""" + tcpWindowScale_ASC + + """tcpWindowScale descending""" + tcpWindowScale_DESC + + """tcpWindowSize ascending""" + tcpWindowSize_ASC + + """tcpWindowSize descending""" + tcpWindowSize_DESC + + """udpChecksum ascending""" + udpChecksum_ASC + + """udpChecksum descending""" + udpChecksum_DESC + + """udpPayloadLength ascending""" + udpPayloadLength_ASC + + """udpPayloadLength descending""" + udpPayloadLength_DESC + + """verdict ascending""" + verdict_ASC + + """verdict descending""" + verdict_DESC +} + +"""""" +type AccountCdnNetworkAnalyticsAdaptiveGroupsSum { + """Sum of bits received""" + bits: uint64! + + """Sum of packets received""" + packets: uint64! +} + +"""""" +type AccountCdnNetworkAnalyticsAdaptiveGroupsSumConfidence { + """Confidence interval for the corresponding point estimate""" + bits: Confidence! + + """Confidence interval for the corresponding point estimate""" + packets: Confidence! +} + +"""Metrics for Cloudchamber applications and deployments""" +type AccountCloudchamberMetricsAdaptiveGroups { + """The average value of a metric per dimension""" + avg: AccountCloudchamberMetricsAdaptiveGroupsAvg + + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountCloudchamberMetricsAdaptiveGroupsConfidence! + + """Number of metrics received""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountCloudchamberMetricsAdaptiveGroupsDimensions + + """Maximum value of a metric per dimension""" + max: AccountCloudchamberMetricsAdaptiveGroupsMax + + """Quantiles of a metric per dimension""" + quantiles: AccountCloudchamberMetricsAdaptiveGroupsQuantiles + + """The sum of values for a metric per dimension""" + sum: AccountCloudchamberMetricsAdaptiveGroupsSum +} + +"""""" +type AccountCloudchamberMetricsAdaptiveGroupsAvg { + """Average CPU load""" + cpuLoad: float64! + + """Average GPU memory usage""" + gpuMemory: float64! + + """Average memory usage""" + memory: float64! + + """Average RX bandwidth""" + rxBandwidth: float64! @deprecated(reason: "Replaced by rxBandwidthBps") + + """Average RX bandwidth in bps""" + rxBandwidthBps: float64! + + """Average TX bandwidth""" + txBandwidth: float64! @deprecated(reason: "Replaced by txBandwidthBps") + + """Average TX bandwidth in bps""" + txBandwidthBps: float64! +} + +"""""" +type AccountCloudchamberMetricsAdaptiveGroupsConfidence { + """Number of metrics received, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! + + """ + The sum of values for a metric per dimension, with confidence intervals + """ + sum: AccountCloudchamberMetricsAdaptiveGroupsSumConfidence +} + +"""""" +type AccountCloudchamberMetricsAdaptiveGroupsDimensions { + """The application ID""" + applicationId: string! + + """The date the metric was received""" + date: Date! + + """ + The date and time the metric was received, truncated to fifteen minutes + """ + datetimeFifteenMinutes: Time! + + """The date and time the metric was received, truncated to five minutes""" + datetimeFiveMinutes: Time! + + """The date and time the metric was received, truncated to one hour""" + datetimeHour: Time! + + """The date and time the metric was received, truncated to one minute""" + datetimeMinute: Time! + + """The date and time the metric was received, truncated to six hours""" + datetimeSixHours: Time! + + """The deployment ID""" + deploymentId: string! + + """If set, this metric was emitted while assigned to a durable object""" + durableObjectId: string! + + """Location""" + location: string! + + """The placement ID""" + placementId: string! + + """Process type""" + procType: string! + + """Region""" + region: string! +} + +"""""" +input AccountCloudchamberMetricsAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountCloudchamberMetricsAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountCloudchamberMetricsAdaptiveGroupsFilter_InputObject!] + + """""" + applicationId: string + + """""" + applicationId_geq: string + + """""" + applicationId_gt: string + + """""" + applicationId_in: [string!] + + """""" + applicationId_leq: string + + """""" + applicationId_like: string + + """""" + applicationId_lt: string + + """""" + applicationId_neq: string + + """""" + applicationId_notin: [string!] + + """""" + applicationId_notlike: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetimeSixHours: Time + + """""" + datetimeSixHours_geq: Time + + """""" + datetimeSixHours_gt: Time + + """""" + datetimeSixHours_in: [Time!] + + """""" + datetimeSixHours_leq: Time + + """""" + datetimeSixHours_lt: Time + + """""" + datetimeSixHours_neq: Time + + """""" + datetimeSixHours_notin: [Time!] + + """""" + deploymentId: string + + """""" + deploymentId_geq: string + + """""" + deploymentId_gt: string + + """""" + deploymentId_in: [string!] + + """""" + deploymentId_leq: string + + """""" + deploymentId_like: string + + """""" + deploymentId_lt: string + + """""" + deploymentId_neq: string + + """""" + deploymentId_notin: [string!] + + """""" + deploymentId_notlike: string + + """""" + durableObjectId: string + + """""" + durableObjectId_geq: string + + """""" + durableObjectId_gt: string + + """""" + durableObjectId_in: [string!] + + """""" + durableObjectId_leq: string + + """""" + durableObjectId_like: string + + """""" + durableObjectId_lt: string + + """""" + durableObjectId_neq: string + + """""" + durableObjectId_notin: [string!] + + """""" + durableObjectId_notlike: string + + """""" + location: string + + """""" + location_geq: string + + """""" + location_gt: string + + """""" + location_in: [string!] + + """""" + location_leq: string + + """""" + location_like: string + + """""" + location_lt: string + + """""" + location_neq: string + + """""" + location_notin: [string!] + + """""" + location_notlike: string + + """""" + placementId: string + + """""" + placementId_geq: string + + """""" + placementId_gt: string + + """""" + placementId_in: [string!] + + """""" + placementId_leq: string + + """""" + placementId_like: string + + """""" + placementId_lt: string + + """""" + placementId_neq: string + + """""" + placementId_notin: [string!] + + """""" + placementId_notlike: string + + """""" + procType: string + + """""" + procType_geq: string + + """""" + procType_gt: string + + """""" + procType_in: [string!] + + """""" + procType_leq: string + + """""" + procType_like: string + + """""" + procType_lt: string + + """""" + procType_neq: string + + """""" + procType_notin: [string!] + + """""" + procType_notlike: string + + """""" + region: string + + """""" + region_geq: string + + """""" + region_gt: string + + """""" + region_in: [string!] + + """""" + region_leq: string + + """""" + region_like: string + + """""" + region_lt: string + + """""" + region_neq: string + + """""" + region_notin: [string!] + + """""" + region_notlike: string +} + +"""""" +type AccountCloudchamberMetricsAdaptiveGroupsMax { + """Maximum CPU load""" + cpuLoad: float64! + + """Total disk space available, in bytes""" + diskAvailable: uint64! + + """Disk usage, in bytes""" + diskUsage: uint64! + + """Disk usage as a percentage of total disk space""" + diskUsagePercentage: float64! + + """Maximum GPU memory usage""" + gpuMemory: float64! + + """Maximum memory usage""" + memory: float64! + + """Maximum RX bandwidth""" + rxBandwidth: float64! @deprecated(reason: "Replaced by rxBandwidthBps") + + """Maximum RX bandwidth""" + rxBandwidthBps: float64! + + """Total bytes received""" + rxBytes: uint64! @deprecated(reason: "Replaced by sum { rxBytes }") + + """Maximum TX bandwidth""" + txBandwidth: float64! @deprecated(reason: "Replaced by txBandwidthBps") + + """Maximum TX bandwidth""" + txBandwidthBps: float64! + + """Total bytes transmitted""" + txBytes: uint64! @deprecated(reason: "Replaced by sum { txBytes }") +} + +"""""" +enum AccountCloudchamberMetricsAdaptiveGroupsOrderBy { + """applicationId ascending""" + applicationId_ASC + + """applicationId descending""" + applicationId_DESC + + """avg(cpuLoad) ascending""" + avg_cpuLoad_ASC + + """avg(cpuLoad) descending""" + avg_cpuLoad_DESC + + """avg(gpuMemory) ascending""" + avg_gpuMemory_ASC + + """avg(gpuMemory) descending""" + avg_gpuMemory_DESC + + """avg(memory) ascending""" + avg_memory_ASC + + """avg(memory) descending""" + avg_memory_DESC + + """avg(rxBandwidthBps) ascending""" + avg_rxBandwidthBps_ASC + + """avg(rxBandwidthBps) descending""" + avg_rxBandwidthBps_DESC + + """avg(rxBandwidth) ascending""" + avg_rxBandwidth_ASC + + """avg(rxBandwidth) descending""" + avg_rxBandwidth_DESC + + """avg(txBandwidthBps) ascending""" + avg_txBandwidthBps_ASC + + """avg(txBandwidthBps) descending""" + avg_txBandwidthBps_DESC + + """avg(txBandwidth) ascending""" + avg_txBandwidth_ASC + + """avg(txBandwidth) descending""" + avg_txBandwidth_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetimeSixHours ascending""" + datetimeSixHours_ASC + + """datetimeSixHours descending""" + datetimeSixHours_DESC + + """deploymentId ascending""" + deploymentId_ASC + + """deploymentId descending""" + deploymentId_DESC + + """durableObjectId ascending""" + durableObjectId_ASC + + """durableObjectId descending""" + durableObjectId_DESC + + """location ascending""" + location_ASC + + """location descending""" + location_DESC + + """max(cpuLoad) ascending""" + max_cpuLoad_ASC + + """max(cpuLoad) descending""" + max_cpuLoad_DESC + + """max(diskAvailable) ascending""" + max_diskAvailable_ASC + + """max(diskAvailable) descending""" + max_diskAvailable_DESC + + """max(diskUsagePercentage) ascending""" + max_diskUsagePercentage_ASC + + """max(diskUsagePercentage) descending""" + max_diskUsagePercentage_DESC + + """max(diskUsage) ascending""" + max_diskUsage_ASC + + """max(diskUsage) descending""" + max_diskUsage_DESC + + """max(gpuMemory) ascending""" + max_gpuMemory_ASC + + """max(gpuMemory) descending""" + max_gpuMemory_DESC + + """max(memory) ascending""" + max_memory_ASC + + """max(memory) descending""" + max_memory_DESC + + """max(rxBandwidthBps) ascending""" + max_rxBandwidthBps_ASC + + """max(rxBandwidthBps) descending""" + max_rxBandwidthBps_DESC + + """max(rxBandwidth) ascending""" + max_rxBandwidth_ASC + + """max(rxBandwidth) descending""" + max_rxBandwidth_DESC + + """max(rxBytes) ascending""" + max_rxBytes_ASC + + """max(rxBytes) descending""" + max_rxBytes_DESC + + """max(txBandwidthBps) ascending""" + max_txBandwidthBps_ASC + + """max(txBandwidthBps) descending""" + max_txBandwidthBps_DESC + + """max(txBandwidth) ascending""" + max_txBandwidth_ASC + + """max(txBandwidth) descending""" + max_txBandwidth_DESC + + """max(txBytes) ascending""" + max_txBytes_ASC + + """max(txBytes) descending""" + max_txBytes_DESC + + """placementId ascending""" + placementId_ASC + + """placementId descending""" + placementId_DESC + + """procType ascending""" + procType_ASC + + """procType descending""" + procType_DESC + + """quantiles(cpuLoadP50) ascending""" + quantiles_cpuLoadP50_ASC + + """quantiles(cpuLoadP50) descending""" + quantiles_cpuLoadP50_DESC + + """quantiles(cpuLoadP90) ascending""" + quantiles_cpuLoadP90_ASC + + """quantiles(cpuLoadP90) descending""" + quantiles_cpuLoadP90_DESC + + """quantiles(cpuLoadP99) ascending""" + quantiles_cpuLoadP99_ASC + + """quantiles(cpuLoadP99) descending""" + quantiles_cpuLoadP99_DESC + + """quantiles(diskUsageP50) ascending""" + quantiles_diskUsageP50_ASC + + """quantiles(diskUsageP50) descending""" + quantiles_diskUsageP50_DESC + + """quantiles(diskUsageP90) ascending""" + quantiles_diskUsageP90_ASC + + """quantiles(diskUsageP90) descending""" + quantiles_diskUsageP90_DESC + + """quantiles(diskUsageP99) ascending""" + quantiles_diskUsageP99_ASC + + """quantiles(diskUsageP99) descending""" + quantiles_diskUsageP99_DESC + + """quantiles(diskUsagePercentageP50) ascending""" + quantiles_diskUsagePercentageP50_ASC + + """quantiles(diskUsagePercentageP50) descending""" + quantiles_diskUsagePercentageP50_DESC + + """quantiles(diskUsagePercentageP90) ascending""" + quantiles_diskUsagePercentageP90_ASC + + """quantiles(diskUsagePercentageP90) descending""" + quantiles_diskUsagePercentageP90_DESC + + """quantiles(diskUsagePercentageP99) ascending""" + quantiles_diskUsagePercentageP99_ASC + + """quantiles(diskUsagePercentageP99) descending""" + quantiles_diskUsagePercentageP99_DESC + + """quantiles(gpuMemoryP50) ascending""" + quantiles_gpuMemoryP50_ASC + + """quantiles(gpuMemoryP50) descending""" + quantiles_gpuMemoryP50_DESC + + """quantiles(gpuMemoryP90) ascending""" + quantiles_gpuMemoryP90_ASC + + """quantiles(gpuMemoryP90) descending""" + quantiles_gpuMemoryP90_DESC + + """quantiles(gpuMemoryP99) ascending""" + quantiles_gpuMemoryP99_ASC + + """quantiles(gpuMemoryP99) descending""" + quantiles_gpuMemoryP99_DESC + + """quantiles(memoryP50) ascending""" + quantiles_memoryP50_ASC + + """quantiles(memoryP50) descending""" + quantiles_memoryP50_DESC + + """quantiles(memoryP90) ascending""" + quantiles_memoryP90_ASC + + """quantiles(memoryP90) descending""" + quantiles_memoryP90_DESC + + """quantiles(memoryP99) ascending""" + quantiles_memoryP99_ASC + + """quantiles(memoryP99) descending""" + quantiles_memoryP99_DESC + + """quantiles(rxBandwidthBpsP50) ascending""" + quantiles_rxBandwidthBpsP50_ASC + + """quantiles(rxBandwidthBpsP50) descending""" + quantiles_rxBandwidthBpsP50_DESC + + """quantiles(rxBandwidthBpsP90) ascending""" + quantiles_rxBandwidthBpsP90_ASC + + """quantiles(rxBandwidthBpsP90) descending""" + quantiles_rxBandwidthBpsP90_DESC + + """quantiles(rxBandwidthBpsP99) ascending""" + quantiles_rxBandwidthBpsP99_ASC + + """quantiles(rxBandwidthBpsP99) descending""" + quantiles_rxBandwidthBpsP99_DESC + + """quantiles(rxBandwidthP50) ascending""" + quantiles_rxBandwidthP50_ASC + + """quantiles(rxBandwidthP50) descending""" + quantiles_rxBandwidthP50_DESC + + """quantiles(rxBandwidthP90) ascending""" + quantiles_rxBandwidthP90_ASC + + """quantiles(rxBandwidthP90) descending""" + quantiles_rxBandwidthP90_DESC + + """quantiles(rxBandwidthP99) ascending""" + quantiles_rxBandwidthP99_ASC + + """quantiles(rxBandwidthP99) descending""" + quantiles_rxBandwidthP99_DESC + + """quantiles(txBandwidthBpsP50) ascending""" + quantiles_txBandwidthBpsP50_ASC + + """quantiles(txBandwidthBpsP50) descending""" + quantiles_txBandwidthBpsP50_DESC + + """quantiles(txBandwidthBpsP90) ascending""" + quantiles_txBandwidthBpsP90_ASC + + """quantiles(txBandwidthBpsP90) descending""" + quantiles_txBandwidthBpsP90_DESC + + """quantiles(txBandwidthBpsP99) ascending""" + quantiles_txBandwidthBpsP99_ASC + + """quantiles(txBandwidthBpsP99) descending""" + quantiles_txBandwidthBpsP99_DESC + + """quantiles(txBandwidthP50) ascending""" + quantiles_txBandwidthP50_ASC + + """quantiles(txBandwidthP50) descending""" + quantiles_txBandwidthP50_DESC + + """quantiles(txBandwidthP90) ascending""" + quantiles_txBandwidthP90_ASC + + """quantiles(txBandwidthP90) descending""" + quantiles_txBandwidthP90_DESC + + """quantiles(txBandwidthP99) ascending""" + quantiles_txBandwidthP99_ASC + + """quantiles(txBandwidthP99) descending""" + quantiles_txBandwidthP99_DESC + + """region ascending""" + region_ASC + + """region descending""" + region_DESC + + """sum(rxBytes) ascending""" + sum_rxBytes_ASC + + """sum(rxBytes) descending""" + sum_rxBytes_DESC + + """sum(txBytes) ascending""" + sum_txBytes_ASC + + """sum(txBytes) descending""" + sum_txBytes_DESC +} + +"""""" +type AccountCloudchamberMetricsAdaptiveGroupsQuantiles { + """CPU load (50th percentile)""" + cpuLoadP50: float64! + + """CPU load (90th percentile)""" + cpuLoadP90: float64! + + """CPU load (99th percentile)""" + cpuLoadP99: float64! + + """Disk usage in bytes (50th percentile)""" + diskUsageP50: float64! + + """Disk usage in bytes (90th percentile)""" + diskUsageP90: float64! + + """Disk usage in bytes (99th percentile)""" + diskUsageP99: float64! + + """Disk usage as a percentage of total disk space (50th percentile)""" + diskUsagePercentageP50: float64! + + """Disk usage as a percentage of total disk space (90th percentile)""" + diskUsagePercentageP90: float64! + + """Disk usage as a percentage of total disk space (99th percentile)""" + diskUsagePercentageP99: float64! + + """GPU memory usage (50th percentile)""" + gpuMemoryP50: float64! + + """GPU memory usage (90th percentile)""" + gpuMemoryP90: float64! + + """GPU memory usage (99th percentile)""" + gpuMemoryP99: float64! + + """Memory usage (50th percentile)""" + memoryP50: float64! + + """Memory usage (90th percentile)""" + memoryP90: float64! + + """Memory usage (99th percentile)""" + memoryP99: float64! + + """RX bandwidth (50th percentile)""" + rxBandwidthBpsP50: float64! + + """RX bandwidth (90th percentile)""" + rxBandwidthBpsP90: float64! + + """RX bandwidth (99th percentile)""" + rxBandwidthBpsP99: float64! + + """RX bandwidth (50th percentile)""" + rxBandwidthP50: float64! @deprecated(reason: "Replaced by rxBandwidthBpsP50") + + """RX bandwidth (90th percentile)""" + rxBandwidthP90: float64! @deprecated(reason: "Replaced by rxBandwidthBpsP90") + + """RX bandwidth (99th percentile)""" + rxBandwidthP99: float64! @deprecated(reason: "Replaced by rxBandwidthBpsP99") + + """TX bandwidth (50th percentile)""" + txBandwidthBpsP50: float64! + + """TX bandwidth (90th percentile)""" + txBandwidthBpsP90: float64! + + """TX bandwidth (99th percentile)""" + txBandwidthBpsP99: float64! + + """TX bandwidth (50th percentile)""" + txBandwidthP50: float64! @deprecated(reason: "Replaced by txBandwidthBpsP50") + + """TX bandwidth (90th percentile)""" + txBandwidthP90: float64! @deprecated(reason: "Replaced by txBandwidthBpsP90") + + """TX bandwidth (99th percentile)""" + txBandwidthP99: float64! @deprecated(reason: "Replaced by txBandwidthBpsP99") +} + +"""""" +type AccountCloudchamberMetricsAdaptiveGroupsSum { + """Sum of bytes received""" + rxBytes: uint64! + + """Sum of bytes transmitted""" + txBytes: uint64! +} + +"""""" +type AccountCloudchamberMetricsAdaptiveGroupsSumConfidence { + """Confidence interval for the corresponding point estimate""" + rxBytes: Confidence! + + """Confidence interval for the corresponding point estimate""" + txBytes: Confidence! +} + +"""Cloudflare tunnel Device Analytics""" +type AccountCloudflareTunnelsAnalyticsAdaptiveGroups { + """The average of values for a metric per dimension""" + avg: AccountCloudflareTunnelsAnalyticsAdaptiveGroupsAvg + + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountCloudflareTunnelsAnalyticsAdaptiveGroupsConfidence! + + """List of dimensions to group by""" + dimensions: AccountCloudflareTunnelsAnalyticsAdaptiveGroupsDimensions + + """The sum of values for a metric per dimension""" + sum: AccountCloudflareTunnelsAnalyticsAdaptiveGroupsSum +} + +"""""" +type AccountCloudflareTunnelsAnalyticsAdaptiveGroupsAvg { + """ + Sum of bits received, divided by 1 second, providing a per-second bit rate when grouped by datetime + """ + bitRate: float64! + + """ + Sum of bits received, divided by 86400 seconds, providing a per-second bit rate when grouped by date + """ + bitRateDay: float64! + + """ + Sum of bits received, divided by 900 seconds, providing a per-second bit rate when grouped by datetimeFifteenMinutes + """ + bitRateFifteenMinutes: float64! + + """ + Sum of bits received, divided by 300 seconds, providing a per-second bit rate when grouped by datetimeFiveMinutes + """ + bitRateFiveMinutes: float64! + + """ + Sum of bits received, divided by 3600 seconds, providing a per-second bit rate when grouped by datetimeHour + """ + bitRateHour: float64! + + """ + Sum of bits received, divided by 60 seconds, providing a per-second bit rate when grouped by datetimeMinute + """ + bitRateMinute: float64! + + """ + Sum of bits received, divided by 10 seconds, providing a per-second bit rate when grouped by datetimeTenSeconds + """ + bitRateTenSeconds: float64! + + """ + Sum of egress bits received, divided by 1 second, providing a per-second egress bit rate when grouped by datetime + """ + egressBitRate: float64! + + """ + Sum of egress bits received, divided by 86400 seconds, providing a per-second egress bit rate when grouped by date + """ + egressBitRateDay: float64! + + """ + Sum of egress bits received, divided by 900 seconds, providing a per-second egress bit rate when grouped by datetimeFifteenMinutes + """ + egressBitRateFifteenMinutes: float64! + + """ + Sum of egress bits received, divided by 300 seconds, providing a per-second egress bit rate when grouped by datetimeFiveMinutes + """ + egressBitRateFiveMinutes: float64! + + """ + Sum of egress bits received, divided by 3600 seconds, providing a per-second egress bit rate when grouped by datetimeHour + """ + egressBitRateHour: float64! + + """ + Sum of egress bits received, divided by 60 seconds, providing a per-second egress bit rate when grouped by datetimeMinute + """ + egressBitRateMinute: float64! + + """ + Sum of egress bits received, divided by 10 seconds, providing a per-second egress bit rate when grouped by datetimeTenSeconds + """ + egressBitRateTenSeconds: float64! + + """Average sample interval applied to the data""" + sampleInterval: float64! +} + +"""""" +type AccountCloudflareTunnelsAnalyticsAdaptiveGroupsAvgConfidence { + """Confidence interval for the corresponding point estimate""" + bitRate: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateDay: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateFifteenMinutes: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateFiveMinutes: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateHour: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateMinute: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateTenSeconds: Confidence! + + """Confidence interval for the corresponding point estimate""" + egressBitRate: Confidence! + + """Confidence interval for the corresponding point estimate""" + egressBitRateDay: Confidence! + + """Confidence interval for the corresponding point estimate""" + egressBitRateFifteenMinutes: Confidence! + + """Confidence interval for the corresponding point estimate""" + egressBitRateFiveMinutes: Confidence! + + """Confidence interval for the corresponding point estimate""" + egressBitRateHour: Confidence! + + """Confidence interval for the corresponding point estimate""" + egressBitRateMinute: Confidence! + + """Confidence interval for the corresponding point estimate""" + egressBitRateTenSeconds: Confidence! +} + +"""""" +type AccountCloudflareTunnelsAnalyticsAdaptiveGroupsConfidence { + """ + The average of values for a metric per dimension, with confidence intervals + """ + avg: AccountCloudflareTunnelsAnalyticsAdaptiveGroupsAvgConfidence + + """Confidence level that was requested""" + level: float64! + + """ + The sum of values for a metric per dimension, with confidence intervals + """ + sum: AccountCloudflareTunnelsAnalyticsAdaptiveGroupsSumConfidence +} + +"""""" +type AccountCloudflareTunnelsAnalyticsAdaptiveGroupsDimensions { + """Duration of the network connection in milliseconds.""" + connectionDuration: uint64! + + """Date that the connection was started""" + date: Date! + + """Date and time the connection was started""" + datetime: Time! + + """ + Date and time that the connection was started, rounded to the start of the nearest fifteen minutes + """ + datetimeFifteenMinutes: Time! + + """ + Date and time that the connection was started, rounded to the start of the nearest five minutes + """ + datetimeFiveMinutes: Time! + + """ + Date and time that the connection was started, rounded to the start of the nearest hour + """ + datetimeHour: Time! + + """ + Date and time that the connection was started, rounded to the start of the nearest minute + """ + datetimeMinute: Time! + + """ + Date and time that the connection was started rounded to the start of the nearest ten seconds + """ + datetimeTenSeconds: Time! + + """ + Destination country for the network connection. Only available for public addresses. + """ + destinationCountry: string! + + """Destination IP of the network connection.""" + destinationIP: string! + + """Destination port of the network connection.""" + destinationPort: uint16! + + """ + Identifier of the Cloudflare tunnel connector to which the network session was routed to. + """ + deviceID: string! + + """ + Name of the Cloudflare tunnel connector to which the network session was routed to. + """ + deviceName: string! + + """On ramp path to the Cloudflare tunnel: Warp, Magic Tunnel""" + onRamp: string! + + """ + Network Protocol of the network connection. Available values: [UDP,TCP,ICMP,ICMPv6] + """ + protocol: string! + + """ + Source country for the network connection. Only available for public addresses. + """ + sourceCountry: string! + + """Source IP of the network connection.""" + sourceIP: string! + + """Source port of the network connection.""" + sourcePort: uint16! + + """Duration of the TCP Handshake for TCP connections in milliseconds.""" + tcpHandshakeDuration: uint64! +} + +"""""" +input AccountCloudflareTunnelsAnalyticsAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountCloudflareTunnelsAnalyticsAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountCloudflareTunnelsAnalyticsAdaptiveGroupsFilter_InputObject!] + + """""" + connectionDuration: uint64 + + """""" + connectionDuration_geq: uint64 + + """""" + connectionDuration_gt: uint64 + + """""" + connectionDuration_in: [uint64!] + + """""" + connectionDuration_leq: uint64 + + """""" + connectionDuration_lt: uint64 + + """""" + connectionDuration_neq: uint64 + + """""" + connectionDuration_notin: [uint64!] + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetimeTenSeconds: Time + + """""" + datetimeTenSeconds_geq: Time + + """""" + datetimeTenSeconds_gt: Time + + """""" + datetimeTenSeconds_in: [Time!] + + """""" + datetimeTenSeconds_leq: Time + + """""" + datetimeTenSeconds_lt: Time + + """""" + datetimeTenSeconds_neq: Time + + """""" + datetimeTenSeconds_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + destinationCountry: string + + """""" + destinationCountry_geq: string + + """""" + destinationCountry_gt: string + + """""" + destinationCountry_in: [string!] + + """""" + destinationCountry_leq: string + + """""" + destinationCountry_like: string + + """""" + destinationCountry_lt: string + + """""" + destinationCountry_neq: string + + """""" + destinationCountry_notin: [string!] + + """""" + destinationCountry_notlike: string + + """""" + destinationIP: string + + """""" + destinationIP_geq: string + + """""" + destinationIP_gt: string + + """""" + destinationIP_in: [string!] + + """""" + destinationIP_leq: string + + """""" + destinationIP_like: string + + """""" + destinationIP_lt: string + + """""" + destinationIP_neq: string + + """""" + destinationIP_notin: [string!] + + """""" + destinationIP_notlike: string + + """""" + destinationPort: uint16 + + """""" + destinationPort_geq: uint16 + + """""" + destinationPort_gt: uint16 + + """""" + destinationPort_in: [uint16!] + + """""" + destinationPort_leq: uint16 + + """""" + destinationPort_lt: uint16 + + """""" + destinationPort_neq: uint16 + + """""" + destinationPort_notin: [uint16!] + + """""" + deviceID: string + + """""" + deviceID_geq: string + + """""" + deviceID_gt: string + + """""" + deviceID_in: [string!] + + """""" + deviceID_leq: string + + """""" + deviceID_like: string + + """""" + deviceID_lt: string + + """""" + deviceID_neq: string + + """""" + deviceID_notin: [string!] + + """""" + deviceID_notlike: string + + """""" + deviceName: string + + """""" + deviceName_geq: string + + """""" + deviceName_gt: string + + """""" + deviceName_in: [string!] + + """""" + deviceName_leq: string + + """""" + deviceName_like: string + + """""" + deviceName_lt: string + + """""" + deviceName_neq: string + + """""" + deviceName_notin: [string!] + + """""" + deviceName_notlike: string + + """""" + onRamp: string + + """""" + onRamp_geq: string + + """""" + onRamp_gt: string + + """""" + onRamp_in: [string!] + + """""" + onRamp_leq: string + + """""" + onRamp_like: string + + """""" + onRamp_lt: string + + """""" + onRamp_neq: string + + """""" + onRamp_notin: [string!] + + """""" + onRamp_notlike: string + + """""" + protocol: string + + """""" + protocol_geq: string + + """""" + protocol_gt: string + + """""" + protocol_in: [string!] + + """""" + protocol_leq: string + + """""" + protocol_like: string + + """""" + protocol_lt: string + + """""" + protocol_neq: string + + """""" + protocol_notin: [string!] + + """""" + protocol_notlike: string + + """""" + sourceCountry: string + + """""" + sourceCountry_geq: string + + """""" + sourceCountry_gt: string + + """""" + sourceCountry_in: [string!] + + """""" + sourceCountry_leq: string + + """""" + sourceCountry_like: string + + """""" + sourceCountry_lt: string + + """""" + sourceCountry_neq: string + + """""" + sourceCountry_notin: [string!] + + """""" + sourceCountry_notlike: string + + """""" + sourceIP: string + + """""" + sourceIP_geq: string + + """""" + sourceIP_gt: string + + """""" + sourceIP_in: [string!] + + """""" + sourceIP_leq: string + + """""" + sourceIP_like: string + + """""" + sourceIP_lt: string + + """""" + sourceIP_neq: string + + """""" + sourceIP_notin: [string!] + + """""" + sourceIP_notlike: string + + """""" + sourcePort: uint16 + + """""" + sourcePort_geq: uint16 + + """""" + sourcePort_gt: uint16 + + """""" + sourcePort_in: [uint16!] + + """""" + sourcePort_leq: uint16 + + """""" + sourcePort_lt: uint16 + + """""" + sourcePort_neq: uint16 + + """""" + sourcePort_notin: [uint16!] + + """""" + tcpHandshakeDuration: uint64 + + """""" + tcpHandshakeDuration_geq: uint64 + + """""" + tcpHandshakeDuration_gt: uint64 + + """""" + tcpHandshakeDuration_in: [uint64!] + + """""" + tcpHandshakeDuration_leq: uint64 + + """""" + tcpHandshakeDuration_lt: uint64 + + """""" + tcpHandshakeDuration_neq: uint64 + + """""" + tcpHandshakeDuration_notin: [uint64!] +} + +"""""" +enum AccountCloudflareTunnelsAnalyticsAdaptiveGroupsOrderBy { + """avg(bitRateDay) ascending""" + avg_bitRateDay_ASC + + """avg(bitRateDay) descending""" + avg_bitRateDay_DESC + + """avg(bitRateFifteenMinutes) ascending""" + avg_bitRateFifteenMinutes_ASC + + """avg(bitRateFifteenMinutes) descending""" + avg_bitRateFifteenMinutes_DESC + + """avg(bitRateFiveMinutes) ascending""" + avg_bitRateFiveMinutes_ASC + + """avg(bitRateFiveMinutes) descending""" + avg_bitRateFiveMinutes_DESC + + """avg(bitRateHour) ascending""" + avg_bitRateHour_ASC + + """avg(bitRateHour) descending""" + avg_bitRateHour_DESC + + """avg(bitRateMinute) ascending""" + avg_bitRateMinute_ASC + + """avg(bitRateMinute) descending""" + avg_bitRateMinute_DESC + + """avg(bitRateTenSeconds) ascending""" + avg_bitRateTenSeconds_ASC + + """avg(bitRateTenSeconds) descending""" + avg_bitRateTenSeconds_DESC + + """avg(bitRate) ascending""" + avg_bitRate_ASC + + """avg(bitRate) descending""" + avg_bitRate_DESC + + """avg(egressBitRateDay) ascending""" + avg_egressBitRateDay_ASC + + """avg(egressBitRateDay) descending""" + avg_egressBitRateDay_DESC + + """avg(egressBitRateFifteenMinutes) ascending""" + avg_egressBitRateFifteenMinutes_ASC + + """avg(egressBitRateFifteenMinutes) descending""" + avg_egressBitRateFifteenMinutes_DESC + + """avg(egressBitRateFiveMinutes) ascending""" + avg_egressBitRateFiveMinutes_ASC + + """avg(egressBitRateFiveMinutes) descending""" + avg_egressBitRateFiveMinutes_DESC + + """avg(egressBitRateHour) ascending""" + avg_egressBitRateHour_ASC + + """avg(egressBitRateHour) descending""" + avg_egressBitRateHour_DESC + + """avg(egressBitRateMinute) ascending""" + avg_egressBitRateMinute_ASC + + """avg(egressBitRateMinute) descending""" + avg_egressBitRateMinute_DESC + + """avg(egressBitRateTenSeconds) ascending""" + avg_egressBitRateTenSeconds_ASC + + """avg(egressBitRateTenSeconds) descending""" + avg_egressBitRateTenSeconds_DESC + + """avg(egressBitRate) ascending""" + avg_egressBitRate_ASC + + """avg(egressBitRate) descending""" + avg_egressBitRate_DESC + + """avg(sampleInterval) ascending""" + avg_sampleInterval_ASC + + """avg(sampleInterval) descending""" + avg_sampleInterval_DESC + + """connectionDuration ascending""" + connectionDuration_ASC + + """connectionDuration descending""" + connectionDuration_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetimeTenSeconds ascending""" + datetimeTenSeconds_ASC + + """datetimeTenSeconds descending""" + datetimeTenSeconds_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """destinationCountry ascending""" + destinationCountry_ASC + + """destinationCountry descending""" + destinationCountry_DESC + + """destinationIP ascending""" + destinationIP_ASC + + """destinationIP descending""" + destinationIP_DESC + + """destinationPort ascending""" + destinationPort_ASC + + """destinationPort descending""" + destinationPort_DESC + + """deviceID ascending""" + deviceID_ASC + + """deviceID descending""" + deviceID_DESC + + """deviceName ascending""" + deviceName_ASC + + """deviceName descending""" + deviceName_DESC + + """offRamp ascending""" + offRamp_ASC + + """offRamp descending""" + offRamp_DESC + + """onRamp ascending""" + onRamp_ASC + + """onRamp descending""" + onRamp_DESC + + """protocol ascending""" + protocol_ASC + + """protocol descending""" + protocol_DESC + + """sourceCountry ascending""" + sourceCountry_ASC + + """sourceCountry descending""" + sourceCountry_DESC + + """sourceIP ascending""" + sourceIP_ASC + + """sourceIP descending""" + sourceIP_DESC + + """sourcePort ascending""" + sourcePort_ASC + + """sourcePort descending""" + sourcePort_DESC + + """sum(bits) ascending""" + sum_bits_ASC + + """sum(bits) descending""" + sum_bits_DESC + + """sum(egressBits) ascending""" + sum_egressBits_ASC + + """sum(egressBits) descending""" + sum_egressBits_DESC + + """tcpHandshakeDuration ascending""" + tcpHandshakeDuration_ASC + + """tcpHandshakeDuration descending""" + tcpHandshakeDuration_DESC +} + +"""""" +type AccountCloudflareTunnelsAnalyticsAdaptiveGroupsSum { + """Sum of bits""" + bits: uint64! + + """Sum of egress bits""" + egressBits: uint64! +} + +"""""" +type AccountCloudflareTunnelsAnalyticsAdaptiveGroupsSumConfidence { + """Confidence interval for the corresponding point estimate""" + bits: Confidence! + + """Confidence interval for the corresponding point estimate""" + egressBits: Confidence! +} + +"""Metrics for Cloudchamber applications and deployments""" +type AccountContainersMetricsAdaptiveGroups { + """The average value of a metric per dimension""" + avg: AccountContainersMetricsAdaptiveGroupsAvg + + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountContainersMetricsAdaptiveGroupsConfidence! + + """Number of metrics received""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountContainersMetricsAdaptiveGroupsDimensions + + """Maximum value of a metric per dimension""" + max: AccountContainersMetricsAdaptiveGroupsMax + + """Quantiles of a metric per dimension""" + quantiles: AccountContainersMetricsAdaptiveGroupsQuantiles + + """The sum of values for a metric per dimension""" + sum: AccountContainersMetricsAdaptiveGroupsSum +} + +"""""" +type AccountContainersMetricsAdaptiveGroupsAvg { + """Average CPU load""" + cpuLoad: float64! + + """Average GPU memory usage""" + gpuMemory: float64! + + """Average memory usage""" + memory: float64! + + """Average RX bandwidth""" + rxBandwidth: float64! @deprecated(reason: "Replaced by rxBandwidthBps") + + """Average RX bandwidth in bps""" + rxBandwidthBps: float64! + + """Average TX bandwidth""" + txBandwidth: float64! @deprecated(reason: "Replaced by txBandwidthBps") + + """Average TX bandwidth in bps""" + txBandwidthBps: float64! +} + +"""""" +type AccountContainersMetricsAdaptiveGroupsConfidence { + """Number of metrics received, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! + + """ + The sum of values for a metric per dimension, with confidence intervals + """ + sum: AccountContainersMetricsAdaptiveGroupsSumConfidence +} + +"""""" +type AccountContainersMetricsAdaptiveGroupsDimensions { + """The application ID""" + applicationId: string! + + """The date the metric was received""" + date: Date! + + """ + The date and time the metric was received, truncated to fifteen minutes + """ + datetimeFifteenMinutes: Time! + + """The date and time the metric was received, truncated to five minutes""" + datetimeFiveMinutes: Time! + + """The date and time the metric was received, truncated to one hour""" + datetimeHour: Time! + + """The date and time the metric was received, truncated to one minute""" + datetimeMinute: Time! + + """The date and time the metric was received, truncated to six hours""" + datetimeSixHours: Time! + + """The deployment ID""" + deploymentId: string! + + """If set, this metric was emitted while assigned to a durable object""" + durableObjectId: string! + + """Location""" + location: string! + + """The placement ID""" + placementId: string! + + """Process type""" + procType: string! + + """Region""" + region: string! +} + +"""""" +input AccountContainersMetricsAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountContainersMetricsAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountContainersMetricsAdaptiveGroupsFilter_InputObject!] + + """""" + applicationId: string + + """""" + applicationId_geq: string + + """""" + applicationId_gt: string + + """""" + applicationId_in: [string!] + + """""" + applicationId_leq: string + + """""" + applicationId_like: string + + """""" + applicationId_lt: string + + """""" + applicationId_neq: string + + """""" + applicationId_notin: [string!] + + """""" + applicationId_notlike: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetimeSixHours: Time + + """""" + datetimeSixHours_geq: Time + + """""" + datetimeSixHours_gt: Time + + """""" + datetimeSixHours_in: [Time!] + + """""" + datetimeSixHours_leq: Time + + """""" + datetimeSixHours_lt: Time + + """""" + datetimeSixHours_neq: Time + + """""" + datetimeSixHours_notin: [Time!] + + """""" + deploymentId: string + + """""" + deploymentId_geq: string + + """""" + deploymentId_gt: string + + """""" + deploymentId_in: [string!] + + """""" + deploymentId_leq: string + + """""" + deploymentId_like: string + + """""" + deploymentId_lt: string + + """""" + deploymentId_neq: string + + """""" + deploymentId_notin: [string!] + + """""" + deploymentId_notlike: string + + """""" + durableObjectId: string + + """""" + durableObjectId_geq: string + + """""" + durableObjectId_gt: string + + """""" + durableObjectId_in: [string!] + + """""" + durableObjectId_leq: string + + """""" + durableObjectId_like: string + + """""" + durableObjectId_lt: string + + """""" + durableObjectId_neq: string + + """""" + durableObjectId_notin: [string!] + + """""" + durableObjectId_notlike: string + + """""" + location: string + + """""" + location_geq: string + + """""" + location_gt: string + + """""" + location_in: [string!] + + """""" + location_leq: string + + """""" + location_like: string + + """""" + location_lt: string + + """""" + location_neq: string + + """""" + location_notin: [string!] + + """""" + location_notlike: string + + """""" + placementId: string + + """""" + placementId_geq: string + + """""" + placementId_gt: string + + """""" + placementId_in: [string!] + + """""" + placementId_leq: string + + """""" + placementId_like: string + + """""" + placementId_lt: string + + """""" + placementId_neq: string + + """""" + placementId_notin: [string!] + + """""" + placementId_notlike: string + + """""" + procType: string + + """""" + procType_geq: string + + """""" + procType_gt: string + + """""" + procType_in: [string!] + + """""" + procType_leq: string + + """""" + procType_like: string + + """""" + procType_lt: string + + """""" + procType_neq: string + + """""" + procType_notin: [string!] + + """""" + procType_notlike: string + + """""" + region: string + + """""" + region_geq: string + + """""" + region_gt: string + + """""" + region_in: [string!] + + """""" + region_leq: string + + """""" + region_like: string + + """""" + region_lt: string + + """""" + region_neq: string + + """""" + region_notin: [string!] + + """""" + region_notlike: string +} + +"""""" +type AccountContainersMetricsAdaptiveGroupsMax { + """Maximum CPU load""" + cpuLoad: float64! + + """Total disk space available, in bytes""" + diskAvailable: uint64! + + """Disk usage, in bytes""" + diskUsage: uint64! + + """Disk usage as a percentage of total disk space""" + diskUsagePercentage: float64! + + """Maximum GPU memory usage""" + gpuMemory: float64! + + """Maximum memory usage""" + memory: float64! + + """Maximum RX bandwidth""" + rxBandwidth: float64! @deprecated(reason: "Replaced by rxBandwidthBps") + + """Maximum RX bandwidth""" + rxBandwidthBps: float64! + + """Total bytes received""" + rxBytes: uint64! @deprecated(reason: "Replaced by sum { rxBytes }") + + """Maximum TX bandwidth""" + txBandwidth: float64! @deprecated(reason: "Replaced by txBandwidthBps") + + """Maximum TX bandwidth""" + txBandwidthBps: float64! + + """Total bytes transmitted""" + txBytes: uint64! @deprecated(reason: "Replaced by sum { txBytes }") +} + +"""""" +enum AccountContainersMetricsAdaptiveGroupsOrderBy { + """applicationId ascending""" + applicationId_ASC + + """applicationId descending""" + applicationId_DESC + + """avg(cpuLoad) ascending""" + avg_cpuLoad_ASC + + """avg(cpuLoad) descending""" + avg_cpuLoad_DESC + + """avg(gpuMemory) ascending""" + avg_gpuMemory_ASC + + """avg(gpuMemory) descending""" + avg_gpuMemory_DESC + + """avg(memory) ascending""" + avg_memory_ASC + + """avg(memory) descending""" + avg_memory_DESC + + """avg(rxBandwidthBps) ascending""" + avg_rxBandwidthBps_ASC + + """avg(rxBandwidthBps) descending""" + avg_rxBandwidthBps_DESC + + """avg(rxBandwidth) ascending""" + avg_rxBandwidth_ASC + + """avg(rxBandwidth) descending""" + avg_rxBandwidth_DESC + + """avg(txBandwidthBps) ascending""" + avg_txBandwidthBps_ASC + + """avg(txBandwidthBps) descending""" + avg_txBandwidthBps_DESC + + """avg(txBandwidth) ascending""" + avg_txBandwidth_ASC + + """avg(txBandwidth) descending""" + avg_txBandwidth_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetimeSixHours ascending""" + datetimeSixHours_ASC + + """datetimeSixHours descending""" + datetimeSixHours_DESC + + """deploymentId ascending""" + deploymentId_ASC + + """deploymentId descending""" + deploymentId_DESC + + """durableObjectId ascending""" + durableObjectId_ASC + + """durableObjectId descending""" + durableObjectId_DESC + + """location ascending""" + location_ASC + + """location descending""" + location_DESC + + """max(cpuLoad) ascending""" + max_cpuLoad_ASC + + """max(cpuLoad) descending""" + max_cpuLoad_DESC + + """max(diskAvailable) ascending""" + max_diskAvailable_ASC + + """max(diskAvailable) descending""" + max_diskAvailable_DESC + + """max(diskUsagePercentage) ascending""" + max_diskUsagePercentage_ASC + + """max(diskUsagePercentage) descending""" + max_diskUsagePercentage_DESC + + """max(diskUsage) ascending""" + max_diskUsage_ASC + + """max(diskUsage) descending""" + max_diskUsage_DESC + + """max(gpuMemory) ascending""" + max_gpuMemory_ASC + + """max(gpuMemory) descending""" + max_gpuMemory_DESC + + """max(memory) ascending""" + max_memory_ASC + + """max(memory) descending""" + max_memory_DESC + + """max(rxBandwidthBps) ascending""" + max_rxBandwidthBps_ASC + + """max(rxBandwidthBps) descending""" + max_rxBandwidthBps_DESC + + """max(rxBandwidth) ascending""" + max_rxBandwidth_ASC + + """max(rxBandwidth) descending""" + max_rxBandwidth_DESC + + """max(rxBytes) ascending""" + max_rxBytes_ASC + + """max(rxBytes) descending""" + max_rxBytes_DESC + + """max(txBandwidthBps) ascending""" + max_txBandwidthBps_ASC + + """max(txBandwidthBps) descending""" + max_txBandwidthBps_DESC + + """max(txBandwidth) ascending""" + max_txBandwidth_ASC + + """max(txBandwidth) descending""" + max_txBandwidth_DESC + + """max(txBytes) ascending""" + max_txBytes_ASC + + """max(txBytes) descending""" + max_txBytes_DESC + + """placementId ascending""" + placementId_ASC + + """placementId descending""" + placementId_DESC + + """procType ascending""" + procType_ASC + + """procType descending""" + procType_DESC + + """quantiles(cpuLoadP50) ascending""" + quantiles_cpuLoadP50_ASC + + """quantiles(cpuLoadP50) descending""" + quantiles_cpuLoadP50_DESC + + """quantiles(cpuLoadP90) ascending""" + quantiles_cpuLoadP90_ASC + + """quantiles(cpuLoadP90) descending""" + quantiles_cpuLoadP90_DESC + + """quantiles(cpuLoadP99) ascending""" + quantiles_cpuLoadP99_ASC + + """quantiles(cpuLoadP99) descending""" + quantiles_cpuLoadP99_DESC + + """quantiles(diskUsageP50) ascending""" + quantiles_diskUsageP50_ASC + + """quantiles(diskUsageP50) descending""" + quantiles_diskUsageP50_DESC + + """quantiles(diskUsageP90) ascending""" + quantiles_diskUsageP90_ASC + + """quantiles(diskUsageP90) descending""" + quantiles_diskUsageP90_DESC + + """quantiles(diskUsageP99) ascending""" + quantiles_diskUsageP99_ASC + + """quantiles(diskUsageP99) descending""" + quantiles_diskUsageP99_DESC + + """quantiles(diskUsagePercentageP50) ascending""" + quantiles_diskUsagePercentageP50_ASC + + """quantiles(diskUsagePercentageP50) descending""" + quantiles_diskUsagePercentageP50_DESC + + """quantiles(diskUsagePercentageP90) ascending""" + quantiles_diskUsagePercentageP90_ASC + + """quantiles(diskUsagePercentageP90) descending""" + quantiles_diskUsagePercentageP90_DESC + + """quantiles(diskUsagePercentageP99) ascending""" + quantiles_diskUsagePercentageP99_ASC + + """quantiles(diskUsagePercentageP99) descending""" + quantiles_diskUsagePercentageP99_DESC + + """quantiles(gpuMemoryP50) ascending""" + quantiles_gpuMemoryP50_ASC + + """quantiles(gpuMemoryP50) descending""" + quantiles_gpuMemoryP50_DESC + + """quantiles(gpuMemoryP90) ascending""" + quantiles_gpuMemoryP90_ASC + + """quantiles(gpuMemoryP90) descending""" + quantiles_gpuMemoryP90_DESC + + """quantiles(gpuMemoryP99) ascending""" + quantiles_gpuMemoryP99_ASC + + """quantiles(gpuMemoryP99) descending""" + quantiles_gpuMemoryP99_DESC + + """quantiles(memoryP50) ascending""" + quantiles_memoryP50_ASC + + """quantiles(memoryP50) descending""" + quantiles_memoryP50_DESC + + """quantiles(memoryP90) ascending""" + quantiles_memoryP90_ASC + + """quantiles(memoryP90) descending""" + quantiles_memoryP90_DESC + + """quantiles(memoryP99) ascending""" + quantiles_memoryP99_ASC + + """quantiles(memoryP99) descending""" + quantiles_memoryP99_DESC + + """quantiles(rxBandwidthBpsP50) ascending""" + quantiles_rxBandwidthBpsP50_ASC + + """quantiles(rxBandwidthBpsP50) descending""" + quantiles_rxBandwidthBpsP50_DESC + + """quantiles(rxBandwidthBpsP90) ascending""" + quantiles_rxBandwidthBpsP90_ASC + + """quantiles(rxBandwidthBpsP90) descending""" + quantiles_rxBandwidthBpsP90_DESC + + """quantiles(rxBandwidthBpsP99) ascending""" + quantiles_rxBandwidthBpsP99_ASC + + """quantiles(rxBandwidthBpsP99) descending""" + quantiles_rxBandwidthBpsP99_DESC + + """quantiles(rxBandwidthP50) ascending""" + quantiles_rxBandwidthP50_ASC + + """quantiles(rxBandwidthP50) descending""" + quantiles_rxBandwidthP50_DESC + + """quantiles(rxBandwidthP90) ascending""" + quantiles_rxBandwidthP90_ASC + + """quantiles(rxBandwidthP90) descending""" + quantiles_rxBandwidthP90_DESC + + """quantiles(rxBandwidthP99) ascending""" + quantiles_rxBandwidthP99_ASC + + """quantiles(rxBandwidthP99) descending""" + quantiles_rxBandwidthP99_DESC + + """quantiles(txBandwidthBpsP50) ascending""" + quantiles_txBandwidthBpsP50_ASC + + """quantiles(txBandwidthBpsP50) descending""" + quantiles_txBandwidthBpsP50_DESC + + """quantiles(txBandwidthBpsP90) ascending""" + quantiles_txBandwidthBpsP90_ASC + + """quantiles(txBandwidthBpsP90) descending""" + quantiles_txBandwidthBpsP90_DESC + + """quantiles(txBandwidthBpsP99) ascending""" + quantiles_txBandwidthBpsP99_ASC + + """quantiles(txBandwidthBpsP99) descending""" + quantiles_txBandwidthBpsP99_DESC + + """quantiles(txBandwidthP50) ascending""" + quantiles_txBandwidthP50_ASC + + """quantiles(txBandwidthP50) descending""" + quantiles_txBandwidthP50_DESC + + """quantiles(txBandwidthP90) ascending""" + quantiles_txBandwidthP90_ASC + + """quantiles(txBandwidthP90) descending""" + quantiles_txBandwidthP90_DESC + + """quantiles(txBandwidthP99) ascending""" + quantiles_txBandwidthP99_ASC + + """quantiles(txBandwidthP99) descending""" + quantiles_txBandwidthP99_DESC + + """region ascending""" + region_ASC + + """region descending""" + region_DESC + + """sum(rxBytes) ascending""" + sum_rxBytes_ASC + + """sum(rxBytes) descending""" + sum_rxBytes_DESC + + """sum(txBytes) ascending""" + sum_txBytes_ASC + + """sum(txBytes) descending""" + sum_txBytes_DESC +} + +"""""" +type AccountContainersMetricsAdaptiveGroupsQuantiles { + """CPU load (50th percentile)""" + cpuLoadP50: float64! + + """CPU load (90th percentile)""" + cpuLoadP90: float64! + + """CPU load (99th percentile)""" + cpuLoadP99: float64! + + """Disk usage in bytes (50th percentile)""" + diskUsageP50: float64! + + """Disk usage in bytes (90th percentile)""" + diskUsageP90: float64! + + """Disk usage in bytes (99th percentile)""" + diskUsageP99: float64! + + """Disk usage as a percentage of total disk space (50th percentile)""" + diskUsagePercentageP50: float64! + + """Disk usage as a percentage of total disk space (90th percentile)""" + diskUsagePercentageP90: float64! + + """Disk usage as a percentage of total disk space (99th percentile)""" + diskUsagePercentageP99: float64! + + """GPU memory usage (50th percentile)""" + gpuMemoryP50: float64! + + """GPU memory usage (90th percentile)""" + gpuMemoryP90: float64! + + """GPU memory usage (99th percentile)""" + gpuMemoryP99: float64! + + """Memory usage (50th percentile)""" + memoryP50: float64! + + """Memory usage (90th percentile)""" + memoryP90: float64! + + """Memory usage (99th percentile)""" + memoryP99: float64! + + """RX bandwidth (50th percentile)""" + rxBandwidthBpsP50: float64! + + """RX bandwidth (90th percentile)""" + rxBandwidthBpsP90: float64! + + """RX bandwidth (99th percentile)""" + rxBandwidthBpsP99: float64! + + """RX bandwidth (50th percentile)""" + rxBandwidthP50: float64! @deprecated(reason: "Replaced by rxBandwidthBpsP50") + + """RX bandwidth (90th percentile)""" + rxBandwidthP90: float64! @deprecated(reason: "Replaced by rxBandwidthBpsP90") + + """RX bandwidth (99th percentile)""" + rxBandwidthP99: float64! @deprecated(reason: "Replaced by rxBandwidthBpsP99") + + """TX bandwidth (50th percentile)""" + txBandwidthBpsP50: float64! + + """TX bandwidth (90th percentile)""" + txBandwidthBpsP90: float64! + + """TX bandwidth (99th percentile)""" + txBandwidthBpsP99: float64! + + """TX bandwidth (50th percentile)""" + txBandwidthP50: float64! @deprecated(reason: "Replaced by txBandwidthBpsP50") + + """TX bandwidth (90th percentile)""" + txBandwidthP90: float64! @deprecated(reason: "Replaced by txBandwidthBpsP90") + + """TX bandwidth (99th percentile)""" + txBandwidthP99: float64! @deprecated(reason: "Replaced by txBandwidthBpsP99") +} + +"""""" +type AccountContainersMetricsAdaptiveGroupsSum { + """Sum of bytes received""" + rxBytes: uint64! + + """Sum of bytes transmitted""" + txBytes: uint64! +} + +"""""" +type AccountContainersMetricsAdaptiveGroupsSumConfidence { + """Confidence interval for the corresponding point estimate""" + rxBytes: Confidence! + + """Confidence interval for the corresponding point estimate""" + txBytes: Confidence! +} + +"""Beta. Aggregated D1 analytics with adaptive sampling""" +type AccountD1AnalyticsAdaptiveGroups { + """The average value for a metric per dimension""" + avg: AccountD1AnalyticsAdaptiveGroupsAvg + + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountD1AnalyticsAdaptiveGroupsConfidence! + + """Number of requests to D1 processed""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountD1AnalyticsAdaptiveGroupsDimensions + + """Quantiles of a metric per dimension""" + quantiles: AccountD1AnalyticsAdaptiveGroupsQuantiles + + """The sum of values for a metric per dimension""" + sum: AccountD1AnalyticsAdaptiveGroupsSum +} + +"""""" +type AccountD1AnalyticsAdaptiveGroupsAvg { + """ + The total number of bytes in the response, including all returned rows and metadata (average/mean). + """ + queryBatchResponseBytes: float64! + + """Query batch response time in milliseconds (average/mean).""" + queryBatchTimeMs: float64! + + """The average value used for sample interval""" + sampleInterval: float64! +} + +"""""" +type AccountD1AnalyticsAdaptiveGroupsConfidence { + """Number of requests to D1 processed, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! + + """ + The sum of values for a metric per dimension, with confidence intervals + """ + sum: AccountD1AnalyticsAdaptiveGroupsSumConfidence +} + +"""""" +type AccountD1AnalyticsAdaptiveGroupsDimensions { + """The UUID of a D1 database""" + databaseId: string! + + """ + The role of the D1 database that served the request. One of [primary, replica] + """ + databaseRole: string! + + """The date the D1 request was received""" + date: Date! + + """ + The date and time the D1 request was received truncated to fifteen minutes + """ + datetimeFifteenMinutes: Time! + + """ + The date and time the D1 request was received truncated to five minutes + """ + datetimeFiveMinutes: Time! + + """The date and time the D1 request was received truncated to the hour""" + datetimeHour: Time! + + """The date and time the D1 request was received truncated to the minute""" + datetimeMinute: Time! + + """ + The date and time the D1 request was received truncated to start of six hour window + """ + datetimeSixHours: Time! + + """ + A consistent identifier of the D1 database instance (whether primary or replica) that served the request. + """ + servedByInstance: string! + + """ + The region of the D1 database that served the request. One of [WNAM, ENAM, WEUR, EEUR, APAC, OC] + """ + servedByRegion: string! +} + +"""""" +input AccountD1AnalyticsAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountD1AnalyticsAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountD1AnalyticsAdaptiveGroupsFilter_InputObject!] + + """""" + databaseId: string + + """""" + databaseId_geq: string + + """""" + databaseId_gt: string + + """""" + databaseId_in: [string!] + + """""" + databaseId_leq: string + + """""" + databaseId_like: string + + """""" + databaseId_lt: string + + """""" + databaseId_neq: string + + """""" + databaseId_notin: [string!] + + """""" + databaseId_notlike: string + + """""" + databaseRole: string + + """""" + databaseRole_geq: string + + """""" + databaseRole_gt: string + + """""" + databaseRole_in: [string!] + + """""" + databaseRole_leq: string + + """""" + databaseRole_like: string + + """""" + databaseRole_lt: string + + """""" + databaseRole_neq: string + + """""" + databaseRole_notin: [string!] + + """""" + databaseRole_notlike: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetimeSixHours: Time + + """""" + datetimeSixHours_geq: Time + + """""" + datetimeSixHours_gt: Time + + """""" + datetimeSixHours_in: [Time!] + + """""" + datetimeSixHours_leq: Time + + """""" + datetimeSixHours_lt: Time + + """""" + datetimeSixHours_neq: Time + + """""" + datetimeSixHours_notin: [Time!] + + """""" + servedByInstance: string + + """""" + servedByInstance_geq: string + + """""" + servedByInstance_gt: string + + """""" + servedByInstance_in: [string!] + + """""" + servedByInstance_leq: string + + """""" + servedByInstance_like: string + + """""" + servedByInstance_lt: string + + """""" + servedByInstance_neq: string + + """""" + servedByInstance_notin: [string!] + + """""" + servedByInstance_notlike: string + + """""" + servedByRegion: string + + """""" + servedByRegion_geq: string + + """""" + servedByRegion_gt: string + + """""" + servedByRegion_in: [string!] + + """""" + servedByRegion_leq: string + + """""" + servedByRegion_like: string + + """""" + servedByRegion_lt: string + + """""" + servedByRegion_neq: string + + """""" + servedByRegion_notin: [string!] + + """""" + servedByRegion_notlike: string +} + +"""""" +enum AccountD1AnalyticsAdaptiveGroupsOrderBy { + """avg(queryBatchResponseBytes) ascending""" + avg_queryBatchResponseBytes_ASC + + """avg(queryBatchResponseBytes) descending""" + avg_queryBatchResponseBytes_DESC + + """avg(queryBatchTimeMs) ascending""" + avg_queryBatchTimeMs_ASC + + """avg(queryBatchTimeMs) descending""" + avg_queryBatchTimeMs_DESC + + """avg(sampleInterval) ascending""" + avg_sampleInterval_ASC + + """avg(sampleInterval) descending""" + avg_sampleInterval_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """databaseId ascending""" + databaseId_ASC + + """databaseId descending""" + databaseId_DESC + + """databaseRole ascending""" + databaseRole_ASC + + """databaseRole descending""" + databaseRole_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetimeSixHours ascending""" + datetimeSixHours_ASC + + """datetimeSixHours descending""" + datetimeSixHours_DESC + + """quantiles(queryBatchResponseBytesP50) ascending""" + quantiles_queryBatchResponseBytesP50_ASC + + """quantiles(queryBatchResponseBytesP50) descending""" + quantiles_queryBatchResponseBytesP50_DESC + + """quantiles(queryBatchResponseBytesP90) ascending""" + quantiles_queryBatchResponseBytesP90_ASC + + """quantiles(queryBatchResponseBytesP90) descending""" + quantiles_queryBatchResponseBytesP90_DESC + + """quantiles(queryBatchTimeMsP50) ascending""" + quantiles_queryBatchTimeMsP50_ASC + + """quantiles(queryBatchTimeMsP50) descending""" + quantiles_queryBatchTimeMsP50_DESC + + """quantiles(queryBatchTimeMsP90) ascending""" + quantiles_queryBatchTimeMsP90_ASC + + """quantiles(queryBatchTimeMsP90) descending""" + quantiles_queryBatchTimeMsP90_DESC + + """servedByInstance ascending""" + servedByInstance_ASC + + """servedByInstance descending""" + servedByInstance_DESC + + """servedByRegion ascending""" + servedByRegion_ASC + + """servedByRegion descending""" + servedByRegion_DESC + + """sum(queryBatchResponseBytes) ascending""" + sum_queryBatchResponseBytes_ASC + + """sum(queryBatchResponseBytes) descending""" + sum_queryBatchResponseBytes_DESC + + """sum(readQueries) ascending""" + sum_readQueries_ASC + + """sum(readQueries) descending""" + sum_readQueries_DESC + + """sum(rowsRead) ascending""" + sum_rowsRead_ASC + + """sum(rowsRead) descending""" + sum_rowsRead_DESC + + """sum(rowsWritten) ascending""" + sum_rowsWritten_ASC + + """sum(rowsWritten) descending""" + sum_rowsWritten_DESC + + """sum(writeQueries) ascending""" + sum_writeQueries_ASC + + """sum(writeQueries) descending""" + sum_writeQueries_DESC +} + +"""""" +type AccountD1AnalyticsAdaptiveGroupsQuantiles { + """ + The total number of bytes in the response, including all returned rows and metadata (50th percentile). + """ + queryBatchResponseBytesP50: float64! + + """ + The total number of bytes in the response, including all returned rows and metadata (90th percentile). + """ + queryBatchResponseBytesP90: float64! + + """Query batch response time in milliseconds (50th percentile).""" + queryBatchTimeMsP50: float64! + + """Query batch response time in milliseconds (90th percentile).""" + queryBatchTimeMsP90: float64! +} + +"""""" +type AccountD1AnalyticsAdaptiveGroupsSum { + """ + The total number of bytes in the response, including all returned rows and metadata. + """ + queryBatchResponseBytes: float64! + + """The number of read queries.""" + readQueries: uint64! + + """The number of rows your queries read.""" + rowsRead: uint64! + + """The number of rows your queries wrote.""" + rowsWritten: uint64! + + """The number of write queries.""" + writeQueries: uint64! +} + +"""""" +type AccountD1AnalyticsAdaptiveGroupsSumConfidence { + """Confidence interval for the corresponding point estimate""" + queryBatchResponseBytes: Confidence! + + """Confidence interval for the corresponding point estimate""" + readQueries: Confidence! + + """Confidence interval for the corresponding point estimate""" + rowsRead: Confidence! + + """Confidence interval for the corresponding point estimate""" + rowsWritten: Confidence! + + """Confidence interval for the corresponding point estimate""" + writeQueries: Confidence! +} + +"""Beta. D1 query metrics with adaptive sampling""" +type AccountD1QueriesAdaptiveGroups { + """The average value for a metric per dimension""" + avg: AccountD1QueriesAdaptiveGroupsAvg + + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountD1QueriesAdaptiveGroupsConfidence! + + """Number of D1 queries processed""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountD1QueriesAdaptiveGroupsDimensions + + """Quantiles of a metric per dimension""" + quantiles: AccountD1QueriesAdaptiveGroupsQuantiles + + """The sum of values for a metric per dimension""" + sum: AccountD1QueriesAdaptiveGroupsSum +} + +"""""" +type AccountD1QueriesAdaptiveGroupsAvg { + """ + The average duration queries in D1 took, observed over the queried time period. + """ + queryDurationMs: float64! + + """ + The average number of rows scanned, observed over the queried time period. + """ + rowsRead: uint64! + + """ + The average number of rows returned, observed over the queried time period. + """ + rowsReturned: uint64! + + """ + The average number of rows written, observed over the queried time period. + """ + rowsWritten: uint64! + + """The average value used for sample interval""" + sampleInterval: float64! +} + +"""""" +type AccountD1QueriesAdaptiveGroupsConfidence { + """Number of D1 queries processed, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! + + """ + The sum of values for a metric per dimension, with confidence intervals + """ + sum: AccountD1QueriesAdaptiveGroupsSumConfidence +} + +"""""" +type AccountD1QueriesAdaptiveGroupsDimensions { + """The UUID of a D1 database""" + databaseId: string! + + """ + The role of the D1 database that served the request. One of [primary, replica] + """ + databaseRole: string! + + """D1 query sample timestamp""" + date: Date! + + """D1 query sample timestamp, truncated to fifteen minutes""" + datetimeFifteenMinutes: Time! + + """D1 query sample timestamp, truncated to five minutes""" + datetimeFiveMinutes: Time! + + """D1 query sample timestamp, truncated to the hour""" + datetimeHour: Time! + + """D1 query sample timestamp, truncated to the minute""" + datetimeMinute: Time! + + """D1 query sample timestamp, truncated to start of six hour window""" + datetimeSixHours: Time! + + """The error D1 returned (if any) after attempting to run a query.""" + error: string! + + """ + The SQL query that ran on a D1 database, with parameterized values replaced with placeholders. + """ + query: string! + + """ + A consistent identifier of the D1 database instance (whether primary or replica) that served the request. + """ + servedByInstance: string! + + """ + The region of the D1 database that served the request. One of [WNAM, ENAM, WEUR, EEUR, APAC, OC] + """ + servedByRegion: string! +} + +"""""" +input AccountD1QueriesAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountD1QueriesAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountD1QueriesAdaptiveGroupsFilter_InputObject!] + + """""" + databaseId: string + + """""" + databaseId_geq: string + + """""" + databaseId_gt: string + + """""" + databaseId_in: [string!] + + """""" + databaseId_leq: string + + """""" + databaseId_like: string + + """""" + databaseId_lt: string + + """""" + databaseId_neq: string + + """""" + databaseId_notin: [string!] + + """""" + databaseId_notlike: string + + """""" + databaseRole: string + + """""" + databaseRole_geq: string + + """""" + databaseRole_gt: string + + """""" + databaseRole_in: [string!] + + """""" + databaseRole_leq: string + + """""" + databaseRole_like: string + + """""" + databaseRole_lt: string + + """""" + databaseRole_neq: string + + """""" + databaseRole_notin: [string!] + + """""" + databaseRole_notlike: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetimeSixHours: Time + + """""" + datetimeSixHours_geq: Time + + """""" + datetimeSixHours_gt: Time + + """""" + datetimeSixHours_in: [Time!] + + """""" + datetimeSixHours_leq: Time + + """""" + datetimeSixHours_lt: Time + + """""" + datetimeSixHours_neq: Time + + """""" + datetimeSixHours_notin: [Time!] + + """""" + error: string + + """""" + error_geq: string + + """""" + error_gt: string + + """""" + error_in: [string!] + + """""" + error_leq: string + + """""" + error_like: string + + """""" + error_lt: string + + """""" + error_neq: string + + """""" + error_notin: [string!] + + """""" + error_notlike: string + + """""" + query: string + + """""" + query_geq: string + + """""" + query_gt: string + + """""" + query_in: [string!] + + """""" + query_leq: string + + """""" + query_like: string + + """""" + query_lt: string + + """""" + query_neq: string + + """""" + query_notin: [string!] + + """""" + query_notlike: string + + """""" + servedByInstance: string + + """""" + servedByInstance_geq: string + + """""" + servedByInstance_gt: string + + """""" + servedByInstance_in: [string!] + + """""" + servedByInstance_leq: string + + """""" + servedByInstance_like: string + + """""" + servedByInstance_lt: string + + """""" + servedByInstance_neq: string + + """""" + servedByInstance_notin: [string!] + + """""" + servedByInstance_notlike: string + + """""" + servedByRegion: string + + """""" + servedByRegion_geq: string + + """""" + servedByRegion_gt: string + + """""" + servedByRegion_in: [string!] + + """""" + servedByRegion_leq: string + + """""" + servedByRegion_like: string + + """""" + servedByRegion_lt: string + + """""" + servedByRegion_neq: string + + """""" + servedByRegion_notin: [string!] + + """""" + servedByRegion_notlike: string +} + +"""""" +enum AccountD1QueriesAdaptiveGroupsOrderBy { + """avg(queryDurationMs) ascending""" + avg_queryDurationMs_ASC + + """avg(queryDurationMs) descending""" + avg_queryDurationMs_DESC + + """avg(rowsRead) ascending""" + avg_rowsRead_ASC + + """avg(rowsRead) descending""" + avg_rowsRead_DESC + + """avg(rowsReturned) ascending""" + avg_rowsReturned_ASC + + """avg(rowsReturned) descending""" + avg_rowsReturned_DESC + + """avg(rowsWritten) ascending""" + avg_rowsWritten_ASC + + """avg(rowsWritten) descending""" + avg_rowsWritten_DESC + + """avg(sampleInterval) ascending""" + avg_sampleInterval_ASC + + """avg(sampleInterval) descending""" + avg_sampleInterval_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """databaseId ascending""" + databaseId_ASC + + """databaseId descending""" + databaseId_DESC + + """databaseRole ascending""" + databaseRole_ASC + + """databaseRole descending""" + databaseRole_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetimeSixHours ascending""" + datetimeSixHours_ASC + + """datetimeSixHours descending""" + datetimeSixHours_DESC + + """error ascending""" + error_ASC + + """error descending""" + error_DESC + + """quantiles(queryDurationMsP50) ascending""" + quantiles_queryDurationMsP50_ASC + + """quantiles(queryDurationMsP50) descending""" + quantiles_queryDurationMsP50_DESC + + """quantiles(queryDurationMsP95) ascending""" + quantiles_queryDurationMsP95_ASC + + """quantiles(queryDurationMsP95) descending""" + quantiles_queryDurationMsP95_DESC + + """quantiles(queryDurationMsP99) ascending""" + quantiles_queryDurationMsP99_ASC + + """quantiles(queryDurationMsP99) descending""" + quantiles_queryDurationMsP99_DESC + + """query ascending""" + query_ASC + + """query descending""" + query_DESC + + """servedByInstance ascending""" + servedByInstance_ASC + + """servedByInstance descending""" + servedByInstance_DESC + + """servedByRegion ascending""" + servedByRegion_ASC + + """servedByRegion descending""" + servedByRegion_DESC + + """sum(queryDurationMs) ascending""" + sum_queryDurationMs_ASC + + """sum(queryDurationMs) descending""" + sum_queryDurationMs_DESC + + """sum(rowsRead) ascending""" + sum_rowsRead_ASC + + """sum(rowsRead) descending""" + sum_rowsRead_DESC + + """sum(rowsReturned) ascending""" + sum_rowsReturned_ASC + + """sum(rowsReturned) descending""" + sum_rowsReturned_DESC + + """sum(rowsWritten) ascending""" + sum_rowsWritten_ASC + + """sum(rowsWritten) descending""" + sum_rowsWritten_DESC +} + +"""""" +type AccountD1QueriesAdaptiveGroupsQuantiles { + """50th percentile Query Duration (milliseconds)""" + queryDurationMsP50: float64! + + """95th percentile Query Duration (milliseconds)""" + queryDurationMsP95: float64! + + """99th percentile Query Duration (milliseconds)""" + queryDurationMsP99: float64! +} + +"""""" +type AccountD1QueriesAdaptiveGroupsSum { + """ + The total duration queries in D1 took, observed over the queried time period. + """ + queryDurationMs: float64! + + """ + The total number of rows scanned, observed over the queried time period. + """ + rowsRead: uint64! + + """ + The total number of rows returned, observed over the queried time period. + """ + rowsReturned: uint64! + + """ + The total number of rows written, observed over the queried time period. + """ + rowsWritten: uint64! +} + +"""""" +type AccountD1QueriesAdaptiveGroupsSumConfidence { + """Confidence interval for the corresponding point estimate""" + queryDurationMs: Confidence! + + """Confidence interval for the corresponding point estimate""" + rowsRead: Confidence! + + """Confidence interval for the corresponding point estimate""" + rowsReturned: Confidence! + + """Confidence interval for the corresponding point estimate""" + rowsWritten: Confidence! +} + +"""Beta. D1 storage with adaptive sampling""" +type AccountD1StorageAdaptiveGroups { + """List of dimensions to group by""" + dimensions: AccountD1StorageAdaptiveGroupsDimensions + + """The max of values for a metric per dimension""" + max: AccountD1StorageAdaptiveGroupsMax +} + +"""""" +type AccountD1StorageAdaptiveGroupsDimensions { + """The UUID of a D1 database""" + databaseId: string! + + """D1 storage sample timestamp""" + date: Date! + + """D1 storage sample timestamp, truncated to fifteen minutes""" + datetimeFifteenMinutes: Time! + + """D1 storage sample timestamp, truncated to five minutes""" + datetimeFiveMinutes: Time! + + """D1 storage sample timestamp, truncated to the hour""" + datetimeHour: Time! + + """D1 storage sample timestamp, truncated to the minute""" + datetimeMinute: Time! + + """D1 storage sample timestamp, truncated to start of six hour window""" + datetimeSixHours: Time! +} + +"""""" +input AccountD1StorageAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountD1StorageAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountD1StorageAdaptiveGroupsFilter_InputObject!] + + """""" + databaseId: string + + """""" + databaseId_geq: string + + """""" + databaseId_gt: string + + """""" + databaseId_in: [string!] + + """""" + databaseId_leq: string + + """""" + databaseId_like: string + + """""" + databaseId_lt: string + + """""" + databaseId_neq: string + + """""" + databaseId_notin: [string!] + + """""" + databaseId_notlike: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetimeSixHours: Time + + """""" + datetimeSixHours_geq: Time + + """""" + datetimeSixHours_gt: Time + + """""" + datetimeSixHours_in: [Time!] + + """""" + datetimeSixHours_leq: Time + + """""" + datetimeSixHours_lt: Time + + """""" + datetimeSixHours_neq: Time + + """""" + datetimeSixHours_notin: [Time!] +} + +"""""" +type AccountD1StorageAdaptiveGroupsMax { + """ + The maximum size of the database (measured in bytes) observed over the queried time period. + """ + databaseSizeBytes: uint64! +} + +"""""" +enum AccountD1StorageAdaptiveGroupsOrderBy { + """databaseId ascending""" + databaseId_ASC + + """databaseId descending""" + databaseId_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetimeSixHours ascending""" + datetimeSixHours_ASC + + """datetimeSixHours descending""" + datetimeSixHours_DESC + + """max(databaseSizeBytes) ascending""" + max_databaseSizeBytes_ASC + + """max(databaseSizeBytes) descending""" + max_databaseSizeBytes_DESC +} + +"""Analytics data for DNS queries""" +type AccountDnsAnalyticsAdaptive { + """IATA airport code of the data center that processed the query""" + coloName: string! + + """Date on which the query was received""" + date: Date! + + """Time at which the query was received""" + datetime: Time! + + """Cloudflare edge IP address that the query was received at""" + destinationIP: string! + + """Internet Protocol version over which the query was received""" + ipVersion: uint8! + + """Transport protocol over which the query was received""" + protocol: string! + + """DNS query name without trailing dot""" + queryName: string! + + """Size of the DNS query in bytes""" + querySize: uint16! + + """DNS query type""" + queryType: string! + + """Whether the DNS response was served from cache""" + responseCached: uint8! + + """DNS response code""" + responseCode: string! + + """Size of the DNS response in bytes""" + responseSize: uint16! + + """Whether a stale DNS response was served from cache""" + responseStale: uint8! + + """ABR sample interval""" + sampleInterval: uint32! + + """ + IP address of the client that sent the query (usually this is the resolver's IP address) + """ + sourceIP: string! + + """Upstream server that the query was forwarded to""" + upstreamIP: string! + + """Zone query attributed to""" + zoneTag: string! +} + +"""""" +input AccountDnsAnalyticsAdaptiveFilter_InputObject { + """""" + AND: [AccountDnsAnalyticsAdaptiveFilter_InputObject!] + + """""" + OR: [AccountDnsAnalyticsAdaptiveFilter_InputObject!] + + """""" + coloName: string + + """""" + coloName_geq: string + + """""" + coloName_gt: string + + """""" + coloName_in: [string!] + + """""" + coloName_leq: string + + """""" + coloName_like: string + + """""" + coloName_lt: string + + """""" + coloName_neq: string + + """""" + coloName_notin: [string!] + + """""" + coloName_notlike: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + destinationIP: string + + """""" + destinationIP_geq: string + + """""" + destinationIP_gt: string + + """""" + destinationIP_in: [string!] + + """""" + destinationIP_leq: string + + """""" + destinationIP_like: string + + """""" + destinationIP_lt: string + + """""" + destinationIP_neq: string + + """""" + destinationIP_notin: [string!] + + """""" + destinationIP_notlike: string + + """""" + ipVersion: uint8 + + """""" + ipVersion_geq: uint8 + + """""" + ipVersion_gt: uint8 + + """""" + ipVersion_in: bytes + + """""" + ipVersion_leq: uint8 + + """""" + ipVersion_lt: uint8 + + """""" + ipVersion_neq: uint8 + + """""" + ipVersion_notin: bytes + + """""" + protocol: string + + """""" + protocol_geq: string + + """""" + protocol_gt: string + + """""" + protocol_in: [string!] + + """""" + protocol_leq: string + + """""" + protocol_like: string + + """""" + protocol_lt: string + + """""" + protocol_neq: string + + """""" + protocol_notin: [string!] + + """""" + protocol_notlike: string + + """""" + queryName: string + + """""" + queryName_geq: string + + """""" + queryName_gt: string + + """""" + queryName_in: [string!] + + """""" + queryName_leq: string + + """""" + queryName_like: string + + """""" + queryName_lt: string + + """""" + queryName_neq: string + + """""" + queryName_notin: [string!] + + """""" + queryName_notlike: string + + """""" + querySize: uint16 + + """""" + querySize_geq: uint16 + + """""" + querySize_gt: uint16 + + """""" + querySize_in: [uint16!] + + """""" + querySize_leq: uint16 + + """""" + querySize_lt: uint16 + + """""" + querySize_neq: uint16 + + """""" + querySize_notin: [uint16!] + + """""" + queryType: string + + """""" + queryType_geq: string + + """""" + queryType_gt: string + + """""" + queryType_in: [string!] + + """""" + queryType_leq: string + + """""" + queryType_like: string + + """""" + queryType_lt: string + + """""" + queryType_neq: string + + """""" + queryType_notin: [string!] + + """""" + queryType_notlike: string + + """""" + responseCached: uint8 + + """""" + responseCached_geq: uint8 + + """""" + responseCached_gt: uint8 + + """""" + responseCached_in: bytes + + """""" + responseCached_leq: uint8 + + """""" + responseCached_lt: uint8 + + """""" + responseCached_neq: uint8 + + """""" + responseCached_notin: bytes + + """""" + responseCode: string + + """""" + responseCode_geq: string + + """""" + responseCode_gt: string + + """""" + responseCode_in: [string!] + + """""" + responseCode_leq: string + + """""" + responseCode_like: string + + """""" + responseCode_lt: string + + """""" + responseCode_neq: string + + """""" + responseCode_notin: [string!] + + """""" + responseCode_notlike: string + + """""" + responseSize: uint16 + + """""" + responseSize_geq: uint16 + + """""" + responseSize_gt: uint16 + + """""" + responseSize_in: [uint16!] + + """""" + responseSize_leq: uint16 + + """""" + responseSize_lt: uint16 + + """""" + responseSize_neq: uint16 + + """""" + responseSize_notin: [uint16!] + + """""" + responseStale: uint8 + + """""" + responseStale_geq: uint8 + + """""" + responseStale_gt: uint8 + + """""" + responseStale_in: bytes + + """""" + responseStale_leq: uint8 + + """""" + responseStale_lt: uint8 + + """""" + responseStale_neq: uint8 + + """""" + responseStale_notin: bytes + + """""" + sampleInterval: uint32 + + """""" + sampleInterval_geq: uint32 + + """""" + sampleInterval_gt: uint32 + + """""" + sampleInterval_in: [uint32!] + + """""" + sampleInterval_leq: uint32 + + """""" + sampleInterval_lt: uint32 + + """""" + sampleInterval_neq: uint32 + + """""" + sampleInterval_notin: [uint32!] + + """""" + sourceIP: string + + """""" + sourceIP_geq: string + + """""" + sourceIP_gt: string + + """""" + sourceIP_in: [string!] + + """""" + sourceIP_leq: string + + """""" + sourceIP_like: string + + """""" + sourceIP_lt: string + + """""" + sourceIP_neq: string + + """""" + sourceIP_notin: [string!] + + """""" + sourceIP_notlike: string + + """""" + upstreamIP: string + + """""" + upstreamIP_geq: string + + """""" + upstreamIP_gt: string + + """""" + upstreamIP_in: [string!] + + """""" + upstreamIP_leq: string + + """""" + upstreamIP_like: string + + """""" + upstreamIP_lt: string + + """""" + upstreamIP_neq: string + + """""" + upstreamIP_notin: [string!] + + """""" + upstreamIP_notlike: string + + """""" + zoneTag: string + + """""" + zoneTag_geq: string + + """""" + zoneTag_gt: string + + """""" + zoneTag_in: [string!] + + """""" + zoneTag_leq: string + + """""" + zoneTag_like: string + + """""" + zoneTag_lt: string + + """""" + zoneTag_neq: string + + """""" + zoneTag_notin: [string!] + + """""" + zoneTag_notlike: string +} + +"""Analytics data for DNS queries""" +type AccountDnsAnalyticsAdaptiveGroups { + """Average of a metric per dimension""" + avg: AccountDnsAnalyticsAdaptiveGroupsAvg + + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountDnsAnalyticsAdaptiveGroupsConfidence! + + """Number of queries per dimension""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountDnsAnalyticsAdaptiveGroupsDimensions + + """Quantiles of a metric per dimension""" + quantiles: AccountDnsAnalyticsAdaptiveGroupsQuantiles +} + +"""""" +type AccountDnsAnalyticsAdaptiveGroupsAvg { + """Average processing time in microseconds""" + processingTimeUs: float64! + + """Average sample interval""" + sampleInterval: float64! +} + +"""""" +type AccountDnsAnalyticsAdaptiveGroupsConfidence { + """Number of queries per dimension, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! +} + +"""""" +type AccountDnsAnalyticsAdaptiveGroupsDimensions { + """IATA airport code of the data center that processed the query""" + coloName: string! + + """Date on which the query was received""" + date: Date! + + """Time at which the query was received""" + datetime: Time! + + """ + Time at which the query was received, truncated to multiple of 15 minutes + """ + datetimeFifteenMinutes: Time! + + """ + Time at which the query was received, truncated to multiple of 5 minutes + """ + datetimeFiveMinutes: Time! + + """ + Time at which the query was received, truncated to multiple of 30 minutes + """ + datetimeHalfOfHour: Time! + + """Time at which the query was received, truncated to the hour""" + datetimeHour: Time! + + """Time at which the query was received, truncated to the minute""" + datetimeMinute: Time! + + """Cloudflare edge IP address that the query was received at""" + destinationIP: string! + + """Internet Protocol version over which the query was received""" + ipVersion: uint8! + + """Transport protocol over which the query was received""" + protocol: string! + + """DNS query name without trailing dot""" + queryName: string! + + """Size of the DNS query in bytes (in multiples of 16)""" + querySizeBucket: string! + + """DNS query type""" + queryType: string! + + """Whether the DNS response was served from cache""" + responseCached: uint8! + + """DNS response code""" + responseCode: string! + + """Size of the DNS response in bytes (in multiples of 16)""" + responseSizeBucket: string! + + """Whether a stale DNS response was served from cache""" + responseStale: uint8! + + """ + IP address of the client that sent the query (usually this is the resolver's IP address) + """ + sourceIP: string! + + """Upstream server that the query was forwarded to""" + upstreamIP: string! + + """Zone query attributed to""" + zoneTag: string! +} + +"""""" +input AccountDnsAnalyticsAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountDnsAnalyticsAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountDnsAnalyticsAdaptiveGroupsFilter_InputObject!] + + """""" + coloName: string + + """""" + coloName_geq: string + + """""" + coloName_gt: string + + """""" + coloName_in: [string!] + + """""" + coloName_leq: string + + """""" + coloName_like: string + + """""" + coloName_lt: string + + """""" + coloName_neq: string + + """""" + coloName_notin: [string!] + + """""" + coloName_notlike: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHalfOfHour: Time + + """""" + datetimeHalfOfHour_geq: Time + + """""" + datetimeHalfOfHour_gt: Time + + """""" + datetimeHalfOfHour_in: [Time!] + + """""" + datetimeHalfOfHour_leq: Time + + """""" + datetimeHalfOfHour_lt: Time + + """""" + datetimeHalfOfHour_neq: Time + + """""" + datetimeHalfOfHour_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + destinationIP: string + + """""" + destinationIP_geq: string + + """""" + destinationIP_gt: string + + """""" + destinationIP_in: [string!] + + """""" + destinationIP_leq: string + + """""" + destinationIP_like: string + + """""" + destinationIP_lt: string + + """""" + destinationIP_neq: string + + """""" + destinationIP_notin: [string!] + + """""" + destinationIP_notlike: string + + """""" + ipVersion: uint8 + + """""" + ipVersion_geq: uint8 + + """""" + ipVersion_gt: uint8 + + """""" + ipVersion_in: bytes + + """""" + ipVersion_leq: uint8 + + """""" + ipVersion_lt: uint8 + + """""" + ipVersion_neq: uint8 + + """""" + ipVersion_notin: bytes + + """""" + protocol: string + + """""" + protocol_geq: string + + """""" + protocol_gt: string + + """""" + protocol_in: [string!] + + """""" + protocol_leq: string + + """""" + protocol_like: string + + """""" + protocol_lt: string + + """""" + protocol_neq: string + + """""" + protocol_notin: [string!] + + """""" + protocol_notlike: string + + """""" + queryName: string + + """""" + queryName_geq: string + + """""" + queryName_gt: string + + """""" + queryName_in: [string!] + + """""" + queryName_leq: string + + """""" + queryName_like: string + + """""" + queryName_lt: string + + """""" + queryName_neq: string + + """""" + queryName_notin: [string!] + + """""" + queryName_notlike: string + + """""" + querySizeBucket: string + + """""" + querySizeBucket_geq: string + + """""" + querySizeBucket_gt: string + + """""" + querySizeBucket_in: [string!] + + """""" + querySizeBucket_leq: string + + """""" + querySizeBucket_like: string + + """""" + querySizeBucket_lt: string + + """""" + querySizeBucket_neq: string + + """""" + querySizeBucket_notin: [string!] + + """""" + querySizeBucket_notlike: string + + """""" + queryType: string + + """""" + queryType_geq: string + + """""" + queryType_gt: string + + """""" + queryType_in: [string!] + + """""" + queryType_leq: string + + """""" + queryType_like: string + + """""" + queryType_lt: string + + """""" + queryType_neq: string + + """""" + queryType_notin: [string!] + + """""" + queryType_notlike: string + + """""" + responseCached: uint8 + + """""" + responseCached_geq: uint8 + + """""" + responseCached_gt: uint8 + + """""" + responseCached_in: bytes + + """""" + responseCached_leq: uint8 + + """""" + responseCached_lt: uint8 + + """""" + responseCached_neq: uint8 + + """""" + responseCached_notin: bytes + + """""" + responseCode: string + + """""" + responseCode_geq: string + + """""" + responseCode_gt: string + + """""" + responseCode_in: [string!] + + """""" + responseCode_leq: string + + """""" + responseCode_like: string + + """""" + responseCode_lt: string + + """""" + responseCode_neq: string + + """""" + responseCode_notin: [string!] + + """""" + responseCode_notlike: string + + """""" + responseSizeBucket: string + + """""" + responseSizeBucket_geq: string + + """""" + responseSizeBucket_gt: string + + """""" + responseSizeBucket_in: [string!] + + """""" + responseSizeBucket_leq: string + + """""" + responseSizeBucket_like: string + + """""" + responseSizeBucket_lt: string + + """""" + responseSizeBucket_neq: string + + """""" + responseSizeBucket_notin: [string!] + + """""" + responseSizeBucket_notlike: string + + """""" + responseStale: uint8 + + """""" + responseStale_geq: uint8 + + """""" + responseStale_gt: uint8 + + """""" + responseStale_in: bytes + + """""" + responseStale_leq: uint8 + + """""" + responseStale_lt: uint8 + + """""" + responseStale_neq: uint8 + + """""" + responseStale_notin: bytes + + """""" + sourceIP: string + + """""" + sourceIP_geq: string + + """""" + sourceIP_gt: string + + """""" + sourceIP_in: [string!] + + """""" + sourceIP_leq: string + + """""" + sourceIP_like: string + + """""" + sourceIP_lt: string + + """""" + sourceIP_neq: string + + """""" + sourceIP_notin: [string!] + + """""" + sourceIP_notlike: string + + """""" + upstreamIP: string + + """""" + upstreamIP_geq: string + + """""" + upstreamIP_gt: string + + """""" + upstreamIP_in: [string!] + + """""" + upstreamIP_leq: string + + """""" + upstreamIP_like: string + + """""" + upstreamIP_lt: string + + """""" + upstreamIP_neq: string + + """""" + upstreamIP_notin: [string!] + + """""" + upstreamIP_notlike: string + + """""" + zoneTag: string + + """""" + zoneTag_geq: string + + """""" + zoneTag_gt: string + + """""" + zoneTag_in: [string!] + + """""" + zoneTag_leq: string + + """""" + zoneTag_like: string + + """""" + zoneTag_lt: string + + """""" + zoneTag_neq: string + + """""" + zoneTag_notin: [string!] + + """""" + zoneTag_notlike: string +} + +"""""" +enum AccountDnsAnalyticsAdaptiveGroupsOrderBy { + """avg(processingTimeUs) ascending""" + avg_processingTimeUs_ASC + + """avg(processingTimeUs) descending""" + avg_processingTimeUs_DESC + + """avg(sampleInterval) ascending""" + avg_sampleInterval_ASC + + """avg(sampleInterval) descending""" + avg_sampleInterval_DESC + + """coloName ascending""" + coloName_ASC + + """coloName descending""" + coloName_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHalfOfHour ascending""" + datetimeHalfOfHour_ASC + + """datetimeHalfOfHour descending""" + datetimeHalfOfHour_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """destinationIP ascending""" + destinationIP_ASC + + """destinationIP descending""" + destinationIP_DESC + + """instanceCode ascending""" + instanceCode_ASC + + """instanceCode descending""" + instanceCode_DESC + + """ipVersion ascending""" + ipVersion_ASC + + """ipVersion descending""" + ipVersion_DESC + + """protocol ascending""" + protocol_ASC + + """protocol descending""" + protocol_DESC + + """quantiles(processingTimeUsP50) ascending""" + quantiles_processingTimeUsP50_ASC + + """quantiles(processingTimeUsP50) descending""" + quantiles_processingTimeUsP50_DESC + + """quantiles(processingTimeUsP90) ascending""" + quantiles_processingTimeUsP90_ASC + + """quantiles(processingTimeUsP90) descending""" + quantiles_processingTimeUsP90_DESC + + """quantiles(processingTimeUsP99) ascending""" + quantiles_processingTimeUsP99_ASC + + """quantiles(processingTimeUsP99) descending""" + quantiles_processingTimeUsP99_DESC + + """queryName ascending""" + queryName_ASC + + """queryName descending""" + queryName_DESC + + """querySizeBucket ascending""" + querySizeBucket_ASC + + """querySizeBucket descending""" + querySizeBucket_DESC + + """queryType ascending""" + queryType_ASC + + """queryType descending""" + queryType_DESC + + """responseCached ascending""" + responseCached_ASC + + """responseCached descending""" + responseCached_DESC + + """responseCode ascending""" + responseCode_ASC + + """responseCode descending""" + responseCode_DESC + + """responseSizeBucket ascending""" + responseSizeBucket_ASC + + """responseSizeBucket descending""" + responseSizeBucket_DESC + + """responseStale ascending""" + responseStale_ASC + + """responseStale descending""" + responseStale_DESC + + """sourceIP ascending""" + sourceIP_ASC + + """sourceIP descending""" + sourceIP_DESC + + """upstreamIP ascending""" + upstreamIP_ASC + + """upstreamIP descending""" + upstreamIP_DESC + + """zoneTag ascending""" + zoneTag_ASC + + """zoneTag descending""" + zoneTag_DESC +} + +"""""" +type AccountDnsAnalyticsAdaptiveGroupsQuantiles { + """50th percentile processing time in microseconds (median)""" + processingTimeUsP50: float64! + + """90th percentile processing time in microseconds""" + processingTimeUsP90: float64! + + """99th percentile processing time in microseconds""" + processingTimeUsP99: float64! +} + +"""""" +enum AccountDnsAnalyticsAdaptiveOrderBy { + """coloName ascending""" + coloName_ASC + + """coloName descending""" + coloName_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """destinationIP ascending""" + destinationIP_ASC + + """destinationIP descending""" + destinationIP_DESC + + """instanceCode ascending""" + instanceCode_ASC + + """instanceCode descending""" + instanceCode_DESC + + """ipVersion ascending""" + ipVersion_ASC + + """ipVersion descending""" + ipVersion_DESC + + """protocol ascending""" + protocol_ASC + + """protocol descending""" + protocol_DESC + + """queryName ascending""" + queryName_ASC + + """queryName descending""" + queryName_DESC + + """querySize ascending""" + querySize_ASC + + """querySize descending""" + querySize_DESC + + """queryType ascending""" + queryType_ASC + + """queryType descending""" + queryType_DESC + + """responseCached ascending""" + responseCached_ASC + + """responseCached descending""" + responseCached_DESC + + """responseCode ascending""" + responseCode_ASC + + """responseCode descending""" + responseCode_DESC + + """responseSize ascending""" + responseSize_ASC + + """responseSize descending""" + responseSize_DESC + + """responseStale ascending""" + responseStale_ASC + + """responseStale descending""" + responseStale_DESC + + """sampleInterval ascending""" + sampleInterval_ASC + + """sampleInterval descending""" + sampleInterval_DESC + + """sourceIP ascending""" + sourceIP_ASC + + """sourceIP descending""" + sourceIP_DESC + + """upstreamIP ascending""" + upstreamIP_ASC + + """upstreamIP descending""" + upstreamIP_DESC + + """zoneTag ascending""" + zoneTag_ASC + + """zoneTag descending""" + zoneTag_DESC +} + +"""Analytics data for DNS Firewall queries""" +type AccountDnsFirewallAnalyticsAdaptive { + """DNS Firewall cluster name""" + clusterName: string! + + """DNS Firewall cluster tag""" + clusterTag: string! + + """IATA airport code of the data center that processed the query""" + coloName: string! + + """Date on which the query was received""" + date: Date! + + """Time at which the query was received""" + datetime: Time! + + """ + Cloudflare edge IP address that the query was received at, this will be one of your cluster IPs. + """ + destinationIP: string! + + """Internet Protocol version over which the query was received""" + ipVersion: uint8! + + """Transport protocol over which the query was received""" + protocol: string! + + """DNS query name without trailing dot""" + queryName: string! + + """Size of the DNS query in bytes""" + querySize: uint16! + + """DNS query type""" + queryType: string! + + """Whether the DNS response was served from cache""" + responseCached: uint8! + + """DNS response code""" + responseCode: string! + + """ + Indicates why the DNS Firewall responded to the query in the way it did + """ + responseReason: string! + + """Size of the DNS response in bytes""" + responseSize: uint16! + + """Whether a stale DNS response was served from cache""" + responseStale: uint8! + + """ABR sample interval""" + sampleInterval: uint32! + + """ + IP address of the client that sent the query (usually this is the resolver's IP address) + """ + sourceIP: string! + + """Upstream server that the query was forwarded to""" + upstreamIP: string! +} + +"""""" +input AccountDnsFirewallAnalyticsAdaptiveFilter_InputObject { + """""" + AND: [AccountDnsFirewallAnalyticsAdaptiveFilter_InputObject!] + + """""" + OR: [AccountDnsFirewallAnalyticsAdaptiveFilter_InputObject!] + + """""" + clusterName: string + + """""" + clusterName_geq: string + + """""" + clusterName_gt: string + + """""" + clusterName_in: [string!] + + """""" + clusterName_leq: string + + """""" + clusterName_like: string + + """""" + clusterName_lt: string + + """""" + clusterName_neq: string + + """""" + clusterName_notin: [string!] + + """""" + clusterName_notlike: string + + """""" + clusterTag: string + + """""" + clusterTag_geq: string + + """""" + clusterTag_gt: string + + """""" + clusterTag_in: [string!] + + """""" + clusterTag_leq: string + + """""" + clusterTag_like: string + + """""" + clusterTag_lt: string + + """""" + clusterTag_neq: string + + """""" + clusterTag_notin: [string!] + + """""" + clusterTag_notlike: string + + """""" + coloName: string + + """""" + coloName_geq: string + + """""" + coloName_gt: string + + """""" + coloName_in: [string!] + + """""" + coloName_leq: string + + """""" + coloName_like: string + + """""" + coloName_lt: string + + """""" + coloName_neq: string + + """""" + coloName_notin: [string!] + + """""" + coloName_notlike: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + destinationIP: string + + """""" + destinationIP_geq: string + + """""" + destinationIP_gt: string + + """""" + destinationIP_in: [string!] + + """""" + destinationIP_leq: string + + """""" + destinationIP_like: string + + """""" + destinationIP_lt: string + + """""" + destinationIP_neq: string + + """""" + destinationIP_notin: [string!] + + """""" + destinationIP_notlike: string + + """""" + ipVersion: uint8 + + """""" + ipVersion_geq: uint8 + + """""" + ipVersion_gt: uint8 + + """""" + ipVersion_in: bytes + + """""" + ipVersion_leq: uint8 + + """""" + ipVersion_lt: uint8 + + """""" + ipVersion_neq: uint8 + + """""" + ipVersion_notin: bytes + + """""" + protocol: string + + """""" + protocol_geq: string + + """""" + protocol_gt: string + + """""" + protocol_in: [string!] + + """""" + protocol_leq: string + + """""" + protocol_like: string + + """""" + protocol_lt: string + + """""" + protocol_neq: string + + """""" + protocol_notin: [string!] + + """""" + protocol_notlike: string + + """""" + queryName: string + + """""" + queryName_geq: string + + """""" + queryName_gt: string + + """""" + queryName_in: [string!] + + """""" + queryName_leq: string + + """""" + queryName_like: string + + """""" + queryName_lt: string + + """""" + queryName_neq: string + + """""" + queryName_notin: [string!] + + """""" + queryName_notlike: string + + """""" + querySize: uint16 + + """""" + querySize_geq: uint16 + + """""" + querySize_gt: uint16 + + """""" + querySize_in: [uint16!] + + """""" + querySize_leq: uint16 + + """""" + querySize_lt: uint16 + + """""" + querySize_neq: uint16 + + """""" + querySize_notin: [uint16!] + + """""" + queryType: string + + """""" + queryType_geq: string + + """""" + queryType_gt: string + + """""" + queryType_in: [string!] + + """""" + queryType_leq: string + + """""" + queryType_like: string + + """""" + queryType_lt: string + + """""" + queryType_neq: string + + """""" + queryType_notin: [string!] + + """""" + queryType_notlike: string + + """""" + responseCached: uint8 + + """""" + responseCached_geq: uint8 + + """""" + responseCached_gt: uint8 + + """""" + responseCached_in: bytes + + """""" + responseCached_leq: uint8 + + """""" + responseCached_lt: uint8 + + """""" + responseCached_neq: uint8 + + """""" + responseCached_notin: bytes + + """""" + responseCode: string + + """""" + responseCode_geq: string + + """""" + responseCode_gt: string + + """""" + responseCode_in: [string!] + + """""" + responseCode_leq: string + + """""" + responseCode_like: string + + """""" + responseCode_lt: string + + """""" + responseCode_neq: string + + """""" + responseCode_notin: [string!] + + """""" + responseCode_notlike: string + + """""" + responseReason: string + + """""" + responseReason_geq: string + + """""" + responseReason_gt: string + + """""" + responseReason_in: [string!] + + """""" + responseReason_leq: string + + """""" + responseReason_like: string + + """""" + responseReason_lt: string + + """""" + responseReason_neq: string + + """""" + responseReason_notin: [string!] + + """""" + responseReason_notlike: string + + """""" + responseSize: uint16 + + """""" + responseSize_geq: uint16 + + """""" + responseSize_gt: uint16 + + """""" + responseSize_in: [uint16!] + + """""" + responseSize_leq: uint16 + + """""" + responseSize_lt: uint16 + + """""" + responseSize_neq: uint16 + + """""" + responseSize_notin: [uint16!] + + """""" + responseStale: uint8 + + """""" + responseStale_geq: uint8 + + """""" + responseStale_gt: uint8 + + """""" + responseStale_in: bytes + + """""" + responseStale_leq: uint8 + + """""" + responseStale_lt: uint8 + + """""" + responseStale_neq: uint8 + + """""" + responseStale_notin: bytes + + """""" + sampleInterval: uint32 + + """""" + sampleInterval_geq: uint32 + + """""" + sampleInterval_gt: uint32 + + """""" + sampleInterval_in: [uint32!] + + """""" + sampleInterval_leq: uint32 + + """""" + sampleInterval_lt: uint32 + + """""" + sampleInterval_neq: uint32 + + """""" + sampleInterval_notin: [uint32!] + + """""" + sourceIP: string + + """""" + sourceIP_geq: string + + """""" + sourceIP_gt: string + + """""" + sourceIP_in: [string!] + + """""" + sourceIP_leq: string + + """""" + sourceIP_like: string + + """""" + sourceIP_lt: string + + """""" + sourceIP_neq: string + + """""" + sourceIP_notin: [string!] + + """""" + sourceIP_notlike: string + + """""" + upstreamIP: string + + """""" + upstreamIP_geq: string + + """""" + upstreamIP_gt: string + + """""" + upstreamIP_in: [string!] + + """""" + upstreamIP_leq: string + + """""" + upstreamIP_like: string + + """""" + upstreamIP_lt: string + + """""" + upstreamIP_neq: string + + """""" + upstreamIP_notin: [string!] + + """""" + upstreamIP_notlike: string +} + +"""Analytics data for DNS Firewall queries""" +type AccountDnsFirewallAnalyticsAdaptiveGroups { + """Average of a metric per dimension""" + avg: AccountDnsFirewallAnalyticsAdaptiveGroupsAvg + + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountDnsFirewallAnalyticsAdaptiveGroupsConfidence! + + """Number of queries per dimension""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountDnsFirewallAnalyticsAdaptiveGroupsDimensions + + """Quantiles of a metric per dimension""" + quantiles: AccountDnsFirewallAnalyticsAdaptiveGroupsQuantiles +} + +"""""" +type AccountDnsFirewallAnalyticsAdaptiveGroupsAvg { + """Average processing time in microseconds""" + processingTimeUs: float64! + + """Average sample interval""" + sampleInterval: float64! +} + +"""""" +type AccountDnsFirewallAnalyticsAdaptiveGroupsConfidence { + """Number of queries per dimension, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! +} + +"""""" +type AccountDnsFirewallAnalyticsAdaptiveGroupsDimensions { + """DNS Firewall cluster name""" + clusterName: string! + + """ID of DNS Firewall cluster""" + clusterTag: string! + + """IATA airport code of the data center that processed the query""" + coloName: string! + + """Date on which the query was received""" + date: Date! + + """Time at which the query was received""" + datetime: Time! + + """ + Time at which the query was received, truncated to multiple of 15 minutes + """ + datetimeFifteenMinutes: Time! + + """ + Time at which the query was received, truncated to multiple of 5 minutes + """ + datetimeFiveMinutes: Time! + + """ + Time at which the query was received, truncated to multiple of 30 minutes + """ + datetimeHalfOfHour: Time! + + """Time at which the query was received, truncated to the hour""" + datetimeHour: Time! + + """Time at which the query was received, truncated to the minute""" + datetimeMinute: Time! + + """ + Cloudflare edge IP address that the query was received at, this will be one of your cluster IPs. + """ + destinationIP: string! + + """Internet Protocol version over which the query was received""" + ipVersion: uint8! + + """Transport protocol over which the query was received""" + protocol: string! + + """DNS query name without trailing dot""" + queryName: string! + + """Size of the DNS query in bytes (in multiples of 16)""" + querySizeBucket: string! + + """DNS query type""" + queryType: string! + + """Whether the DNS response was served from cache""" + responseCached: uint8! + + """DNS response code""" + responseCode: string! + + """ + Indicates why the DNS Firewall responded to the query in the way it did + """ + responseReason: string! + + """Size of the DNS response in bytes (in multiples of 16)""" + responseSizeBucket: string! + + """Whether a stale DNS response was served from cache""" + responseStale: uint8! + + """ + IP address of the client that sent the query (usually this is the resolver's IP address) + """ + sourceIP: string! + + """Upstream server that the query was forwarded to""" + upstreamIP: string! +} + +"""""" +input AccountDnsFirewallAnalyticsAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountDnsFirewallAnalyticsAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountDnsFirewallAnalyticsAdaptiveGroupsFilter_InputObject!] + + """""" + clusterName: string + + """""" + clusterName_geq: string + + """""" + clusterName_gt: string + + """""" + clusterName_in: [string!] + + """""" + clusterName_leq: string + + """""" + clusterName_like: string + + """""" + clusterName_lt: string + + """""" + clusterName_neq: string + + """""" + clusterName_notin: [string!] + + """""" + clusterName_notlike: string + + """""" + clusterTag: string + + """""" + clusterTag_geq: string + + """""" + clusterTag_gt: string + + """""" + clusterTag_in: [string!] + + """""" + clusterTag_leq: string + + """""" + clusterTag_like: string + + """""" + clusterTag_lt: string + + """""" + clusterTag_neq: string + + """""" + clusterTag_notin: [string!] + + """""" + clusterTag_notlike: string + + """""" + coloName: string + + """""" + coloName_geq: string + + """""" + coloName_gt: string + + """""" + coloName_in: [string!] + + """""" + coloName_leq: string + + """""" + coloName_like: string + + """""" + coloName_lt: string + + """""" + coloName_neq: string + + """""" + coloName_notin: [string!] + + """""" + coloName_notlike: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHalfOfHour: Time + + """""" + datetimeHalfOfHour_geq: Time + + """""" + datetimeHalfOfHour_gt: Time + + """""" + datetimeHalfOfHour_in: [Time!] + + """""" + datetimeHalfOfHour_leq: Time + + """""" + datetimeHalfOfHour_lt: Time + + """""" + datetimeHalfOfHour_neq: Time + + """""" + datetimeHalfOfHour_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + destinationIP: string + + """""" + destinationIP_geq: string + + """""" + destinationIP_gt: string + + """""" + destinationIP_in: [string!] + + """""" + destinationIP_leq: string + + """""" + destinationIP_like: string + + """""" + destinationIP_lt: string + + """""" + destinationIP_neq: string + + """""" + destinationIP_notin: [string!] + + """""" + destinationIP_notlike: string + + """""" + ipVersion: uint8 + + """""" + ipVersion_geq: uint8 + + """""" + ipVersion_gt: uint8 + + """""" + ipVersion_in: bytes + + """""" + ipVersion_leq: uint8 + + """""" + ipVersion_lt: uint8 + + """""" + ipVersion_neq: uint8 + + """""" + ipVersion_notin: bytes + + """""" + protocol: string + + """""" + protocol_geq: string + + """""" + protocol_gt: string + + """""" + protocol_in: [string!] + + """""" + protocol_leq: string + + """""" + protocol_like: string + + """""" + protocol_lt: string + + """""" + protocol_neq: string + + """""" + protocol_notin: [string!] + + """""" + protocol_notlike: string + + """""" + queryName: string + + """""" + queryName_geq: string + + """""" + queryName_gt: string + + """""" + queryName_in: [string!] + + """""" + queryName_leq: string + + """""" + queryName_like: string + + """""" + queryName_lt: string + + """""" + queryName_neq: string + + """""" + queryName_notin: [string!] + + """""" + queryName_notlike: string + + """""" + querySizeBucket: string + + """""" + querySizeBucket_geq: string + + """""" + querySizeBucket_gt: string + + """""" + querySizeBucket_in: [string!] + + """""" + querySizeBucket_leq: string + + """""" + querySizeBucket_like: string + + """""" + querySizeBucket_lt: string + + """""" + querySizeBucket_neq: string + + """""" + querySizeBucket_notin: [string!] + + """""" + querySizeBucket_notlike: string + + """""" + queryType: string + + """""" + queryType_geq: string + + """""" + queryType_gt: string + + """""" + queryType_in: [string!] + + """""" + queryType_leq: string + + """""" + queryType_like: string + + """""" + queryType_lt: string + + """""" + queryType_neq: string + + """""" + queryType_notin: [string!] + + """""" + queryType_notlike: string + + """""" + responseCached: uint8 + + """""" + responseCached_geq: uint8 + + """""" + responseCached_gt: uint8 + + """""" + responseCached_in: bytes + + """""" + responseCached_leq: uint8 + + """""" + responseCached_lt: uint8 + + """""" + responseCached_neq: uint8 + + """""" + responseCached_notin: bytes + + """""" + responseCode: string + + """""" + responseCode_geq: string + + """""" + responseCode_gt: string + + """""" + responseCode_in: [string!] + + """""" + responseCode_leq: string + + """""" + responseCode_like: string + + """""" + responseCode_lt: string + + """""" + responseCode_neq: string + + """""" + responseCode_notin: [string!] + + """""" + responseCode_notlike: string + + """""" + responseReason: string + + """""" + responseReason_geq: string + + """""" + responseReason_gt: string + + """""" + responseReason_in: [string!] + + """""" + responseReason_leq: string + + """""" + responseReason_like: string + + """""" + responseReason_lt: string + + """""" + responseReason_neq: string + + """""" + responseReason_notin: [string!] + + """""" + responseReason_notlike: string + + """""" + responseSizeBucket: string + + """""" + responseSizeBucket_geq: string + + """""" + responseSizeBucket_gt: string + + """""" + responseSizeBucket_in: [string!] + + """""" + responseSizeBucket_leq: string + + """""" + responseSizeBucket_like: string + + """""" + responseSizeBucket_lt: string + + """""" + responseSizeBucket_neq: string + + """""" + responseSizeBucket_notin: [string!] + + """""" + responseSizeBucket_notlike: string + + """""" + responseStale: uint8 + + """""" + responseStale_geq: uint8 + + """""" + responseStale_gt: uint8 + + """""" + responseStale_in: bytes + + """""" + responseStale_leq: uint8 + + """""" + responseStale_lt: uint8 + + """""" + responseStale_neq: uint8 + + """""" + responseStale_notin: bytes + + """""" + sourceIP: string + + """""" + sourceIP_geq: string + + """""" + sourceIP_gt: string + + """""" + sourceIP_in: [string!] + + """""" + sourceIP_leq: string + + """""" + sourceIP_like: string + + """""" + sourceIP_lt: string + + """""" + sourceIP_neq: string + + """""" + sourceIP_notin: [string!] + + """""" + sourceIP_notlike: string + + """""" + upstreamIP: string + + """""" + upstreamIP_geq: string + + """""" + upstreamIP_gt: string + + """""" + upstreamIP_in: [string!] + + """""" + upstreamIP_leq: string + + """""" + upstreamIP_like: string + + """""" + upstreamIP_lt: string + + """""" + upstreamIP_neq: string + + """""" + upstreamIP_notin: [string!] + + """""" + upstreamIP_notlike: string +} + +"""""" +enum AccountDnsFirewallAnalyticsAdaptiveGroupsOrderBy { + """avg(processingTimeUs) ascending""" + avg_processingTimeUs_ASC + + """avg(processingTimeUs) descending""" + avg_processingTimeUs_DESC + + """avg(sampleInterval) ascending""" + avg_sampleInterval_ASC + + """avg(sampleInterval) descending""" + avg_sampleInterval_DESC + + """clusterName ascending""" + clusterName_ASC + + """clusterName descending""" + clusterName_DESC + + """clusterTag ascending""" + clusterTag_ASC + + """clusterTag descending""" + clusterTag_DESC + + """coloName ascending""" + coloName_ASC + + """coloName descending""" + coloName_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHalfOfHour ascending""" + datetimeHalfOfHour_ASC + + """datetimeHalfOfHour descending""" + datetimeHalfOfHour_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """destinationIP ascending""" + destinationIP_ASC + + """destinationIP descending""" + destinationIP_DESC + + """instanceCode ascending""" + instanceCode_ASC + + """instanceCode descending""" + instanceCode_DESC + + """ipVersion ascending""" + ipVersion_ASC + + """ipVersion descending""" + ipVersion_DESC + + """protocol ascending""" + protocol_ASC + + """protocol descending""" + protocol_DESC + + """quantiles(processingTimeUsP50) ascending""" + quantiles_processingTimeUsP50_ASC + + """quantiles(processingTimeUsP50) descending""" + quantiles_processingTimeUsP50_DESC + + """quantiles(processingTimeUsP90) ascending""" + quantiles_processingTimeUsP90_ASC + + """quantiles(processingTimeUsP90) descending""" + quantiles_processingTimeUsP90_DESC + + """quantiles(processingTimeUsP99) ascending""" + quantiles_processingTimeUsP99_ASC + + """quantiles(processingTimeUsP99) descending""" + quantiles_processingTimeUsP99_DESC + + """queryName ascending""" + queryName_ASC + + """queryName descending""" + queryName_DESC + + """querySizeBucket ascending""" + querySizeBucket_ASC + + """querySizeBucket descending""" + querySizeBucket_DESC + + """queryType ascending""" + queryType_ASC + + """queryType descending""" + queryType_DESC + + """responseCached ascending""" + responseCached_ASC + + """responseCached descending""" + responseCached_DESC + + """responseCode ascending""" + responseCode_ASC + + """responseCode descending""" + responseCode_DESC + + """responseReason ascending""" + responseReason_ASC + + """responseReason descending""" + responseReason_DESC + + """responseSizeBucket ascending""" + responseSizeBucket_ASC + + """responseSizeBucket descending""" + responseSizeBucket_DESC + + """responseStale ascending""" + responseStale_ASC + + """responseStale descending""" + responseStale_DESC + + """sourceIP ascending""" + sourceIP_ASC + + """sourceIP descending""" + sourceIP_DESC + + """upstreamIP ascending""" + upstreamIP_ASC + + """upstreamIP descending""" + upstreamIP_DESC +} + +"""""" +type AccountDnsFirewallAnalyticsAdaptiveGroupsQuantiles { + """50th percentile processing time in microseconds (median)""" + processingTimeUsP50: float64! + + """90th percentile processing time in microseconds""" + processingTimeUsP90: float64! + + """99th percentile processing time in microseconds""" + processingTimeUsP99: float64! +} + +"""""" +enum AccountDnsFirewallAnalyticsAdaptiveOrderBy { + """clusterName ascending""" + clusterName_ASC + + """clusterName descending""" + clusterName_DESC + + """clusterTag ascending""" + clusterTag_ASC + + """clusterTag descending""" + clusterTag_DESC + + """coloName ascending""" + coloName_ASC + + """coloName descending""" + coloName_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """destinationIP ascending""" + destinationIP_ASC + + """destinationIP descending""" + destinationIP_DESC + + """instanceCode ascending""" + instanceCode_ASC + + """instanceCode descending""" + instanceCode_DESC + + """ipVersion ascending""" + ipVersion_ASC + + """ipVersion descending""" + ipVersion_DESC + + """protocol ascending""" + protocol_ASC + + """protocol descending""" + protocol_DESC + + """queryName ascending""" + queryName_ASC + + """queryName descending""" + queryName_DESC + + """querySize ascending""" + querySize_ASC + + """querySize descending""" + querySize_DESC + + """queryType ascending""" + queryType_ASC + + """queryType descending""" + queryType_DESC + + """responseCached ascending""" + responseCached_ASC + + """responseCached descending""" + responseCached_DESC + + """responseCode ascending""" + responseCode_ASC + + """responseCode descending""" + responseCode_DESC + + """responseReason ascending""" + responseReason_ASC + + """responseReason descending""" + responseReason_DESC + + """responseSize ascending""" + responseSize_ASC + + """responseSize descending""" + responseSize_DESC + + """responseStale ascending""" + responseStale_ASC + + """responseStale descending""" + responseStale_DESC + + """sampleInterval ascending""" + sampleInterval_ASC + + """sampleInterval descending""" + sampleInterval_DESC + + """sourceIP ascending""" + sourceIP_ASC + + """sourceIP descending""" + sourceIP_DESC + + """upstreamIP ascending""" + upstreamIP_ASC + + """upstreamIP descending""" + upstreamIP_DESC +} + +"""Attack analytics metadata for attacks detected by dosd""" +type AccountDosdAttackAnalyticsGroups { + """Unique identifier of the mitigation that matched the packet, if any""" + attackId: string! + + """Type of attack traffic""" + attackType: string! @deprecated(reason: "Use attackVector for a richer description of the attack") + + """Description of attack vector""" + attackVector: string! + + """Sum of bits received during the attack""" + bits: uint64! + + """Common TCP flags used by attack traffic, if any""" + commonTcpFlags: uint8! + + """Names of common TCP flags used by attack traffic, if any""" + commonTcpFlagsNames: string! + + """Fixed destination IP used by attack traffic, if any""" + destinationIp: string! + + """Fixed destination port used by attack traffic, if any""" + destinationPort: uint16! + + """Sum of bits dropped during the attack""" + droppedBits: uint64! + + """Sum of packets dropped during the attack""" + droppedPackets: uint64! + + """Date and time that the attack ended; not available for ongoing attacks""" + endDatetime: Time! + + """Fixed protocol used by attack traffic, if any""" + ipProtocol: uint8! + + """Fixed protocol used by attack traffic, if any""" + ipProtocolName: string! + + """Type of mitigation applied to attack traffic""" + mitigationReason: string! + + """Whether mitigation was applied in only some locations or globally""" + mitigationScope: string! + + """Type of mitigation applied to attack traffic""" + mitigationType: string! + + """Sum of packets received during the attack""" + packets: uint64! + + """Unique identifier of the rule that matched the packet, if any""" + ruleId: string! + + """Human-readable name of the rule that matched the packet, if any""" + ruleName: string! + + """ + Unique identifier of the ruleset containing the rule that matched the packet, if any + """ + rulesetId: string! + + """ + Unique identifier of the ruleset override containing the rule that matched the packet, if any + """ + rulesetOverrideId: string! + + """Fixed source IP used by attack traffic, if any""" + sourceIp: string! + + """Fixed source port used by attack traffic, if any""" + sourcePort: uint16! + + """Date and time that the attack started""" + startDatetime: Time! + + """Fixed TCP flags used by attack traffic, if any""" + tcpFlags: uint8! + + """Names of fixed TCP flags used by attack traffic, if any""" + tcpFlagsNames: string! +} + +"""""" +input AccountDosdAttackAnalyticsGroupsFilter_InputObject { + """""" + AND: [AccountDosdAttackAnalyticsGroupsFilter_InputObject!] + + """""" + OR: [AccountDosdAttackAnalyticsGroupsFilter_InputObject!] + + """""" + attackId: string + + """""" + attackId_geq: string + + """""" + attackId_gt: string + + """""" + attackId_in: [string!] + + """""" + attackId_leq: string + + """""" + attackId_like: string + + """""" + attackId_lt: string + + """""" + attackId_neq: string + + """""" + attackId_notin: [string!] + + """""" + attackId_notlike: string + + """""" + attackType: string + + """""" + attackType_geq: string + + """""" + attackType_gt: string + + """""" + attackType_in: [string!] + + """""" + attackType_leq: string + + """""" + attackType_like: string + + """""" + attackType_lt: string + + """""" + attackType_neq: string + + """""" + attackType_notin: [string!] + + """""" + attackType_notlike: string + + """""" + attackVector: string + + """""" + attackVector_geq: string + + """""" + attackVector_gt: string + + """""" + attackVector_in: [string!] + + """""" + attackVector_leq: string + + """""" + attackVector_like: string + + """""" + attackVector_lt: string + + """""" + attackVector_neq: string + + """""" + attackVector_notin: [string!] + + """""" + attackVector_notlike: string + + """""" + bits: uint64 + + """""" + bits_geq: uint64 + + """""" + bits_gt: uint64 + + """""" + bits_in: [uint64!] + + """""" + bits_leq: uint64 + + """""" + bits_lt: uint64 + + """""" + bits_neq: uint64 + + """""" + bits_notin: [uint64!] + + """""" + commonTcpFlags: uint8 + + """""" + commonTcpFlagsNames: string + + """""" + commonTcpFlagsNames_geq: string + + """""" + commonTcpFlagsNames_gt: string + + """""" + commonTcpFlagsNames_in: [string!] + + """""" + commonTcpFlagsNames_leq: string + + """""" + commonTcpFlagsNames_like: string + + """""" + commonTcpFlagsNames_lt: string + + """""" + commonTcpFlagsNames_neq: string + + """""" + commonTcpFlagsNames_notin: [string!] + + """""" + commonTcpFlagsNames_notlike: string + + """""" + commonTcpFlags_geq: uint8 + + """""" + commonTcpFlags_gt: uint8 + + """""" + commonTcpFlags_in: bytes + + """""" + commonTcpFlags_leq: uint8 + + """""" + commonTcpFlags_lt: uint8 + + """""" + commonTcpFlags_neq: uint8 + + """""" + commonTcpFlags_notin: bytes + + """""" + destinationIp: string + + """""" + destinationIp_geq: string + + """""" + destinationIp_gt: string + + """""" + destinationIp_in: [string!] + + """""" + destinationIp_leq: string + + """""" + destinationIp_like: string + + """""" + destinationIp_lt: string + + """""" + destinationIp_neq: string + + """""" + destinationIp_notin: [string!] + + """""" + destinationIp_notlike: string + + """""" + destinationPort: uint16 + + """""" + destinationPort_geq: uint16 + + """""" + destinationPort_gt: uint16 + + """""" + destinationPort_in: [uint16!] + + """""" + destinationPort_leq: uint16 + + """""" + destinationPort_lt: uint16 + + """""" + destinationPort_neq: uint16 + + """""" + destinationPort_notin: [uint16!] + + """""" + droppedBits: uint64 + + """""" + droppedBits_geq: uint64 + + """""" + droppedBits_gt: uint64 + + """""" + droppedBits_in: [uint64!] + + """""" + droppedBits_leq: uint64 + + """""" + droppedBits_lt: uint64 + + """""" + droppedBits_neq: uint64 + + """""" + droppedBits_notin: [uint64!] + + """""" + droppedPackets: uint64 + + """""" + droppedPackets_geq: uint64 + + """""" + droppedPackets_gt: uint64 + + """""" + droppedPackets_in: [uint64!] + + """""" + droppedPackets_leq: uint64 + + """""" + droppedPackets_lt: uint64 + + """""" + droppedPackets_neq: uint64 + + """""" + droppedPackets_notin: [uint64!] + + """""" + endDatetime: Time + + """""" + endDatetime_geq: Time + + """""" + endDatetime_gt: Time + + """""" + endDatetime_in: [Time!] + + """""" + endDatetime_leq: Time + + """""" + endDatetime_lt: Time + + """""" + endDatetime_neq: Time + + """""" + endDatetime_notin: [Time!] + + """""" + ipProtocol: uint8 + + """""" + ipProtocolName: string + + """""" + ipProtocolName_geq: string + + """""" + ipProtocolName_gt: string + + """""" + ipProtocolName_in: [string!] + + """""" + ipProtocolName_leq: string + + """""" + ipProtocolName_like: string + + """""" + ipProtocolName_lt: string + + """""" + ipProtocolName_neq: string + + """""" + ipProtocolName_notin: [string!] + + """""" + ipProtocolName_notlike: string + + """""" + ipProtocol_geq: uint8 + + """""" + ipProtocol_gt: uint8 + + """""" + ipProtocol_in: bytes + + """""" + ipProtocol_leq: uint8 + + """""" + ipProtocol_lt: uint8 + + """""" + ipProtocol_neq: uint8 + + """""" + ipProtocol_notin: bytes + + """""" + mitigationReason: string + + """""" + mitigationReason_geq: string + + """""" + mitigationReason_gt: string + + """""" + mitigationReason_in: [string!] + + """""" + mitigationReason_leq: string + + """""" + mitigationReason_like: string + + """""" + mitigationReason_lt: string + + """""" + mitigationReason_neq: string + + """""" + mitigationReason_notin: [string!] + + """""" + mitigationReason_notlike: string + + """""" + mitigationScope: string + + """""" + mitigationScope_geq: string + + """""" + mitigationScope_gt: string + + """""" + mitigationScope_in: [string!] + + """""" + mitigationScope_leq: string + + """""" + mitigationScope_like: string + + """""" + mitigationScope_lt: string + + """""" + mitigationScope_neq: string + + """""" + mitigationScope_notin: [string!] + + """""" + mitigationScope_notlike: string + + """""" + mitigationType: string + + """""" + mitigationType_geq: string + + """""" + mitigationType_gt: string + + """""" + mitigationType_in: [string!] + + """""" + mitigationType_leq: string + + """""" + mitigationType_like: string + + """""" + mitigationType_lt: string + + """""" + mitigationType_neq: string + + """""" + mitigationType_notin: [string!] + + """""" + mitigationType_notlike: string + + """""" + packets: uint64 + + """""" + packets_geq: uint64 + + """""" + packets_gt: uint64 + + """""" + packets_in: [uint64!] + + """""" + packets_leq: uint64 + + """""" + packets_lt: uint64 + + """""" + packets_neq: uint64 + + """""" + packets_notin: [uint64!] + + """""" + ruleId: string + + """""" + ruleId_geq: string + + """""" + ruleId_gt: string + + """""" + ruleId_in: [string!] + + """""" + ruleId_leq: string + + """""" + ruleId_like: string + + """""" + ruleId_lt: string + + """""" + ruleId_neq: string + + """""" + ruleId_notin: [string!] + + """""" + ruleId_notlike: string + + """""" + ruleName: string + + """""" + ruleName_geq: string + + """""" + ruleName_gt: string + + """""" + ruleName_in: [string!] + + """""" + ruleName_leq: string + + """""" + ruleName_like: string + + """""" + ruleName_lt: string + + """""" + ruleName_neq: string + + """""" + ruleName_notin: [string!] + + """""" + ruleName_notlike: string + + """""" + rulesetId: string + + """""" + rulesetId_geq: string + + """""" + rulesetId_gt: string + + """""" + rulesetId_in: [string!] + + """""" + rulesetId_leq: string + + """""" + rulesetId_like: string + + """""" + rulesetId_lt: string + + """""" + rulesetId_neq: string + + """""" + rulesetId_notin: [string!] + + """""" + rulesetId_notlike: string + + """""" + rulesetOverrideId: string + + """""" + rulesetOverrideId_geq: string + + """""" + rulesetOverrideId_gt: string + + """""" + rulesetOverrideId_in: [string!] + + """""" + rulesetOverrideId_leq: string + + """""" + rulesetOverrideId_like: string + + """""" + rulesetOverrideId_lt: string + + """""" + rulesetOverrideId_neq: string + + """""" + rulesetOverrideId_notin: [string!] + + """""" + rulesetOverrideId_notlike: string + + """""" + sourceIp: string + + """""" + sourceIp_geq: string + + """""" + sourceIp_gt: string + + """""" + sourceIp_in: [string!] + + """""" + sourceIp_leq: string + + """""" + sourceIp_like: string + + """""" + sourceIp_lt: string + + """""" + sourceIp_neq: string + + """""" + sourceIp_notin: [string!] + + """""" + sourceIp_notlike: string + + """""" + sourcePort: uint16 + + """""" + sourcePort_geq: uint16 + + """""" + sourcePort_gt: uint16 + + """""" + sourcePort_in: [uint16!] + + """""" + sourcePort_leq: uint16 + + """""" + sourcePort_lt: uint16 + + """""" + sourcePort_neq: uint16 + + """""" + sourcePort_notin: [uint16!] + + """""" + startDatetime: Time + + """""" + startDatetime_geq: Time + + """""" + startDatetime_gt: Time + + """""" + startDatetime_in: [Time!] + + """""" + startDatetime_leq: Time + + """""" + startDatetime_lt: Time + + """""" + startDatetime_neq: Time + + """""" + startDatetime_notin: [Time!] + + """""" + tcpFlags: uint8 + + """""" + tcpFlagsNames: string + + """""" + tcpFlagsNames_geq: string + + """""" + tcpFlagsNames_gt: string + + """""" + tcpFlagsNames_in: [string!] + + """""" + tcpFlagsNames_leq: string + + """""" + tcpFlagsNames_like: string + + """""" + tcpFlagsNames_lt: string + + """""" + tcpFlagsNames_neq: string + + """""" + tcpFlagsNames_notin: [string!] + + """""" + tcpFlagsNames_notlike: string + + """""" + tcpFlags_geq: uint8 + + """""" + tcpFlags_gt: uint8 + + """""" + tcpFlags_in: bytes + + """""" + tcpFlags_leq: uint8 + + """""" + tcpFlags_lt: uint8 + + """""" + tcpFlags_neq: uint8 + + """""" + tcpFlags_notin: bytes +} + +"""""" +enum AccountDosdAttackAnalyticsGroupsOrderBy { + """attackId ascending""" + attackId_ASC + + """attackId descending""" + attackId_DESC + + """attackType ascending""" + attackType_ASC + + """attackType descending""" + attackType_DESC + + """attackVector ascending""" + attackVector_ASC + + """attackVector descending""" + attackVector_DESC + + """bits ascending""" + bits_ASC + + """bits descending""" + bits_DESC + + """commonTcpFlagsNames ascending""" + commonTcpFlagsNames_ASC + + """commonTcpFlagsNames descending""" + commonTcpFlagsNames_DESC + + """commonTcpFlags ascending""" + commonTcpFlags_ASC + + """commonTcpFlags descending""" + commonTcpFlags_DESC + + """destinationIp ascending""" + destinationIp_ASC + + """destinationIp descending""" + destinationIp_DESC + + """destinationPort ascending""" + destinationPort_ASC + + """destinationPort descending""" + destinationPort_DESC + + """droppedBits ascending""" + droppedBits_ASC + + """droppedBits descending""" + droppedBits_DESC + + """droppedPackets ascending""" + droppedPackets_ASC + + """droppedPackets descending""" + droppedPackets_DESC + + """endDatetime ascending""" + endDatetime_ASC + + """endDatetime descending""" + endDatetime_DESC + + """ipProtocolName ascending""" + ipProtocolName_ASC + + """ipProtocolName descending""" + ipProtocolName_DESC + + """ipProtocol ascending""" + ipProtocol_ASC + + """ipProtocol descending""" + ipProtocol_DESC + + """mitigationReason ascending""" + mitigationReason_ASC + + """mitigationReason descending""" + mitigationReason_DESC + + """mitigationScope ascending""" + mitigationScope_ASC + + """mitigationScope descending""" + mitigationScope_DESC + + """mitigationType ascending""" + mitigationType_ASC + + """mitigationType descending""" + mitigationType_DESC + + """packets ascending""" + packets_ASC + + """packets descending""" + packets_DESC + + """ruleId ascending""" + ruleId_ASC + + """ruleId descending""" + ruleId_DESC + + """ruleName ascending""" + ruleName_ASC + + """ruleName descending""" + ruleName_DESC + + """rulesetId ascending""" + rulesetId_ASC + + """rulesetId descending""" + rulesetId_DESC + + """rulesetOverrideId ascending""" + rulesetOverrideId_ASC + + """rulesetOverrideId descending""" + rulesetOverrideId_DESC + + """sourceIp ascending""" + sourceIp_ASC + + """sourceIp descending""" + sourceIp_DESC + + """sourcePort ascending""" + sourcePort_ASC + + """sourcePort descending""" + sourcePort_DESC + + """startDatetime ascending""" + startDatetime_ASC + + """startDatetime descending""" + startDatetime_DESC + + """tcpFlagsNames ascending""" + tcpFlagsNames_ASC + + """tcpFlagsNames descending""" + tcpFlagsNames_DESC + + """tcpFlags ascending""" + tcpFlags_ASC + + """tcpFlags descending""" + tcpFlags_DESC +} + +"""Network analytics data for dosd""" +type AccountDosdNetworkAnalyticsAdaptiveGroups { + """The average of values for a metric per dimension""" + avg: AccountDosdNetworkAnalyticsAdaptiveGroupsAvg + + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountDosdNetworkAnalyticsAdaptiveGroupsConfidence! + + """List of dimensions to group by""" + dimensions: AccountDosdNetworkAnalyticsAdaptiveGroupsDimensions + + """The sum of values for a metric per dimension""" + sum: AccountDosdNetworkAnalyticsAdaptiveGroupsSum +} + +"""""" +type AccountDosdNetworkAnalyticsAdaptiveGroupsAvg { + """ + Sum of bits received, divided by 1 second, providing a per-second bit rate when grouped by datetime + """ + bitRate: uint64! + + """ + Sum of bits received, divided by 86400 seconds, providing a per-second bit rate when grouped by date + """ + bitRateDay: uint64! + + """ + Sum of bits received, divided by 900 seconds, providing a per-second bit rate when grouped by datetimeFifteenMinutes + """ + bitRateFifteenMinutes: uint64! + + """ + Sum of bits received, divided by 300 seconds, providing a per-second bit rate when grouped by datetimeFiveMinutes + """ + bitRateFiveMinutes: uint64! + + """ + Sum of bits received, divided by 3600 seconds, providing a per-second bit rate when grouped by datetimeHour + """ + bitRateHour: uint64! + + """ + Sum of bits received, divided by 60 seconds, providing a per-second bit rate when grouped by datetimeMinute + """ + bitRateMinute: uint64! + + """ + Sum of bits received, divided by 10 seconds, providing a per-second bit rate when grouped by datetimeTenSeconds + """ + bitRateTenSeconds: uint64! + + """ + Sum of packets received, divided by 1 second, providing a per-second packet rate when grouped by datetime + """ + packetRate: uint64! + + """ + Sum of packets received, divided by 86400 seconds, providing a per-second packet rate when grouped by date + """ + packetRateDay: uint64! + + """ + Sum of packets received, divided by 900 seconds, providing a per-second packet rate when grouped by datetimeFifteenMinutes + """ + packetRateFifteenMinutes: uint64! + + """ + Sum of packets received, divided by 300 seconds, providing a per-second packet rate when grouped by datetimeFiveMinutes + """ + packetRateFiveMinutes: uint64! + + """ + Sum of packets received, divided by 3600 seconds, providing a per-second packet rate when grouped by datetimeHour + """ + packetRateHour: uint64! + + """ + Sum of packets received, divided by 60 seconds, providing a per-second packet rate when grouped by datetimeMinute + """ + packetRateMinute: uint64! + + """ + Sum of packets received, divided by 10 seconds, providing a per-second packet rate when grouped by datetimeTenSeconds + """ + packetRateTenSeconds: uint64! +} + +"""""" +type AccountDosdNetworkAnalyticsAdaptiveGroupsAvgConfidence { + """Confidence interval for the corresponding point estimate""" + bitRate: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateDay: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateFifteenMinutes: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateFiveMinutes: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateHour: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateMinute: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateTenSeconds: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRate: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateDay: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateFifteenMinutes: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateFiveMinutes: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateHour: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateMinute: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateTenSeconds: Confidence! +} + +"""""" +type AccountDosdNetworkAnalyticsAdaptiveGroupsConfidence { + """ + The average of values for a metric per dimension, with confidence intervals + """ + avg: AccountDosdNetworkAnalyticsAdaptiveGroupsAvgConfidence + + """Confidence level that was requested""" + level: float64! + + """ + The sum of values for a metric per dimension, with confidence intervals + """ + sum: AccountDosdNetworkAnalyticsAdaptiveGroupsSumConfidence +} + +"""""" +type AccountDosdNetworkAnalyticsAdaptiveGroupsDimensions { + """Application tag associated with the packet""" + applicationTag: string! + + """Unique identifier of the mitigation that matched the packet, if any""" + attackId: string! + + """Attack vector of the rule that matched the packet, if any""" + attackVector: string! + + """ + City where the Cloudflare datacenter that received the packet is located + """ + coloCity: string! + + """ + Cloudflare datacenter that received the packet (nearest IATA airport code) + """ + coloCode: string! + + """ + Country where the Cloudflare datacenter that received the packet is located (ISO 3166-1 alpha-2) + """ + coloCountry: string! + + """ + Latitude and longitude where the Cloudflare datacenter that received the packet is located (Geohash encoding) + """ + coloGeohash: string! + + """ + Cloudflare datacenter that received the packet (unique site identifier) + """ + coloName: string! + + """Date that the packet was received""" + date: Date! + + """Date and time that the packet was received""" + datetime: Time! + + """ + Date and time that the packet was received, rounded to the start of the nearest fifteen minutes + """ + datetimeFifteenMinutes: Time! + + """ + Date and time that the packet was received, rounded to the start of the nearest five minutes + """ + datetimeFiveMinutes: Time! + + """ + Date and time that the packet was received, rounded to the start of the nearest hour + """ + datetimeHour: Time! + + """ + Date and time that the packet was received, rounded to the start of the nearest minute + """ + datetimeMinute: Time! + + """ + Date and time that the packet was received, rounded to the start of the nearest ten seconds + """ + datetimeTenSeconds: Time! + + """ + ASN associated with the destination IP of the packet, or 0 if there was no mapping available + """ + destinationAsn: uint32! + + """ + Name of ASN associated with the destination IP of the packet, if available + """ + destinationAsnName: string! + + """ + Country where the destination IP of the packet is located (ISO 3166-1 alpha-2) + """ + destinationCountry: string! + + """ + Latitude and longitude where the destination IP of the packet is located (Geohash encoding) + """ + destinationGeohash: string! + + """Value of the Destination Port header field in the TCP or UDP packet""" + destinationPort: uint16! + + """ + Direction of the packet relative to the customer network (possible values: inbound, outbound, lateral) + """ + direction: string! + + """ + Value of the Ethertype header field in the Ethernet packet (2048 for IPv4; 34525 for IPv6) + """ + ethertype: uint16! + + """Value of the Checkusm header field in the GRE packet""" + greChecksum: uint16! + + """Value of the Ethertype header field in the GRE packet""" + greEthertype: uint16! + + """Length of the GRE packet header, in bytes""" + greHeaderLength: uint16! + + """Value of the Key header field in the GRE packet""" + greKey: uint32! + + """Value of the Sequence Number header field in the GRE packet""" + greSequenceNumber: uint32! + + """Value of the Version header field in the GRE packet""" + greVersion: uint8! + + """Value of the Checkusm header field in the ICMP packet""" + icmpChecksum: uint16! + + """Value of the Code header field in the ICMP packet""" + icmpCode: uint8! + + """Value of the Type header field in the ICMP packet""" + icmpType: uint8! + + """ + Value of the Destination Address header field in the IPv4 or IPv6 packet + """ + ipDestinationAddress: string! + + """ + Computed subnet of the Destination Address header field in the IPv4 or IPv6 packet (/24 for IPv4; /48 for IPv6) + """ + ipDestinationSubnet: string! + + """Value of the Fragment Offset header field in the IPv4 or IPv6 packet""" + ipFragmentOffset: uint16! + + """Length of the IPv4 or IPv6 packet header, in bytes""" + ipHeaderLength: uint16! + + """Value of the More Fragments header field in the IPv4 or IPv6 packet""" + ipMoreFragments: uint8! + + """Value of the Protocol header field in the IPv4 or IPv6 packet""" + ipProtocol: uint8! + + """ + Name of the protocol specified by the Protocol header field in the IPv4 or IPv6 packet + """ + ipProtocolName: string! + + """Value of the Source Address header field in the IPv4 or IPv6 packet""" + ipSourceAddress: string! + + """ + Computed subnet of the Source Address header field in the IPv4 or IPv6 packet (/24 for IPv4; /48 for IPv6) + """ + ipSourceSubnet: string! + + """Total length of the IPv4 or IPv6 packet, in bytes""" + ipTotalLength: uint16! + + """ + Total length of the IPv4 or IPv6 packet, in bytes, with the last two digits truncated + """ + ipTotalLengthBuckets: uint16! + + """ + Value of the TTL header field in the IPv4 packet or the Hop Limit header field in the IPv6 packet + """ + ipTtl: uint8! + + """ + Value of the TTL header field in the IPv4 packet or the Hop Limit header field in the IPv6 packet, with the last digit truncated + """ + ipTtlBuckets: uint8! + + """Value of the Checksum header field in the IPv4 packet""" + ipv4Checksum: uint16! + + """Value of the Don't Fragment header field in the IPv4 packet""" + ipv4DontFragment: uint8! + + """ + Value of the Differentiated Services Code Point header field in the IPv4 packet + """ + ipv4Dscp: uint8! + + """ + Value of the Explicit Congestion Notification header field in the IPv4 packet + """ + ipv4Ecn: uint8! + + """Value of the Identification header field in the IPv4 packet""" + ipv4Identification: uint16! + + """List of Options numbers included in the IPv4 packet header""" + ipv4Options: string! + + """ + Value of the Differentiated Services Code Point header field in the IPv6 packet + """ + ipv6Dscp: uint8! + + """ + Value of the Explicit Congestion Notification header field in the IPv6 packet + """ + ipv6Ecn: uint8! + + """List of Extension Header numbers included in the IPv6 packet header""" + ipv6ExtensionHeaders: string! + + """Value of the Flow Label header field in the IPv6 packet""" + ipv6FlowLabel: uint32! + + """Value of the Identification extension header field in the IPv6 packet""" + ipv6Identification: uint32! + + """IP lease tag associated with the packet""" + leaseTag: string! + + """Reason for applying a mitigation to the packet, if any""" + mitigationReason: string! + + """ + Whether the packet matched a local or global mitigation, if any (possible values: local, global) + """ + mitigationScope: string! + + """The action that was taken on the packet (possible values: pass, drop)""" + outcome: string! + + """IP prefix tag associated with the packet""" + prefixTag: string! + + """State of the packet in the context of the protocol, if available""" + protocolState: string! + + """Unique identifier of the rule that matched the packet, if any""" + ruleId: string! + + """Human-readable name of the rule that matched the packet, if any""" + ruleName: string! + + """ + Unique identifier of the ruleset containing the rule that matched the packet, if any + """ + rulesetId: string! + + """ + Unique identifier of the ruleset override containing the rule that matched the packet, if any + """ + rulesetOverrideId: string! + + """ABR sample interval""" + sampleInterval: uint32! + + """ + ASN associated with the source IP of the packet, or 0 if there was no mapping available + """ + sourceAsn: uint32! + + """Name of ASN associated with the source IP of the packet, if available""" + sourceAsnName: string! + + """ + Country where the source IP of the packet is located (ISO 3166-1 alpha-2) + """ + sourceCountry: string! + + """ + Latitude and longitude where the source IP of the packet is located (Geohash encoding) + """ + sourceGeohash: string! + + """Value of the Source Port header field in the TCP or UDP packet""" + sourcePort: uint16! + + """Value of the Acknowledgement Number header field in the TCP packet""" + tcpAcknowledgementNumber: uint32! + + """Value of the Checkusm header field in the TCP packet""" + tcpChecksum: uint16! + + """Value of the Data Offset header field in the TCP packet""" + tcpDataOffset: uint16! + + """Value of the Flags header field in the TCP packet""" + tcpFlags: uint8! + + """ + Human-readable string representation of the Flags header field in the TCP packet + """ + tcpFlagsString: string! + + """Value of the MSS option header field in the TCP packet""" + tcpMss: uint16! + + """List of Options numbers included in the TCP packet header""" + tcpOptions: string! + + """Value of the SACK Blocks option header field in the TCP packet""" + tcpSackBlocks: string! + + """Value of the SACK Permitted option header field in the TCP packet""" + tcpSackPermitted: uint8! + + """Value of the Sequence Number header field in the TCP packet""" + tcpSequenceNumber: uint32! + + """ + Value of the Timestamp Echo Reply option header field in the TCP packet + """ + tcpTimestampEcr: uint32! + + """Value of the Timestamp option header field in the TCP packet""" + tcpTimestampValue: uint32! + + """Value of the Urgent Pointer header field in the TCP packet""" + tcpUrgentPointer: uint16! + + """Value of the Window Scale option header field in the TCP packet""" + tcpWindowScale: uint16! + + """Value of the Window Size header field in the TCP packet""" + tcpWindowSize: uint16! + + """Value of the Checkusm header field in the UDP packet""" + udpChecksum: uint16! + + """Value of the Payload Length header field in the UDP packet""" + udpPayloadLength: uint16! + + """ + The action that Cloudflare thinks should be taken on the packet (possible values: pass, drop) + """ + verdict: string! +} + +"""""" +input AccountDosdNetworkAnalyticsAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountDosdNetworkAnalyticsAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountDosdNetworkAnalyticsAdaptiveGroupsFilter_InputObject!] + + """""" + applicationTag: string + + """""" + applicationTag_geq: string + + """""" + applicationTag_gt: string + + """""" + applicationTag_in: [string!] + + """""" + applicationTag_leq: string + + """""" + applicationTag_like: string + + """""" + applicationTag_lt: string + + """""" + applicationTag_neq: string + + """""" + applicationTag_notin: [string!] + + """""" + applicationTag_notlike: string + + """""" + attackId: string + + """""" + attackId_geq: string + + """""" + attackId_gt: string + + """""" + attackId_in: [string!] + + """""" + attackId_leq: string + + """""" + attackId_like: string + + """""" + attackId_lt: string + + """""" + attackId_neq: string + + """""" + attackId_notin: [string!] + + """""" + attackId_notlike: string + + """""" + attackVector: string + + """""" + attackVector_geq: string + + """""" + attackVector_gt: string + + """""" + attackVector_in: [string!] + + """""" + attackVector_leq: string + + """""" + attackVector_like: string + + """""" + attackVector_lt: string + + """""" + attackVector_neq: string + + """""" + attackVector_notin: [string!] + + """""" + attackVector_notlike: string + + """""" + coloCity: string + + """""" + coloCity_geq: string + + """""" + coloCity_gt: string + + """""" + coloCity_in: [string!] + + """""" + coloCity_leq: string + + """""" + coloCity_like: string + + """""" + coloCity_lt: string + + """""" + coloCity_neq: string + + """""" + coloCity_notin: [string!] + + """""" + coloCity_notlike: string + + """""" + coloCode: string + + """""" + coloCode_geq: string + + """""" + coloCode_gt: string + + """""" + coloCode_in: [string!] + + """""" + coloCode_leq: string + + """""" + coloCode_like: string + + """""" + coloCode_lt: string + + """""" + coloCode_neq: string + + """""" + coloCode_notin: [string!] + + """""" + coloCode_notlike: string + + """""" + coloCountry: string + + """""" + coloCountry_geq: string + + """""" + coloCountry_gt: string + + """""" + coloCountry_in: [string!] + + """""" + coloCountry_leq: string + + """""" + coloCountry_like: string + + """""" + coloCountry_lt: string + + """""" + coloCountry_neq: string + + """""" + coloCountry_notin: [string!] + + """""" + coloCountry_notlike: string + + """""" + coloGeohash: string + + """""" + coloGeohash_geq: string + + """""" + coloGeohash_gt: string + + """""" + coloGeohash_in: [string!] + + """""" + coloGeohash_leq: string + + """""" + coloGeohash_like: string + + """""" + coloGeohash_lt: string + + """""" + coloGeohash_neq: string + + """""" + coloGeohash_notin: [string!] + + """""" + coloGeohash_notlike: string + + """""" + coloName: string + + """""" + coloName_geq: string + + """""" + coloName_gt: string + + """""" + coloName_in: [string!] + + """""" + coloName_leq: string + + """""" + coloName_like: string + + """""" + coloName_lt: string + + """""" + coloName_neq: string + + """""" + coloName_notin: [string!] + + """""" + coloName_notlike: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetimeTenSeconds: Time + + """""" + datetimeTenSeconds_geq: Time + + """""" + datetimeTenSeconds_gt: Time + + """""" + datetimeTenSeconds_in: [Time!] + + """""" + datetimeTenSeconds_leq: Time + + """""" + datetimeTenSeconds_lt: Time + + """""" + datetimeTenSeconds_neq: Time + + """""" + datetimeTenSeconds_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + destinationAsn: uint32 + + """""" + destinationAsnName: string + + """""" + destinationAsnName_geq: string + + """""" + destinationAsnName_gt: string + + """""" + destinationAsnName_in: [string!] + + """""" + destinationAsnName_leq: string + + """""" + destinationAsnName_like: string + + """""" + destinationAsnName_lt: string + + """""" + destinationAsnName_neq: string + + """""" + destinationAsnName_notin: [string!] + + """""" + destinationAsnName_notlike: string + + """""" + destinationAsn_geq: uint32 + + """""" + destinationAsn_gt: uint32 + + """""" + destinationAsn_in: [uint32!] + + """""" + destinationAsn_leq: uint32 + + """""" + destinationAsn_lt: uint32 + + """""" + destinationAsn_neq: uint32 + + """""" + destinationAsn_notin: [uint32!] + + """""" + destinationCountry: string + + """""" + destinationCountry_geq: string + + """""" + destinationCountry_gt: string + + """""" + destinationCountry_in: [string!] + + """""" + destinationCountry_leq: string + + """""" + destinationCountry_like: string + + """""" + destinationCountry_lt: string + + """""" + destinationCountry_neq: string + + """""" + destinationCountry_notin: [string!] + + """""" + destinationCountry_notlike: string + + """""" + destinationGeohash: string + + """""" + destinationGeohash_geq: string + + """""" + destinationGeohash_gt: string + + """""" + destinationGeohash_in: [string!] + + """""" + destinationGeohash_leq: string + + """""" + destinationGeohash_like: string + + """""" + destinationGeohash_lt: string + + """""" + destinationGeohash_neq: string + + """""" + destinationGeohash_notin: [string!] + + """""" + destinationGeohash_notlike: string + + """""" + destinationPort: uint16 + + """""" + destinationPort_geq: uint16 + + """""" + destinationPort_gt: uint16 + + """""" + destinationPort_in: [uint16!] + + """""" + destinationPort_leq: uint16 + + """""" + destinationPort_lt: uint16 + + """""" + destinationPort_neq: uint16 + + """""" + destinationPort_notin: [uint16!] + + """""" + direction: string + + """""" + direction_geq: string + + """""" + direction_gt: string + + """""" + direction_in: [string!] + + """""" + direction_leq: string + + """""" + direction_like: string + + """""" + direction_lt: string + + """""" + direction_neq: string + + """""" + direction_notin: [string!] + + """""" + direction_notlike: string + + """""" + ethertype: uint16 + + """""" + ethertype_geq: uint16 + + """""" + ethertype_gt: uint16 + + """""" + ethertype_in: [uint16!] + + """""" + ethertype_leq: uint16 + + """""" + ethertype_lt: uint16 + + """""" + ethertype_neq: uint16 + + """""" + ethertype_notin: [uint16!] + + """""" + greChecksum: uint16 + + """""" + greChecksum_geq: uint16 + + """""" + greChecksum_gt: uint16 + + """""" + greChecksum_in: [uint16!] + + """""" + greChecksum_leq: uint16 + + """""" + greChecksum_lt: uint16 + + """""" + greChecksum_neq: uint16 + + """""" + greChecksum_notin: [uint16!] + + """""" + greEthertype: uint16 + + """""" + greEthertype_geq: uint16 + + """""" + greEthertype_gt: uint16 + + """""" + greEthertype_in: [uint16!] + + """""" + greEthertype_leq: uint16 + + """""" + greEthertype_lt: uint16 + + """""" + greEthertype_neq: uint16 + + """""" + greEthertype_notin: [uint16!] + + """""" + greHeaderLength: uint16 + + """""" + greHeaderLength_geq: uint16 + + """""" + greHeaderLength_gt: uint16 + + """""" + greHeaderLength_in: [uint16!] + + """""" + greHeaderLength_leq: uint16 + + """""" + greHeaderLength_lt: uint16 + + """""" + greHeaderLength_neq: uint16 + + """""" + greHeaderLength_notin: [uint16!] + + """""" + greKey: uint32 + + """""" + greKey_geq: uint32 + + """""" + greKey_gt: uint32 + + """""" + greKey_in: [uint32!] + + """""" + greKey_leq: uint32 + + """""" + greKey_lt: uint32 + + """""" + greKey_neq: uint32 + + """""" + greKey_notin: [uint32!] + + """""" + greSequenceNumber: uint32 + + """""" + greSequenceNumber_geq: uint32 + + """""" + greSequenceNumber_gt: uint32 + + """""" + greSequenceNumber_in: [uint32!] + + """""" + greSequenceNumber_leq: uint32 + + """""" + greSequenceNumber_lt: uint32 + + """""" + greSequenceNumber_neq: uint32 + + """""" + greSequenceNumber_notin: [uint32!] + + """""" + greVersion: uint8 + + """""" + greVersion_geq: uint8 + + """""" + greVersion_gt: uint8 + + """""" + greVersion_in: bytes + + """""" + greVersion_leq: uint8 + + """""" + greVersion_lt: uint8 + + """""" + greVersion_neq: uint8 + + """""" + greVersion_notin: bytes + + """""" + icmpChecksum: uint16 + + """""" + icmpChecksum_geq: uint16 + + """""" + icmpChecksum_gt: uint16 + + """""" + icmpChecksum_in: [uint16!] + + """""" + icmpChecksum_leq: uint16 + + """""" + icmpChecksum_lt: uint16 + + """""" + icmpChecksum_neq: uint16 + + """""" + icmpChecksum_notin: [uint16!] + + """""" + icmpCode: uint8 + + """""" + icmpCode_geq: uint8 + + """""" + icmpCode_gt: uint8 + + """""" + icmpCode_in: bytes + + """""" + icmpCode_leq: uint8 + + """""" + icmpCode_lt: uint8 + + """""" + icmpCode_neq: uint8 + + """""" + icmpCode_notin: bytes + + """""" + icmpType: uint8 + + """""" + icmpType_geq: uint8 + + """""" + icmpType_gt: uint8 + + """""" + icmpType_in: bytes + + """""" + icmpType_leq: uint8 + + """""" + icmpType_lt: uint8 + + """""" + icmpType_neq: uint8 + + """""" + icmpType_notin: bytes + + """""" + ipDestinationAddress: string + + """""" + ipDestinationAddress_geq: string + + """""" + ipDestinationAddress_gt: string + + """""" + ipDestinationAddress_in: [string!] + + """""" + ipDestinationAddress_leq: string + + """""" + ipDestinationAddress_like: string + + """""" + ipDestinationAddress_lt: string + + """""" + ipDestinationAddress_neq: string + + """""" + ipDestinationAddress_notin: [string!] + + """""" + ipDestinationAddress_notlike: string + + """""" + ipDestinationSubnet: string + + """""" + ipDestinationSubnet_geq: string + + """""" + ipDestinationSubnet_gt: string + + """""" + ipDestinationSubnet_in: [string!] + + """""" + ipDestinationSubnet_leq: string + + """""" + ipDestinationSubnet_like: string + + """""" + ipDestinationSubnet_lt: string + + """""" + ipDestinationSubnet_neq: string + + """""" + ipDestinationSubnet_notin: [string!] + + """""" + ipDestinationSubnet_notlike: string + + """""" + ipFragmentOffset: uint16 + + """""" + ipFragmentOffset_geq: uint16 + + """""" + ipFragmentOffset_gt: uint16 + + """""" + ipFragmentOffset_in: [uint16!] + + """""" + ipFragmentOffset_leq: uint16 + + """""" + ipFragmentOffset_lt: uint16 + + """""" + ipFragmentOffset_neq: uint16 + + """""" + ipFragmentOffset_notin: [uint16!] + + """""" + ipHeaderLength: uint16 + + """""" + ipHeaderLength_geq: uint16 + + """""" + ipHeaderLength_gt: uint16 + + """""" + ipHeaderLength_in: [uint16!] + + """""" + ipHeaderLength_leq: uint16 + + """""" + ipHeaderLength_lt: uint16 + + """""" + ipHeaderLength_neq: uint16 + + """""" + ipHeaderLength_notin: [uint16!] + + """""" + ipMoreFragments: uint8 + + """""" + ipMoreFragments_geq: uint8 + + """""" + ipMoreFragments_gt: uint8 + + """""" + ipMoreFragments_in: bytes + + """""" + ipMoreFragments_leq: uint8 + + """""" + ipMoreFragments_lt: uint8 + + """""" + ipMoreFragments_neq: uint8 + + """""" + ipMoreFragments_notin: bytes + + """""" + ipProtocol: uint8 + + """""" + ipProtocolName: string + + """""" + ipProtocolName_geq: string + + """""" + ipProtocolName_gt: string + + """""" + ipProtocolName_in: [string!] + + """""" + ipProtocolName_leq: string + + """""" + ipProtocolName_like: string + + """""" + ipProtocolName_lt: string + + """""" + ipProtocolName_neq: string + + """""" + ipProtocolName_notin: [string!] + + """""" + ipProtocolName_notlike: string + + """""" + ipProtocol_geq: uint8 + + """""" + ipProtocol_gt: uint8 + + """""" + ipProtocol_in: bytes + + """""" + ipProtocol_leq: uint8 + + """""" + ipProtocol_lt: uint8 + + """""" + ipProtocol_neq: uint8 + + """""" + ipProtocol_notin: bytes + + """""" + ipSourceAddress: string + + """""" + ipSourceAddress_geq: string + + """""" + ipSourceAddress_gt: string + + """""" + ipSourceAddress_in: [string!] + + """""" + ipSourceAddress_leq: string + + """""" + ipSourceAddress_like: string + + """""" + ipSourceAddress_lt: string + + """""" + ipSourceAddress_neq: string + + """""" + ipSourceAddress_notin: [string!] + + """""" + ipSourceAddress_notlike: string + + """""" + ipSourceSubnet: string + + """""" + ipSourceSubnet_geq: string + + """""" + ipSourceSubnet_gt: string + + """""" + ipSourceSubnet_in: [string!] + + """""" + ipSourceSubnet_leq: string + + """""" + ipSourceSubnet_like: string + + """""" + ipSourceSubnet_lt: string + + """""" + ipSourceSubnet_neq: string + + """""" + ipSourceSubnet_notin: [string!] + + """""" + ipSourceSubnet_notlike: string + + """""" + ipTotalLength: uint16 + + """""" + ipTotalLengthBuckets: uint16 + + """""" + ipTotalLengthBuckets_geq: uint16 + + """""" + ipTotalLengthBuckets_gt: uint16 + + """""" + ipTotalLengthBuckets_in: [uint16!] + + """""" + ipTotalLengthBuckets_leq: uint16 + + """""" + ipTotalLengthBuckets_lt: uint16 + + """""" + ipTotalLengthBuckets_neq: uint16 + + """""" + ipTotalLengthBuckets_notin: [uint16!] + + """""" + ipTotalLength_geq: uint16 + + """""" + ipTotalLength_gt: uint16 + + """""" + ipTotalLength_in: [uint16!] + + """""" + ipTotalLength_leq: uint16 + + """""" + ipTotalLength_lt: uint16 + + """""" + ipTotalLength_neq: uint16 + + """""" + ipTotalLength_notin: [uint16!] + + """""" + ipTtl: uint8 + + """""" + ipTtlBuckets: uint8 + + """""" + ipTtlBuckets_geq: uint8 + + """""" + ipTtlBuckets_gt: uint8 + + """""" + ipTtlBuckets_in: bytes + + """""" + ipTtlBuckets_leq: uint8 + + """""" + ipTtlBuckets_lt: uint8 + + """""" + ipTtlBuckets_neq: uint8 + + """""" + ipTtlBuckets_notin: bytes + + """""" + ipTtl_geq: uint8 + + """""" + ipTtl_gt: uint8 + + """""" + ipTtl_in: bytes + + """""" + ipTtl_leq: uint8 + + """""" + ipTtl_lt: uint8 + + """""" + ipTtl_neq: uint8 + + """""" + ipTtl_notin: bytes + + """""" + ipv4Checksum: uint16 + + """""" + ipv4Checksum_geq: uint16 + + """""" + ipv4Checksum_gt: uint16 + + """""" + ipv4Checksum_in: [uint16!] + + """""" + ipv4Checksum_leq: uint16 + + """""" + ipv4Checksum_lt: uint16 + + """""" + ipv4Checksum_neq: uint16 + + """""" + ipv4Checksum_notin: [uint16!] + + """""" + ipv4DontFragment: uint8 + + """""" + ipv4DontFragment_geq: uint8 + + """""" + ipv4DontFragment_gt: uint8 + + """""" + ipv4DontFragment_in: bytes + + """""" + ipv4DontFragment_leq: uint8 + + """""" + ipv4DontFragment_lt: uint8 + + """""" + ipv4DontFragment_neq: uint8 + + """""" + ipv4DontFragment_notin: bytes + + """""" + ipv4Dscp: uint8 + + """""" + ipv4Dscp_geq: uint8 + + """""" + ipv4Dscp_gt: uint8 + + """""" + ipv4Dscp_in: bytes + + """""" + ipv4Dscp_leq: uint8 + + """""" + ipv4Dscp_lt: uint8 + + """""" + ipv4Dscp_neq: uint8 + + """""" + ipv4Dscp_notin: bytes + + """""" + ipv4Ecn: uint8 + + """""" + ipv4Ecn_geq: uint8 + + """""" + ipv4Ecn_gt: uint8 + + """""" + ipv4Ecn_in: bytes + + """""" + ipv4Ecn_leq: uint8 + + """""" + ipv4Ecn_lt: uint8 + + """""" + ipv4Ecn_neq: uint8 + + """""" + ipv4Ecn_notin: bytes + + """""" + ipv4Identification: uint16 + + """""" + ipv4Identification_geq: uint16 + + """""" + ipv4Identification_gt: uint16 + + """""" + ipv4Identification_in: [uint16!] + + """""" + ipv4Identification_leq: uint16 + + """""" + ipv4Identification_lt: uint16 + + """""" + ipv4Identification_neq: uint16 + + """""" + ipv4Identification_notin: [uint16!] + + """""" + ipv4Options: string + + """""" + ipv4Options_geq: string + + """""" + ipv4Options_gt: string + + """""" + ipv4Options_in: [string!] + + """""" + ipv4Options_leq: string + + """""" + ipv4Options_like: string + + """""" + ipv4Options_lt: string + + """""" + ipv4Options_neq: string + + """""" + ipv4Options_notin: [string!] + + """""" + ipv4Options_notlike: string + + """""" + ipv6Dscp: uint8 + + """""" + ipv6Dscp_geq: uint8 + + """""" + ipv6Dscp_gt: uint8 + + """""" + ipv6Dscp_in: bytes + + """""" + ipv6Dscp_leq: uint8 + + """""" + ipv6Dscp_lt: uint8 + + """""" + ipv6Dscp_neq: uint8 + + """""" + ipv6Dscp_notin: bytes + + """""" + ipv6Ecn: uint8 + + """""" + ipv6Ecn_geq: uint8 + + """""" + ipv6Ecn_gt: uint8 + + """""" + ipv6Ecn_in: bytes + + """""" + ipv6Ecn_leq: uint8 + + """""" + ipv6Ecn_lt: uint8 + + """""" + ipv6Ecn_neq: uint8 + + """""" + ipv6Ecn_notin: bytes + + """""" + ipv6ExtensionHeaders: string + + """""" + ipv6ExtensionHeaders_geq: string + + """""" + ipv6ExtensionHeaders_gt: string + + """""" + ipv6ExtensionHeaders_in: [string!] + + """""" + ipv6ExtensionHeaders_leq: string + + """""" + ipv6ExtensionHeaders_like: string + + """""" + ipv6ExtensionHeaders_lt: string + + """""" + ipv6ExtensionHeaders_neq: string + + """""" + ipv6ExtensionHeaders_notin: [string!] + + """""" + ipv6ExtensionHeaders_notlike: string + + """""" + ipv6FlowLabel: uint32 + + """""" + ipv6FlowLabel_geq: uint32 + + """""" + ipv6FlowLabel_gt: uint32 + + """""" + ipv6FlowLabel_in: [uint32!] + + """""" + ipv6FlowLabel_leq: uint32 + + """""" + ipv6FlowLabel_lt: uint32 + + """""" + ipv6FlowLabel_neq: uint32 + + """""" + ipv6FlowLabel_notin: [uint32!] + + """""" + ipv6Identification: uint32 + + """""" + ipv6Identification_geq: uint32 + + """""" + ipv6Identification_gt: uint32 + + """""" + ipv6Identification_in: [uint32!] + + """""" + ipv6Identification_leq: uint32 + + """""" + ipv6Identification_lt: uint32 + + """""" + ipv6Identification_neq: uint32 + + """""" + ipv6Identification_notin: [uint32!] + + """""" + leaseTag: string + + """""" + leaseTag_geq: string + + """""" + leaseTag_gt: string + + """""" + leaseTag_in: [string!] + + """""" + leaseTag_leq: string + + """""" + leaseTag_like: string + + """""" + leaseTag_lt: string + + """""" + leaseTag_neq: string + + """""" + leaseTag_notin: [string!] + + """""" + leaseTag_notlike: string + + """""" + mitigationReason: string + + """""" + mitigationReason_geq: string + + """""" + mitigationReason_gt: string + + """""" + mitigationReason_in: [string!] + + """""" + mitigationReason_leq: string + + """""" + mitigationReason_like: string + + """""" + mitigationReason_lt: string + + """""" + mitigationReason_neq: string + + """""" + mitigationReason_notin: [string!] + + """""" + mitigationReason_notlike: string + + """""" + mitigationScope: string + + """""" + mitigationScope_geq: string + + """""" + mitigationScope_gt: string + + """""" + mitigationScope_in: [string!] + + """""" + mitigationScope_leq: string + + """""" + mitigationScope_like: string + + """""" + mitigationScope_lt: string + + """""" + mitigationScope_neq: string + + """""" + mitigationScope_notin: [string!] + + """""" + mitigationScope_notlike: string + + """""" + outcome: string + + """""" + outcome_geq: string + + """""" + outcome_gt: string + + """""" + outcome_in: [string!] + + """""" + outcome_leq: string + + """""" + outcome_like: string + + """""" + outcome_lt: string + + """""" + outcome_neq: string + + """""" + outcome_notin: [string!] + + """""" + outcome_notlike: string + + """""" + prefixTag: string + + """""" + prefixTag_geq: string + + """""" + prefixTag_gt: string + + """""" + prefixTag_in: [string!] + + """""" + prefixTag_leq: string + + """""" + prefixTag_like: string + + """""" + prefixTag_lt: string + + """""" + prefixTag_neq: string + + """""" + prefixTag_notin: [string!] + + """""" + prefixTag_notlike: string + + """""" + protocolState: string + + """""" + protocolState_geq: string + + """""" + protocolState_gt: string + + """""" + protocolState_in: [string!] + + """""" + protocolState_leq: string + + """""" + protocolState_like: string + + """""" + protocolState_lt: string + + """""" + protocolState_neq: string + + """""" + protocolState_notin: [string!] + + """""" + protocolState_notlike: string + + """""" + ruleId: string + + """""" + ruleId_geq: string + + """""" + ruleId_gt: string + + """""" + ruleId_in: [string!] + + """""" + ruleId_leq: string + + """""" + ruleId_like: string + + """""" + ruleId_lt: string + + """""" + ruleId_neq: string + + """""" + ruleId_notin: [string!] + + """""" + ruleId_notlike: string + + """""" + ruleName: string + + """""" + ruleName_geq: string + + """""" + ruleName_gt: string + + """""" + ruleName_in: [string!] + + """""" + ruleName_leq: string + + """""" + ruleName_like: string + + """""" + ruleName_lt: string + + """""" + ruleName_neq: string + + """""" + ruleName_notin: [string!] + + """""" + ruleName_notlike: string + + """""" + rulesetId: string + + """""" + rulesetId_geq: string + + """""" + rulesetId_gt: string + + """""" + rulesetId_in: [string!] + + """""" + rulesetId_leq: string + + """""" + rulesetId_like: string + + """""" + rulesetId_lt: string + + """""" + rulesetId_neq: string + + """""" + rulesetId_notin: [string!] + + """""" + rulesetId_notlike: string + + """""" + rulesetOverrideId: string + + """""" + rulesetOverrideId_geq: string + + """""" + rulesetOverrideId_gt: string + + """""" + rulesetOverrideId_in: [string!] + + """""" + rulesetOverrideId_leq: string + + """""" + rulesetOverrideId_like: string + + """""" + rulesetOverrideId_lt: string + + """""" + rulesetOverrideId_neq: string + + """""" + rulesetOverrideId_notin: [string!] + + """""" + rulesetOverrideId_notlike: string + + """""" + sampleInterval: uint32 + + """""" + sampleInterval_geq: uint32 + + """""" + sampleInterval_gt: uint32 + + """""" + sampleInterval_in: [uint32!] + + """""" + sampleInterval_leq: uint32 + + """""" + sampleInterval_lt: uint32 + + """""" + sampleInterval_neq: uint32 + + """""" + sampleInterval_notin: [uint32!] + + """""" + sourceAsn: uint32 + + """""" + sourceAsnName: string + + """""" + sourceAsnName_geq: string + + """""" + sourceAsnName_gt: string + + """""" + sourceAsnName_in: [string!] + + """""" + sourceAsnName_leq: string + + """""" + sourceAsnName_like: string + + """""" + sourceAsnName_lt: string + + """""" + sourceAsnName_neq: string + + """""" + sourceAsnName_notin: [string!] + + """""" + sourceAsnName_notlike: string + + """""" + sourceAsn_geq: uint32 + + """""" + sourceAsn_gt: uint32 + + """""" + sourceAsn_in: [uint32!] + + """""" + sourceAsn_leq: uint32 + + """""" + sourceAsn_lt: uint32 + + """""" + sourceAsn_neq: uint32 + + """""" + sourceAsn_notin: [uint32!] + + """""" + sourceCountry: string + + """""" + sourceCountry_geq: string + + """""" + sourceCountry_gt: string + + """""" + sourceCountry_in: [string!] + + """""" + sourceCountry_leq: string + + """""" + sourceCountry_like: string + + """""" + sourceCountry_lt: string + + """""" + sourceCountry_neq: string + + """""" + sourceCountry_notin: [string!] + + """""" + sourceCountry_notlike: string + + """""" + sourceGeohash: string + + """""" + sourceGeohash_geq: string + + """""" + sourceGeohash_gt: string + + """""" + sourceGeohash_in: [string!] + + """""" + sourceGeohash_leq: string + + """""" + sourceGeohash_like: string + + """""" + sourceGeohash_lt: string + + """""" + sourceGeohash_neq: string + + """""" + sourceGeohash_notin: [string!] + + """""" + sourceGeohash_notlike: string + + """""" + sourcePort: uint16 + + """""" + sourcePort_geq: uint16 + + """""" + sourcePort_gt: uint16 + + """""" + sourcePort_in: [uint16!] + + """""" + sourcePort_leq: uint16 + + """""" + sourcePort_lt: uint16 + + """""" + sourcePort_neq: uint16 + + """""" + sourcePort_notin: [uint16!] + + """""" + tcpAcknowledgementNumber: uint32 + + """""" + tcpAcknowledgementNumber_geq: uint32 + + """""" + tcpAcknowledgementNumber_gt: uint32 + + """""" + tcpAcknowledgementNumber_in: [uint32!] + + """""" + tcpAcknowledgementNumber_leq: uint32 + + """""" + tcpAcknowledgementNumber_lt: uint32 + + """""" + tcpAcknowledgementNumber_neq: uint32 + + """""" + tcpAcknowledgementNumber_notin: [uint32!] + + """""" + tcpChecksum: uint16 + + """""" + tcpChecksum_geq: uint16 + + """""" + tcpChecksum_gt: uint16 + + """""" + tcpChecksum_in: [uint16!] + + """""" + tcpChecksum_leq: uint16 + + """""" + tcpChecksum_lt: uint16 + + """""" + tcpChecksum_neq: uint16 + + """""" + tcpChecksum_notin: [uint16!] + + """""" + tcpDataOffset: uint16 + + """""" + tcpDataOffset_geq: uint16 + + """""" + tcpDataOffset_gt: uint16 + + """""" + tcpDataOffset_in: [uint16!] + + """""" + tcpDataOffset_leq: uint16 + + """""" + tcpDataOffset_lt: uint16 + + """""" + tcpDataOffset_neq: uint16 + + """""" + tcpDataOffset_notin: [uint16!] + + """""" + tcpFlags: uint8 + + """""" + tcpFlagsString: string + + """""" + tcpFlagsString_geq: string + + """""" + tcpFlagsString_gt: string + + """""" + tcpFlagsString_in: [string!] + + """""" + tcpFlagsString_leq: string + + """""" + tcpFlagsString_like: string + + """""" + tcpFlagsString_lt: string + + """""" + tcpFlagsString_neq: string + + """""" + tcpFlagsString_notin: [string!] + + """""" + tcpFlagsString_notlike: string + + """""" + tcpFlags_geq: uint8 + + """""" + tcpFlags_gt: uint8 + + """""" + tcpFlags_in: bytes + + """""" + tcpFlags_leq: uint8 + + """""" + tcpFlags_lt: uint8 + + """""" + tcpFlags_neq: uint8 + + """""" + tcpFlags_notin: bytes + + """""" + tcpMss: uint16 + + """""" + tcpMss_geq: uint16 + + """""" + tcpMss_gt: uint16 + + """""" + tcpMss_in: [uint16!] + + """""" + tcpMss_leq: uint16 + + """""" + tcpMss_lt: uint16 + + """""" + tcpMss_neq: uint16 + + """""" + tcpMss_notin: [uint16!] + + """""" + tcpOptions: string + + """""" + tcpOptions_geq: string + + """""" + tcpOptions_gt: string + + """""" + tcpOptions_in: [string!] + + """""" + tcpOptions_leq: string + + """""" + tcpOptions_like: string + + """""" + tcpOptions_lt: string + + """""" + tcpOptions_neq: string + + """""" + tcpOptions_notin: [string!] + + """""" + tcpOptions_notlike: string + + """""" + tcpSackBlocks: string + + """""" + tcpSackBlocks_geq: string + + """""" + tcpSackBlocks_gt: string + + """""" + tcpSackBlocks_in: [string!] + + """""" + tcpSackBlocks_leq: string + + """""" + tcpSackBlocks_like: string + + """""" + tcpSackBlocks_lt: string + + """""" + tcpSackBlocks_neq: string + + """""" + tcpSackBlocks_notin: [string!] + + """""" + tcpSackBlocks_notlike: string + + """""" + tcpSackPermitted: uint8 + + """""" + tcpSackPermitted_geq: uint8 + + """""" + tcpSackPermitted_gt: uint8 + + """""" + tcpSackPermitted_in: bytes + + """""" + tcpSackPermitted_leq: uint8 + + """""" + tcpSackPermitted_lt: uint8 + + """""" + tcpSackPermitted_neq: uint8 + + """""" + tcpSackPermitted_notin: bytes + + """""" + tcpSequenceNumber: uint32 + + """""" + tcpSequenceNumber_geq: uint32 + + """""" + tcpSequenceNumber_gt: uint32 + + """""" + tcpSequenceNumber_in: [uint32!] + + """""" + tcpSequenceNumber_leq: uint32 + + """""" + tcpSequenceNumber_lt: uint32 + + """""" + tcpSequenceNumber_neq: uint32 + + """""" + tcpSequenceNumber_notin: [uint32!] + + """""" + tcpTimestampEcr: uint32 + + """""" + tcpTimestampEcr_geq: uint32 + + """""" + tcpTimestampEcr_gt: uint32 + + """""" + tcpTimestampEcr_in: [uint32!] + + """""" + tcpTimestampEcr_leq: uint32 + + """""" + tcpTimestampEcr_lt: uint32 + + """""" + tcpTimestampEcr_neq: uint32 + + """""" + tcpTimestampEcr_notin: [uint32!] + + """""" + tcpTimestampValue: uint32 + + """""" + tcpTimestampValue_geq: uint32 + + """""" + tcpTimestampValue_gt: uint32 + + """""" + tcpTimestampValue_in: [uint32!] + + """""" + tcpTimestampValue_leq: uint32 + + """""" + tcpTimestampValue_lt: uint32 + + """""" + tcpTimestampValue_neq: uint32 + + """""" + tcpTimestampValue_notin: [uint32!] + + """""" + tcpUrgentPointer: uint16 + + """""" + tcpUrgentPointer_geq: uint16 + + """""" + tcpUrgentPointer_gt: uint16 + + """""" + tcpUrgentPointer_in: [uint16!] + + """""" + tcpUrgentPointer_leq: uint16 + + """""" + tcpUrgentPointer_lt: uint16 + + """""" + tcpUrgentPointer_neq: uint16 + + """""" + tcpUrgentPointer_notin: [uint16!] + + """""" + tcpWindowScale: uint16 + + """""" + tcpWindowScale_geq: uint16 + + """""" + tcpWindowScale_gt: uint16 + + """""" + tcpWindowScale_in: [uint16!] + + """""" + tcpWindowScale_leq: uint16 + + """""" + tcpWindowScale_lt: uint16 + + """""" + tcpWindowScale_neq: uint16 + + """""" + tcpWindowScale_notin: [uint16!] + + """""" + tcpWindowSize: uint16 + + """""" + tcpWindowSize_geq: uint16 + + """""" + tcpWindowSize_gt: uint16 + + """""" + tcpWindowSize_in: [uint16!] + + """""" + tcpWindowSize_leq: uint16 + + """""" + tcpWindowSize_lt: uint16 + + """""" + tcpWindowSize_neq: uint16 + + """""" + tcpWindowSize_notin: [uint16!] + + """""" + udpChecksum: uint16 + + """""" + udpChecksum_geq: uint16 + + """""" + udpChecksum_gt: uint16 + + """""" + udpChecksum_in: [uint16!] + + """""" + udpChecksum_leq: uint16 + + """""" + udpChecksum_lt: uint16 + + """""" + udpChecksum_neq: uint16 + + """""" + udpChecksum_notin: [uint16!] + + """""" + udpPayloadLength: uint16 + + """""" + udpPayloadLength_geq: uint16 + + """""" + udpPayloadLength_gt: uint16 + + """""" + udpPayloadLength_in: [uint16!] + + """""" + udpPayloadLength_leq: uint16 + + """""" + udpPayloadLength_lt: uint16 + + """""" + udpPayloadLength_neq: uint16 + + """""" + udpPayloadLength_notin: [uint16!] + + """""" + verdict: string + + """""" + verdict_geq: string + + """""" + verdict_gt: string + + """""" + verdict_in: [string!] + + """""" + verdict_leq: string + + """""" + verdict_like: string + + """""" + verdict_lt: string + + """""" + verdict_neq: string + + """""" + verdict_notin: [string!] + + """""" + verdict_notlike: string +} + +"""""" +enum AccountDosdNetworkAnalyticsAdaptiveGroupsOrderBy { + """applicationTag ascending""" + applicationTag_ASC + + """applicationTag descending""" + applicationTag_DESC + + """attackId ascending""" + attackId_ASC + + """attackId descending""" + attackId_DESC + + """attackVector ascending""" + attackVector_ASC + + """attackVector descending""" + attackVector_DESC + + """avg(bitRateDay) ascending""" + avg_bitRateDay_ASC + + """avg(bitRateDay) descending""" + avg_bitRateDay_DESC + + """avg(bitRateFifteenMinutes) ascending""" + avg_bitRateFifteenMinutes_ASC + + """avg(bitRateFifteenMinutes) descending""" + avg_bitRateFifteenMinutes_DESC + + """avg(bitRateFiveMinutes) ascending""" + avg_bitRateFiveMinutes_ASC + + """avg(bitRateFiveMinutes) descending""" + avg_bitRateFiveMinutes_DESC + + """avg(bitRateHour) ascending""" + avg_bitRateHour_ASC + + """avg(bitRateHour) descending""" + avg_bitRateHour_DESC + + """avg(bitRateMinute) ascending""" + avg_bitRateMinute_ASC + + """avg(bitRateMinute) descending""" + avg_bitRateMinute_DESC + + """avg(bitRateTenSeconds) ascending""" + avg_bitRateTenSeconds_ASC + + """avg(bitRateTenSeconds) descending""" + avg_bitRateTenSeconds_DESC + + """avg(bitRate) ascending""" + avg_bitRate_ASC + + """avg(bitRate) descending""" + avg_bitRate_DESC + + """avg(packetRateDay) ascending""" + avg_packetRateDay_ASC + + """avg(packetRateDay) descending""" + avg_packetRateDay_DESC + + """avg(packetRateFifteenMinutes) ascending""" + avg_packetRateFifteenMinutes_ASC + + """avg(packetRateFifteenMinutes) descending""" + avg_packetRateFifteenMinutes_DESC + + """avg(packetRateFiveMinutes) ascending""" + avg_packetRateFiveMinutes_ASC + + """avg(packetRateFiveMinutes) descending""" + avg_packetRateFiveMinutes_DESC + + """avg(packetRateHour) ascending""" + avg_packetRateHour_ASC + + """avg(packetRateHour) descending""" + avg_packetRateHour_DESC + + """avg(packetRateMinute) ascending""" + avg_packetRateMinute_ASC + + """avg(packetRateMinute) descending""" + avg_packetRateMinute_DESC + + """avg(packetRateTenSeconds) ascending""" + avg_packetRateTenSeconds_ASC + + """avg(packetRateTenSeconds) descending""" + avg_packetRateTenSeconds_DESC + + """avg(packetRate) ascending""" + avg_packetRate_ASC + + """avg(packetRate) descending""" + avg_packetRate_DESC + + """coloCity ascending""" + coloCity_ASC + + """coloCity descending""" + coloCity_DESC + + """coloCode ascending""" + coloCode_ASC + + """coloCode descending""" + coloCode_DESC + + """coloCountry ascending""" + coloCountry_ASC + + """coloCountry descending""" + coloCountry_DESC + + """coloGeohash ascending""" + coloGeohash_ASC + + """coloGeohash descending""" + coloGeohash_DESC + + """coloName ascending""" + coloName_ASC + + """coloName descending""" + coloName_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetimeTenSeconds ascending""" + datetimeTenSeconds_ASC + + """datetimeTenSeconds descending""" + datetimeTenSeconds_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """destinationAsnName ascending""" + destinationAsnName_ASC + + """destinationAsnName descending""" + destinationAsnName_DESC + + """destinationAsn ascending""" + destinationAsn_ASC + + """destinationAsn descending""" + destinationAsn_DESC + + """destinationCountry ascending""" + destinationCountry_ASC + + """destinationCountry descending""" + destinationCountry_DESC + + """destinationGeohash ascending""" + destinationGeohash_ASC + + """destinationGeohash descending""" + destinationGeohash_DESC + + """destinationPort ascending""" + destinationPort_ASC + + """destinationPort descending""" + destinationPort_DESC + + """direction ascending""" + direction_ASC + + """direction descending""" + direction_DESC + + """ethertype ascending""" + ethertype_ASC + + """ethertype descending""" + ethertype_DESC + + """greChecksum ascending""" + greChecksum_ASC + + """greChecksum descending""" + greChecksum_DESC + + """greEthertype ascending""" + greEthertype_ASC + + """greEthertype descending""" + greEthertype_DESC + + """greHeaderLength ascending""" + greHeaderLength_ASC + + """greHeaderLength descending""" + greHeaderLength_DESC + + """greKey ascending""" + greKey_ASC + + """greKey descending""" + greKey_DESC + + """greSequenceNumber ascending""" + greSequenceNumber_ASC + + """greSequenceNumber descending""" + greSequenceNumber_DESC + + """greVersion ascending""" + greVersion_ASC + + """greVersion descending""" + greVersion_DESC + + """icmpChecksum ascending""" + icmpChecksum_ASC + + """icmpChecksum descending""" + icmpChecksum_DESC + + """icmpCode ascending""" + icmpCode_ASC + + """icmpCode descending""" + icmpCode_DESC + + """icmpType ascending""" + icmpType_ASC + + """icmpType descending""" + icmpType_DESC + + """ipDestinationAddress ascending""" + ipDestinationAddress_ASC + + """ipDestinationAddress descending""" + ipDestinationAddress_DESC + + """ipDestinationSubnet ascending""" + ipDestinationSubnet_ASC + + """ipDestinationSubnet descending""" + ipDestinationSubnet_DESC + + """ipFragmentOffset ascending""" + ipFragmentOffset_ASC + + """ipFragmentOffset descending""" + ipFragmentOffset_DESC + + """ipHeaderLength ascending""" + ipHeaderLength_ASC + + """ipHeaderLength descending""" + ipHeaderLength_DESC + + """ipMoreFragments ascending""" + ipMoreFragments_ASC + + """ipMoreFragments descending""" + ipMoreFragments_DESC + + """ipProtocolName ascending""" + ipProtocolName_ASC + + """ipProtocolName descending""" + ipProtocolName_DESC + + """ipProtocol ascending""" + ipProtocol_ASC + + """ipProtocol descending""" + ipProtocol_DESC + + """ipSourceAddress ascending""" + ipSourceAddress_ASC + + """ipSourceAddress descending""" + ipSourceAddress_DESC + + """ipSourceSubnet ascending""" + ipSourceSubnet_ASC + + """ipSourceSubnet descending""" + ipSourceSubnet_DESC + + """ipTotalLengthBuckets ascending""" + ipTotalLengthBuckets_ASC + + """ipTotalLengthBuckets descending""" + ipTotalLengthBuckets_DESC + + """ipTotalLength ascending""" + ipTotalLength_ASC + + """ipTotalLength descending""" + ipTotalLength_DESC + + """ipTtlBuckets ascending""" + ipTtlBuckets_ASC + + """ipTtlBuckets descending""" + ipTtlBuckets_DESC + + """ipTtl ascending""" + ipTtl_ASC + + """ipTtl descending""" + ipTtl_DESC + + """ipv4Checksum ascending""" + ipv4Checksum_ASC + + """ipv4Checksum descending""" + ipv4Checksum_DESC + + """ipv4DontFragment ascending""" + ipv4DontFragment_ASC + + """ipv4DontFragment descending""" + ipv4DontFragment_DESC + + """ipv4Dscp ascending""" + ipv4Dscp_ASC + + """ipv4Dscp descending""" + ipv4Dscp_DESC + + """ipv4Ecn ascending""" + ipv4Ecn_ASC + + """ipv4Ecn descending""" + ipv4Ecn_DESC + + """ipv4Identification ascending""" + ipv4Identification_ASC + + """ipv4Identification descending""" + ipv4Identification_DESC + + """ipv4Options ascending""" + ipv4Options_ASC + + """ipv4Options descending""" + ipv4Options_DESC + + """ipv6Dscp ascending""" + ipv6Dscp_ASC + + """ipv6Dscp descending""" + ipv6Dscp_DESC + + """ipv6Ecn ascending""" + ipv6Ecn_ASC + + """ipv6Ecn descending""" + ipv6Ecn_DESC + + """ipv6ExtensionHeaders ascending""" + ipv6ExtensionHeaders_ASC + + """ipv6ExtensionHeaders descending""" + ipv6ExtensionHeaders_DESC + + """ipv6FlowLabel ascending""" + ipv6FlowLabel_ASC + + """ipv6FlowLabel descending""" + ipv6FlowLabel_DESC + + """ipv6Identification ascending""" + ipv6Identification_ASC + + """ipv6Identification descending""" + ipv6Identification_DESC + + """leaseTag ascending""" + leaseTag_ASC + + """leaseTag descending""" + leaseTag_DESC + + """mitigationReason ascending""" + mitigationReason_ASC + + """mitigationReason descending""" + mitigationReason_DESC + + """mitigationScope ascending""" + mitigationScope_ASC + + """mitigationScope descending""" + mitigationScope_DESC + + """outcome ascending""" + outcome_ASC + + """outcome descending""" + outcome_DESC + + """prefixTag ascending""" + prefixTag_ASC + + """prefixTag descending""" + prefixTag_DESC + + """protocolState ascending""" + protocolState_ASC + + """protocolState descending""" + protocolState_DESC + + """ruleId ascending""" + ruleId_ASC + + """ruleId descending""" + ruleId_DESC + + """ruleName ascending""" + ruleName_ASC + + """ruleName descending""" + ruleName_DESC + + """rulesetId ascending""" + rulesetId_ASC + + """rulesetId descending""" + rulesetId_DESC + + """rulesetOverrideId ascending""" + rulesetOverrideId_ASC + + """rulesetOverrideId descending""" + rulesetOverrideId_DESC + + """sampleInterval ascending""" + sampleInterval_ASC + + """sampleInterval descending""" + sampleInterval_DESC + + """sourceAsnName ascending""" + sourceAsnName_ASC + + """sourceAsnName descending""" + sourceAsnName_DESC + + """sourceAsn ascending""" + sourceAsn_ASC + + """sourceAsn descending""" + sourceAsn_DESC + + """sourceCountry ascending""" + sourceCountry_ASC + + """sourceCountry descending""" + sourceCountry_DESC + + """sourceGeohash ascending""" + sourceGeohash_ASC + + """sourceGeohash descending""" + sourceGeohash_DESC + + """sourcePort ascending""" + sourcePort_ASC + + """sourcePort descending""" + sourcePort_DESC + + """sum(bits) ascending""" + sum_bits_ASC + + """sum(bits) descending""" + sum_bits_DESC + + """sum(packets) ascending""" + sum_packets_ASC + + """sum(packets) descending""" + sum_packets_DESC + + """system ascending""" + system_ASC + + """system descending""" + system_DESC + + """tcpAcknowledgementNumber ascending""" + tcpAcknowledgementNumber_ASC + + """tcpAcknowledgementNumber descending""" + tcpAcknowledgementNumber_DESC + + """tcpChecksum ascending""" + tcpChecksum_ASC + + """tcpChecksum descending""" + tcpChecksum_DESC + + """tcpDataOffset ascending""" + tcpDataOffset_ASC + + """tcpDataOffset descending""" + tcpDataOffset_DESC + + """tcpFlagsString ascending""" + tcpFlagsString_ASC + + """tcpFlagsString descending""" + tcpFlagsString_DESC + + """tcpFlags ascending""" + tcpFlags_ASC + + """tcpFlags descending""" + tcpFlags_DESC + + """tcpMss ascending""" + tcpMss_ASC + + """tcpMss descending""" + tcpMss_DESC + + """tcpOptions ascending""" + tcpOptions_ASC + + """tcpOptions descending""" + tcpOptions_DESC + + """tcpSackBlocks ascending""" + tcpSackBlocks_ASC + + """tcpSackBlocks descending""" + tcpSackBlocks_DESC + + """tcpSackPermitted ascending""" + tcpSackPermitted_ASC + + """tcpSackPermitted descending""" + tcpSackPermitted_DESC + + """tcpSequenceNumber ascending""" + tcpSequenceNumber_ASC + + """tcpSequenceNumber descending""" + tcpSequenceNumber_DESC + + """tcpTimestampEcr ascending""" + tcpTimestampEcr_ASC + + """tcpTimestampEcr descending""" + tcpTimestampEcr_DESC + + """tcpTimestampValue ascending""" + tcpTimestampValue_ASC + + """tcpTimestampValue descending""" + tcpTimestampValue_DESC + + """tcpUrgentPointer ascending""" + tcpUrgentPointer_ASC + + """tcpUrgentPointer descending""" + tcpUrgentPointer_DESC + + """tcpWindowScale ascending""" + tcpWindowScale_ASC + + """tcpWindowScale descending""" + tcpWindowScale_DESC + + """tcpWindowSize ascending""" + tcpWindowSize_ASC + + """tcpWindowSize descending""" + tcpWindowSize_DESC + + """udpChecksum ascending""" + udpChecksum_ASC + + """udpChecksum descending""" + udpChecksum_DESC + + """udpPayloadLength ascending""" + udpPayloadLength_ASC + + """udpPayloadLength descending""" + udpPayloadLength_DESC + + """verdict ascending""" + verdict_ASC + + """verdict descending""" + verdict_DESC +} + +"""""" +type AccountDosdNetworkAnalyticsAdaptiveGroupsSum { + """Sum of bits received""" + bits: uint64! + + """Sum of packets received""" + packets: uint64! +} + +"""""" +type AccountDosdNetworkAnalyticsAdaptiveGroupsSumConfidence { + """Confidence interval for the corresponding point estimate""" + bits: Confidence! + + """Confidence interval for the corresponding point estimate""" + packets: Confidence! +} + +"""Durable Objects invocations with adaptive sampling""" +type AccountDurableObjectsInvocationsAdaptiveGroups { + """The average value used for sample interval""" + avg: AccountDurableObjectsInvocationsAdaptiveGroupsAvg + + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountDurableObjectsInvocationsAdaptiveGroupsConfidence! + + """List of dimensions to group by""" + dimensions: AccountDurableObjectsInvocationsAdaptiveGroupsDimensions + + """The max value for a metric""" + max: AccountDurableObjectsInvocationsAdaptiveGroupsMax + + """The min value for a metric""" + min: AccountDurableObjectsInvocationsAdaptiveGroupsMin + + """Quantiles of a metric per dimension""" + quantiles: AccountDurableObjectsInvocationsAdaptiveGroupsQuantiles + + """The sum of values for a metric per dimension""" + sum: AccountDurableObjectsInvocationsAdaptiveGroupsSum +} + +"""""" +type AccountDurableObjectsInvocationsAdaptiveGroupsAvg { + """""" + sampleInterval: float64! +} + +"""""" +type AccountDurableObjectsInvocationsAdaptiveGroupsConfidence { + """Confidence level that was requested""" + level: float64! + + """ + The sum of values for a metric per dimension, with confidence intervals + """ + sum: AccountDurableObjectsInvocationsAdaptiveGroupsSumConfidence +} + +"""""" +type AccountDurableObjectsInvocationsAdaptiveGroupsDimensions { + """Request datetime, truncated to start of a day""" + date: Date! + + """Request datetime""" + datetime: Time! + + """Request datetime, truncated to start of a minute""" + datetimeFifteenMinutes: Time! + + """Request datetime, truncated to start of a minute""" + datetimeFiveMinutes: Time! + + """Request datetime, truncated to start of an hour""" + datetimeHour: Time! + + """Request datetime, truncated to start of a minute""" + datetimeMinute: Time! + + """Request datetime, truncated to start of six hour window""" + datetimeSixHours: Time! + + """The name of the script environment""" + environmentName: string! + + """Durable Object namespace ID""" + namespaceId: string! + + """Durable Object ID as a hex string""" + objectId: string! + + """The name of the script""" + scriptName: string! + + """Status of the worker invocation""" + status: string! +} + +"""""" +input AccountDurableObjectsInvocationsAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountDurableObjectsInvocationsAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountDurableObjectsInvocationsAdaptiveGroupsFilter_InputObject!] + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetimeSixHours: Time + + """""" + datetimeSixHours_geq: Time + + """""" + datetimeSixHours_gt: Time + + """""" + datetimeSixHours_in: [Time!] + + """""" + datetimeSixHours_leq: Time + + """""" + datetimeSixHours_lt: Time + + """""" + datetimeSixHours_neq: Time + + """""" + datetimeSixHours_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + environmentName: string + + """""" + environmentName_geq: string + + """""" + environmentName_gt: string + + """""" + environmentName_in: [string!] + + """""" + environmentName_leq: string + + """""" + environmentName_like: string + + """""" + environmentName_lt: string + + """""" + environmentName_neq: string + + """""" + environmentName_notin: [string!] + + """""" + environmentName_notlike: string + + """""" + namespaceId: string + + """""" + namespaceId_geq: string + + """""" + namespaceId_gt: string + + """""" + namespaceId_in: [string!] + + """""" + namespaceId_leq: string + + """""" + namespaceId_like: string + + """""" + namespaceId_lt: string + + """""" + namespaceId_neq: string + + """""" + namespaceId_notin: [string!] + + """""" + namespaceId_notlike: string + + """""" + objectId: string + + """""" + objectId_geq: string + + """""" + objectId_gt: string + + """""" + objectId_in: [string!] + + """""" + objectId_leq: string + + """""" + objectId_like: string + + """""" + objectId_lt: string + + """""" + objectId_neq: string + + """""" + objectId_notin: [string!] + + """""" + objectId_notlike: string + + """""" + scriptName: string + + """""" + scriptName_geq: string + + """""" + scriptName_gt: string + + """""" + scriptName_in: [string!] + + """""" + scriptName_leq: string + + """""" + scriptName_like: string + + """""" + scriptName_lt: string + + """""" + scriptName_neq: string + + """""" + scriptName_notin: [string!] + + """""" + scriptName_notlike: string + + """""" + status: string + + """""" + status_geq: string + + """""" + status_gt: string + + """""" + status_in: [string!] + + """""" + status_leq: string + + """""" + status_like: string + + """""" + status_lt: string + + """""" + status_neq: string + + """""" + status_notin: [string!] + + """""" + status_notlike: string +} + +"""""" +type AccountDurableObjectsInvocationsAdaptiveGroupsMax { + """Maximum response body size for one request - bytes""" + responseBodySize: float64! + + """Maximum wall time for one request - microseconds""" + wallTime: float64! +} + +"""""" +type AccountDurableObjectsInvocationsAdaptiveGroupsMin { + """Minimum response body size for one request - bytes""" + responseBodySize: float64! + + """Minimum wall time for one request - microseconds""" + wallTime: float64! +} + +"""""" +enum AccountDurableObjectsInvocationsAdaptiveGroupsOrderBy { + """avg(sampleInterval) ascending""" + avg_sampleInterval_ASC + + """avg(sampleInterval) descending""" + avg_sampleInterval_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetimeSixHours ascending""" + datetimeSixHours_ASC + + """datetimeSixHours descending""" + datetimeSixHours_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """environmentName ascending""" + environmentName_ASC + + """environmentName descending""" + environmentName_DESC + + """max(responseBodySize) ascending""" + max_responseBodySize_ASC + + """max(responseBodySize) descending""" + max_responseBodySize_DESC + + """max(wallTime) ascending""" + max_wallTime_ASC + + """max(wallTime) descending""" + max_wallTime_DESC + + """min(responseBodySize) ascending""" + min_responseBodySize_ASC + + """min(responseBodySize) descending""" + min_responseBodySize_DESC + + """min(wallTime) ascending""" + min_wallTime_ASC + + """min(wallTime) descending""" + min_wallTime_DESC + + """namespaceId ascending""" + namespaceId_ASC + + """namespaceId descending""" + namespaceId_DESC + + """objectId ascending""" + objectId_ASC + + """objectId descending""" + objectId_DESC + + """quantiles(responseBodySizeP25) ascending""" + quantiles_responseBodySizeP25_ASC + + """quantiles(responseBodySizeP25) descending""" + quantiles_responseBodySizeP25_DESC + + """quantiles(responseBodySizeP50) ascending""" + quantiles_responseBodySizeP50_ASC + + """quantiles(responseBodySizeP50) descending""" + quantiles_responseBodySizeP50_DESC + + """quantiles(responseBodySizeP75) ascending""" + quantiles_responseBodySizeP75_ASC + + """quantiles(responseBodySizeP75) descending""" + quantiles_responseBodySizeP75_DESC + + """quantiles(responseBodySizeP90) ascending""" + quantiles_responseBodySizeP90_ASC + + """quantiles(responseBodySizeP90) descending""" + quantiles_responseBodySizeP90_DESC + + """quantiles(responseBodySizeP999) ascending""" + quantiles_responseBodySizeP999_ASC + + """quantiles(responseBodySizeP999) descending""" + quantiles_responseBodySizeP999_DESC + + """quantiles(responseBodySizeP99) ascending""" + quantiles_responseBodySizeP99_ASC + + """quantiles(responseBodySizeP99) descending""" + quantiles_responseBodySizeP99_DESC + + """quantiles(wallTimeP25) ascending""" + quantiles_wallTimeP25_ASC + + """quantiles(wallTimeP25) descending""" + quantiles_wallTimeP25_DESC + + """quantiles(wallTimeP50) ascending""" + quantiles_wallTimeP50_ASC + + """quantiles(wallTimeP50) descending""" + quantiles_wallTimeP50_DESC + + """quantiles(wallTimeP75) ascending""" + quantiles_wallTimeP75_ASC + + """quantiles(wallTimeP75) descending""" + quantiles_wallTimeP75_DESC + + """quantiles(wallTimeP90) ascending""" + quantiles_wallTimeP90_ASC + + """quantiles(wallTimeP90) descending""" + quantiles_wallTimeP90_DESC + + """quantiles(wallTimeP999) ascending""" + quantiles_wallTimeP999_ASC + + """quantiles(wallTimeP999) descending""" + quantiles_wallTimeP999_DESC + + """quantiles(wallTimeP99) ascending""" + quantiles_wallTimeP99_ASC + + """quantiles(wallTimeP99) descending""" + quantiles_wallTimeP99_DESC + + """scriptName ascending""" + scriptName_ASC + + """scriptName descending""" + scriptName_DESC + + """stableId ascending""" + stableId_ASC + + """stableId descending""" + stableId_DESC + + """status ascending""" + status_ASC + + """status descending""" + status_DESC + + """sum(errors) ascending""" + sum_errors_ASC + + """sum(errors) descending""" + sum_errors_DESC + + """sum(requests) ascending""" + sum_requests_ASC + + """sum(requests) descending""" + sum_requests_DESC + + """sum(responseBodySize) ascending""" + sum_responseBodySize_ASC + + """sum(responseBodySize) descending""" + sum_responseBodySize_DESC + + """sum(wallTime) ascending""" + sum_wallTime_ASC + + """sum(wallTime) descending""" + sum_wallTime_DESC +} + +"""""" +type AccountDurableObjectsInvocationsAdaptiveGroupsQuantiles { + """Response body size 25th percentile - bytes""" + responseBodySizeP25: float32! + + """Response body size 50th percentile - bytes""" + responseBodySizeP50: float32! + + """Response body size 75th percentile - bytes""" + responseBodySizeP75: float32! + + """Response body size 90th percentile - bytes""" + responseBodySizeP90: float32! + + """Response body size 99th percentile - bytes""" + responseBodySizeP99: float32! + + """Response body size 99.9th percentile - bytes""" + responseBodySizeP999: float32! + + """Wall time 25th percentile - microseconds""" + wallTimeP25: float32! + + """Wall time 50th percentile - microseconds""" + wallTimeP50: float32! + + """Wall time 75th percentile - microseconds""" + wallTimeP75: float32! + + """Wall time 90th percentile - microseconds""" + wallTimeP90: float32! + + """Wall time 99th percentile - microseconds""" + wallTimeP99: float32! + + """Wall time 99.9th percentile - microseconds""" + wallTimeP999: float32! +} + +"""""" +type AccountDurableObjectsInvocationsAdaptiveGroupsSum { + """Sum of errors""" + errors: uint64! + + """Sum of requests""" + requests: uint64! + + """Sum of response body sizes""" + responseBodySize: uint64! + + """Sum of wall time""" + wallTime: uint64! +} + +"""""" +type AccountDurableObjectsInvocationsAdaptiveGroupsSumConfidence { + """Confidence interval for the corresponding point estimate""" + errors: Confidence! + + """Confidence interval for the corresponding point estimate""" + requests: Confidence! + + """Confidence interval for the corresponding point estimate""" + responseBodySize: Confidence! + + """Confidence interval for the corresponding point estimate""" + wallTime: Confidence! +} + +"""Durable Objects periodic metrics""" +type AccountDurableObjectsPeriodicGroups { + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountDurableObjectsPeriodicGroupsConfidence! + + """List of dimensions to group by""" + dimensions: AccountDurableObjectsPeriodicGroupsDimensions + + """The max value for a metric""" + max: AccountDurableObjectsPeriodicGroupsMax + + """The sum of values for a metric per dimension""" + sum: AccountDurableObjectsPeriodicGroupsSum +} + +"""""" +type AccountDurableObjectsPeriodicGroupsConfidence { + """Confidence level that was requested""" + level: float64! + + """ + The sum of values for a metric per dimension, with confidence intervals + """ + sum: AccountDurableObjectsPeriodicGroupsSumConfidence +} + +"""""" +type AccountDurableObjectsPeriodicGroupsDimensions { + """Datetime the metrics period started, truncated to start of a day""" + date: Date! + + """Datetime the metrics period started, truncated to start of a minute""" + datetimeFifteenMinutes: Time! + + """Datetime the metrics period started, truncated to start of a minute""" + datetimeFiveMinutes: Time! + + """Datetime the metrics period started, truncated to start of an hour""" + datetimeHour: Time! + + """Datetime the metrics period started, truncated to start of a minute""" + datetimeMinute: Time! + + """ + Datetime the metrics period started, truncated to start of six hour window + """ + datetimeSixHours: Time! + + """Durable Object namespace ID""" + namespaceId: string! + + """Durable Object ID as a hex string""" + objectId: string! +} + +"""""" +input AccountDurableObjectsPeriodicGroupsFilter_InputObject { + """""" + AND: [AccountDurableObjectsPeriodicGroupsFilter_InputObject!] + + """""" + OR: [AccountDurableObjectsPeriodicGroupsFilter_InputObject!] + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetimeSixHours: Time + + """""" + datetimeSixHours_geq: Time + + """""" + datetimeSixHours_gt: Time + + """""" + datetimeSixHours_in: [Time!] + + """""" + datetimeSixHours_leq: Time + + """""" + datetimeSixHours_lt: Time + + """""" + datetimeSixHours_neq: Time + + """""" + datetimeSixHours_notin: [Time!] + + """""" + namespaceId: string + + """""" + namespaceId_geq: string + + """""" + namespaceId_gt: string + + """""" + namespaceId_in: [string!] + + """""" + namespaceId_leq: string + + """""" + namespaceId_like: string + + """""" + namespaceId_lt: string + + """""" + namespaceId_neq: string + + """""" + namespaceId_notin: [string!] + + """""" + namespaceId_notlike: string + + """""" + objectId: string + + """""" + objectId_geq: string + + """""" + objectId_gt: string + + """""" + objectId_in: [string!] + + """""" + objectId_leq: string + + """""" + objectId_like: string + + """""" + objectId_lt: string + + """""" + objectId_neq: string + + """""" + objectId_notin: [string!] + + """""" + objectId_notlike: string +} + +"""""" +type AccountDurableObjectsPeriodicGroupsMax { + """Maximum active websocket connections in the time window""" + activeWebsocketConnections: uint16! +} + +"""""" +enum AccountDurableObjectsPeriodicGroupsOrderBy { + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetimeSixHours ascending""" + datetimeSixHours_ASC + + """datetimeSixHours descending""" + datetimeSixHours_DESC + + """max(activeWebsocketConnections) ascending""" + max_activeWebsocketConnections_ASC + + """max(activeWebsocketConnections) descending""" + max_activeWebsocketConnections_DESC + + """namespaceId ascending""" + namespaceId_ASC + + """namespaceId descending""" + namespaceId_DESC + + """objectId ascending""" + objectId_ASC + + """objectId descending""" + objectId_DESC + + """sum(activeTime) ascending""" + sum_activeTime_ASC + + """sum(activeTime) descending""" + sum_activeTime_DESC + + """sum(cpuTime) ascending""" + sum_cpuTime_ASC + + """sum(cpuTime) descending""" + sum_cpuTime_DESC + + """sum(duration) ascending""" + sum_duration_ASC + + """sum(duration) descending""" + sum_duration_DESC + + """sum(exceededCpuErrors) ascending""" + sum_exceededCpuErrors_ASC + + """sum(exceededCpuErrors) descending""" + sum_exceededCpuErrors_DESC + + """sum(exceededMemoryErrors) ascending""" + sum_exceededMemoryErrors_ASC + + """sum(exceededMemoryErrors) descending""" + sum_exceededMemoryErrors_DESC + + """sum(fatalInternalErrors) ascending""" + sum_fatalInternalErrors_ASC + + """sum(fatalInternalErrors) descending""" + sum_fatalInternalErrors_DESC + + """sum(inboundWebsocketMsgCount) ascending""" + sum_inboundWebsocketMsgCount_ASC + + """sum(inboundWebsocketMsgCount) descending""" + sum_inboundWebsocketMsgCount_DESC + + """sum(outboundWebsocketMsgCount) ascending""" + sum_outboundWebsocketMsgCount_ASC + + """sum(outboundWebsocketMsgCount) descending""" + sum_outboundWebsocketMsgCount_DESC + + """sum(rowsRead) ascending""" + sum_rowsRead_ASC + + """sum(rowsRead) descending""" + sum_rowsRead_DESC + + """sum(rowsWritten) ascending""" + sum_rowsWritten_ASC + + """sum(rowsWritten) descending""" + sum_rowsWritten_DESC + + """sum(storageDeletes) ascending""" + sum_storageDeletes_ASC + + """sum(storageDeletes) descending""" + sum_storageDeletes_DESC + + """sum(storageReadUnits) ascending""" + sum_storageReadUnits_ASC + + """sum(storageReadUnits) descending""" + sum_storageReadUnits_DESC + + """sum(storageWriteUnits) ascending""" + sum_storageWriteUnits_ASC + + """sum(storageWriteUnits) descending""" + sum_storageWriteUnits_DESC + + """sum(subrequests) ascending""" + sum_subrequests_ASC + + """sum(subrequests) descending""" + sum_subrequests_DESC +} + +"""""" +type AccountDurableObjectsPeriodicGroupsSum { + """Sum of active time - microseconds""" + activeTime: uint64! + + """Sum of CPU time - microseconds""" + cpuTime: uint64! + + """Sum of Duration - GB*s""" + duration: float64! + + """Sum of CPU exceeded errors""" + exceededCpuErrors: uint64! + + """Sum of memory exceeded errors""" + exceededMemoryErrors: uint64! + + """Sum of fatal internal server errors""" + fatalInternalErrors: uint64! + + """Sum of incoming websocket messages""" + inboundWebsocketMsgCount: uint64! + + """Sum of outbound websocket messages""" + outboundWebsocketMsgCount: uint64! + + """Sum of rows read (by sqlite backed DOs)""" + rowsRead: uint64! + + """Sum of rows written (by sqlite backed DOs)""" + rowsWritten: uint64! + + """Sum of storage deletes (by non-sqlite backed DOs)""" + storageDeletes: uint64! + + """Sum of storage reads - in 4KB units (by non-sqlite backed DOs)""" + storageReadUnits: uint64! + + """Sum of storage writes - in 4KB units (by non-sqlite backed DOs)""" + storageWriteUnits: uint64! + + """Sum of subrequests""" + subrequests: uint64! +} + +"""""" +type AccountDurableObjectsPeriodicGroupsSumConfidence { + """Confidence interval for the corresponding point estimate""" + activeTime: Confidence! + + """Confidence interval for the corresponding point estimate""" + cpuTime: Confidence! + + """Confidence interval for the corresponding point estimate""" + duration: Confidence! + + """Confidence interval for the corresponding point estimate""" + exceededCpuErrors: Confidence! + + """Confidence interval for the corresponding point estimate""" + exceededMemoryErrors: Confidence! + + """Confidence interval for the corresponding point estimate""" + fatalInternalErrors: Confidence! + + """Confidence interval for the corresponding point estimate""" + inboundWebsocketMsgCount: Confidence! + + """Confidence interval for the corresponding point estimate""" + outboundWebsocketMsgCount: Confidence! + + """Confidence interval for the corresponding point estimate""" + rowsRead: Confidence! + + """Confidence interval for the corresponding point estimate""" + rowsWritten: Confidence! + + """Confidence interval for the corresponding point estimate""" + storageDeletes: Confidence! + + """Confidence interval for the corresponding point estimate""" + storageWriteUnits: Confidence! + + """Confidence interval for the corresponding point estimate""" + subrequests: Confidence! +} + +"""Storage metrics for SQL-backed Durable Objects.""" +type AccountDurableObjectsSqlStorageGroups { + """List of dimensions to group by""" + dimensions: AccountDurableObjectsSqlStorageGroupsDimensions + + """The max value for a metric""" + max: AccountDurableObjectsSqlStorageGroupsMax +} + +"""""" +type AccountDurableObjectsSqlStorageGroupsDimensions { + """ + Datetime that the storage usage was recorded, truncated to start of a day + """ + date: Date! + + """ + Datetime that the storage usage was recorded, truncated to start of an hour + """ + datetimeHour: Time! + + """ + Datetime that the storage usage was recorded, truncated to start of a minute + """ + datetimeMinute: Time! + + """Durable Object namespace ID""" + namespaceId: string! +} + +"""""" +input AccountDurableObjectsSqlStorageGroupsFilter_InputObject { + """""" + AND: [AccountDurableObjectsSqlStorageGroupsFilter_InputObject!] + + """""" + OR: [AccountDurableObjectsSqlStorageGroupsFilter_InputObject!] + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + namespaceId: string + + """""" + namespaceId_geq: string + + """""" + namespaceId_gt: string + + """""" + namespaceId_in: [string!] + + """""" + namespaceId_leq: string + + """""" + namespaceId_like: string + + """""" + namespaceId_lt: string + + """""" + namespaceId_neq: string + + """""" + namespaceId_notin: [string!] + + """""" + namespaceId_notlike: string +} + +"""""" +type AccountDurableObjectsSqlStorageGroupsMax { + """Max of stored bytes""" + storedBytes: uint64! +} + +"""""" +enum AccountDurableObjectsSqlStorageGroupsOrderBy { + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """max(storedBytes) ascending""" + max_storedBytes_ASC + + """max(storedBytes) descending""" + max_storedBytes_DESC + + """namespaceId ascending""" + namespaceId_ASC + + """namespaceId descending""" + namespaceId_DESC +} + +"""Durable Objects storage metrics""" +type AccountDurableObjectsStorageGroups { + """List of dimensions to group by""" + dimensions: AccountDurableObjectsStorageGroupsDimensions + + """The max value for a metric""" + max: AccountDurableObjectsStorageGroupsMax +} + +"""""" +type AccountDurableObjectsStorageGroupsDimensions { + """ + Datetime that the storage usage was recorded, truncated to start of a day + """ + date: Date! + + """ + Datetime that the storage usage was recorded, truncated to start of an hour + """ + datetimeHour: Time! +} + +"""""" +input AccountDurableObjectsStorageGroupsFilter_InputObject { + """""" + AND: [AccountDurableObjectsStorageGroupsFilter_InputObject!] + + """""" + OR: [AccountDurableObjectsStorageGroupsFilter_InputObject!] + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] +} + +"""""" +type AccountDurableObjectsStorageGroupsMax { + """Max of stored bytes""" + storedBytes: uint64! +} + +"""""" +enum AccountDurableObjectsStorageGroupsOrderBy { + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """max(storedBytes) ascending""" + max_storedBytes_ASC + + """max(storedBytes) descending""" + max_storedBytes_DESC +} + +"""Durable Objects subrequests with adaptive sampling""" +type AccountDurableObjectsSubrequestsAdaptiveGroups { + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountDurableObjectsSubrequestsAdaptiveGroupsConfidence! + + """List of dimensions to group by""" + dimensions: AccountDurableObjectsSubrequestsAdaptiveGroupsDimensions + + """The sum of values for a metric per dimension""" + sum: AccountDurableObjectsSubrequestsAdaptiveGroupsSum +} + +"""""" +type AccountDurableObjectsSubrequestsAdaptiveGroupsConfidence { + """Confidence level that was requested""" + level: float64! + + """ + The sum of values for a metric per dimension, with confidence intervals + """ + sum: AccountDurableObjectsSubrequestsAdaptiveGroupsSumConfidence +} + +"""""" +type AccountDurableObjectsSubrequestsAdaptiveGroupsDimensions { + """Request datetime, truncated to start of a day""" + date: Date! + + """Request datetime""" + datetime: Time! + + """Request datetime, truncated to start of an hour""" + datetimeHour: Time! + + """Request datetime, truncated to start of a minute""" + datetimeMinute: Time! + + """Request datetime, truncated to start of six hour window""" + datetimeSixHours: Time! + + """The name of the script environment""" + environmentName: string! + + """Durable Object namespace ID""" + namespaceId: string! + + """Durable Object ID as a hex string""" + objectId: string! + + """The name of the script""" + scriptName: string! +} + +"""""" +input AccountDurableObjectsSubrequestsAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountDurableObjectsSubrequestsAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountDurableObjectsSubrequestsAdaptiveGroupsFilter_InputObject!] + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetimeSixHours: Time + + """""" + datetimeSixHours_geq: Time + + """""" + datetimeSixHours_gt: Time + + """""" + datetimeSixHours_in: [Time!] + + """""" + datetimeSixHours_leq: Time + + """""" + datetimeSixHours_lt: Time + + """""" + datetimeSixHours_neq: Time + + """""" + datetimeSixHours_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + environmentName: string + + """""" + environmentName_geq: string + + """""" + environmentName_gt: string + + """""" + environmentName_in: [string!] + + """""" + environmentName_leq: string + + """""" + environmentName_like: string + + """""" + environmentName_lt: string + + """""" + environmentName_neq: string + + """""" + environmentName_notin: [string!] + + """""" + environmentName_notlike: string + + """""" + namespaceId: string + + """""" + namespaceId_geq: string + + """""" + namespaceId_gt: string + + """""" + namespaceId_in: [string!] + + """""" + namespaceId_leq: string + + """""" + namespaceId_like: string + + """""" + namespaceId_lt: string + + """""" + namespaceId_neq: string + + """""" + namespaceId_notin: [string!] + + """""" + namespaceId_notlike: string + + """""" + objectId: string + + """""" + objectId_geq: string + + """""" + objectId_gt: string + + """""" + objectId_in: [string!] + + """""" + objectId_leq: string + + """""" + objectId_like: string + + """""" + objectId_lt: string + + """""" + objectId_neq: string + + """""" + objectId_notin: [string!] + + """""" + objectId_notlike: string + + """""" + scriptName: string + + """""" + scriptName_geq: string + + """""" + scriptName_gt: string + + """""" + scriptName_in: [string!] + + """""" + scriptName_leq: string + + """""" + scriptName_like: string + + """""" + scriptName_lt: string + + """""" + scriptName_neq: string + + """""" + scriptName_notin: [string!] + + """""" + scriptName_notlike: string +} + +"""""" +enum AccountDurableObjectsSubrequestsAdaptiveGroupsOrderBy { + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetimeSixHours ascending""" + datetimeSixHours_ASC + + """datetimeSixHours descending""" + datetimeSixHours_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """environmentName ascending""" + environmentName_ASC + + """environmentName descending""" + environmentName_DESC + + """namespaceId ascending""" + namespaceId_ASC + + """namespaceId descending""" + namespaceId_DESC + + """objectId ascending""" + objectId_ASC + + """objectId descending""" + objectId_DESC + + """scriptName ascending""" + scriptName_ASC + + """scriptName descending""" + scriptName_DESC + + """sum(requestBodySizeUncached) ascending""" + sum_requestBodySizeUncached_ASC + + """sum(requestBodySizeUncached) descending""" + sum_requestBodySizeUncached_DESC +} + +"""""" +type AccountDurableObjectsSubrequestsAdaptiveGroupsSum { + """ + Outgoing Durable Objects fetch request body size in bytes where the request was not cached + """ + requestBodySizeUncached: uint64! +} + +"""""" +type AccountDurableObjectsSubrequestsAdaptiveGroupsSumConfidence { + """Confidence interval for the corresponding point estimate""" + requestBodySizeUncached: Confidence! +} + +"""FBM analytics metadata for attacks detected by dosd""" +type AccountFbmAttackAnalyticsGroups { + """Unique identifier of the mitigation that matched the packet, if any""" + attackId: string! + + """Type of attack traffic""" + attackType: string! @deprecated(reason: "Use attackVector for a richer description of the attack") + + """Description of attack vector""" + attackVector: string! + + """Sum of bits received during the attack""" + bits: uint64! + + """Common TCP flags used by attack traffic, if any""" + commonTcpFlags: uint8! + + """Names of common TCP flags used by attack traffic, if any""" + commonTcpFlagsNames: string! + + """Fixed destination IP used by attack traffic, if any""" + destinationIp: string! + + """Fixed destination port used by attack traffic, if any""" + destinationPort: uint16! + + """Sum of bits dropped during the attack""" + droppedBits: uint64! + + """Sum of packets dropped during the attack""" + droppedPackets: uint64! + + """Date and time that the attack ended; not available for ongoing attacks""" + endDatetime: Time! + + """Fixed protocol used by attack traffic, if any""" + ipProtocol: uint8! + + """Fixed protocol used by attack traffic, if any""" + ipProtocolName: string! + + """Type of mitigation applied to attack traffic""" + mitigationReason: string! + + """Whether mitigation was applied in only some locations or globally""" + mitigationScope: string! + + """Type of mitigation applied to attack traffic""" + mitigationType: string! + + """Sum of packets received during the attack""" + packets: uint64! + + """Unique identifier of the rule that matched the packet, if any""" + ruleId: string! + + """Human-readable name of the rule that matched the packet, if any""" + ruleName: string! + + """ + Unique identifier of the ruleset containing the rule that matched the packet, if any + """ + rulesetId: string! + + """ + Unique identifier of the ruleset override containing the rule that matched the packet, if any + """ + rulesetOverrideId: string! + + """Fixed source IP used by attack traffic, if any""" + sourceIp: string! + + """Fixed source port used by attack traffic, if any""" + sourcePort: uint16! + + """Date and time that the attack started""" + startDatetime: Time! + + """Fixed TCP flags used by attack traffic, if any""" + tcpFlags: uint8! + + """Names of fixed TCP flags used by attack traffic, if any""" + tcpFlagsNames: string! +} + +"""""" +input AccountFbmAttackAnalyticsGroupsFilter_InputObject { + """""" + AND: [AccountFbmAttackAnalyticsGroupsFilter_InputObject!] + + """""" + OR: [AccountFbmAttackAnalyticsGroupsFilter_InputObject!] + + """""" + attackId: string + + """""" + attackId_geq: string + + """""" + attackId_gt: string + + """""" + attackId_in: [string!] + + """""" + attackId_leq: string + + """""" + attackId_like: string + + """""" + attackId_lt: string + + """""" + attackId_neq: string + + """""" + attackId_notin: [string!] + + """""" + attackId_notlike: string + + """""" + attackType: string + + """""" + attackType_geq: string + + """""" + attackType_gt: string + + """""" + attackType_in: [string!] + + """""" + attackType_leq: string + + """""" + attackType_like: string + + """""" + attackType_lt: string + + """""" + attackType_neq: string + + """""" + attackType_notin: [string!] + + """""" + attackType_notlike: string + + """""" + attackVector: string + + """""" + attackVector_geq: string + + """""" + attackVector_gt: string + + """""" + attackVector_in: [string!] + + """""" + attackVector_leq: string + + """""" + attackVector_like: string + + """""" + attackVector_lt: string + + """""" + attackVector_neq: string + + """""" + attackVector_notin: [string!] + + """""" + attackVector_notlike: string + + """""" + bits: uint64 + + """""" + bits_geq: uint64 + + """""" + bits_gt: uint64 + + """""" + bits_in: [uint64!] + + """""" + bits_leq: uint64 + + """""" + bits_lt: uint64 + + """""" + bits_neq: uint64 + + """""" + bits_notin: [uint64!] + + """""" + commonTcpFlags: uint8 + + """""" + commonTcpFlagsNames: string + + """""" + commonTcpFlagsNames_geq: string + + """""" + commonTcpFlagsNames_gt: string + + """""" + commonTcpFlagsNames_in: [string!] + + """""" + commonTcpFlagsNames_leq: string + + """""" + commonTcpFlagsNames_like: string + + """""" + commonTcpFlagsNames_lt: string + + """""" + commonTcpFlagsNames_neq: string + + """""" + commonTcpFlagsNames_notin: [string!] + + """""" + commonTcpFlagsNames_notlike: string + + """""" + commonTcpFlags_geq: uint8 + + """""" + commonTcpFlags_gt: uint8 + + """""" + commonTcpFlags_in: bytes + + """""" + commonTcpFlags_leq: uint8 + + """""" + commonTcpFlags_lt: uint8 + + """""" + commonTcpFlags_neq: uint8 + + """""" + commonTcpFlags_notin: bytes + + """""" + destinationIp: string + + """""" + destinationIp_geq: string + + """""" + destinationIp_gt: string + + """""" + destinationIp_in: [string!] + + """""" + destinationIp_leq: string + + """""" + destinationIp_like: string + + """""" + destinationIp_lt: string + + """""" + destinationIp_neq: string + + """""" + destinationIp_notin: [string!] + + """""" + destinationIp_notlike: string + + """""" + destinationPort: uint16 + + """""" + destinationPort_geq: uint16 + + """""" + destinationPort_gt: uint16 + + """""" + destinationPort_in: [uint16!] + + """""" + destinationPort_leq: uint16 + + """""" + destinationPort_lt: uint16 + + """""" + destinationPort_neq: uint16 + + """""" + destinationPort_notin: [uint16!] + + """""" + droppedBits: uint64 + + """""" + droppedBits_geq: uint64 + + """""" + droppedBits_gt: uint64 + + """""" + droppedBits_in: [uint64!] + + """""" + droppedBits_leq: uint64 + + """""" + droppedBits_lt: uint64 + + """""" + droppedBits_neq: uint64 + + """""" + droppedBits_notin: [uint64!] + + """""" + droppedPackets: uint64 + + """""" + droppedPackets_geq: uint64 + + """""" + droppedPackets_gt: uint64 + + """""" + droppedPackets_in: [uint64!] + + """""" + droppedPackets_leq: uint64 + + """""" + droppedPackets_lt: uint64 + + """""" + droppedPackets_neq: uint64 + + """""" + droppedPackets_notin: [uint64!] + + """""" + endDatetime: Time + + """""" + endDatetime_geq: Time + + """""" + endDatetime_gt: Time + + """""" + endDatetime_in: [Time!] + + """""" + endDatetime_leq: Time + + """""" + endDatetime_lt: Time + + """""" + endDatetime_neq: Time + + """""" + endDatetime_notin: [Time!] + + """""" + ipProtocol: uint8 + + """""" + ipProtocolName: string + + """""" + ipProtocolName_geq: string + + """""" + ipProtocolName_gt: string + + """""" + ipProtocolName_in: [string!] + + """""" + ipProtocolName_leq: string + + """""" + ipProtocolName_like: string + + """""" + ipProtocolName_lt: string + + """""" + ipProtocolName_neq: string + + """""" + ipProtocolName_notin: [string!] + + """""" + ipProtocolName_notlike: string + + """""" + ipProtocol_geq: uint8 + + """""" + ipProtocol_gt: uint8 + + """""" + ipProtocol_in: bytes + + """""" + ipProtocol_leq: uint8 + + """""" + ipProtocol_lt: uint8 + + """""" + ipProtocol_neq: uint8 + + """""" + ipProtocol_notin: bytes + + """""" + mitigationReason: string + + """""" + mitigationReason_geq: string + + """""" + mitigationReason_gt: string + + """""" + mitigationReason_in: [string!] + + """""" + mitigationReason_leq: string + + """""" + mitigationReason_like: string + + """""" + mitigationReason_lt: string + + """""" + mitigationReason_neq: string + + """""" + mitigationReason_notin: [string!] + + """""" + mitigationReason_notlike: string + + """""" + mitigationScope: string + + """""" + mitigationScope_geq: string + + """""" + mitigationScope_gt: string + + """""" + mitigationScope_in: [string!] + + """""" + mitigationScope_leq: string + + """""" + mitigationScope_like: string + + """""" + mitigationScope_lt: string + + """""" + mitigationScope_neq: string + + """""" + mitigationScope_notin: [string!] + + """""" + mitigationScope_notlike: string + + """""" + mitigationType: string + + """""" + mitigationType_geq: string + + """""" + mitigationType_gt: string + + """""" + mitigationType_in: [string!] + + """""" + mitigationType_leq: string + + """""" + mitigationType_like: string + + """""" + mitigationType_lt: string + + """""" + mitigationType_neq: string + + """""" + mitigationType_notin: [string!] + + """""" + mitigationType_notlike: string + + """""" + packets: uint64 + + """""" + packets_geq: uint64 + + """""" + packets_gt: uint64 + + """""" + packets_in: [uint64!] + + """""" + packets_leq: uint64 + + """""" + packets_lt: uint64 + + """""" + packets_neq: uint64 + + """""" + packets_notin: [uint64!] + + """""" + ruleId: string + + """""" + ruleId_geq: string + + """""" + ruleId_gt: string + + """""" + ruleId_in: [string!] + + """""" + ruleId_leq: string + + """""" + ruleId_like: string + + """""" + ruleId_lt: string + + """""" + ruleId_neq: string + + """""" + ruleId_notin: [string!] + + """""" + ruleId_notlike: string + + """""" + ruleName: string + + """""" + ruleName_geq: string + + """""" + ruleName_gt: string + + """""" + ruleName_in: [string!] + + """""" + ruleName_leq: string + + """""" + ruleName_like: string + + """""" + ruleName_lt: string + + """""" + ruleName_neq: string + + """""" + ruleName_notin: [string!] + + """""" + ruleName_notlike: string + + """""" + rulesetId: string + + """""" + rulesetId_geq: string + + """""" + rulesetId_gt: string + + """""" + rulesetId_in: [string!] + + """""" + rulesetId_leq: string + + """""" + rulesetId_like: string + + """""" + rulesetId_lt: string + + """""" + rulesetId_neq: string + + """""" + rulesetId_notin: [string!] + + """""" + rulesetId_notlike: string + + """""" + rulesetOverrideId: string + + """""" + rulesetOverrideId_geq: string + + """""" + rulesetOverrideId_gt: string + + """""" + rulesetOverrideId_in: [string!] + + """""" + rulesetOverrideId_leq: string + + """""" + rulesetOverrideId_like: string + + """""" + rulesetOverrideId_lt: string + + """""" + rulesetOverrideId_neq: string + + """""" + rulesetOverrideId_notin: [string!] + + """""" + rulesetOverrideId_notlike: string + + """""" + sourceIp: string + + """""" + sourceIp_geq: string + + """""" + sourceIp_gt: string + + """""" + sourceIp_in: [string!] + + """""" + sourceIp_leq: string + + """""" + sourceIp_like: string + + """""" + sourceIp_lt: string + + """""" + sourceIp_neq: string + + """""" + sourceIp_notin: [string!] + + """""" + sourceIp_notlike: string + + """""" + sourcePort: uint16 + + """""" + sourcePort_geq: uint16 + + """""" + sourcePort_gt: uint16 + + """""" + sourcePort_in: [uint16!] + + """""" + sourcePort_leq: uint16 + + """""" + sourcePort_lt: uint16 + + """""" + sourcePort_neq: uint16 + + """""" + sourcePort_notin: [uint16!] + + """""" + startDatetime: Time + + """""" + startDatetime_geq: Time + + """""" + startDatetime_gt: Time + + """""" + startDatetime_in: [Time!] + + """""" + startDatetime_leq: Time + + """""" + startDatetime_lt: Time + + """""" + startDatetime_neq: Time + + """""" + startDatetime_notin: [Time!] + + """""" + tcpFlags: uint8 + + """""" + tcpFlagsNames: string + + """""" + tcpFlagsNames_geq: string + + """""" + tcpFlagsNames_gt: string + + """""" + tcpFlagsNames_in: [string!] + + """""" + tcpFlagsNames_leq: string + + """""" + tcpFlagsNames_like: string + + """""" + tcpFlagsNames_lt: string + + """""" + tcpFlagsNames_neq: string + + """""" + tcpFlagsNames_notin: [string!] + + """""" + tcpFlagsNames_notlike: string + + """""" + tcpFlags_geq: uint8 + + """""" + tcpFlags_gt: uint8 + + """""" + tcpFlags_in: bytes + + """""" + tcpFlags_leq: uint8 + + """""" + tcpFlags_lt: uint8 + + """""" + tcpFlags_neq: uint8 + + """""" + tcpFlags_notin: bytes +} + +"""""" +enum AccountFbmAttackAnalyticsGroupsOrderBy { + """attackId ascending""" + attackId_ASC + + """attackId descending""" + attackId_DESC + + """attackType ascending""" + attackType_ASC + + """attackType descending""" + attackType_DESC + + """attackVector ascending""" + attackVector_ASC + + """attackVector descending""" + attackVector_DESC + + """bits ascending""" + bits_ASC + + """bits descending""" + bits_DESC + + """commonTcpFlagsNames ascending""" + commonTcpFlagsNames_ASC + + """commonTcpFlagsNames descending""" + commonTcpFlagsNames_DESC + + """commonTcpFlags ascending""" + commonTcpFlags_ASC + + """commonTcpFlags descending""" + commonTcpFlags_DESC + + """destinationIp ascending""" + destinationIp_ASC + + """destinationIp descending""" + destinationIp_DESC + + """destinationPort ascending""" + destinationPort_ASC + + """destinationPort descending""" + destinationPort_DESC + + """droppedBits ascending""" + droppedBits_ASC + + """droppedBits descending""" + droppedBits_DESC + + """droppedPackets ascending""" + droppedPackets_ASC + + """droppedPackets descending""" + droppedPackets_DESC + + """endDatetime ascending""" + endDatetime_ASC + + """endDatetime descending""" + endDatetime_DESC + + """ipProtocolName ascending""" + ipProtocolName_ASC + + """ipProtocolName descending""" + ipProtocolName_DESC + + """ipProtocol ascending""" + ipProtocol_ASC + + """ipProtocol descending""" + ipProtocol_DESC + + """mitigationReason ascending""" + mitigationReason_ASC + + """mitigationReason descending""" + mitigationReason_DESC + + """mitigationScope ascending""" + mitigationScope_ASC + + """mitigationScope descending""" + mitigationScope_DESC + + """mitigationType ascending""" + mitigationType_ASC + + """mitigationType descending""" + mitigationType_DESC + + """packets ascending""" + packets_ASC + + """packets descending""" + packets_DESC + + """ruleId ascending""" + ruleId_ASC + + """ruleId descending""" + ruleId_DESC + + """ruleName ascending""" + ruleName_ASC + + """ruleName descending""" + ruleName_DESC + + """rulesetId ascending""" + rulesetId_ASC + + """rulesetId descending""" + rulesetId_DESC + + """rulesetOverrideId ascending""" + rulesetOverrideId_ASC + + """rulesetOverrideId descending""" + rulesetOverrideId_DESC + + """sourceIp ascending""" + sourceIp_ASC + + """sourceIp descending""" + sourceIp_DESC + + """sourcePort ascending""" + sourcePort_ASC + + """sourcePort descending""" + sourcePort_DESC + + """startDatetime ascending""" + startDatetime_ASC + + """startDatetime descending""" + startDatetime_DESC + + """tcpFlagsNames ascending""" + tcpFlagsNames_ASC + + """tcpFlagsNames descending""" + tcpFlagsNames_DESC + + """tcpFlags ascending""" + tcpFlags_ASC + + """tcpFlags descending""" + tcpFlags_DESC +} + +"""""" +input AccountFilter_InputObject { + """""" + accountTag: string! +} + +"""Raw Firewall events with adaptive sampling""" +type AccountFirewallEventsAdaptive { + """ + The code of the first-class action the Cloudflare Firewall took on this request + """ + action: string! + + """API Gateway endpoint matched at the edge""" + apiGatewayMatchedEndpoint: string! + + """API Gateway host matched at the edge""" + apiGatewayMatchedHost: string! + + """ + 1-D array of the categories associated with the rules ref in attackSignatureRefs + """ + attackSignatureCategories: [string!]! + + """ + cf.waf.attack_signature.refs Ruleset field truncated to maximum 10 elements. + """ + attackSignatureRefs: [string!]! + + """Array of detections ids that matched this request""" + botDetectionIds: [uint32!]! + + """Array of detections tags that matched this request""" + botDetectionTags: [string!]! + + """The final score originated from bot management detections.""" + botScore: uint8! + + """Name of the source detection which generated the bot management score.""" + botScoreSrcName: string! + + """The ASN of the visitor as string""" + clientASNDescription: string! + + """The ASN number of the visitor""" + clientAsn: string! + + """Country from which request originated""" + clientCountryName: string! + + """The visitor's IP address (IPv4 or IPv6)""" + clientIP: string! + + """ + The classification of the visitor's IP address, possible values are: unknown | clean | badHost | searchEngine | allowlist | greylist | monitoringService | securityScanner | noRecord | scan | backupService | mobilePlatform | tor + """ + clientIPClass: string! + + """The referer host""" + clientRefererHost: string! + + """The referer path requested by visitor""" + clientRefererPath: string! + + """The referer query-string was requested by the visitor""" + clientRefererQuery: string! + + """The referer url scheme requested by the visitor""" + clientRefererScheme: string! + + """The HTTP hostname requested by the visitor""" + clientRequestHTTPHost: string! + + """The HTTP method used by the visitor""" + clientRequestHTTPMethodName: string! + + """The version of HTTP protocol requested by the visitor""" + clientRequestHTTPProtocol: string! + + """The path requested by visitor""" + clientRequestPath: string! + + """The query-string was requested by the visitor""" + clientRequestQuery: string! + + """The url scheme requested by the visitor""" + clientRequestScheme: string! + + """ + 1 if not all contents for this request where successfully scanned, else 0 + """ + contentScanHasFailed: uint8! + + """Number of scannable content objects that are malicious""" + contentScanNumMaliciousObj: uint8! + + """Number of scannable content objects""" + contentScanNumObj: uint8! + + """Array of scan results in order of detection""" + contentScanObjResults: [string!]! + + """Array of scan sizes in order of detection""" + contentScanObjSizes: [uint32!]! + + """Array of content types in order of detection""" + contentScanObjTypes: [string!]! + + """The date the event occurred at the edge""" + date: Date! + + """The date and time the event occurred at the edge""" + datetime: Time! + + """ + The date and time the event occurred at the edge truncated to a multiple of 15 minutes + """ + datetimeFifteenMinutes: Time! + + """ + The date and time the event occurred at the edge truncated to a multiple of 5 minutes + """ + datetimeFiveMinutes: Time! + + """The date and time the event occurred at the edge truncated to hours""" + datetimeHour: Time! + + """ + The date and time the event occurred at the edge truncated to the minute + """ + datetimeMinute: Time! + + """The description of the rule triggered by this request""" + description: string! + + """The airport code of the Cloudflare datacenter that served this request""" + edgeColoName: string! + + """HTTP response status code returned to browser""" + edgeResponseStatus: uint16! + + """ + Whether firewallForAiPiiCategories is non empty. 0 if empty, 1 if not empty. + """ + firewallForAiAnyPiiCategory: int8! + + """Corresponds to the Ruleset field cf.llm.prompt.injection_score.""" + firewallForAiInjectionScore: int8! + + """Corresponds to the Ruleset field cf.llm.prompt.pii_categories.""" + firewallForAiPiiCategories: [string!]! + + """Corresponds to the Ruleset field cf.llm.prompt.unsafe_data_categories.""" + firewallForAiUnsafeTopicCategories: [string!]! + + """ + The primary attack or use case detected in the request by Fraud detections + """ + fraudAttack: string! + + """Array of fraud detections ids that matched this request""" + fraudDetectionIds: [uint32!]! + + """Array of fraud detections tags that matched this request""" + fraudDetectionTags: [string!]! + + """Risk of a specific email address in account signup attempts""" + fraudEmailRisk: string! + + """Version associated with HTTP Application""" + httpApplicationVersion: uint64! @deprecated(reason: "Field is replaced with zoneVersion") + + """MD5 hash of the JA3 TLS fingerprint""" + ja3Hash: string! + + """JA4 TLS fingerprint""" + ja4: string! + + """ + Inter-request statistics computed for this JA4 across Cloudflare's entire global edge network + """ + ja4Signals: [AccountFirewallEventsAdaptiveJa4SignalsElem!]! + + """Whether the request passed background JavaScript Detection""" + jsDetectionPassed: string! + + """The kind of event, currently only possible values are: firewall""" + kind: string! + + """The distinct result of checking for leaked credentials""" + leakedCredentialCheckResult: string! + + """Rules match index in the chain""" + matchIndex: uint16! + + """ + Additional product-specific information. Metadata is organized in key:value pairs + """ + metadata: [AccountFirewallEventsAdaptiveMetadataElem!]! + + """HTTP origin response status code returned to browser""" + originResponseStatus: uint16! + + """The RayId of the request that issued the challenge/jschallenge""" + originatorRayName: string! + + """The RayId of the request""" + rayName: string! + + """ + The ref-field is a user-defined rule identifier that can be set via the API for some firewall products and allows users to label their rules individually alongside cloudflare provided identifiers (only available to entitled customers) + """ + ref: string! + + """ + The Cloudflare security product-specific RuleId triggered by this request + """ + ruleId: string! + + """ + The Cloudflare security product-specific RulesetId triggered by this request + """ + rulesetId: string! + + """ABR sample interval""" + sampleInterval: uint32! + + """The Cloudflare security product triggered by this request""" + source: string! + + """visitor's user-agent string""" + userAgent: string! + + """The category of verified bot""" + verifiedBotCategory: string! + + """Beta. Overall request score generated by the WAF detection module""" + wafAttackScore: uint8! + + """ + Beta. Overall request score class generated by the WAF detection module + """ + wafAttackScoreClass: string! + + """Beta. Overall request score generated by the WAF detection module""" + wafMlAttackScore: uint8! @deprecated(reason: "Field is replaced with wafAttackScore") + + """Beta. WAF ML score for an SQLi attack""" + wafMlSqliAttackScore: uint8! @deprecated(reason: "Field is replaced with wafSqliAttackScore") + + """Beta. WAF ML score for an XSS attack""" + wafMlXssAttackScore: uint8! @deprecated(reason: "Field is replaced with wafXssAttackScore") + + """Beta. WAF score for a RCE attack""" + wafRceAttackScore: uint8! + + """Beta. WAF score for a SQLi attack""" + wafSqliAttackScore: uint8! + + """Beta. WAF score for a XSS attack""" + wafXssAttackScore: uint8! + + """Associated zone""" + zoneTag: string! + + """The version of a zone""" + zoneVersion: uint64! +} + +"""""" +input AccountFirewallEventsAdaptiveFilter_InputObject { + """""" + AND: [AccountFirewallEventsAdaptiveFilter_InputObject!] + + """""" + OR: [AccountFirewallEventsAdaptiveFilter_InputObject!] + + """""" + action: string + + """""" + action_geq: string + + """""" + action_gt: string + + """""" + action_in: [string!] + + """""" + action_leq: string + + """""" + action_like: string + + """""" + action_lt: string + + """""" + action_neq: string + + """""" + action_notin: [string!] + + """""" + action_notlike: string + + """""" + apiGatewayMatchedEndpoint: string + + """""" + apiGatewayMatchedEndpoint_geq: string + + """""" + apiGatewayMatchedEndpoint_gt: string + + """""" + apiGatewayMatchedEndpoint_in: [string!] + + """""" + apiGatewayMatchedEndpoint_leq: string + + """""" + apiGatewayMatchedEndpoint_like: string + + """""" + apiGatewayMatchedEndpoint_lt: string + + """""" + apiGatewayMatchedEndpoint_neq: string + + """""" + apiGatewayMatchedEndpoint_notin: [string!] + + """""" + apiGatewayMatchedEndpoint_notlike: string + + """""" + apiGatewayMatchedHost: string + + """""" + apiGatewayMatchedHost_geq: string + + """""" + apiGatewayMatchedHost_gt: string + + """""" + apiGatewayMatchedHost_in: [string!] + + """""" + apiGatewayMatchedHost_leq: string + + """""" + apiGatewayMatchedHost_like: string + + """""" + apiGatewayMatchedHost_lt: string + + """""" + apiGatewayMatchedHost_neq: string + + """""" + apiGatewayMatchedHost_notin: [string!] + + """""" + apiGatewayMatchedHost_notlike: string + + """""" + attackSignatureCategories_has: string + + """""" + attackSignatureCategories_hasall: [string!] + + """""" + attackSignatureCategories_hasany: [string!] + + """""" + attackSignatureCategories_isempty: bool + + """""" + attackSignatureCategories_nothas: string + + """""" + attackSignatureRefs_has: string + + """""" + attackSignatureRefs_hasall: [string!] + + """""" + attackSignatureRefs_hasany: [string!] + + """""" + attackSignatureRefs_isempty: bool + + """""" + attackSignatureRefs_nothas: string + + """""" + botDetectionIds_has: uint32 + + """""" + botDetectionIds_hasall: [uint32!] + + """""" + botDetectionIds_hasany: [uint32!] + + """""" + botDetectionIds_isempty: bool + + """""" + botDetectionIds_nothas: uint32 + + """""" + botDetectionTags_has: string + + """""" + botDetectionTags_hasall: [string!] + + """""" + botDetectionTags_hasany: [string!] + + """""" + botDetectionTags_isempty: bool + + """""" + botDetectionTags_nothas: string + + """""" + botScore: uint8 + + """""" + botScoreSrcName: string + + """""" + botScoreSrcName_geq: string + + """""" + botScoreSrcName_gt: string + + """""" + botScoreSrcName_in: [string!] + + """""" + botScoreSrcName_leq: string + + """""" + botScoreSrcName_like: string + + """""" + botScoreSrcName_lt: string + + """""" + botScoreSrcName_neq: string + + """""" + botScoreSrcName_notin: [string!] + + """""" + botScoreSrcName_notlike: string + + """""" + botScore_geq: uint8 + + """""" + botScore_gt: uint8 + + """""" + botScore_in: bytes + + """""" + botScore_leq: uint8 + + """""" + botScore_lt: uint8 + + """""" + botScore_neq: uint8 + + """""" + botScore_notin: bytes + + """""" + clientASNDescription: string + + """""" + clientASNDescription_geq: string + + """""" + clientASNDescription_gt: string + + """""" + clientASNDescription_in: [string!] + + """""" + clientASNDescription_leq: string + + """""" + clientASNDescription_like: string + + """""" + clientASNDescription_lt: string + + """""" + clientASNDescription_neq: string + + """""" + clientASNDescription_notin: [string!] + + """""" + clientASNDescription_notlike: string + + """""" + clientAsn: string + + """""" + clientAsn_geq: string + + """""" + clientAsn_gt: string + + """""" + clientAsn_in: [string!] + + """""" + clientAsn_leq: string + + """""" + clientAsn_like: string + + """""" + clientAsn_lt: string + + """""" + clientAsn_neq: string + + """""" + clientAsn_notin: [string!] + + """""" + clientAsn_notlike: string + + """""" + clientCountryName: string + + """""" + clientCountryName_geq: string + + """""" + clientCountryName_gt: string + + """""" + clientCountryName_in: [string!] + + """""" + clientCountryName_leq: string + + """""" + clientCountryName_like: string + + """""" + clientCountryName_lt: string + + """""" + clientCountryName_neq: string + + """""" + clientCountryName_notin: [string!] + + """""" + clientCountryName_notlike: string + + """""" + clientIP: string + + """""" + clientIPClass: string + + """""" + clientIPClass_geq: string + + """""" + clientIPClass_gt: string + + """""" + clientIPClass_in: [string!] + + """""" + clientIPClass_leq: string + + """""" + clientIPClass_like: string + + """""" + clientIPClass_lt: string + + """""" + clientIPClass_neq: string + + """""" + clientIPClass_notin: [string!] + + """""" + clientIPClass_notlike: string + + """""" + clientIP_geq: string + + """""" + clientIP_gt: string + + """""" + clientIP_in: [string!] + + """""" + clientIP_leq: string + + """""" + clientIP_like: string + + """""" + clientIP_lt: string + + """""" + clientIP_neq: string + + """""" + clientIP_notin: [string!] + + """""" + clientIP_notlike: string + + """""" + clientRefererHost: string + + """""" + clientRefererHost_geq: string + + """""" + clientRefererHost_gt: string + + """""" + clientRefererHost_in: [string!] + + """""" + clientRefererHost_leq: string + + """""" + clientRefererHost_like: string + + """""" + clientRefererHost_lt: string + + """""" + clientRefererHost_neq: string + + """""" + clientRefererHost_notin: [string!] + + """""" + clientRefererHost_notlike: string + + """""" + clientRefererPath: string + + """""" + clientRefererPath_geq: string + + """""" + clientRefererPath_gt: string + + """""" + clientRefererPath_in: [string!] + + """""" + clientRefererPath_leq: string + + """""" + clientRefererPath_like: string + + """""" + clientRefererPath_lt: string + + """""" + clientRefererPath_neq: string + + """""" + clientRefererPath_notin: [string!] + + """""" + clientRefererPath_notlike: string + + """""" + clientRefererQuery: string + + """""" + clientRefererQuery_geq: string + + """""" + clientRefererQuery_gt: string + + """""" + clientRefererQuery_in: [string!] + + """""" + clientRefererQuery_leq: string + + """""" + clientRefererQuery_like: string + + """""" + clientRefererQuery_lt: string + + """""" + clientRefererQuery_neq: string + + """""" + clientRefererQuery_notin: [string!] + + """""" + clientRefererQuery_notlike: string + + """""" + clientRefererScheme: string + + """""" + clientRefererScheme_geq: string + + """""" + clientRefererScheme_gt: string + + """""" + clientRefererScheme_in: [string!] + + """""" + clientRefererScheme_leq: string + + """""" + clientRefererScheme_like: string + + """""" + clientRefererScheme_lt: string + + """""" + clientRefererScheme_neq: string + + """""" + clientRefererScheme_notin: [string!] + + """""" + clientRefererScheme_notlike: string + + """""" + clientRequestHTTPHost: string + + """""" + clientRequestHTTPHost_geq: string + + """""" + clientRequestHTTPHost_gt: string + + """""" + clientRequestHTTPHost_in: [string!] + + """""" + clientRequestHTTPHost_leq: string + + """""" + clientRequestHTTPHost_like: string + + """""" + clientRequestHTTPHost_lt: string + + """""" + clientRequestHTTPHost_neq: string + + """""" + clientRequestHTTPHost_notin: [string!] + + """""" + clientRequestHTTPHost_notlike: string + + """""" + clientRequestHTTPMethodName: string + + """""" + clientRequestHTTPMethodName_geq: string + + """""" + clientRequestHTTPMethodName_gt: string + + """""" + clientRequestHTTPMethodName_in: [string!] + + """""" + clientRequestHTTPMethodName_leq: string + + """""" + clientRequestHTTPMethodName_like: string + + """""" + clientRequestHTTPMethodName_lt: string + + """""" + clientRequestHTTPMethodName_neq: string + + """""" + clientRequestHTTPMethodName_notin: [string!] + + """""" + clientRequestHTTPMethodName_notlike: string + + """""" + clientRequestHTTPProtocol: string + + """""" + clientRequestHTTPProtocol_geq: string + + """""" + clientRequestHTTPProtocol_gt: string + + """""" + clientRequestHTTPProtocol_in: [string!] + + """""" + clientRequestHTTPProtocol_leq: string + + """""" + clientRequestHTTPProtocol_like: string + + """""" + clientRequestHTTPProtocol_lt: string + + """""" + clientRequestHTTPProtocol_neq: string + + """""" + clientRequestHTTPProtocol_notin: [string!] + + """""" + clientRequestHTTPProtocol_notlike: string + + """""" + clientRequestPath: string + + """""" + clientRequestPath_geq: string + + """""" + clientRequestPath_gt: string + + """""" + clientRequestPath_in: [string!] + + """""" + clientRequestPath_leq: string + + """""" + clientRequestPath_like: string + + """""" + clientRequestPath_lt: string + + """""" + clientRequestPath_neq: string + + """""" + clientRequestPath_notin: [string!] + + """""" + clientRequestPath_notlike: string + + """""" + clientRequestQuery: string + + """""" + clientRequestQuery_geq: string + + """""" + clientRequestQuery_gt: string + + """""" + clientRequestQuery_in: [string!] + + """""" + clientRequestQuery_leq: string + + """""" + clientRequestQuery_like: string + + """""" + clientRequestQuery_lt: string + + """""" + clientRequestQuery_neq: string + + """""" + clientRequestQuery_notin: [string!] + + """""" + clientRequestQuery_notlike: string + + """""" + clientRequestScheme: string + + """""" + clientRequestScheme_geq: string + + """""" + clientRequestScheme_gt: string + + """""" + clientRequestScheme_in: [string!] + + """""" + clientRequestScheme_leq: string + + """""" + clientRequestScheme_like: string + + """""" + clientRequestScheme_lt: string + + """""" + clientRequestScheme_neq: string + + """""" + clientRequestScheme_notin: [string!] + + """""" + clientRequestScheme_notlike: string + + """""" + contentScanHasFailed: uint8 + + """""" + contentScanHasFailed_geq: uint8 + + """""" + contentScanHasFailed_gt: uint8 + + """""" + contentScanHasFailed_in: bytes + + """""" + contentScanHasFailed_leq: uint8 + + """""" + contentScanHasFailed_lt: uint8 + + """""" + contentScanHasFailed_neq: uint8 + + """""" + contentScanHasFailed_notin: bytes + + """""" + contentScanNumMaliciousObj: uint8 + + """""" + contentScanNumMaliciousObj_geq: uint8 + + """""" + contentScanNumMaliciousObj_gt: uint8 + + """""" + contentScanNumMaliciousObj_in: bytes + + """""" + contentScanNumMaliciousObj_leq: uint8 + + """""" + contentScanNumMaliciousObj_lt: uint8 + + """""" + contentScanNumMaliciousObj_neq: uint8 + + """""" + contentScanNumMaliciousObj_notin: bytes + + """""" + contentScanNumObj: uint8 + + """""" + contentScanNumObj_geq: uint8 + + """""" + contentScanNumObj_gt: uint8 + + """""" + contentScanNumObj_in: bytes + + """""" + contentScanNumObj_leq: uint8 + + """""" + contentScanNumObj_lt: uint8 + + """""" + contentScanNumObj_neq: uint8 + + """""" + contentScanNumObj_notin: bytes + + """""" + contentScanObjResults_has: string + + """""" + contentScanObjResults_hasall: [string!] + + """""" + contentScanObjResults_hasany: [string!] + + """""" + contentScanObjResults_isempty: bool + + """""" + contentScanObjResults_nothas: string + + """""" + contentScanObjSizes_has: uint32 + + """""" + contentScanObjSizes_hasall: [uint32!] + + """""" + contentScanObjSizes_hasany: [uint32!] + + """""" + contentScanObjSizes_isempty: bool + + """""" + contentScanObjSizes_nothas: uint32 + + """""" + contentScanObjTypes_has: string + + """""" + contentScanObjTypes_hasall: [string!] + + """""" + contentScanObjTypes_hasany: [string!] + + """""" + contentScanObjTypes_isempty: bool + + """""" + contentScanObjTypes_nothas: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + description: string + + """""" + description_geq: string + + """""" + description_gt: string + + """""" + description_in: [string!] + + """""" + description_leq: string + + """""" + description_like: string + + """""" + description_lt: string + + """""" + description_neq: string + + """""" + description_notin: [string!] + + """""" + description_notlike: string + + """""" + edgeColoName: string + + """""" + edgeColoName_geq: string + + """""" + edgeColoName_gt: string + + """""" + edgeColoName_in: [string!] + + """""" + edgeColoName_leq: string + + """""" + edgeColoName_like: string + + """""" + edgeColoName_lt: string + + """""" + edgeColoName_neq: string + + """""" + edgeColoName_notin: [string!] + + """""" + edgeColoName_notlike: string + + """""" + edgeResponseStatus: uint16 + + """""" + edgeResponseStatus_geq: uint16 + + """""" + edgeResponseStatus_gt: uint16 + + """""" + edgeResponseStatus_in: [uint16!] + + """""" + edgeResponseStatus_leq: uint16 + + """""" + edgeResponseStatus_lt: uint16 + + """""" + edgeResponseStatus_neq: uint16 + + """""" + edgeResponseStatus_notin: [uint16!] + + """""" + firewallForAiAnyPiiCategory: int8 + + """""" + firewallForAiAnyPiiCategory_geq: int8 + + """""" + firewallForAiAnyPiiCategory_gt: int8 + + """""" + firewallForAiAnyPiiCategory_in: [int8!] + + """""" + firewallForAiAnyPiiCategory_leq: int8 + + """""" + firewallForAiAnyPiiCategory_lt: int8 + + """""" + firewallForAiAnyPiiCategory_neq: int8 + + """""" + firewallForAiAnyPiiCategory_notin: [int8!] + + """""" + firewallForAiInjectionScore: int8 + + """""" + firewallForAiInjectionScore_geq: int8 + + """""" + firewallForAiInjectionScore_gt: int8 + + """""" + firewallForAiInjectionScore_in: [int8!] + + """""" + firewallForAiInjectionScore_leq: int8 + + """""" + firewallForAiInjectionScore_lt: int8 + + """""" + firewallForAiInjectionScore_neq: int8 + + """""" + firewallForAiInjectionScore_notin: [int8!] + + """""" + firewallForAiPiiCategories_has: string + + """""" + firewallForAiPiiCategories_hasall: [string!] + + """""" + firewallForAiPiiCategories_hasany: [string!] + + """""" + firewallForAiPiiCategories_isempty: bool + + """""" + firewallForAiPiiCategories_nothas: string + + """""" + firewallForAiUnsafeTopicCategories_has: string + + """""" + firewallForAiUnsafeTopicCategories_hasall: [string!] + + """""" + firewallForAiUnsafeTopicCategories_hasany: [string!] + + """""" + firewallForAiUnsafeTopicCategories_isempty: bool + + """""" + firewallForAiUnsafeTopicCategories_nothas: string + + """""" + fraudAttack: string + + """""" + fraudAttack_geq: string + + """""" + fraudAttack_gt: string + + """""" + fraudAttack_in: [string!] + + """""" + fraudAttack_leq: string + + """""" + fraudAttack_like: string + + """""" + fraudAttack_lt: string + + """""" + fraudAttack_neq: string + + """""" + fraudAttack_notin: [string!] + + """""" + fraudAttack_notlike: string + + """""" + fraudDetectionIds_has: uint32 + + """""" + fraudDetectionIds_hasall: [uint32!] + + """""" + fraudDetectionIds_hasany: [uint32!] + + """""" + fraudDetectionIds_isempty: bool + + """""" + fraudDetectionIds_nothas: uint32 + + """""" + fraudDetectionTags_has: string + + """""" + fraudDetectionTags_hasall: [string!] + + """""" + fraudDetectionTags_hasany: [string!] + + """""" + fraudDetectionTags_isempty: bool + + """""" + fraudDetectionTags_nothas: string + + """""" + fraudEmailRisk: string + + """""" + fraudEmailRisk_geq: string + + """""" + fraudEmailRisk_gt: string + + """""" + fraudEmailRisk_in: [string!] + + """""" + fraudEmailRisk_leq: string + + """""" + fraudEmailRisk_like: string + + """""" + fraudEmailRisk_lt: string + + """""" + fraudEmailRisk_neq: string + + """""" + fraudEmailRisk_notin: [string!] + + """""" + fraudEmailRisk_notlike: string + + """""" + httpApplicationVersion: uint64 + + """""" + httpApplicationVersion_geq: uint64 + + """""" + httpApplicationVersion_gt: uint64 + + """""" + httpApplicationVersion_in: [uint64!] + + """""" + httpApplicationVersion_leq: uint64 + + """""" + httpApplicationVersion_lt: uint64 + + """""" + httpApplicationVersion_neq: uint64 + + """""" + httpApplicationVersion_notin: [uint64!] + + """""" + ja3Hash: string + + """""" + ja3Hash_geq: string + + """""" + ja3Hash_gt: string + + """""" + ja3Hash_in: [string!] + + """""" + ja3Hash_leq: string + + """""" + ja3Hash_like: string + + """""" + ja3Hash_lt: string + + """""" + ja3Hash_neq: string + + """""" + ja3Hash_notin: [string!] + + """""" + ja3Hash_notlike: string + + """""" + ja4: string + + """""" + ja4_geq: string + + """""" + ja4_gt: string + + """""" + ja4_in: [string!] + + """""" + ja4_leq: string + + """""" + ja4_like: string + + """""" + ja4_lt: string + + """""" + ja4_neq: string + + """""" + ja4_notin: [string!] + + """""" + ja4_notlike: string + + """""" + jsDetectionPassed: string + + """""" + jsDetectionPassed_geq: string + + """""" + jsDetectionPassed_gt: string + + """""" + jsDetectionPassed_in: [string!] + + """""" + jsDetectionPassed_leq: string + + """""" + jsDetectionPassed_like: string + + """""" + jsDetectionPassed_lt: string + + """""" + jsDetectionPassed_neq: string + + """""" + jsDetectionPassed_notin: [string!] + + """""" + jsDetectionPassed_notlike: string + + """""" + kind: string + + """""" + kind_geq: string + + """""" + kind_gt: string + + """""" + kind_in: [string!] + + """""" + kind_leq: string + + """""" + kind_like: string + + """""" + kind_lt: string + + """""" + kind_neq: string + + """""" + kind_notin: [string!] + + """""" + kind_notlike: string + + """""" + leakedCredentialCheckResult: string + + """""" + leakedCredentialCheckResult_geq: string + + """""" + leakedCredentialCheckResult_gt: string + + """""" + leakedCredentialCheckResult_in: [string!] + + """""" + leakedCredentialCheckResult_leq: string + + """""" + leakedCredentialCheckResult_like: string + + """""" + leakedCredentialCheckResult_lt: string + + """""" + leakedCredentialCheckResult_neq: string + + """""" + leakedCredentialCheckResult_notin: [string!] + + """""" + leakedCredentialCheckResult_notlike: string + + """""" + matchIndex: uint16 + + """""" + matchIndex_geq: uint16 + + """""" + matchIndex_gt: uint16 + + """""" + matchIndex_in: [uint16!] + + """""" + matchIndex_leq: uint16 + + """""" + matchIndex_lt: uint16 + + """""" + matchIndex_neq: uint16 + + """""" + matchIndex_notin: [uint16!] + + """""" + originResponseStatus: uint16 + + """""" + originResponseStatus_geq: uint16 + + """""" + originResponseStatus_gt: uint16 + + """""" + originResponseStatus_in: [uint16!] + + """""" + originResponseStatus_leq: uint16 + + """""" + originResponseStatus_lt: uint16 + + """""" + originResponseStatus_neq: uint16 + + """""" + originResponseStatus_notin: [uint16!] + + """""" + originatorRayName: string + + """""" + originatorRayName_geq: string + + """""" + originatorRayName_gt: string + + """""" + originatorRayName_in: [string!] + + """""" + originatorRayName_leq: string + + """""" + originatorRayName_like: string + + """""" + originatorRayName_lt: string + + """""" + originatorRayName_neq: string + + """""" + originatorRayName_notin: [string!] + + """""" + originatorRayName_notlike: string + + """""" + rayName: string + + """""" + rayName_geq: string + + """""" + rayName_gt: string + + """""" + rayName_in: [string!] + + """""" + rayName_leq: string + + """""" + rayName_like: string + + """""" + rayName_lt: string + + """""" + rayName_neq: string + + """""" + rayName_notin: [string!] + + """""" + rayName_notlike: string + + """""" + ref: string + + """""" + ref_geq: string + + """""" + ref_gt: string + + """""" + ref_in: [string!] + + """""" + ref_leq: string + + """""" + ref_like: string + + """""" + ref_lt: string + + """""" + ref_neq: string + + """""" + ref_notin: [string!] + + """""" + ref_notlike: string + + """""" + ruleId: string + + """""" + ruleId_geq: string + + """""" + ruleId_gt: string + + """""" + ruleId_in: [string!] + + """""" + ruleId_leq: string + + """""" + ruleId_like: string + + """""" + ruleId_lt: string + + """""" + ruleId_neq: string + + """""" + ruleId_notin: [string!] + + """""" + ruleId_notlike: string + + """""" + rulesetId: string + + """""" + rulesetId_geq: string + + """""" + rulesetId_gt: string + + """""" + rulesetId_in: [string!] + + """""" + rulesetId_leq: string + + """""" + rulesetId_like: string + + """""" + rulesetId_lt: string + + """""" + rulesetId_neq: string + + """""" + rulesetId_notin: [string!] + + """""" + rulesetId_notlike: string + + """""" + sampleInterval: uint32 + + """""" + sampleInterval_geq: uint32 + + """""" + sampleInterval_gt: uint32 + + """""" + sampleInterval_in: [uint32!] + + """""" + sampleInterval_leq: uint32 + + """""" + sampleInterval_lt: uint32 + + """""" + sampleInterval_neq: uint32 + + """""" + sampleInterval_notin: [uint32!] + + """""" + source: string + + """""" + source_geq: string + + """""" + source_gt: string + + """""" + source_in: [string!] + + """""" + source_leq: string + + """""" + source_like: string + + """""" + source_lt: string + + """""" + source_neq: string + + """""" + source_notin: [string!] + + """""" + source_notlike: string + + """""" + userAgent: string + + """""" + userAgent_geq: string + + """""" + userAgent_gt: string + + """""" + userAgent_in: [string!] + + """""" + userAgent_leq: string + + """""" + userAgent_like: string + + """""" + userAgent_lt: string + + """""" + userAgent_neq: string + + """""" + userAgent_notin: [string!] + + """""" + userAgent_notlike: string + + """""" + verifiedBotCategory: string + + """""" + verifiedBotCategory_geq: string + + """""" + verifiedBotCategory_gt: string + + """""" + verifiedBotCategory_in: [string!] + + """""" + verifiedBotCategory_leq: string + + """""" + verifiedBotCategory_like: string + + """""" + verifiedBotCategory_lt: string + + """""" + verifiedBotCategory_neq: string + + """""" + verifiedBotCategory_notin: [string!] + + """""" + verifiedBotCategory_notlike: string + + """""" + wafAttackScore: uint8 + + """""" + wafAttackScoreClass: string + + """""" + wafAttackScoreClass_geq: string + + """""" + wafAttackScoreClass_gt: string + + """""" + wafAttackScoreClass_in: [string!] + + """""" + wafAttackScoreClass_leq: string + + """""" + wafAttackScoreClass_like: string + + """""" + wafAttackScoreClass_lt: string + + """""" + wafAttackScoreClass_neq: string + + """""" + wafAttackScoreClass_notin: [string!] + + """""" + wafAttackScoreClass_notlike: string + + """""" + wafAttackScore_geq: uint8 + + """""" + wafAttackScore_gt: uint8 + + """""" + wafAttackScore_in: bytes + + """""" + wafAttackScore_leq: uint8 + + """""" + wafAttackScore_lt: uint8 + + """""" + wafAttackScore_neq: uint8 + + """""" + wafAttackScore_notin: bytes + + """""" + wafMlAttackScore: uint8 + + """""" + wafMlAttackScore_geq: uint8 + + """""" + wafMlAttackScore_gt: uint8 + + """""" + wafMlAttackScore_in: bytes + + """""" + wafMlAttackScore_leq: uint8 + + """""" + wafMlAttackScore_lt: uint8 + + """""" + wafMlAttackScore_neq: uint8 + + """""" + wafMlAttackScore_notin: bytes + + """""" + wafMlSqliAttackScore: uint8 + + """""" + wafMlSqliAttackScore_geq: uint8 + + """""" + wafMlSqliAttackScore_gt: uint8 + + """""" + wafMlSqliAttackScore_in: bytes + + """""" + wafMlSqliAttackScore_leq: uint8 + + """""" + wafMlSqliAttackScore_lt: uint8 + + """""" + wafMlSqliAttackScore_neq: uint8 + + """""" + wafMlSqliAttackScore_notin: bytes + + """""" + wafMlXssAttackScore: uint8 + + """""" + wafMlXssAttackScore_geq: uint8 + + """""" + wafMlXssAttackScore_gt: uint8 + + """""" + wafMlXssAttackScore_in: bytes + + """""" + wafMlXssAttackScore_leq: uint8 + + """""" + wafMlXssAttackScore_lt: uint8 + + """""" + wafMlXssAttackScore_neq: uint8 + + """""" + wafMlXssAttackScore_notin: bytes + + """""" + wafRceAttackScore: uint8 + + """""" + wafRceAttackScore_geq: uint8 + + """""" + wafRceAttackScore_gt: uint8 + + """""" + wafRceAttackScore_in: bytes + + """""" + wafRceAttackScore_leq: uint8 + + """""" + wafRceAttackScore_lt: uint8 + + """""" + wafRceAttackScore_neq: uint8 + + """""" + wafRceAttackScore_notin: bytes + + """""" + wafSqliAttackScore: uint8 + + """""" + wafSqliAttackScore_geq: uint8 + + """""" + wafSqliAttackScore_gt: uint8 + + """""" + wafSqliAttackScore_in: bytes + + """""" + wafSqliAttackScore_leq: uint8 + + """""" + wafSqliAttackScore_lt: uint8 + + """""" + wafSqliAttackScore_neq: uint8 + + """""" + wafSqliAttackScore_notin: bytes + + """""" + wafXssAttackScore: uint8 + + """""" + wafXssAttackScore_geq: uint8 + + """""" + wafXssAttackScore_gt: uint8 + + """""" + wafXssAttackScore_in: bytes + + """""" + wafXssAttackScore_leq: uint8 + + """""" + wafXssAttackScore_lt: uint8 + + """""" + wafXssAttackScore_neq: uint8 + + """""" + wafXssAttackScore_notin: bytes + + """""" + zoneTag: string + + """""" + zoneTag_geq: string + + """""" + zoneTag_gt: string + + """""" + zoneTag_in: [string!] + + """""" + zoneTag_leq: string + + """""" + zoneTag_like: string + + """""" + zoneTag_lt: string + + """""" + zoneTag_neq: string + + """""" + zoneTag_notin: [string!] + + """""" + zoneTag_notlike: string + + """""" + zoneVersion: uint64 + + """""" + zoneVersion_geq: uint64 + + """""" + zoneVersion_gt: uint64 + + """""" + zoneVersion_in: [uint64!] + + """""" + zoneVersion_leq: uint64 + + """""" + zoneVersion_lt: uint64 + + """""" + zoneVersion_neq: uint64 + + """""" + zoneVersion_notin: [uint64!] +} + +"""Aggregated Firewall events with adaptive sampling""" +type AccountFirewallEventsAdaptiveGroups { + """The average value used for sample interval""" + avg: AccountFirewallEventsAdaptiveGroupsAvg + + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountFirewallEventsAdaptiveGroupsConfidence! + + """The sum of sample interval values""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountFirewallEventsAdaptiveGroupsDimensions + + """""" + sum: AccountFirewallEventsAdaptiveGroupsSum +} + +"""""" +type AccountFirewallEventsAdaptiveGroupsAvg { + """""" + sampleInterval: float64! +} + +"""""" +type AccountFirewallEventsAdaptiveGroupsConfidence { + """The sum of sample interval values, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! +} + +"""""" +type AccountFirewallEventsAdaptiveGroupsDimensions { + """ + The code of the first-class action the Cloudflare Firewall took on this request + """ + action: string! + + """API Gateway endpoint matched at the edge""" + apiGatewayMatchedEndpoint: string! + + """API Gateway host matched at the edge""" + apiGatewayMatchedHost: string! + + """ + 1-D array of the categories associated with the rules ref in attackSignatureRefs + """ + attackSignatureCategories: [string!]! + + """ + cf.waf.attack_signature.refs Ruleset field truncated to maximum 10 elements. + """ + attackSignatureRefs: [string!]! + + """Array of detections ids that matched this request""" + botDetectionIds: [uint32!]! + + """Array of detections tags that matched this request""" + botDetectionTags: [string!]! + + """The final score originated from bot management detections.""" + botScore: uint8! + + """Name of the source detection which generated the bot management score.""" + botScoreSrcName: string! + + """The ASN of the visitor as string""" + clientASNDescription: string! + + """The ASN number of the visitor""" + clientAsn: string! + + """Country from which request originated""" + clientCountryName: string! + + """The visitor's IP address (IPv4 or IPv6)""" + clientIP: string! + + """ + The classification of the visitor's IP address, possible values are: unknown | clean | badHost | searchEngine | allowlist | greylist | monitoringService | securityScanner | noRecord | scan | backupService | mobilePlatform | tor + """ + clientIPClass: string! + + """The referer host""" + clientRefererHost: string! + + """The referer path requested by visitor""" + clientRefererPath: string! + + """The referer query-string was requested by the visitor""" + clientRefererQuery: string! + + """The referer url scheme requested by the visitor""" + clientRefererScheme: string! + + """The HTTP hostname requested by the visitor""" + clientRequestHTTPHost: string! + + """The HTTP method used by the visitor""" + clientRequestHTTPMethodName: string! + + """The version of HTTP protocol requested by the visitor""" + clientRequestHTTPProtocol: string! + + """The path requested by visitor""" + clientRequestPath: string! + + """The query-string was requested by the visitor""" + clientRequestQuery: string! + + """The url scheme requested by the visitor""" + clientRequestScheme: string! + + """ + 1 if not all contents for this request where successfully scanned, else 0 + """ + contentScanHasFailed: uint8! + + """Number of scannable content objects that are malicious""" + contentScanNumMaliciousObj: uint8! + + """Number of scannable content objects""" + contentScanNumObj: uint8! + + """Array of scan results in order of detection""" + contentScanObjResults: [string!]! + + """Array of scan sizes in order of detection""" + contentScanObjSizes: [uint32!]! + + """Array of content types in order of detection""" + contentScanObjTypes: [string!]! + + """The date the event occurred at the edge""" + date: Date! + + """The date and time the event occurred at the edge""" + datetime: Time! + + """ + The date and time the event occurred at the edge truncated to a multiple of 15 minutes + """ + datetimeFifteenMinutes: Time! + + """ + The date and time the event occurred at the edge truncated to a multiple of 5 minutes + """ + datetimeFiveMinutes: Time! + + """The date and time the event occurred at the edge truncated to hours""" + datetimeHour: Time! + + """ + The date and time the event occurred at the edge truncated to the minute + """ + datetimeMinute: Time! + + """The description of the rule triggered by this request""" + description: string! + + """The airport code of the Cloudflare datacenter that served this request""" + edgeColoName: string! + + """HTTP response status code returned to browser""" + edgeResponseStatus: uint16! + + """ + Whether firewallForAiPiiCategories is non empty. 0 if empty, 1 if not empty. + """ + firewallForAiAnyPiiCategory: int8! + + """Corresponds to the Ruleset field cf.llm.prompt.injection_score.""" + firewallForAiInjectionScore: int8! + + """Corresponds to the Ruleset field cf.llm.prompt.pii_categories.""" + firewallForAiPiiCategories: [string!]! + + """Corresponds to the Ruleset field cf.llm.prompt.unsafe_data_categories.""" + firewallForAiUnsafeTopicCategories: [string!]! + + """ + The primary attack or use case detected in the request by Fraud detections + """ + fraudAttack: string! + + """Array of fraud detections ids that matched this request""" + fraudDetectionIds: [uint32!]! + + """Array of fraud detections tags that matched this request""" + fraudDetectionTags: [string!]! + + """Risk of a specific email address in account signup attempts""" + fraudEmailRisk: string! + + """Version associated with HTTP Application""" + httpApplicationVersion: uint64! @deprecated(reason: "Field is replaced with zoneVersion") + + """MD5 hash of the JA3 TLS fingerprint""" + ja3Hash: string! + + """JA4 TLS fingerprint""" + ja4: string! + + """Whether the request passed background JavaScript Detection""" + jsDetectionPassed: string! + + """The kind of event, currently only possible values are: firewall""" + kind: string! + + """Rules match index in the chain""" + matchIndex: uint16! + + """HTTP origin response status code returned to browser""" + originResponseStatus: uint16! + + """The RayId of the request that issued the challenge/jschallenge""" + originatorRayName: string! + + """The RayId of the request""" + rayName: string! + + """ + The ref-field is a user-defined rule identifier that can be set via the API for some firewall products and allows users to label their rules individually alongside cloudflare provided identifiers (only available to entitled customers) + """ + ref: string! + + """ + The Cloudflare security product-specific RuleId triggered by this request + """ + ruleId: string! + + """ + The Cloudflare security product-specific RulesetId triggered by this request + """ + rulesetId: string! + + """ABR sample interval""" + sampleInterval: uint32! + + """The Cloudflare security product triggered by this request""" + source: string! + + """visitor's user-agent string""" + userAgent: string! + + """The category of verified bot""" + verifiedBotCategory: string! + + """Beta. Overall request score generated by the WAF detection module""" + wafAttackScore: uint8! + + """ + Beta. Overall request score class generated by the WAF detection module + """ + wafAttackScoreClass: string! + + """Beta. Overall request score generated by the WAF ML detection module""" + wafMlAttackScore: uint8! @deprecated(reason: "Field is replaced with wafAttackScore") + + """Beta. WAF ML score for an SQLi attack""" + wafMlSqliAttackScore: uint8! @deprecated(reason: "Field is replaced with wafSqliAttackScore") + + """Beta. WAF ML score for an XSS attack""" + wafMlXssAttackScore: uint8! @deprecated(reason: "Field is replaced with wafXssAttackScore") + + """Beta. WAF score for a RCE attack""" + wafRceAttackScore: uint8! + + """Beta. WAF score for a SQLi attack""" + wafSqliAttackScore: uint8! + + """Beta. WAF score for a XSS attack""" + wafXssAttackScore: uint8! + + """Associated zone""" + zoneTag: string! + + """The version of a zone""" + zoneVersion: uint64! +} + +"""""" +input AccountFirewallEventsAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountFirewallEventsAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountFirewallEventsAdaptiveGroupsFilter_InputObject!] + + """""" + action: string + + """""" + action_geq: string + + """""" + action_gt: string + + """""" + action_in: [string!] + + """""" + action_leq: string + + """""" + action_like: string + + """""" + action_lt: string + + """""" + action_neq: string + + """""" + action_notin: [string!] + + """""" + action_notlike: string + + """""" + apiGatewayMatchedEndpoint: string + + """""" + apiGatewayMatchedEndpoint_geq: string + + """""" + apiGatewayMatchedEndpoint_gt: string + + """""" + apiGatewayMatchedEndpoint_in: [string!] + + """""" + apiGatewayMatchedEndpoint_leq: string + + """""" + apiGatewayMatchedEndpoint_like: string + + """""" + apiGatewayMatchedEndpoint_lt: string + + """""" + apiGatewayMatchedEndpoint_neq: string + + """""" + apiGatewayMatchedEndpoint_notin: [string!] + + """""" + apiGatewayMatchedEndpoint_notlike: string + + """""" + apiGatewayMatchedHost: string + + """""" + apiGatewayMatchedHost_geq: string + + """""" + apiGatewayMatchedHost_gt: string + + """""" + apiGatewayMatchedHost_in: [string!] + + """""" + apiGatewayMatchedHost_leq: string + + """""" + apiGatewayMatchedHost_like: string + + """""" + apiGatewayMatchedHost_lt: string + + """""" + apiGatewayMatchedHost_neq: string + + """""" + apiGatewayMatchedHost_notin: [string!] + + """""" + apiGatewayMatchedHost_notlike: string + + """""" + attackSignatureCategories_has: string + + """""" + attackSignatureCategories_hasall: [string!] + + """""" + attackSignatureCategories_hasany: [string!] + + """""" + attackSignatureCategories_isempty: bool + + """""" + attackSignatureCategories_nothas: string + + """""" + attackSignatureRefs_has: string + + """""" + attackSignatureRefs_hasall: [string!] + + """""" + attackSignatureRefs_hasany: [string!] + + """""" + attackSignatureRefs_isempty: bool + + """""" + attackSignatureRefs_nothas: string + + """""" + botDetectionIds_has: uint32 + + """""" + botDetectionIds_hasall: [uint32!] + + """""" + botDetectionIds_hasany: [uint32!] + + """""" + botDetectionIds_isempty: bool + + """""" + botDetectionIds_nothas: uint32 + + """""" + botDetectionTags_has: string + + """""" + botDetectionTags_hasall: [string!] + + """""" + botDetectionTags_hasany: [string!] + + """""" + botDetectionTags_isempty: bool + + """""" + botDetectionTags_nothas: string + + """""" + botScore: uint8 + + """""" + botScoreSrcName: string + + """""" + botScoreSrcName_geq: string + + """""" + botScoreSrcName_gt: string + + """""" + botScoreSrcName_in: [string!] + + """""" + botScoreSrcName_leq: string + + """""" + botScoreSrcName_like: string + + """""" + botScoreSrcName_lt: string + + """""" + botScoreSrcName_neq: string + + """""" + botScoreSrcName_notin: [string!] + + """""" + botScoreSrcName_notlike: string + + """""" + botScore_geq: uint8 + + """""" + botScore_gt: uint8 + + """""" + botScore_in: bytes + + """""" + botScore_leq: uint8 + + """""" + botScore_lt: uint8 + + """""" + botScore_neq: uint8 + + """""" + botScore_notin: bytes + + """""" + clientASNDescription: string + + """""" + clientASNDescription_geq: string + + """""" + clientASNDescription_gt: string + + """""" + clientASNDescription_in: [string!] + + """""" + clientASNDescription_leq: string + + """""" + clientASNDescription_like: string + + """""" + clientASNDescription_lt: string + + """""" + clientASNDescription_neq: string + + """""" + clientASNDescription_notin: [string!] + + """""" + clientASNDescription_notlike: string + + """""" + clientAsn: string + + """""" + clientAsn_geq: string + + """""" + clientAsn_gt: string + + """""" + clientAsn_in: [string!] + + """""" + clientAsn_leq: string + + """""" + clientAsn_like: string + + """""" + clientAsn_lt: string + + """""" + clientAsn_neq: string + + """""" + clientAsn_notin: [string!] + + """""" + clientAsn_notlike: string + + """""" + clientCountryName: string + + """""" + clientCountryName_geq: string + + """""" + clientCountryName_gt: string + + """""" + clientCountryName_in: [string!] + + """""" + clientCountryName_leq: string + + """""" + clientCountryName_like: string + + """""" + clientCountryName_lt: string + + """""" + clientCountryName_neq: string + + """""" + clientCountryName_notin: [string!] + + """""" + clientCountryName_notlike: string + + """""" + clientIP: string + + """""" + clientIPClass: string + + """""" + clientIPClass_geq: string + + """""" + clientIPClass_gt: string + + """""" + clientIPClass_in: [string!] + + """""" + clientIPClass_leq: string + + """""" + clientIPClass_like: string + + """""" + clientIPClass_lt: string + + """""" + clientIPClass_neq: string + + """""" + clientIPClass_notin: [string!] + + """""" + clientIPClass_notlike: string + + """""" + clientIP_geq: string + + """""" + clientIP_gt: string + + """""" + clientIP_in: [string!] + + """""" + clientIP_leq: string + + """""" + clientIP_like: string + + """""" + clientIP_lt: string + + """""" + clientIP_neq: string + + """""" + clientIP_notin: [string!] + + """""" + clientIP_notlike: string + + """""" + clientRefererHost: string + + """""" + clientRefererHost_geq: string + + """""" + clientRefererHost_gt: string + + """""" + clientRefererHost_in: [string!] + + """""" + clientRefererHost_leq: string + + """""" + clientRefererHost_like: string + + """""" + clientRefererHost_lt: string + + """""" + clientRefererHost_neq: string + + """""" + clientRefererHost_notin: [string!] + + """""" + clientRefererHost_notlike: string + + """""" + clientRefererPath: string + + """""" + clientRefererPath_geq: string + + """""" + clientRefererPath_gt: string + + """""" + clientRefererPath_in: [string!] + + """""" + clientRefererPath_leq: string + + """""" + clientRefererPath_like: string + + """""" + clientRefererPath_lt: string + + """""" + clientRefererPath_neq: string + + """""" + clientRefererPath_notin: [string!] + + """""" + clientRefererPath_notlike: string + + """""" + clientRefererQuery: string + + """""" + clientRefererQuery_geq: string + + """""" + clientRefererQuery_gt: string + + """""" + clientRefererQuery_in: [string!] + + """""" + clientRefererQuery_leq: string + + """""" + clientRefererQuery_like: string + + """""" + clientRefererQuery_lt: string + + """""" + clientRefererQuery_neq: string + + """""" + clientRefererQuery_notin: [string!] + + """""" + clientRefererQuery_notlike: string + + """""" + clientRefererScheme: string + + """""" + clientRefererScheme_geq: string + + """""" + clientRefererScheme_gt: string + + """""" + clientRefererScheme_in: [string!] + + """""" + clientRefererScheme_leq: string + + """""" + clientRefererScheme_like: string + + """""" + clientRefererScheme_lt: string + + """""" + clientRefererScheme_neq: string + + """""" + clientRefererScheme_notin: [string!] + + """""" + clientRefererScheme_notlike: string + + """""" + clientRequestHTTPHost: string + + """""" + clientRequestHTTPHost_geq: string + + """""" + clientRequestHTTPHost_gt: string + + """""" + clientRequestHTTPHost_in: [string!] + + """""" + clientRequestHTTPHost_leq: string + + """""" + clientRequestHTTPHost_like: string + + """""" + clientRequestHTTPHost_lt: string + + """""" + clientRequestHTTPHost_neq: string + + """""" + clientRequestHTTPHost_notin: [string!] + + """""" + clientRequestHTTPHost_notlike: string + + """""" + clientRequestHTTPMethodName: string + + """""" + clientRequestHTTPMethodName_geq: string + + """""" + clientRequestHTTPMethodName_gt: string + + """""" + clientRequestHTTPMethodName_in: [string!] + + """""" + clientRequestHTTPMethodName_leq: string + + """""" + clientRequestHTTPMethodName_like: string + + """""" + clientRequestHTTPMethodName_lt: string + + """""" + clientRequestHTTPMethodName_neq: string + + """""" + clientRequestHTTPMethodName_notin: [string!] + + """""" + clientRequestHTTPMethodName_notlike: string + + """""" + clientRequestHTTPProtocol: string + + """""" + clientRequestHTTPProtocol_geq: string + + """""" + clientRequestHTTPProtocol_gt: string + + """""" + clientRequestHTTPProtocol_in: [string!] + + """""" + clientRequestHTTPProtocol_leq: string + + """""" + clientRequestHTTPProtocol_like: string + + """""" + clientRequestHTTPProtocol_lt: string + + """""" + clientRequestHTTPProtocol_neq: string + + """""" + clientRequestHTTPProtocol_notin: [string!] + + """""" + clientRequestHTTPProtocol_notlike: string + + """""" + clientRequestPath: string + + """""" + clientRequestPath_geq: string + + """""" + clientRequestPath_gt: string + + """""" + clientRequestPath_in: [string!] + + """""" + clientRequestPath_leq: string + + """""" + clientRequestPath_like: string + + """""" + clientRequestPath_lt: string + + """""" + clientRequestPath_neq: string + + """""" + clientRequestPath_notin: [string!] + + """""" + clientRequestPath_notlike: string + + """""" + clientRequestQuery: string + + """""" + clientRequestQuery_geq: string + + """""" + clientRequestQuery_gt: string + + """""" + clientRequestQuery_in: [string!] + + """""" + clientRequestQuery_leq: string + + """""" + clientRequestQuery_like: string + + """""" + clientRequestQuery_lt: string + + """""" + clientRequestQuery_neq: string + + """""" + clientRequestQuery_notin: [string!] + + """""" + clientRequestQuery_notlike: string + + """""" + clientRequestScheme: string + + """""" + clientRequestScheme_geq: string + + """""" + clientRequestScheme_gt: string + + """""" + clientRequestScheme_in: [string!] + + """""" + clientRequestScheme_leq: string + + """""" + clientRequestScheme_like: string + + """""" + clientRequestScheme_lt: string + + """""" + clientRequestScheme_neq: string + + """""" + clientRequestScheme_notin: [string!] + + """""" + clientRequestScheme_notlike: string + + """""" + contentScanHasFailed: uint8 + + """""" + contentScanHasFailed_geq: uint8 + + """""" + contentScanHasFailed_gt: uint8 + + """""" + contentScanHasFailed_in: bytes + + """""" + contentScanHasFailed_leq: uint8 + + """""" + contentScanHasFailed_lt: uint8 + + """""" + contentScanHasFailed_neq: uint8 + + """""" + contentScanHasFailed_notin: bytes + + """""" + contentScanNumMaliciousObj: uint8 + + """""" + contentScanNumMaliciousObj_geq: uint8 + + """""" + contentScanNumMaliciousObj_gt: uint8 + + """""" + contentScanNumMaliciousObj_in: bytes + + """""" + contentScanNumMaliciousObj_leq: uint8 + + """""" + contentScanNumMaliciousObj_lt: uint8 + + """""" + contentScanNumMaliciousObj_neq: uint8 + + """""" + contentScanNumMaliciousObj_notin: bytes + + """""" + contentScanNumObj: uint8 + + """""" + contentScanNumObj_geq: uint8 + + """""" + contentScanNumObj_gt: uint8 + + """""" + contentScanNumObj_in: bytes + + """""" + contentScanNumObj_leq: uint8 + + """""" + contentScanNumObj_lt: uint8 + + """""" + contentScanNumObj_neq: uint8 + + """""" + contentScanNumObj_notin: bytes + + """""" + contentScanObjResults_has: string + + """""" + contentScanObjResults_hasall: [string!] + + """""" + contentScanObjResults_hasany: [string!] + + """""" + contentScanObjResults_isempty: bool + + """""" + contentScanObjResults_nothas: string + + """""" + contentScanObjSizes_has: uint32 + + """""" + contentScanObjSizes_hasall: [uint32!] + + """""" + contentScanObjSizes_hasany: [uint32!] + + """""" + contentScanObjSizes_isempty: bool + + """""" + contentScanObjSizes_nothas: uint32 + + """""" + contentScanObjTypes_has: string + + """""" + contentScanObjTypes_hasall: [string!] + + """""" + contentScanObjTypes_hasany: [string!] + + """""" + contentScanObjTypes_isempty: bool + + """""" + contentScanObjTypes_nothas: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + description: string + + """""" + description_geq: string + + """""" + description_gt: string + + """""" + description_in: [string!] + + """""" + description_leq: string + + """""" + description_like: string + + """""" + description_lt: string + + """""" + description_neq: string + + """""" + description_notin: [string!] + + """""" + description_notlike: string + + """""" + edgeColoName: string + + """""" + edgeColoName_geq: string + + """""" + edgeColoName_gt: string + + """""" + edgeColoName_in: [string!] + + """""" + edgeColoName_leq: string + + """""" + edgeColoName_like: string + + """""" + edgeColoName_lt: string + + """""" + edgeColoName_neq: string + + """""" + edgeColoName_notin: [string!] + + """""" + edgeColoName_notlike: string + + """""" + edgeResponseStatus: uint16 + + """""" + edgeResponseStatus_geq: uint16 + + """""" + edgeResponseStatus_gt: uint16 + + """""" + edgeResponseStatus_in: [uint16!] + + """""" + edgeResponseStatus_leq: uint16 + + """""" + edgeResponseStatus_lt: uint16 + + """""" + edgeResponseStatus_neq: uint16 + + """""" + edgeResponseStatus_notin: [uint16!] + + """""" + firewallForAiAnyPiiCategory: int8 + + """""" + firewallForAiAnyPiiCategory_geq: int8 + + """""" + firewallForAiAnyPiiCategory_gt: int8 + + """""" + firewallForAiAnyPiiCategory_in: [int8!] + + """""" + firewallForAiAnyPiiCategory_leq: int8 + + """""" + firewallForAiAnyPiiCategory_lt: int8 + + """""" + firewallForAiAnyPiiCategory_neq: int8 + + """""" + firewallForAiAnyPiiCategory_notin: [int8!] + + """""" + firewallForAiInjectionScore: int8 + + """""" + firewallForAiInjectionScore_geq: int8 + + """""" + firewallForAiInjectionScore_gt: int8 + + """""" + firewallForAiInjectionScore_in: [int8!] + + """""" + firewallForAiInjectionScore_leq: int8 + + """""" + firewallForAiInjectionScore_lt: int8 + + """""" + firewallForAiInjectionScore_neq: int8 + + """""" + firewallForAiInjectionScore_notin: [int8!] + + """""" + firewallForAiPiiCategories_has: string + + """""" + firewallForAiPiiCategories_hasall: [string!] + + """""" + firewallForAiPiiCategories_hasany: [string!] + + """""" + firewallForAiPiiCategories_isempty: bool + + """""" + firewallForAiPiiCategories_nothas: string + + """""" + firewallForAiUnsafeTopicCategories_has: string + + """""" + firewallForAiUnsafeTopicCategories_hasall: [string!] + + """""" + firewallForAiUnsafeTopicCategories_hasany: [string!] + + """""" + firewallForAiUnsafeTopicCategories_isempty: bool + + """""" + firewallForAiUnsafeTopicCategories_nothas: string + + """""" + fraudAttack: string + + """""" + fraudAttack_geq: string + + """""" + fraudAttack_gt: string + + """""" + fraudAttack_in: [string!] + + """""" + fraudAttack_leq: string + + """""" + fraudAttack_like: string + + """""" + fraudAttack_lt: string + + """""" + fraudAttack_neq: string + + """""" + fraudAttack_notin: [string!] + + """""" + fraudAttack_notlike: string + + """""" + fraudDetectionIds_has: uint32 + + """""" + fraudDetectionIds_hasall: [uint32!] + + """""" + fraudDetectionIds_hasany: [uint32!] + + """""" + fraudDetectionIds_isempty: bool + + """""" + fraudDetectionIds_nothas: uint32 + + """""" + fraudDetectionTags_has: string + + """""" + fraudDetectionTags_hasall: [string!] + + """""" + fraudDetectionTags_hasany: [string!] + + """""" + fraudDetectionTags_isempty: bool + + """""" + fraudDetectionTags_nothas: string + + """""" + fraudEmailRisk: string + + """""" + fraudEmailRisk_geq: string + + """""" + fraudEmailRisk_gt: string + + """""" + fraudEmailRisk_in: [string!] + + """""" + fraudEmailRisk_leq: string + + """""" + fraudEmailRisk_like: string + + """""" + fraudEmailRisk_lt: string + + """""" + fraudEmailRisk_neq: string + + """""" + fraudEmailRisk_notin: [string!] + + """""" + fraudEmailRisk_notlike: string + + """""" + httpApplicationVersion: uint64 + + """""" + httpApplicationVersion_geq: uint64 + + """""" + httpApplicationVersion_gt: uint64 + + """""" + httpApplicationVersion_in: [uint64!] + + """""" + httpApplicationVersion_leq: uint64 + + """""" + httpApplicationVersion_lt: uint64 + + """""" + httpApplicationVersion_neq: uint64 + + """""" + httpApplicationVersion_notin: [uint64!] + + """""" + ja3Hash: string + + """""" + ja3Hash_geq: string + + """""" + ja3Hash_gt: string + + """""" + ja3Hash_in: [string!] + + """""" + ja3Hash_leq: string + + """""" + ja3Hash_like: string + + """""" + ja3Hash_lt: string + + """""" + ja3Hash_neq: string + + """""" + ja3Hash_notin: [string!] + + """""" + ja3Hash_notlike: string + + """""" + ja4: string + + """""" + ja4_geq: string + + """""" + ja4_gt: string + + """""" + ja4_in: [string!] + + """""" + ja4_leq: string + + """""" + ja4_like: string + + """""" + ja4_lt: string + + """""" + ja4_neq: string + + """""" + ja4_notin: [string!] + + """""" + ja4_notlike: string + + """""" + jsDetectionPassed: string + + """""" + jsDetectionPassed_geq: string + + """""" + jsDetectionPassed_gt: string + + """""" + jsDetectionPassed_in: [string!] + + """""" + jsDetectionPassed_leq: string + + """""" + jsDetectionPassed_like: string + + """""" + jsDetectionPassed_lt: string + + """""" + jsDetectionPassed_neq: string + + """""" + jsDetectionPassed_notin: [string!] + + """""" + jsDetectionPassed_notlike: string + + """""" + kind: string + + """""" + kind_geq: string + + """""" + kind_gt: string + + """""" + kind_in: [string!] + + """""" + kind_leq: string + + """""" + kind_like: string + + """""" + kind_lt: string + + """""" + kind_neq: string + + """""" + kind_notin: [string!] + + """""" + kind_notlike: string + + """""" + matchIndex: uint16 + + """""" + matchIndex_geq: uint16 + + """""" + matchIndex_gt: uint16 + + """""" + matchIndex_in: [uint16!] + + """""" + matchIndex_leq: uint16 + + """""" + matchIndex_lt: uint16 + + """""" + matchIndex_neq: uint16 + + """""" + matchIndex_notin: [uint16!] + + """""" + originResponseStatus: uint16 + + """""" + originResponseStatus_geq: uint16 + + """""" + originResponseStatus_gt: uint16 + + """""" + originResponseStatus_in: [uint16!] + + """""" + originResponseStatus_leq: uint16 + + """""" + originResponseStatus_lt: uint16 + + """""" + originResponseStatus_neq: uint16 + + """""" + originResponseStatus_notin: [uint16!] + + """""" + originatorRayName: string + + """""" + originatorRayName_geq: string + + """""" + originatorRayName_gt: string + + """""" + originatorRayName_in: [string!] + + """""" + originatorRayName_leq: string + + """""" + originatorRayName_like: string + + """""" + originatorRayName_lt: string + + """""" + originatorRayName_neq: string + + """""" + originatorRayName_notin: [string!] + + """""" + originatorRayName_notlike: string + + """""" + rayName: string + + """""" + rayName_geq: string + + """""" + rayName_gt: string + + """""" + rayName_in: [string!] + + """""" + rayName_leq: string + + """""" + rayName_like: string + + """""" + rayName_lt: string + + """""" + rayName_neq: string + + """""" + rayName_notin: [string!] + + """""" + rayName_notlike: string + + """""" + ref: string + + """""" + ref_geq: string + + """""" + ref_gt: string + + """""" + ref_in: [string!] + + """""" + ref_leq: string + + """""" + ref_like: string + + """""" + ref_lt: string + + """""" + ref_neq: string + + """""" + ref_notin: [string!] + + """""" + ref_notlike: string + + """""" + ruleId: string + + """""" + ruleId_geq: string + + """""" + ruleId_gt: string + + """""" + ruleId_in: [string!] + + """""" + ruleId_leq: string + + """""" + ruleId_like: string + + """""" + ruleId_lt: string + + """""" + ruleId_neq: string + + """""" + ruleId_notin: [string!] + + """""" + ruleId_notlike: string + + """""" + rulesetId: string + + """""" + rulesetId_geq: string + + """""" + rulesetId_gt: string + + """""" + rulesetId_in: [string!] + + """""" + rulesetId_leq: string + + """""" + rulesetId_like: string + + """""" + rulesetId_lt: string + + """""" + rulesetId_neq: string + + """""" + rulesetId_notin: [string!] + + """""" + rulesetId_notlike: string + + """""" + sampleInterval: uint32 + + """""" + sampleInterval_geq: uint32 + + """""" + sampleInterval_gt: uint32 + + """""" + sampleInterval_in: [uint32!] + + """""" + sampleInterval_leq: uint32 + + """""" + sampleInterval_lt: uint32 + + """""" + sampleInterval_neq: uint32 + + """""" + sampleInterval_notin: [uint32!] + + """""" + source: string + + """""" + source_geq: string + + """""" + source_gt: string + + """""" + source_in: [string!] + + """""" + source_leq: string + + """""" + source_like: string + + """""" + source_lt: string + + """""" + source_neq: string + + """""" + source_notin: [string!] + + """""" + source_notlike: string + + """""" + userAgent: string + + """""" + userAgent_geq: string + + """""" + userAgent_gt: string + + """""" + userAgent_in: [string!] + + """""" + userAgent_leq: string + + """""" + userAgent_like: string + + """""" + userAgent_lt: string + + """""" + userAgent_neq: string + + """""" + userAgent_notin: [string!] + + """""" + userAgent_notlike: string + + """""" + verifiedBotCategory: string + + """""" + verifiedBotCategory_geq: string + + """""" + verifiedBotCategory_gt: string + + """""" + verifiedBotCategory_in: [string!] + + """""" + verifiedBotCategory_leq: string + + """""" + verifiedBotCategory_like: string + + """""" + verifiedBotCategory_lt: string + + """""" + verifiedBotCategory_neq: string + + """""" + verifiedBotCategory_notin: [string!] + + """""" + verifiedBotCategory_notlike: string + + """""" + wafAttackScore: uint8 + + """""" + wafAttackScoreClass: string + + """""" + wafAttackScoreClass_geq: string + + """""" + wafAttackScoreClass_gt: string + + """""" + wafAttackScoreClass_in: [string!] + + """""" + wafAttackScoreClass_leq: string + + """""" + wafAttackScoreClass_like: string + + """""" + wafAttackScoreClass_lt: string + + """""" + wafAttackScoreClass_neq: string + + """""" + wafAttackScoreClass_notin: [string!] + + """""" + wafAttackScoreClass_notlike: string + + """""" + wafAttackScore_geq: uint8 + + """""" + wafAttackScore_gt: uint8 + + """""" + wafAttackScore_in: bytes + + """""" + wafAttackScore_leq: uint8 + + """""" + wafAttackScore_lt: uint8 + + """""" + wafAttackScore_neq: uint8 + + """""" + wafAttackScore_notin: bytes + + """""" + wafMlAttackScore: uint8 + + """""" + wafMlAttackScore_geq: uint8 + + """""" + wafMlAttackScore_gt: uint8 + + """""" + wafMlAttackScore_in: bytes + + """""" + wafMlAttackScore_leq: uint8 + + """""" + wafMlAttackScore_lt: uint8 + + """""" + wafMlAttackScore_neq: uint8 + + """""" + wafMlAttackScore_notin: bytes + + """""" + wafMlSqliAttackScore: uint8 + + """""" + wafMlSqliAttackScore_geq: uint8 + + """""" + wafMlSqliAttackScore_gt: uint8 + + """""" + wafMlSqliAttackScore_in: bytes + + """""" + wafMlSqliAttackScore_leq: uint8 + + """""" + wafMlSqliAttackScore_lt: uint8 + + """""" + wafMlSqliAttackScore_neq: uint8 + + """""" + wafMlSqliAttackScore_notin: bytes + + """""" + wafMlXssAttackScore: uint8 + + """""" + wafMlXssAttackScore_geq: uint8 + + """""" + wafMlXssAttackScore_gt: uint8 + + """""" + wafMlXssAttackScore_in: bytes + + """""" + wafMlXssAttackScore_leq: uint8 + + """""" + wafMlXssAttackScore_lt: uint8 + + """""" + wafMlXssAttackScore_neq: uint8 + + """""" + wafMlXssAttackScore_notin: bytes + + """""" + wafRceAttackScore: uint8 + + """""" + wafRceAttackScore_geq: uint8 + + """""" + wafRceAttackScore_gt: uint8 + + """""" + wafRceAttackScore_in: bytes + + """""" + wafRceAttackScore_leq: uint8 + + """""" + wafRceAttackScore_lt: uint8 + + """""" + wafRceAttackScore_neq: uint8 + + """""" + wafRceAttackScore_notin: bytes + + """""" + wafSqliAttackScore: uint8 + + """""" + wafSqliAttackScore_geq: uint8 + + """""" + wafSqliAttackScore_gt: uint8 + + """""" + wafSqliAttackScore_in: bytes + + """""" + wafSqliAttackScore_leq: uint8 + + """""" + wafSqliAttackScore_lt: uint8 + + """""" + wafSqliAttackScore_neq: uint8 + + """""" + wafSqliAttackScore_notin: bytes + + """""" + wafXssAttackScore: uint8 + + """""" + wafXssAttackScore_geq: uint8 + + """""" + wafXssAttackScore_gt: uint8 + + """""" + wafXssAttackScore_in: bytes + + """""" + wafXssAttackScore_leq: uint8 + + """""" + wafXssAttackScore_lt: uint8 + + """""" + wafXssAttackScore_neq: uint8 + + """""" + wafXssAttackScore_notin: bytes + + """""" + zoneTag: string + + """""" + zoneTag_geq: string + + """""" + zoneTag_gt: string + + """""" + zoneTag_in: [string!] + + """""" + zoneTag_leq: string + + """""" + zoneTag_like: string + + """""" + zoneTag_lt: string + + """""" + zoneTag_neq: string + + """""" + zoneTag_notin: [string!] + + """""" + zoneTag_notlike: string + + """""" + zoneVersion: uint64 + + """""" + zoneVersion_geq: uint64 + + """""" + zoneVersion_gt: uint64 + + """""" + zoneVersion_in: [uint64!] + + """""" + zoneVersion_leq: uint64 + + """""" + zoneVersion_lt: uint64 + + """""" + zoneVersion_neq: uint64 + + """""" + zoneVersion_notin: [uint64!] +} + +"""""" +enum AccountFirewallEventsAdaptiveGroupsOrderBy { + """action ascending""" + action_ASC + + """action descending""" + action_DESC + + """apiGatewayMatchedEndpoint ascending""" + apiGatewayMatchedEndpoint_ASC + + """apiGatewayMatchedEndpoint descending""" + apiGatewayMatchedEndpoint_DESC + + """apiGatewayMatchedHost ascending""" + apiGatewayMatchedHost_ASC + + """apiGatewayMatchedHost descending""" + apiGatewayMatchedHost_DESC + + """attackSignatureCategories ascending""" + attackSignatureCategories_ASC + + """attackSignatureCategories descending""" + attackSignatureCategories_DESC + + """attackSignatureRefs ascending""" + attackSignatureRefs_ASC + + """attackSignatureRefs descending""" + attackSignatureRefs_DESC + + """avg(sampleInterval) ascending""" + avg_sampleInterval_ASC + + """avg(sampleInterval) descending""" + avg_sampleInterval_DESC + + """botDetectionIds ascending""" + botDetectionIds_ASC + + """botDetectionIds descending""" + botDetectionIds_DESC + + """botDetectionTags ascending""" + botDetectionTags_ASC + + """botDetectionTags descending""" + botDetectionTags_DESC + + """botScoreSrcName ascending""" + botScoreSrcName_ASC + + """botScoreSrcName descending""" + botScoreSrcName_DESC + + """botScore ascending""" + botScore_ASC + + """botScore descending""" + botScore_DESC + + """clientASNDescription ascending""" + clientASNDescription_ASC + + """clientASNDescription descending""" + clientASNDescription_DESC + + """clientAsn ascending""" + clientAsn_ASC + + """clientAsn descending""" + clientAsn_DESC + + """clientCountryName ascending""" + clientCountryName_ASC + + """clientCountryName descending""" + clientCountryName_DESC + + """clientIPClass ascending""" + clientIPClass_ASC + + """clientIPClass descending""" + clientIPClass_DESC + + """clientIP ascending""" + clientIP_ASC + + """clientIP descending""" + clientIP_DESC + + """clientRefererHost ascending""" + clientRefererHost_ASC + + """clientRefererHost descending""" + clientRefererHost_DESC + + """clientRefererPath ascending""" + clientRefererPath_ASC + + """clientRefererPath descending""" + clientRefererPath_DESC + + """clientRefererQuery ascending""" + clientRefererQuery_ASC + + """clientRefererQuery descending""" + clientRefererQuery_DESC + + """clientRefererScheme ascending""" + clientRefererScheme_ASC + + """clientRefererScheme descending""" + clientRefererScheme_DESC + + """clientRequestHTTPHost ascending""" + clientRequestHTTPHost_ASC + + """clientRequestHTTPHost descending""" + clientRequestHTTPHost_DESC + + """clientRequestHTTPMethodName ascending""" + clientRequestHTTPMethodName_ASC + + """clientRequestHTTPMethodName descending""" + clientRequestHTTPMethodName_DESC + + """clientRequestHTTPProtocol ascending""" + clientRequestHTTPProtocol_ASC + + """clientRequestHTTPProtocol descending""" + clientRequestHTTPProtocol_DESC + + """clientRequestPath ascending""" + clientRequestPath_ASC + + """clientRequestPath descending""" + clientRequestPath_DESC + + """clientRequestQuery ascending""" + clientRequestQuery_ASC + + """clientRequestQuery descending""" + clientRequestQuery_DESC + + """clientRequestScheme ascending""" + clientRequestScheme_ASC + + """clientRequestScheme descending""" + clientRequestScheme_DESC + + """contentScanHasFailed ascending""" + contentScanHasFailed_ASC + + """contentScanHasFailed descending""" + contentScanHasFailed_DESC + + """contentScanNumMaliciousObj ascending""" + contentScanNumMaliciousObj_ASC + + """contentScanNumMaliciousObj descending""" + contentScanNumMaliciousObj_DESC + + """contentScanNumObj ascending""" + contentScanNumObj_ASC + + """contentScanNumObj descending""" + contentScanNumObj_DESC + + """contentScanObjResults ascending""" + contentScanObjResults_ASC + + """contentScanObjResults descending""" + contentScanObjResults_DESC + + """contentScanObjSizes ascending""" + contentScanObjSizes_ASC + + """contentScanObjSizes descending""" + contentScanObjSizes_DESC + + """contentScanObjTypes ascending""" + contentScanObjTypes_ASC + + """contentScanObjTypes descending""" + contentScanObjTypes_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """description ascending""" + description_ASC + + """description descending""" + description_DESC + + """edgeColoName ascending""" + edgeColoName_ASC + + """edgeColoName descending""" + edgeColoName_DESC + + """edgeResponseStatus ascending""" + edgeResponseStatus_ASC + + """edgeResponseStatus descending""" + edgeResponseStatus_DESC + + """firewallForAiAnyPiiCategory ascending""" + firewallForAiAnyPiiCategory_ASC + + """firewallForAiAnyPiiCategory descending""" + firewallForAiAnyPiiCategory_DESC + + """firewallForAiInjectionScore ascending""" + firewallForAiInjectionScore_ASC + + """firewallForAiInjectionScore descending""" + firewallForAiInjectionScore_DESC + + """firewallForAiPiiCategories ascending""" + firewallForAiPiiCategories_ASC + + """firewallForAiPiiCategories descending""" + firewallForAiPiiCategories_DESC + + """firewallForAiUnsafeTopicCategories ascending""" + firewallForAiUnsafeTopicCategories_ASC + + """firewallForAiUnsafeTopicCategories descending""" + firewallForAiUnsafeTopicCategories_DESC + + """fraudAttack ascending""" + fraudAttack_ASC + + """fraudAttack descending""" + fraudAttack_DESC + + """fraudDetectionIds ascending""" + fraudDetectionIds_ASC + + """fraudDetectionIds descending""" + fraudDetectionIds_DESC + + """fraudDetectionTags ascending""" + fraudDetectionTags_ASC + + """fraudDetectionTags descending""" + fraudDetectionTags_DESC + + """fraudEmailRisk ascending""" + fraudEmailRisk_ASC + + """fraudEmailRisk descending""" + fraudEmailRisk_DESC + + """httpApplicationVersion ascending""" + httpApplicationVersion_ASC + + """httpApplicationVersion descending""" + httpApplicationVersion_DESC + + """ja3Hash ascending""" + ja3Hash_ASC + + """ja3Hash descending""" + ja3Hash_DESC + + """ja4 ascending""" + ja4_ASC + + """ja4 descending""" + ja4_DESC + + """jsDetectionPassed ascending""" + jsDetectionPassed_ASC + + """jsDetectionPassed descending""" + jsDetectionPassed_DESC + + """kind ascending""" + kind_ASC + + """kind descending""" + kind_DESC + + """matchIndex ascending""" + matchIndex_ASC + + """matchIndex descending""" + matchIndex_DESC + + """originResponseStatus ascending""" + originResponseStatus_ASC + + """originResponseStatus descending""" + originResponseStatus_DESC + + """originatorRayName ascending""" + originatorRayName_ASC + + """originatorRayName descending""" + originatorRayName_DESC + + """rayName ascending""" + rayName_ASC + + """rayName descending""" + rayName_DESC + + """ref ascending""" + ref_ASC + + """ref descending""" + ref_DESC + + """ruleId ascending""" + ruleId_ASC + + """ruleId descending""" + ruleId_DESC + + """rulesetId ascending""" + rulesetId_ASC + + """rulesetId descending""" + rulesetId_DESC + + """sampleInterval ascending""" + sampleInterval_ASC + + """sampleInterval descending""" + sampleInterval_DESC + + """source ascending""" + source_ASC + + """source descending""" + source_DESC + + """sum(botDetectionIdArray) ascending""" + sum_botDetectionIdArray_ASC + + """sum(botDetectionIdArray) descending""" + sum_botDetectionIdArray_DESC + + """sum(botDetectionIdCountArray) ascending""" + sum_botDetectionIdCountArray_ASC + + """sum(botDetectionIdCountArray) descending""" + sum_botDetectionIdCountArray_DESC + + """sum(botDetectionTagArray) ascending""" + sum_botDetectionTagArray_ASC + + """sum(botDetectionTagArray) descending""" + sum_botDetectionTagArray_DESC + + """sum(botDetectionTagCountArray) ascending""" + sum_botDetectionTagCountArray_ASC + + """sum(botDetectionTagCountArray) descending""" + sum_botDetectionTagCountArray_DESC + + """sum(fraudDetectionIdArray) ascending""" + sum_fraudDetectionIdArray_ASC + + """sum(fraudDetectionIdArray) descending""" + sum_fraudDetectionIdArray_DESC + + """sum(fraudDetectionIdCountArray) ascending""" + sum_fraudDetectionIdCountArray_ASC + + """sum(fraudDetectionIdCountArray) descending""" + sum_fraudDetectionIdCountArray_DESC + + """sum(fraudDetectionTagArray) ascending""" + sum_fraudDetectionTagArray_ASC + + """sum(fraudDetectionTagArray) descending""" + sum_fraudDetectionTagArray_DESC + + """sum(fraudDetectionTagCountArray) ascending""" + sum_fraudDetectionTagCountArray_ASC + + """sum(fraudDetectionTagCountArray) descending""" + sum_fraudDetectionTagCountArray_DESC + + """userAgent ascending""" + userAgent_ASC + + """userAgent descending""" + userAgent_DESC + + """verifiedBotCategory ascending""" + verifiedBotCategory_ASC + + """verifiedBotCategory descending""" + verifiedBotCategory_DESC + + """visibility ascending""" + visibility_ASC + + """visibility descending""" + visibility_DESC + + """wafAttackScoreClass ascending""" + wafAttackScoreClass_ASC + + """wafAttackScoreClass descending""" + wafAttackScoreClass_DESC + + """wafAttackScore ascending""" + wafAttackScore_ASC + + """wafAttackScore descending""" + wafAttackScore_DESC + + """wafMlAttackScore ascending""" + wafMlAttackScore_ASC + + """wafMlAttackScore descending""" + wafMlAttackScore_DESC + + """wafMlSqliAttackScore ascending""" + wafMlSqliAttackScore_ASC + + """wafMlSqliAttackScore descending""" + wafMlSqliAttackScore_DESC + + """wafMlXssAttackScore ascending""" + wafMlXssAttackScore_ASC + + """wafMlXssAttackScore descending""" + wafMlXssAttackScore_DESC + + """wafRceAttackScore ascending""" + wafRceAttackScore_ASC + + """wafRceAttackScore descending""" + wafRceAttackScore_DESC + + """wafSqliAttackScore ascending""" + wafSqliAttackScore_ASC + + """wafSqliAttackScore descending""" + wafSqliAttackScore_DESC + + """wafXssAttackScore ascending""" + wafXssAttackScore_ASC + + """wafXssAttackScore descending""" + wafXssAttackScore_DESC + + """zoneTag ascending""" + zoneTag_ASC + + """zoneTag descending""" + zoneTag_DESC + + """zoneVersion ascending""" + zoneVersion_ASC + + """zoneVersion descending""" + zoneVersion_DESC +} + +"""""" +type AccountFirewallEventsAdaptiveGroupsSum { + """Array of bot management detection ids""" + botDetectionIdArray: [uint32!]! + + """ + Count array of bot management detection ids. Elements in this array correspond to elements in botDetectionIdArray by index. + """ + botDetectionIdCountArray: [uint32!]! + + """Array of bot management detection tags""" + botDetectionTagArray: [string!]! + + """ + Count array of bot management detection tags. Elements in this array correspond to elements in botDetectionTagArray by index. + """ + botDetectionTagCountArray: [uint32!]! + + """Array of fraud detection ids""" + fraudDetectionIdArray: [uint32!]! + + """ + Count array of fraud detection ids. Elements in this array correspond to elements in fraudDetectionIdArray by index. + """ + fraudDetectionIdCountArray: [uint32!]! + + """Array of fraud detection tags""" + fraudDetectionTagArray: [string!]! + + """ + Count array of fraud detection tags. Elements in this array correspond to elements in fraudDetectionTagArray by index. + """ + fraudDetectionTagCountArray: [uint32!]! +} + +"""""" +type AccountFirewallEventsAdaptiveJa4SignalsElem { + """Signal name""" + signalName: string! + + """Signal value""" + signalValue: float32! +} + +"""""" +type AccountFirewallEventsAdaptiveMetadataElem { + """ + The key of the metadata. Key format can vary by Cloudflare security product and can change over time. + """ + key: string! + + """ + The value of the metadata. Value format can vary by Cloudflare security product and can change over time. + """ + value: string! +} + +"""""" +enum AccountFirewallEventsAdaptiveOrderBy { + """action ascending""" + action_ASC + + """action descending""" + action_DESC + + """apiGatewayMatchedEndpoint ascending""" + apiGatewayMatchedEndpoint_ASC + + """apiGatewayMatchedEndpoint descending""" + apiGatewayMatchedEndpoint_DESC + + """apiGatewayMatchedHost ascending""" + apiGatewayMatchedHost_ASC + + """apiGatewayMatchedHost descending""" + apiGatewayMatchedHost_DESC + + """attackSignatureCategories ascending""" + attackSignatureCategories_ASC + + """attackSignatureCategories descending""" + attackSignatureCategories_DESC + + """attackSignatureRefs ascending""" + attackSignatureRefs_ASC + + """attackSignatureRefs descending""" + attackSignatureRefs_DESC + + """botDetectionIds ascending""" + botDetectionIds_ASC + + """botDetectionIds descending""" + botDetectionIds_DESC + + """botDetectionTags ascending""" + botDetectionTags_ASC + + """botDetectionTags descending""" + botDetectionTags_DESC + + """botScoreSrcName ascending""" + botScoreSrcName_ASC + + """botScoreSrcName descending""" + botScoreSrcName_DESC + + """botScore ascending""" + botScore_ASC + + """botScore descending""" + botScore_DESC + + """clientASNDescription ascending""" + clientASNDescription_ASC + + """clientASNDescription descending""" + clientASNDescription_DESC + + """clientAsn ascending""" + clientAsn_ASC + + """clientAsn descending""" + clientAsn_DESC + + """clientCountryName ascending""" + clientCountryName_ASC + + """clientCountryName descending""" + clientCountryName_DESC + + """clientIPClass ascending""" + clientIPClass_ASC + + """clientIPClass descending""" + clientIPClass_DESC + + """clientIP ascending""" + clientIP_ASC + + """clientIP descending""" + clientIP_DESC + + """clientRefererHost ascending""" + clientRefererHost_ASC + + """clientRefererHost descending""" + clientRefererHost_DESC + + """clientRefererPath ascending""" + clientRefererPath_ASC + + """clientRefererPath descending""" + clientRefererPath_DESC + + """clientRefererQuery ascending""" + clientRefererQuery_ASC + + """clientRefererQuery descending""" + clientRefererQuery_DESC + + """clientRefererScheme ascending""" + clientRefererScheme_ASC + + """clientRefererScheme descending""" + clientRefererScheme_DESC + + """clientRequestHTTPHost ascending""" + clientRequestHTTPHost_ASC + + """clientRequestHTTPHost descending""" + clientRequestHTTPHost_DESC + + """clientRequestHTTPMethodName ascending""" + clientRequestHTTPMethodName_ASC + + """clientRequestHTTPMethodName descending""" + clientRequestHTTPMethodName_DESC + + """clientRequestHTTPProtocol ascending""" + clientRequestHTTPProtocol_ASC + + """clientRequestHTTPProtocol descending""" + clientRequestHTTPProtocol_DESC + + """clientRequestPath ascending""" + clientRequestPath_ASC + + """clientRequestPath descending""" + clientRequestPath_DESC + + """clientRequestQuery ascending""" + clientRequestQuery_ASC + + """clientRequestQuery descending""" + clientRequestQuery_DESC + + """clientRequestScheme ascending""" + clientRequestScheme_ASC + + """clientRequestScheme descending""" + clientRequestScheme_DESC + + """contentScanHasFailed ascending""" + contentScanHasFailed_ASC + + """contentScanHasFailed descending""" + contentScanHasFailed_DESC + + """contentScanNumMaliciousObj ascending""" + contentScanNumMaliciousObj_ASC + + """contentScanNumMaliciousObj descending""" + contentScanNumMaliciousObj_DESC + + """contentScanNumObj ascending""" + contentScanNumObj_ASC + + """contentScanNumObj descending""" + contentScanNumObj_DESC + + """contentScanObjResults ascending""" + contentScanObjResults_ASC + + """contentScanObjResults descending""" + contentScanObjResults_DESC + + """contentScanObjSizes ascending""" + contentScanObjSizes_ASC + + """contentScanObjSizes descending""" + contentScanObjSizes_DESC + + """contentScanObjTypes ascending""" + contentScanObjTypes_ASC + + """contentScanObjTypes descending""" + contentScanObjTypes_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """description ascending""" + description_ASC + + """description descending""" + description_DESC + + """edgeColoName ascending""" + edgeColoName_ASC + + """edgeColoName descending""" + edgeColoName_DESC + + """edgeResponseStatus ascending""" + edgeResponseStatus_ASC + + """edgeResponseStatus descending""" + edgeResponseStatus_DESC + + """firewallForAiAnyPiiCategory ascending""" + firewallForAiAnyPiiCategory_ASC + + """firewallForAiAnyPiiCategory descending""" + firewallForAiAnyPiiCategory_DESC + + """firewallForAiInjectionScore ascending""" + firewallForAiInjectionScore_ASC + + """firewallForAiInjectionScore descending""" + firewallForAiInjectionScore_DESC + + """firewallForAiPiiCategories ascending""" + firewallForAiPiiCategories_ASC + + """firewallForAiPiiCategories descending""" + firewallForAiPiiCategories_DESC + + """firewallForAiUnsafeTopicCategories ascending""" + firewallForAiUnsafeTopicCategories_ASC + + """firewallForAiUnsafeTopicCategories descending""" + firewallForAiUnsafeTopicCategories_DESC + + """fraudAttack ascending""" + fraudAttack_ASC + + """fraudAttack descending""" + fraudAttack_DESC + + """fraudDetectionIds ascending""" + fraudDetectionIds_ASC + + """fraudDetectionIds descending""" + fraudDetectionIds_DESC + + """fraudDetectionTags ascending""" + fraudDetectionTags_ASC + + """fraudDetectionTags descending""" + fraudDetectionTags_DESC + + """fraudEmailRisk ascending""" + fraudEmailRisk_ASC + + """fraudEmailRisk descending""" + fraudEmailRisk_DESC + + """httpApplicationVersion ascending""" + httpApplicationVersion_ASC + + """httpApplicationVersion descending""" + httpApplicationVersion_DESC + + """ja3Hash ascending""" + ja3Hash_ASC + + """ja3Hash descending""" + ja3Hash_DESC + + """ja4 ascending""" + ja4_ASC + + """ja4 descending""" + ja4_DESC + + """jsDetectionPassed ascending""" + jsDetectionPassed_ASC + + """jsDetectionPassed descending""" + jsDetectionPassed_DESC + + """kind ascending""" + kind_ASC + + """kind descending""" + kind_DESC + + """leakedCredentialCheckResult ascending""" + leakedCredentialCheckResult_ASC + + """leakedCredentialCheckResult descending""" + leakedCredentialCheckResult_DESC + + """matchIndex ascending""" + matchIndex_ASC + + """matchIndex descending""" + matchIndex_DESC + + """originResponseStatus ascending""" + originResponseStatus_ASC + + """originResponseStatus descending""" + originResponseStatus_DESC + + """originatorRayName ascending""" + originatorRayName_ASC + + """originatorRayName descending""" + originatorRayName_DESC + + """rayName ascending""" + rayName_ASC + + """rayName descending""" + rayName_DESC + + """ref ascending""" + ref_ASC + + """ref descending""" + ref_DESC + + """ruleId ascending""" + ruleId_ASC + + """ruleId descending""" + ruleId_DESC + + """rulesetId ascending""" + rulesetId_ASC + + """rulesetId descending""" + rulesetId_DESC + + """sampleInterval ascending""" + sampleInterval_ASC + + """sampleInterval descending""" + sampleInterval_DESC + + """source ascending""" + source_ASC + + """source descending""" + source_DESC + + """userAgent ascending""" + userAgent_ASC + + """userAgent descending""" + userAgent_DESC + + """verifiedBotCategory ascending""" + verifiedBotCategory_ASC + + """verifiedBotCategory descending""" + verifiedBotCategory_DESC + + """visibility ascending""" + visibility_ASC + + """visibility descending""" + visibility_DESC + + """wafAttackScoreClass ascending""" + wafAttackScoreClass_ASC + + """wafAttackScoreClass descending""" + wafAttackScoreClass_DESC + + """wafAttackScore ascending""" + wafAttackScore_ASC + + """wafAttackScore descending""" + wafAttackScore_DESC + + """wafMlAttackScore ascending""" + wafMlAttackScore_ASC + + """wafMlAttackScore descending""" + wafMlAttackScore_DESC + + """wafMlSqliAttackScore ascending""" + wafMlSqliAttackScore_ASC + + """wafMlSqliAttackScore descending""" + wafMlSqliAttackScore_DESC + + """wafMlXssAttackScore ascending""" + wafMlXssAttackScore_ASC + + """wafMlXssAttackScore descending""" + wafMlXssAttackScore_DESC + + """wafRceAttackScore ascending""" + wafRceAttackScore_ASC + + """wafRceAttackScore descending""" + wafRceAttackScore_DESC + + """wafSqliAttackScore ascending""" + wafSqliAttackScore_ASC + + """wafSqliAttackScore descending""" + wafSqliAttackScore_DESC + + """wafXssAttackScore ascending""" + wafXssAttackScore_ASC + + """wafXssAttackScore descending""" + wafXssAttackScore_DESC + + """zoneTag ascending""" + zoneTag_ASC + + """zoneTag descending""" + zoneTag_DESC + + """zoneVersion ascending""" + zoneVersion_ASC + + """zoneVersion descending""" + zoneVersion_DESC +} + +"""Network analytics data for flowtrackd""" +type AccountFlowtrackdNetworkAnalyticsAdaptiveGroups { + """The average of values for a metric per dimension""" + avg: AccountFlowtrackdNetworkAnalyticsAdaptiveGroupsAvg + + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountFlowtrackdNetworkAnalyticsAdaptiveGroupsConfidence! + + """List of dimensions to group by""" + dimensions: AccountFlowtrackdNetworkAnalyticsAdaptiveGroupsDimensions + + """The sum of values for a metric per dimension""" + sum: AccountFlowtrackdNetworkAnalyticsAdaptiveGroupsSum +} + +"""""" +type AccountFlowtrackdNetworkAnalyticsAdaptiveGroupsAvg { + """ + Sum of bits received, divided by 1 second, providing a per-second bit rate when grouped by datetime + """ + bitRate: uint64! + + """ + Sum of bits received, divided by 86400 seconds, providing a per-second bit rate when grouped by date + """ + bitRateDay: uint64! + + """ + Sum of bits received, divided by 900 seconds, providing a per-second bit rate when grouped by datetimeFifteenMinutes + """ + bitRateFifteenMinutes: uint64! + + """ + Sum of bits received, divided by 300 seconds, providing a per-second bit rate when grouped by datetimeFiveMinutes + """ + bitRateFiveMinutes: uint64! + + """ + Sum of bits received, divided by 3600 seconds, providing a per-second bit rate when grouped by datetimeHour + """ + bitRateHour: uint64! + + """ + Sum of bits received, divided by 60 seconds, providing a per-second bit rate when grouped by datetimeMinute + """ + bitRateMinute: uint64! + + """ + Sum of bits received, divided by 10 seconds, providing a per-second bit rate when grouped by datetimeTenSeconds + """ + bitRateTenSeconds: uint64! + + """ + Sum of packets received, divided by 1 second, providing a per-second packet rate when grouped by datetime + """ + packetRate: uint64! + + """ + Sum of packets received, divided by 86400 seconds, providing a per-second packet rate when grouped by date + """ + packetRateDay: uint64! + + """ + Sum of packets received, divided by 900 seconds, providing a per-second packet rate when grouped by datetimeFifteenMinutes + """ + packetRateFifteenMinutes: uint64! + + """ + Sum of packets received, divided by 300 seconds, providing a per-second packet rate when grouped by datetimeFiveMinutes + """ + packetRateFiveMinutes: uint64! + + """ + Sum of packets received, divided by 3600 seconds, providing a per-second packet rate when grouped by datetimeHour + """ + packetRateHour: uint64! + + """ + Sum of packets received, divided by 60 seconds, providing a per-second packet rate when grouped by datetimeMinute + """ + packetRateMinute: uint64! + + """ + Sum of packets received, divided by 10 seconds, providing a per-second packet rate when grouped by datetimeTenSeconds + """ + packetRateTenSeconds: uint64! +} + +"""""" +type AccountFlowtrackdNetworkAnalyticsAdaptiveGroupsAvgConfidence { + """Confidence interval for the corresponding point estimate""" + bitRate: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateDay: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateFifteenMinutes: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateFiveMinutes: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateHour: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateMinute: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateTenSeconds: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRate: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateDay: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateFifteenMinutes: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateFiveMinutes: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateHour: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateMinute: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateTenSeconds: Confidence! +} + +"""""" +type AccountFlowtrackdNetworkAnalyticsAdaptiveGroupsConfidence { + """ + The average of values for a metric per dimension, with confidence intervals + """ + avg: AccountFlowtrackdNetworkAnalyticsAdaptiveGroupsAvgConfidence + + """Confidence level that was requested""" + level: float64! + + """ + The sum of values for a metric per dimension, with confidence intervals + """ + sum: AccountFlowtrackdNetworkAnalyticsAdaptiveGroupsSumConfidence +} + +"""""" +type AccountFlowtrackdNetworkAnalyticsAdaptiveGroupsDimensions { + """Application tag associated with the packet""" + applicationTag: string! + + """ + City where the Cloudflare datacenter that received the packet is located + """ + coloCity: string! + + """ + Cloudflare datacenter that received the packet (nearest IATA airport code) + """ + coloCode: string! + + """ + Country where the Cloudflare datacenter that received the packet is located (ISO 3166-1 alpha-2) + """ + coloCountry: string! + + """ + Latitude and longitude where the Cloudflare datacenter that received the packet is located (Geohash encoding) + """ + coloGeohash: string! + + """ + Cloudflare datacenter that received the packet (unique site identifier) + """ + coloName: string! + + """Date that the packet was received""" + date: Date! + + """Date and time that the packet was received""" + datetime: Time! + + """ + Date and time that the packet was received, rounded to the start of the nearest fifteen minutes + """ + datetimeFifteenMinutes: Time! + + """ + Date and time that the packet was received, rounded to the start of the nearest five minutes + """ + datetimeFiveMinutes: Time! + + """ + Date and time that the packet was received, rounded to the start of the nearest hour + """ + datetimeHour: Time! + + """ + Date and time that the packet was received, rounded to the start of the nearest minute + """ + datetimeMinute: Time! + + """ + Date and time that the packet was received, rounded to the start of the nearest ten seconds + """ + datetimeTenSeconds: Time! + + """ + ASN associated with the destination IP of the packet, or 0 if there was no mapping available + """ + destinationAsn: uint32! + + """ + Name of ASN associated with the destination IP of the packet, if available + """ + destinationAsnName: string! + + """ + Country where the destination IP of the packet is located (ISO 3166-1 alpha-2) + """ + destinationCountry: string! + + """ + Latitude and longitude where the destination IP of the packet is located (Geohash encoding) + """ + destinationGeohash: string! + + """Value of the Destination Port header field in the TCP or UDP packet""" + destinationPort: uint16! + + """ + Direction of the packet relative to the customer network (possible values: inbound, outbound, lateral) + """ + direction: string! + + """ + Value of the Ethertype header field in the Ethernet packet (2048 for IPv4; 34525 for IPv6) + """ + ethertype: uint16! + + """Value of the Checkusm header field in the GRE packet""" + greChecksum: uint16! + + """Value of the Ethertype header field in the GRE packet""" + greEthertype: uint16! + + """Length of the GRE packet header, in bytes""" + greHeaderLength: uint16! + + """Value of the Key header field in the GRE packet""" + greKey: uint32! + + """Value of the Sequence Number header field in the GRE packet""" + greSequenceNumber: uint32! + + """Value of the Version header field in the GRE packet""" + greVersion: uint8! + + """Value of the Checkusm header field in the ICMP packet""" + icmpChecksum: uint16! + + """Value of the Code header field in the ICMP packet""" + icmpCode: uint8! + + """Value of the Type header field in the ICMP packet""" + icmpType: uint8! + + """ + Value of the Destination Address header field in the IPv4 or IPv6 packet + """ + ipDestinationAddress: string! + + """ + Computed subnet of the Destination Address header field in the IPv4 or IPv6 packet (/24 for IPv4; /48 for IPv6) + """ + ipDestinationSubnet: string! + + """Value of the Fragment Offset header field in the IPv4 or IPv6 packet""" + ipFragmentOffset: uint16! + + """Length of the IPv4 or IPv6 packet header, in bytes""" + ipHeaderLength: uint16! + + """Value of the More Fragments header field in the IPv4 or IPv6 packet""" + ipMoreFragments: uint8! + + """Value of the Protocol header field in the IPv4 or IPv6 packet""" + ipProtocol: uint8! + + """ + Name of the protocol specified by the Protocol header field in the IPv4 or IPv6 packet + """ + ipProtocolName: string! + + """Value of the Source Address header field in the IPv4 or IPv6 packet""" + ipSourceAddress: string! + + """ + Computed subnet of the Source Address header field in the IPv4 or IPv6 packet (/24 for IPv4; /48 for IPv6) + """ + ipSourceSubnet: string! + + """Total length of the IPv4 or IPv6 packet, in bytes""" + ipTotalLength: uint16! + + """ + Total length of the IPv4 or IPv6 packet, in bytes, with the last two digits truncated + """ + ipTotalLengthBuckets: uint16! + + """ + Value of the TTL header field in the IPv4 packet or the Hop Limit header field in the IPv6 packet + """ + ipTtl: uint8! + + """ + Value of the TTL header field in the IPv4 packet or the Hop Limit header field in the IPv6 packet, with the last digit truncated + """ + ipTtlBuckets: uint8! + + """Value of the Checksum header field in the IPv4 packet""" + ipv4Checksum: uint16! + + """Value of the Don't Fragment header field in the IPv4 packet""" + ipv4DontFragment: uint8! + + """ + Value of the Differentiated Services Code Point header field in the IPv4 packet + """ + ipv4Dscp: uint8! + + """ + Value of the Explicit Congestion Notification header field in the IPv4 packet + """ + ipv4Ecn: uint8! + + """Value of the Identification header field in the IPv4 packet""" + ipv4Identification: uint16! + + """List of Options numbers included in the IPv4 packet header""" + ipv4Options: string! + + """ + Value of the Differentiated Services Code Point header field in the IPv6 packet + """ + ipv6Dscp: uint8! + + """ + Value of the Explicit Congestion Notification header field in the IPv6 packet + """ + ipv6Ecn: uint8! + + """List of Extension Header numbers included in the IPv6 packet header""" + ipv6ExtensionHeaders: string! + + """Value of the Flow Label header field in the IPv6 packet""" + ipv6FlowLabel: uint32! + + """Value of the Identification extension header field in the IPv6 packet""" + ipv6Identification: uint32! + + """IP lease tag associated with the packet""" + leaseTag: string! + + """Reason for applying a mitigation to the packet, if any""" + mitigationReason: string! + + """ + Whether the packet matched a local or global mitigation, if any (possible values: local, global) + """ + mitigationScope: string! + + """The action that was taken on the packet (possible values: pass, drop)""" + outcome: string! + + """IP prefix tag associated with the packet""" + prefixTag: string! + + """State of the packet in the context of the protocol, if available""" + protocolState: string! + + """ABR sample interval""" + sampleInterval: uint32! + + """ + ASN associated with the source IP of the packet, or 0 if there was no mapping available + """ + sourceAsn: uint32! + + """Name of ASN associated with the source IP of the packet, if available""" + sourceAsnName: string! + + """ + Country where the source IP of the packet is located (ISO 3166-1 alpha-2) + """ + sourceCountry: string! + + """ + Latitude and longitude where the source IP of the packet is located (Geohash encoding) + """ + sourceGeohash: string! + + """Value of the Source Port header field in the TCP or UDP packet""" + sourcePort: uint16! + + """Value of the Acknowledgement Number header field in the TCP packet""" + tcpAcknowledgementNumber: uint32! + + """Value of the Checkusm header field in the TCP packet""" + tcpChecksum: uint16! + + """Value of the Data Offset header field in the TCP packet""" + tcpDataOffset: uint16! + + """Value of the Flags header field in the TCP packet""" + tcpFlags: uint8! + + """ + Human-readable string representation of the Flags header field in the TCP packet + """ + tcpFlagsString: string! + + """Value of the MSS option header field in the TCP packet""" + tcpMss: uint16! + + """List of Options numbers included in the TCP packet header""" + tcpOptions: string! + + """Value of the SACK Blocks option header field in the TCP packet""" + tcpSackBlocks: string! + + """Value of the SACK Permitted option header field in the TCP packet""" + tcpSackPermitted: uint8! + + """Value of the Sequence Number header field in the TCP packet""" + tcpSequenceNumber: uint32! + + """ + Value of the Timestamp Echo Reply option header field in the TCP packet + """ + tcpTimestampEcr: uint32! + + """Value of the Timestamp option header field in the TCP packet""" + tcpTimestampValue: uint32! + + """Value of the Urgent Pointer header field in the TCP packet""" + tcpUrgentPointer: uint16! + + """Value of the Window Scale option header field in the TCP packet""" + tcpWindowScale: uint16! + + """Value of the Window Size header field in the TCP packet""" + tcpWindowSize: uint16! + + """Value of the Checkusm header field in the UDP packet""" + udpChecksum: uint16! + + """Value of the Payload Length header field in the UDP packet""" + udpPayloadLength: uint16! + + """ + The action that Cloudflare thinks should be taken on the packet (possible values: pass, drop) + """ + verdict: string! +} + +"""""" +input AccountFlowtrackdNetworkAnalyticsAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountFlowtrackdNetworkAnalyticsAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountFlowtrackdNetworkAnalyticsAdaptiveGroupsFilter_InputObject!] + + """""" + applicationTag: string + + """""" + applicationTag_geq: string + + """""" + applicationTag_gt: string + + """""" + applicationTag_in: [string!] + + """""" + applicationTag_leq: string + + """""" + applicationTag_like: string + + """""" + applicationTag_lt: string + + """""" + applicationTag_neq: string + + """""" + applicationTag_notin: [string!] + + """""" + applicationTag_notlike: string + + """""" + coloCity: string + + """""" + coloCity_geq: string + + """""" + coloCity_gt: string + + """""" + coloCity_in: [string!] + + """""" + coloCity_leq: string + + """""" + coloCity_like: string + + """""" + coloCity_lt: string + + """""" + coloCity_neq: string + + """""" + coloCity_notin: [string!] + + """""" + coloCity_notlike: string + + """""" + coloCode: string + + """""" + coloCode_geq: string + + """""" + coloCode_gt: string + + """""" + coloCode_in: [string!] + + """""" + coloCode_leq: string + + """""" + coloCode_like: string + + """""" + coloCode_lt: string + + """""" + coloCode_neq: string + + """""" + coloCode_notin: [string!] + + """""" + coloCode_notlike: string + + """""" + coloCountry: string + + """""" + coloCountry_geq: string + + """""" + coloCountry_gt: string + + """""" + coloCountry_in: [string!] + + """""" + coloCountry_leq: string + + """""" + coloCountry_like: string + + """""" + coloCountry_lt: string + + """""" + coloCountry_neq: string + + """""" + coloCountry_notin: [string!] + + """""" + coloCountry_notlike: string + + """""" + coloGeohash: string + + """""" + coloGeohash_geq: string + + """""" + coloGeohash_gt: string + + """""" + coloGeohash_in: [string!] + + """""" + coloGeohash_leq: string + + """""" + coloGeohash_like: string + + """""" + coloGeohash_lt: string + + """""" + coloGeohash_neq: string + + """""" + coloGeohash_notin: [string!] + + """""" + coloGeohash_notlike: string + + """""" + coloName: string + + """""" + coloName_geq: string + + """""" + coloName_gt: string + + """""" + coloName_in: [string!] + + """""" + coloName_leq: string + + """""" + coloName_like: string + + """""" + coloName_lt: string + + """""" + coloName_neq: string + + """""" + coloName_notin: [string!] + + """""" + coloName_notlike: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetimeTenSeconds: Time + + """""" + datetimeTenSeconds_geq: Time + + """""" + datetimeTenSeconds_gt: Time + + """""" + datetimeTenSeconds_in: [Time!] + + """""" + datetimeTenSeconds_leq: Time + + """""" + datetimeTenSeconds_lt: Time + + """""" + datetimeTenSeconds_neq: Time + + """""" + datetimeTenSeconds_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + destinationAsn: uint32 + + """""" + destinationAsnName: string + + """""" + destinationAsnName_geq: string + + """""" + destinationAsnName_gt: string + + """""" + destinationAsnName_in: [string!] + + """""" + destinationAsnName_leq: string + + """""" + destinationAsnName_like: string + + """""" + destinationAsnName_lt: string + + """""" + destinationAsnName_neq: string + + """""" + destinationAsnName_notin: [string!] + + """""" + destinationAsnName_notlike: string + + """""" + destinationAsn_geq: uint32 + + """""" + destinationAsn_gt: uint32 + + """""" + destinationAsn_in: [uint32!] + + """""" + destinationAsn_leq: uint32 + + """""" + destinationAsn_lt: uint32 + + """""" + destinationAsn_neq: uint32 + + """""" + destinationAsn_notin: [uint32!] + + """""" + destinationCountry: string + + """""" + destinationCountry_geq: string + + """""" + destinationCountry_gt: string + + """""" + destinationCountry_in: [string!] + + """""" + destinationCountry_leq: string + + """""" + destinationCountry_like: string + + """""" + destinationCountry_lt: string + + """""" + destinationCountry_neq: string + + """""" + destinationCountry_notin: [string!] + + """""" + destinationCountry_notlike: string + + """""" + destinationGeohash: string + + """""" + destinationGeohash_geq: string + + """""" + destinationGeohash_gt: string + + """""" + destinationGeohash_in: [string!] + + """""" + destinationGeohash_leq: string + + """""" + destinationGeohash_like: string + + """""" + destinationGeohash_lt: string + + """""" + destinationGeohash_neq: string + + """""" + destinationGeohash_notin: [string!] + + """""" + destinationGeohash_notlike: string + + """""" + destinationPort: uint16 + + """""" + destinationPort_geq: uint16 + + """""" + destinationPort_gt: uint16 + + """""" + destinationPort_in: [uint16!] + + """""" + destinationPort_leq: uint16 + + """""" + destinationPort_lt: uint16 + + """""" + destinationPort_neq: uint16 + + """""" + destinationPort_notin: [uint16!] + + """""" + direction: string + + """""" + direction_geq: string + + """""" + direction_gt: string + + """""" + direction_in: [string!] + + """""" + direction_leq: string + + """""" + direction_like: string + + """""" + direction_lt: string + + """""" + direction_neq: string + + """""" + direction_notin: [string!] + + """""" + direction_notlike: string + + """""" + ethertype: uint16 + + """""" + ethertype_geq: uint16 + + """""" + ethertype_gt: uint16 + + """""" + ethertype_in: [uint16!] + + """""" + ethertype_leq: uint16 + + """""" + ethertype_lt: uint16 + + """""" + ethertype_neq: uint16 + + """""" + ethertype_notin: [uint16!] + + """""" + greChecksum: uint16 + + """""" + greChecksum_geq: uint16 + + """""" + greChecksum_gt: uint16 + + """""" + greChecksum_in: [uint16!] + + """""" + greChecksum_leq: uint16 + + """""" + greChecksum_lt: uint16 + + """""" + greChecksum_neq: uint16 + + """""" + greChecksum_notin: [uint16!] + + """""" + greEthertype: uint16 + + """""" + greEthertype_geq: uint16 + + """""" + greEthertype_gt: uint16 + + """""" + greEthertype_in: [uint16!] + + """""" + greEthertype_leq: uint16 + + """""" + greEthertype_lt: uint16 + + """""" + greEthertype_neq: uint16 + + """""" + greEthertype_notin: [uint16!] + + """""" + greHeaderLength: uint16 + + """""" + greHeaderLength_geq: uint16 + + """""" + greHeaderLength_gt: uint16 + + """""" + greHeaderLength_in: [uint16!] + + """""" + greHeaderLength_leq: uint16 + + """""" + greHeaderLength_lt: uint16 + + """""" + greHeaderLength_neq: uint16 + + """""" + greHeaderLength_notin: [uint16!] + + """""" + greKey: uint32 + + """""" + greKey_geq: uint32 + + """""" + greKey_gt: uint32 + + """""" + greKey_in: [uint32!] + + """""" + greKey_leq: uint32 + + """""" + greKey_lt: uint32 + + """""" + greKey_neq: uint32 + + """""" + greKey_notin: [uint32!] + + """""" + greSequenceNumber: uint32 + + """""" + greSequenceNumber_geq: uint32 + + """""" + greSequenceNumber_gt: uint32 + + """""" + greSequenceNumber_in: [uint32!] + + """""" + greSequenceNumber_leq: uint32 + + """""" + greSequenceNumber_lt: uint32 + + """""" + greSequenceNumber_neq: uint32 + + """""" + greSequenceNumber_notin: [uint32!] + + """""" + greVersion: uint8 + + """""" + greVersion_geq: uint8 + + """""" + greVersion_gt: uint8 + + """""" + greVersion_in: bytes + + """""" + greVersion_leq: uint8 + + """""" + greVersion_lt: uint8 + + """""" + greVersion_neq: uint8 + + """""" + greVersion_notin: bytes + + """""" + icmpChecksum: uint16 + + """""" + icmpChecksum_geq: uint16 + + """""" + icmpChecksum_gt: uint16 + + """""" + icmpChecksum_in: [uint16!] + + """""" + icmpChecksum_leq: uint16 + + """""" + icmpChecksum_lt: uint16 + + """""" + icmpChecksum_neq: uint16 + + """""" + icmpChecksum_notin: [uint16!] + + """""" + icmpCode: uint8 + + """""" + icmpCode_geq: uint8 + + """""" + icmpCode_gt: uint8 + + """""" + icmpCode_in: bytes + + """""" + icmpCode_leq: uint8 + + """""" + icmpCode_lt: uint8 + + """""" + icmpCode_neq: uint8 + + """""" + icmpCode_notin: bytes + + """""" + icmpType: uint8 + + """""" + icmpType_geq: uint8 + + """""" + icmpType_gt: uint8 + + """""" + icmpType_in: bytes + + """""" + icmpType_leq: uint8 + + """""" + icmpType_lt: uint8 + + """""" + icmpType_neq: uint8 + + """""" + icmpType_notin: bytes + + """""" + ipDestinationAddress: string + + """""" + ipDestinationAddress_geq: string + + """""" + ipDestinationAddress_gt: string + + """""" + ipDestinationAddress_in: [string!] + + """""" + ipDestinationAddress_leq: string + + """""" + ipDestinationAddress_like: string + + """""" + ipDestinationAddress_lt: string + + """""" + ipDestinationAddress_neq: string + + """""" + ipDestinationAddress_notin: [string!] + + """""" + ipDestinationAddress_notlike: string + + """""" + ipDestinationSubnet: string + + """""" + ipDestinationSubnet_geq: string + + """""" + ipDestinationSubnet_gt: string + + """""" + ipDestinationSubnet_in: [string!] + + """""" + ipDestinationSubnet_leq: string + + """""" + ipDestinationSubnet_like: string + + """""" + ipDestinationSubnet_lt: string + + """""" + ipDestinationSubnet_neq: string + + """""" + ipDestinationSubnet_notin: [string!] + + """""" + ipDestinationSubnet_notlike: string + + """""" + ipFragmentOffset: uint16 + + """""" + ipFragmentOffset_geq: uint16 + + """""" + ipFragmentOffset_gt: uint16 + + """""" + ipFragmentOffset_in: [uint16!] + + """""" + ipFragmentOffset_leq: uint16 + + """""" + ipFragmentOffset_lt: uint16 + + """""" + ipFragmentOffset_neq: uint16 + + """""" + ipFragmentOffset_notin: [uint16!] + + """""" + ipHeaderLength: uint16 + + """""" + ipHeaderLength_geq: uint16 + + """""" + ipHeaderLength_gt: uint16 + + """""" + ipHeaderLength_in: [uint16!] + + """""" + ipHeaderLength_leq: uint16 + + """""" + ipHeaderLength_lt: uint16 + + """""" + ipHeaderLength_neq: uint16 + + """""" + ipHeaderLength_notin: [uint16!] + + """""" + ipMoreFragments: uint8 + + """""" + ipMoreFragments_geq: uint8 + + """""" + ipMoreFragments_gt: uint8 + + """""" + ipMoreFragments_in: bytes + + """""" + ipMoreFragments_leq: uint8 + + """""" + ipMoreFragments_lt: uint8 + + """""" + ipMoreFragments_neq: uint8 + + """""" + ipMoreFragments_notin: bytes + + """""" + ipProtocol: uint8 + + """""" + ipProtocolName: string + + """""" + ipProtocolName_geq: string + + """""" + ipProtocolName_gt: string + + """""" + ipProtocolName_in: [string!] + + """""" + ipProtocolName_leq: string + + """""" + ipProtocolName_like: string + + """""" + ipProtocolName_lt: string + + """""" + ipProtocolName_neq: string + + """""" + ipProtocolName_notin: [string!] + + """""" + ipProtocolName_notlike: string + + """""" + ipProtocol_geq: uint8 + + """""" + ipProtocol_gt: uint8 + + """""" + ipProtocol_in: bytes + + """""" + ipProtocol_leq: uint8 + + """""" + ipProtocol_lt: uint8 + + """""" + ipProtocol_neq: uint8 + + """""" + ipProtocol_notin: bytes + + """""" + ipSourceAddress: string + + """""" + ipSourceAddress_geq: string + + """""" + ipSourceAddress_gt: string + + """""" + ipSourceAddress_in: [string!] + + """""" + ipSourceAddress_leq: string + + """""" + ipSourceAddress_like: string + + """""" + ipSourceAddress_lt: string + + """""" + ipSourceAddress_neq: string + + """""" + ipSourceAddress_notin: [string!] + + """""" + ipSourceAddress_notlike: string + + """""" + ipSourceSubnet: string + + """""" + ipSourceSubnet_geq: string + + """""" + ipSourceSubnet_gt: string + + """""" + ipSourceSubnet_in: [string!] + + """""" + ipSourceSubnet_leq: string + + """""" + ipSourceSubnet_like: string + + """""" + ipSourceSubnet_lt: string + + """""" + ipSourceSubnet_neq: string + + """""" + ipSourceSubnet_notin: [string!] + + """""" + ipSourceSubnet_notlike: string + + """""" + ipTotalLength: uint16 + + """""" + ipTotalLengthBuckets: uint16 + + """""" + ipTotalLengthBuckets_geq: uint16 + + """""" + ipTotalLengthBuckets_gt: uint16 + + """""" + ipTotalLengthBuckets_in: [uint16!] + + """""" + ipTotalLengthBuckets_leq: uint16 + + """""" + ipTotalLengthBuckets_lt: uint16 + + """""" + ipTotalLengthBuckets_neq: uint16 + + """""" + ipTotalLengthBuckets_notin: [uint16!] + + """""" + ipTotalLength_geq: uint16 + + """""" + ipTotalLength_gt: uint16 + + """""" + ipTotalLength_in: [uint16!] + + """""" + ipTotalLength_leq: uint16 + + """""" + ipTotalLength_lt: uint16 + + """""" + ipTotalLength_neq: uint16 + + """""" + ipTotalLength_notin: [uint16!] + + """""" + ipTtl: uint8 + + """""" + ipTtlBuckets: uint8 + + """""" + ipTtlBuckets_geq: uint8 + + """""" + ipTtlBuckets_gt: uint8 + + """""" + ipTtlBuckets_in: bytes + + """""" + ipTtlBuckets_leq: uint8 + + """""" + ipTtlBuckets_lt: uint8 + + """""" + ipTtlBuckets_neq: uint8 + + """""" + ipTtlBuckets_notin: bytes + + """""" + ipTtl_geq: uint8 + + """""" + ipTtl_gt: uint8 + + """""" + ipTtl_in: bytes + + """""" + ipTtl_leq: uint8 + + """""" + ipTtl_lt: uint8 + + """""" + ipTtl_neq: uint8 + + """""" + ipTtl_notin: bytes + + """""" + ipv4Checksum: uint16 + + """""" + ipv4Checksum_geq: uint16 + + """""" + ipv4Checksum_gt: uint16 + + """""" + ipv4Checksum_in: [uint16!] + + """""" + ipv4Checksum_leq: uint16 + + """""" + ipv4Checksum_lt: uint16 + + """""" + ipv4Checksum_neq: uint16 + + """""" + ipv4Checksum_notin: [uint16!] + + """""" + ipv4DontFragment: uint8 + + """""" + ipv4DontFragment_geq: uint8 + + """""" + ipv4DontFragment_gt: uint8 + + """""" + ipv4DontFragment_in: bytes + + """""" + ipv4DontFragment_leq: uint8 + + """""" + ipv4DontFragment_lt: uint8 + + """""" + ipv4DontFragment_neq: uint8 + + """""" + ipv4DontFragment_notin: bytes + + """""" + ipv4Dscp: uint8 + + """""" + ipv4Dscp_geq: uint8 + + """""" + ipv4Dscp_gt: uint8 + + """""" + ipv4Dscp_in: bytes + + """""" + ipv4Dscp_leq: uint8 + + """""" + ipv4Dscp_lt: uint8 + + """""" + ipv4Dscp_neq: uint8 + + """""" + ipv4Dscp_notin: bytes + + """""" + ipv4Ecn: uint8 + + """""" + ipv4Ecn_geq: uint8 + + """""" + ipv4Ecn_gt: uint8 + + """""" + ipv4Ecn_in: bytes + + """""" + ipv4Ecn_leq: uint8 + + """""" + ipv4Ecn_lt: uint8 + + """""" + ipv4Ecn_neq: uint8 + + """""" + ipv4Ecn_notin: bytes + + """""" + ipv4Identification: uint16 + + """""" + ipv4Identification_geq: uint16 + + """""" + ipv4Identification_gt: uint16 + + """""" + ipv4Identification_in: [uint16!] + + """""" + ipv4Identification_leq: uint16 + + """""" + ipv4Identification_lt: uint16 + + """""" + ipv4Identification_neq: uint16 + + """""" + ipv4Identification_notin: [uint16!] + + """""" + ipv4Options: string + + """""" + ipv4Options_geq: string + + """""" + ipv4Options_gt: string + + """""" + ipv4Options_in: [string!] + + """""" + ipv4Options_leq: string + + """""" + ipv4Options_like: string + + """""" + ipv4Options_lt: string + + """""" + ipv4Options_neq: string + + """""" + ipv4Options_notin: [string!] + + """""" + ipv4Options_notlike: string + + """""" + ipv6Dscp: uint8 + + """""" + ipv6Dscp_geq: uint8 + + """""" + ipv6Dscp_gt: uint8 + + """""" + ipv6Dscp_in: bytes + + """""" + ipv6Dscp_leq: uint8 + + """""" + ipv6Dscp_lt: uint8 + + """""" + ipv6Dscp_neq: uint8 + + """""" + ipv6Dscp_notin: bytes + + """""" + ipv6Ecn: uint8 + + """""" + ipv6Ecn_geq: uint8 + + """""" + ipv6Ecn_gt: uint8 + + """""" + ipv6Ecn_in: bytes + + """""" + ipv6Ecn_leq: uint8 + + """""" + ipv6Ecn_lt: uint8 + + """""" + ipv6Ecn_neq: uint8 + + """""" + ipv6Ecn_notin: bytes + + """""" + ipv6ExtensionHeaders: string + + """""" + ipv6ExtensionHeaders_geq: string + + """""" + ipv6ExtensionHeaders_gt: string + + """""" + ipv6ExtensionHeaders_in: [string!] + + """""" + ipv6ExtensionHeaders_leq: string + + """""" + ipv6ExtensionHeaders_like: string + + """""" + ipv6ExtensionHeaders_lt: string + + """""" + ipv6ExtensionHeaders_neq: string + + """""" + ipv6ExtensionHeaders_notin: [string!] + + """""" + ipv6ExtensionHeaders_notlike: string + + """""" + ipv6FlowLabel: uint32 + + """""" + ipv6FlowLabel_geq: uint32 + + """""" + ipv6FlowLabel_gt: uint32 + + """""" + ipv6FlowLabel_in: [uint32!] + + """""" + ipv6FlowLabel_leq: uint32 + + """""" + ipv6FlowLabel_lt: uint32 + + """""" + ipv6FlowLabel_neq: uint32 + + """""" + ipv6FlowLabel_notin: [uint32!] + + """""" + ipv6Identification: uint32 + + """""" + ipv6Identification_geq: uint32 + + """""" + ipv6Identification_gt: uint32 + + """""" + ipv6Identification_in: [uint32!] + + """""" + ipv6Identification_leq: uint32 + + """""" + ipv6Identification_lt: uint32 + + """""" + ipv6Identification_neq: uint32 + + """""" + ipv6Identification_notin: [uint32!] + + """""" + leaseTag: string + + """""" + leaseTag_geq: string + + """""" + leaseTag_gt: string + + """""" + leaseTag_in: [string!] + + """""" + leaseTag_leq: string + + """""" + leaseTag_like: string + + """""" + leaseTag_lt: string + + """""" + leaseTag_neq: string + + """""" + leaseTag_notin: [string!] + + """""" + leaseTag_notlike: string + + """""" + mitigationReason: string + + """""" + mitigationReason_geq: string + + """""" + mitigationReason_gt: string + + """""" + mitigationReason_in: [string!] + + """""" + mitigationReason_leq: string + + """""" + mitigationReason_like: string + + """""" + mitigationReason_lt: string + + """""" + mitigationReason_neq: string + + """""" + mitigationReason_notin: [string!] + + """""" + mitigationReason_notlike: string + + """""" + mitigationScope: string + + """""" + mitigationScope_geq: string + + """""" + mitigationScope_gt: string + + """""" + mitigationScope_in: [string!] + + """""" + mitigationScope_leq: string + + """""" + mitigationScope_like: string + + """""" + mitigationScope_lt: string + + """""" + mitigationScope_neq: string + + """""" + mitigationScope_notin: [string!] + + """""" + mitigationScope_notlike: string + + """""" + outcome: string + + """""" + outcome_geq: string + + """""" + outcome_gt: string + + """""" + outcome_in: [string!] + + """""" + outcome_leq: string + + """""" + outcome_like: string + + """""" + outcome_lt: string + + """""" + outcome_neq: string + + """""" + outcome_notin: [string!] + + """""" + outcome_notlike: string + + """""" + prefixTag: string + + """""" + prefixTag_geq: string + + """""" + prefixTag_gt: string + + """""" + prefixTag_in: [string!] + + """""" + prefixTag_leq: string + + """""" + prefixTag_like: string + + """""" + prefixTag_lt: string + + """""" + prefixTag_neq: string + + """""" + prefixTag_notin: [string!] + + """""" + prefixTag_notlike: string + + """""" + protocolState: string + + """""" + protocolState_geq: string + + """""" + protocolState_gt: string + + """""" + protocolState_in: [string!] + + """""" + protocolState_leq: string + + """""" + protocolState_like: string + + """""" + protocolState_lt: string + + """""" + protocolState_neq: string + + """""" + protocolState_notin: [string!] + + """""" + protocolState_notlike: string + + """""" + sampleInterval: uint32 + + """""" + sampleInterval_geq: uint32 + + """""" + sampleInterval_gt: uint32 + + """""" + sampleInterval_in: [uint32!] + + """""" + sampleInterval_leq: uint32 + + """""" + sampleInterval_lt: uint32 + + """""" + sampleInterval_neq: uint32 + + """""" + sampleInterval_notin: [uint32!] + + """""" + sourceAsn: uint32 + + """""" + sourceAsnName: string + + """""" + sourceAsnName_geq: string + + """""" + sourceAsnName_gt: string + + """""" + sourceAsnName_in: [string!] + + """""" + sourceAsnName_leq: string + + """""" + sourceAsnName_like: string + + """""" + sourceAsnName_lt: string + + """""" + sourceAsnName_neq: string + + """""" + sourceAsnName_notin: [string!] + + """""" + sourceAsnName_notlike: string + + """""" + sourceAsn_geq: uint32 + + """""" + sourceAsn_gt: uint32 + + """""" + sourceAsn_in: [uint32!] + + """""" + sourceAsn_leq: uint32 + + """""" + sourceAsn_lt: uint32 + + """""" + sourceAsn_neq: uint32 + + """""" + sourceAsn_notin: [uint32!] + + """""" + sourceCountry: string + + """""" + sourceCountry_geq: string + + """""" + sourceCountry_gt: string + + """""" + sourceCountry_in: [string!] + + """""" + sourceCountry_leq: string + + """""" + sourceCountry_like: string + + """""" + sourceCountry_lt: string + + """""" + sourceCountry_neq: string + + """""" + sourceCountry_notin: [string!] + + """""" + sourceCountry_notlike: string + + """""" + sourceGeohash: string + + """""" + sourceGeohash_geq: string + + """""" + sourceGeohash_gt: string + + """""" + sourceGeohash_in: [string!] + + """""" + sourceGeohash_leq: string + + """""" + sourceGeohash_like: string + + """""" + sourceGeohash_lt: string + + """""" + sourceGeohash_neq: string + + """""" + sourceGeohash_notin: [string!] + + """""" + sourceGeohash_notlike: string + + """""" + sourcePort: uint16 + + """""" + sourcePort_geq: uint16 + + """""" + sourcePort_gt: uint16 + + """""" + sourcePort_in: [uint16!] + + """""" + sourcePort_leq: uint16 + + """""" + sourcePort_lt: uint16 + + """""" + sourcePort_neq: uint16 + + """""" + sourcePort_notin: [uint16!] + + """""" + tcpAcknowledgementNumber: uint32 + + """""" + tcpAcknowledgementNumber_geq: uint32 + + """""" + tcpAcknowledgementNumber_gt: uint32 + + """""" + tcpAcknowledgementNumber_in: [uint32!] + + """""" + tcpAcknowledgementNumber_leq: uint32 + + """""" + tcpAcknowledgementNumber_lt: uint32 + + """""" + tcpAcknowledgementNumber_neq: uint32 + + """""" + tcpAcknowledgementNumber_notin: [uint32!] + + """""" + tcpChecksum: uint16 + + """""" + tcpChecksum_geq: uint16 + + """""" + tcpChecksum_gt: uint16 + + """""" + tcpChecksum_in: [uint16!] + + """""" + tcpChecksum_leq: uint16 + + """""" + tcpChecksum_lt: uint16 + + """""" + tcpChecksum_neq: uint16 + + """""" + tcpChecksum_notin: [uint16!] + + """""" + tcpDataOffset: uint16 + + """""" + tcpDataOffset_geq: uint16 + + """""" + tcpDataOffset_gt: uint16 + + """""" + tcpDataOffset_in: [uint16!] + + """""" + tcpDataOffset_leq: uint16 + + """""" + tcpDataOffset_lt: uint16 + + """""" + tcpDataOffset_neq: uint16 + + """""" + tcpDataOffset_notin: [uint16!] + + """""" + tcpFlags: uint8 + + """""" + tcpFlagsString: string + + """""" + tcpFlagsString_geq: string + + """""" + tcpFlagsString_gt: string + + """""" + tcpFlagsString_in: [string!] + + """""" + tcpFlagsString_leq: string + + """""" + tcpFlagsString_like: string + + """""" + tcpFlagsString_lt: string + + """""" + tcpFlagsString_neq: string + + """""" + tcpFlagsString_notin: [string!] + + """""" + tcpFlagsString_notlike: string + + """""" + tcpFlags_geq: uint8 + + """""" + tcpFlags_gt: uint8 + + """""" + tcpFlags_in: bytes + + """""" + tcpFlags_leq: uint8 + + """""" + tcpFlags_lt: uint8 + + """""" + tcpFlags_neq: uint8 + + """""" + tcpFlags_notin: bytes + + """""" + tcpMss: uint16 + + """""" + tcpMss_geq: uint16 + + """""" + tcpMss_gt: uint16 + + """""" + tcpMss_in: [uint16!] + + """""" + tcpMss_leq: uint16 + + """""" + tcpMss_lt: uint16 + + """""" + tcpMss_neq: uint16 + + """""" + tcpMss_notin: [uint16!] + + """""" + tcpOptions: string + + """""" + tcpOptions_geq: string + + """""" + tcpOptions_gt: string + + """""" + tcpOptions_in: [string!] + + """""" + tcpOptions_leq: string + + """""" + tcpOptions_like: string + + """""" + tcpOptions_lt: string + + """""" + tcpOptions_neq: string + + """""" + tcpOptions_notin: [string!] + + """""" + tcpOptions_notlike: string + + """""" + tcpSackBlocks: string + + """""" + tcpSackBlocks_geq: string + + """""" + tcpSackBlocks_gt: string + + """""" + tcpSackBlocks_in: [string!] + + """""" + tcpSackBlocks_leq: string + + """""" + tcpSackBlocks_like: string + + """""" + tcpSackBlocks_lt: string + + """""" + tcpSackBlocks_neq: string + + """""" + tcpSackBlocks_notin: [string!] + + """""" + tcpSackBlocks_notlike: string + + """""" + tcpSackPermitted: uint8 + + """""" + tcpSackPermitted_geq: uint8 + + """""" + tcpSackPermitted_gt: uint8 + + """""" + tcpSackPermitted_in: bytes + + """""" + tcpSackPermitted_leq: uint8 + + """""" + tcpSackPermitted_lt: uint8 + + """""" + tcpSackPermitted_neq: uint8 + + """""" + tcpSackPermitted_notin: bytes + + """""" + tcpSequenceNumber: uint32 + + """""" + tcpSequenceNumber_geq: uint32 + + """""" + tcpSequenceNumber_gt: uint32 + + """""" + tcpSequenceNumber_in: [uint32!] + + """""" + tcpSequenceNumber_leq: uint32 + + """""" + tcpSequenceNumber_lt: uint32 + + """""" + tcpSequenceNumber_neq: uint32 + + """""" + tcpSequenceNumber_notin: [uint32!] + + """""" + tcpTimestampEcr: uint32 + + """""" + tcpTimestampEcr_geq: uint32 + + """""" + tcpTimestampEcr_gt: uint32 + + """""" + tcpTimestampEcr_in: [uint32!] + + """""" + tcpTimestampEcr_leq: uint32 + + """""" + tcpTimestampEcr_lt: uint32 + + """""" + tcpTimestampEcr_neq: uint32 + + """""" + tcpTimestampEcr_notin: [uint32!] + + """""" + tcpTimestampValue: uint32 + + """""" + tcpTimestampValue_geq: uint32 + + """""" + tcpTimestampValue_gt: uint32 + + """""" + tcpTimestampValue_in: [uint32!] + + """""" + tcpTimestampValue_leq: uint32 + + """""" + tcpTimestampValue_lt: uint32 + + """""" + tcpTimestampValue_neq: uint32 + + """""" + tcpTimestampValue_notin: [uint32!] + + """""" + tcpUrgentPointer: uint16 + + """""" + tcpUrgentPointer_geq: uint16 + + """""" + tcpUrgentPointer_gt: uint16 + + """""" + tcpUrgentPointer_in: [uint16!] + + """""" + tcpUrgentPointer_leq: uint16 + + """""" + tcpUrgentPointer_lt: uint16 + + """""" + tcpUrgentPointer_neq: uint16 + + """""" + tcpUrgentPointer_notin: [uint16!] + + """""" + tcpWindowScale: uint16 + + """""" + tcpWindowScale_geq: uint16 + + """""" + tcpWindowScale_gt: uint16 + + """""" + tcpWindowScale_in: [uint16!] + + """""" + tcpWindowScale_leq: uint16 + + """""" + tcpWindowScale_lt: uint16 + + """""" + tcpWindowScale_neq: uint16 + + """""" + tcpWindowScale_notin: [uint16!] + + """""" + tcpWindowSize: uint16 + + """""" + tcpWindowSize_geq: uint16 + + """""" + tcpWindowSize_gt: uint16 + + """""" + tcpWindowSize_in: [uint16!] + + """""" + tcpWindowSize_leq: uint16 + + """""" + tcpWindowSize_lt: uint16 + + """""" + tcpWindowSize_neq: uint16 + + """""" + tcpWindowSize_notin: [uint16!] + + """""" + udpChecksum: uint16 + + """""" + udpChecksum_geq: uint16 + + """""" + udpChecksum_gt: uint16 + + """""" + udpChecksum_in: [uint16!] + + """""" + udpChecksum_leq: uint16 + + """""" + udpChecksum_lt: uint16 + + """""" + udpChecksum_neq: uint16 + + """""" + udpChecksum_notin: [uint16!] + + """""" + udpPayloadLength: uint16 + + """""" + udpPayloadLength_geq: uint16 + + """""" + udpPayloadLength_gt: uint16 + + """""" + udpPayloadLength_in: [uint16!] + + """""" + udpPayloadLength_leq: uint16 + + """""" + udpPayloadLength_lt: uint16 + + """""" + udpPayloadLength_neq: uint16 + + """""" + udpPayloadLength_notin: [uint16!] + + """""" + verdict: string + + """""" + verdict_geq: string + + """""" + verdict_gt: string + + """""" + verdict_in: [string!] + + """""" + verdict_leq: string + + """""" + verdict_like: string + + """""" + verdict_lt: string + + """""" + verdict_neq: string + + """""" + verdict_notin: [string!] + + """""" + verdict_notlike: string +} + +"""""" +enum AccountFlowtrackdNetworkAnalyticsAdaptiveGroupsOrderBy { + """applicationTag ascending""" + applicationTag_ASC + + """applicationTag descending""" + applicationTag_DESC + + """avg(bitRateDay) ascending""" + avg_bitRateDay_ASC + + """avg(bitRateDay) descending""" + avg_bitRateDay_DESC + + """avg(bitRateFifteenMinutes) ascending""" + avg_bitRateFifteenMinutes_ASC + + """avg(bitRateFifteenMinutes) descending""" + avg_bitRateFifteenMinutes_DESC + + """avg(bitRateFiveMinutes) ascending""" + avg_bitRateFiveMinutes_ASC + + """avg(bitRateFiveMinutes) descending""" + avg_bitRateFiveMinutes_DESC + + """avg(bitRateHour) ascending""" + avg_bitRateHour_ASC + + """avg(bitRateHour) descending""" + avg_bitRateHour_DESC + + """avg(bitRateMinute) ascending""" + avg_bitRateMinute_ASC + + """avg(bitRateMinute) descending""" + avg_bitRateMinute_DESC + + """avg(bitRateTenSeconds) ascending""" + avg_bitRateTenSeconds_ASC + + """avg(bitRateTenSeconds) descending""" + avg_bitRateTenSeconds_DESC + + """avg(bitRate) ascending""" + avg_bitRate_ASC + + """avg(bitRate) descending""" + avg_bitRate_DESC + + """avg(packetRateDay) ascending""" + avg_packetRateDay_ASC + + """avg(packetRateDay) descending""" + avg_packetRateDay_DESC + + """avg(packetRateFifteenMinutes) ascending""" + avg_packetRateFifteenMinutes_ASC + + """avg(packetRateFifteenMinutes) descending""" + avg_packetRateFifteenMinutes_DESC + + """avg(packetRateFiveMinutes) ascending""" + avg_packetRateFiveMinutes_ASC + + """avg(packetRateFiveMinutes) descending""" + avg_packetRateFiveMinutes_DESC + + """avg(packetRateHour) ascending""" + avg_packetRateHour_ASC + + """avg(packetRateHour) descending""" + avg_packetRateHour_DESC + + """avg(packetRateMinute) ascending""" + avg_packetRateMinute_ASC + + """avg(packetRateMinute) descending""" + avg_packetRateMinute_DESC + + """avg(packetRateTenSeconds) ascending""" + avg_packetRateTenSeconds_ASC + + """avg(packetRateTenSeconds) descending""" + avg_packetRateTenSeconds_DESC + + """avg(packetRate) ascending""" + avg_packetRate_ASC + + """avg(packetRate) descending""" + avg_packetRate_DESC + + """coloCity ascending""" + coloCity_ASC + + """coloCity descending""" + coloCity_DESC + + """coloCode ascending""" + coloCode_ASC + + """coloCode descending""" + coloCode_DESC + + """coloCountry ascending""" + coloCountry_ASC + + """coloCountry descending""" + coloCountry_DESC + + """coloGeohash ascending""" + coloGeohash_ASC + + """coloGeohash descending""" + coloGeohash_DESC + + """coloName ascending""" + coloName_ASC + + """coloName descending""" + coloName_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetimeTenSeconds ascending""" + datetimeTenSeconds_ASC + + """datetimeTenSeconds descending""" + datetimeTenSeconds_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """destinationAsnName ascending""" + destinationAsnName_ASC + + """destinationAsnName descending""" + destinationAsnName_DESC + + """destinationAsn ascending""" + destinationAsn_ASC + + """destinationAsn descending""" + destinationAsn_DESC + + """destinationCountry ascending""" + destinationCountry_ASC + + """destinationCountry descending""" + destinationCountry_DESC + + """destinationGeohash ascending""" + destinationGeohash_ASC + + """destinationGeohash descending""" + destinationGeohash_DESC + + """destinationPort ascending""" + destinationPort_ASC + + """destinationPort descending""" + destinationPort_DESC + + """direction ascending""" + direction_ASC + + """direction descending""" + direction_DESC + + """ethertype ascending""" + ethertype_ASC + + """ethertype descending""" + ethertype_DESC + + """greChecksum ascending""" + greChecksum_ASC + + """greChecksum descending""" + greChecksum_DESC + + """greEthertype ascending""" + greEthertype_ASC + + """greEthertype descending""" + greEthertype_DESC + + """greHeaderLength ascending""" + greHeaderLength_ASC + + """greHeaderLength descending""" + greHeaderLength_DESC + + """greKey ascending""" + greKey_ASC + + """greKey descending""" + greKey_DESC + + """greSequenceNumber ascending""" + greSequenceNumber_ASC + + """greSequenceNumber descending""" + greSequenceNumber_DESC + + """greVersion ascending""" + greVersion_ASC + + """greVersion descending""" + greVersion_DESC + + """icmpChecksum ascending""" + icmpChecksum_ASC + + """icmpChecksum descending""" + icmpChecksum_DESC + + """icmpCode ascending""" + icmpCode_ASC + + """icmpCode descending""" + icmpCode_DESC + + """icmpType ascending""" + icmpType_ASC + + """icmpType descending""" + icmpType_DESC + + """ipDestinationAddress ascending""" + ipDestinationAddress_ASC + + """ipDestinationAddress descending""" + ipDestinationAddress_DESC + + """ipDestinationSubnet ascending""" + ipDestinationSubnet_ASC + + """ipDestinationSubnet descending""" + ipDestinationSubnet_DESC + + """ipFragmentOffset ascending""" + ipFragmentOffset_ASC + + """ipFragmentOffset descending""" + ipFragmentOffset_DESC + + """ipHeaderLength ascending""" + ipHeaderLength_ASC + + """ipHeaderLength descending""" + ipHeaderLength_DESC + + """ipMoreFragments ascending""" + ipMoreFragments_ASC + + """ipMoreFragments descending""" + ipMoreFragments_DESC + + """ipProtocolName ascending""" + ipProtocolName_ASC + + """ipProtocolName descending""" + ipProtocolName_DESC + + """ipProtocol ascending""" + ipProtocol_ASC + + """ipProtocol descending""" + ipProtocol_DESC + + """ipSourceAddress ascending""" + ipSourceAddress_ASC + + """ipSourceAddress descending""" + ipSourceAddress_DESC + + """ipSourceSubnet ascending""" + ipSourceSubnet_ASC + + """ipSourceSubnet descending""" + ipSourceSubnet_DESC + + """ipTotalLengthBuckets ascending""" + ipTotalLengthBuckets_ASC + + """ipTotalLengthBuckets descending""" + ipTotalLengthBuckets_DESC + + """ipTotalLength ascending""" + ipTotalLength_ASC + + """ipTotalLength descending""" + ipTotalLength_DESC + + """ipTtlBuckets ascending""" + ipTtlBuckets_ASC + + """ipTtlBuckets descending""" + ipTtlBuckets_DESC + + """ipTtl ascending""" + ipTtl_ASC + + """ipTtl descending""" + ipTtl_DESC + + """ipv4Checksum ascending""" + ipv4Checksum_ASC + + """ipv4Checksum descending""" + ipv4Checksum_DESC + + """ipv4DontFragment ascending""" + ipv4DontFragment_ASC + + """ipv4DontFragment descending""" + ipv4DontFragment_DESC + + """ipv4Dscp ascending""" + ipv4Dscp_ASC + + """ipv4Dscp descending""" + ipv4Dscp_DESC + + """ipv4Ecn ascending""" + ipv4Ecn_ASC + + """ipv4Ecn descending""" + ipv4Ecn_DESC + + """ipv4Identification ascending""" + ipv4Identification_ASC + + """ipv4Identification descending""" + ipv4Identification_DESC + + """ipv4Options ascending""" + ipv4Options_ASC + + """ipv4Options descending""" + ipv4Options_DESC + + """ipv6Dscp ascending""" + ipv6Dscp_ASC + + """ipv6Dscp descending""" + ipv6Dscp_DESC + + """ipv6Ecn ascending""" + ipv6Ecn_ASC + + """ipv6Ecn descending""" + ipv6Ecn_DESC + + """ipv6ExtensionHeaders ascending""" + ipv6ExtensionHeaders_ASC + + """ipv6ExtensionHeaders descending""" + ipv6ExtensionHeaders_DESC + + """ipv6FlowLabel ascending""" + ipv6FlowLabel_ASC + + """ipv6FlowLabel descending""" + ipv6FlowLabel_DESC + + """ipv6Identification ascending""" + ipv6Identification_ASC + + """ipv6Identification descending""" + ipv6Identification_DESC + + """leaseTag ascending""" + leaseTag_ASC + + """leaseTag descending""" + leaseTag_DESC + + """mitigationReason ascending""" + mitigationReason_ASC + + """mitigationReason descending""" + mitigationReason_DESC + + """mitigationScope ascending""" + mitigationScope_ASC + + """mitigationScope descending""" + mitigationScope_DESC + + """outcome ascending""" + outcome_ASC + + """outcome descending""" + outcome_DESC + + """prefixTag ascending""" + prefixTag_ASC + + """prefixTag descending""" + prefixTag_DESC + + """protocolState ascending""" + protocolState_ASC + + """protocolState descending""" + protocolState_DESC + + """sampleInterval ascending""" + sampleInterval_ASC + + """sampleInterval descending""" + sampleInterval_DESC + + """sourceAsnName ascending""" + sourceAsnName_ASC + + """sourceAsnName descending""" + sourceAsnName_DESC + + """sourceAsn ascending""" + sourceAsn_ASC + + """sourceAsn descending""" + sourceAsn_DESC + + """sourceCountry ascending""" + sourceCountry_ASC + + """sourceCountry descending""" + sourceCountry_DESC + + """sourceGeohash ascending""" + sourceGeohash_ASC + + """sourceGeohash descending""" + sourceGeohash_DESC + + """sourcePort ascending""" + sourcePort_ASC + + """sourcePort descending""" + sourcePort_DESC + + """sum(bits) ascending""" + sum_bits_ASC + + """sum(bits) descending""" + sum_bits_DESC + + """sum(packets) ascending""" + sum_packets_ASC + + """sum(packets) descending""" + sum_packets_DESC + + """system ascending""" + system_ASC + + """system descending""" + system_DESC + + """tcpAcknowledgementNumber ascending""" + tcpAcknowledgementNumber_ASC + + """tcpAcknowledgementNumber descending""" + tcpAcknowledgementNumber_DESC + + """tcpChecksum ascending""" + tcpChecksum_ASC + + """tcpChecksum descending""" + tcpChecksum_DESC + + """tcpDataOffset ascending""" + tcpDataOffset_ASC + + """tcpDataOffset descending""" + tcpDataOffset_DESC + + """tcpFlagsString ascending""" + tcpFlagsString_ASC + + """tcpFlagsString descending""" + tcpFlagsString_DESC + + """tcpFlags ascending""" + tcpFlags_ASC + + """tcpFlags descending""" + tcpFlags_DESC + + """tcpMss ascending""" + tcpMss_ASC + + """tcpMss descending""" + tcpMss_DESC + + """tcpOptions ascending""" + tcpOptions_ASC + + """tcpOptions descending""" + tcpOptions_DESC + + """tcpSackBlocks ascending""" + tcpSackBlocks_ASC + + """tcpSackBlocks descending""" + tcpSackBlocks_DESC + + """tcpSackPermitted ascending""" + tcpSackPermitted_ASC + + """tcpSackPermitted descending""" + tcpSackPermitted_DESC + + """tcpSequenceNumber ascending""" + tcpSequenceNumber_ASC + + """tcpSequenceNumber descending""" + tcpSequenceNumber_DESC + + """tcpTimestampEcr ascending""" + tcpTimestampEcr_ASC + + """tcpTimestampEcr descending""" + tcpTimestampEcr_DESC + + """tcpTimestampValue ascending""" + tcpTimestampValue_ASC + + """tcpTimestampValue descending""" + tcpTimestampValue_DESC + + """tcpUrgentPointer ascending""" + tcpUrgentPointer_ASC + + """tcpUrgentPointer descending""" + tcpUrgentPointer_DESC + + """tcpWindowScale ascending""" + tcpWindowScale_ASC + + """tcpWindowScale descending""" + tcpWindowScale_DESC + + """tcpWindowSize ascending""" + tcpWindowSize_ASC + + """tcpWindowSize descending""" + tcpWindowSize_DESC + + """udpChecksum ascending""" + udpChecksum_ASC + + """udpChecksum descending""" + udpChecksum_DESC + + """udpPayloadLength ascending""" + udpPayloadLength_ASC + + """udpPayloadLength descending""" + udpPayloadLength_DESC + + """verdict ascending""" + verdict_ASC + + """verdict descending""" + verdict_DESC +} + +"""""" +type AccountFlowtrackdNetworkAnalyticsAdaptiveGroupsSum { + """Sum of bits received""" + bits: uint64! + + """Sum of packets received""" + packets: uint64! +} + +"""""" +type AccountFlowtrackdNetworkAnalyticsAdaptiveGroupsSumConfidence { + """Confidence interval for the corresponding point estimate""" + bits: Confidence! + + """Confidence interval for the corresponding point estimate""" + packets: Confidence! +} + +""" +Aggregated metrics about downstream (client to edge) L4 Gateway Sessions. Metrics are reported on TCP or UDP session close +""" +type AccountGatewayL4DownstreamSessionsAdaptiveGroups { + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountGatewayL4DownstreamSessionsAdaptiveGroupsConfidence! + + """The number of downstream sessions""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountGatewayL4DownstreamSessionsAdaptiveGroupsDimensions + + """""" + quantiles: AccountGatewayL4DownstreamSessionsAdaptiveGroupsQuantiles + + """""" + sum: AccountGatewayL4DownstreamSessionsAdaptiveGroupsSum +} + +"""""" +type AccountGatewayL4DownstreamSessionsAdaptiveGroupsConfidence { + """The number of downstream sessions, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! + + """""" + sum: AccountGatewayL4DownstreamSessionsAdaptiveGroupsSumConfidence +} + +"""""" +type AccountGatewayL4DownstreamSessionsAdaptiveGroupsDimensions { + """ + IATA Airport code that represents the city in which a Cloudflare data center (colo) is located + """ + coloCode: string! + + """ + ISO 3166-1 alpha-2 code that represents the country in which a Cloudflare data center (colo) is located + """ + coloCountry: string! + + """Start timestamp of this session, truncated to date""" + date: Date! + + """Start timestamp of this session, truncated to multiple of 15 minutes""" + datetimeFifteenMinutes: Time! + + """Start timestamp of this session, truncated to multiple of 5 minutes""" + datetimeFiveMinutes: Time! + + """Start timestamp of this session, truncated to the hour""" + datetimeHour: Time! + + """Start timestamp of this session, truncated to the minute""" + datetimeMinute: Time! + + """ + QUIC specific error code. Possible values are https://www.iana.org/assignments/quic/quic.xhtml#quic-transport-error-codes + """ + quicErrorCode: uint64! + + """Last Round Trip Time estimation for this session in microseconds""" + rttUs: int64! + + """Identifier for this session""" + sessionId: string! + + """IP address of the client making this session""" + sourceIP: string! + + """ + Client token authentication status. Possible values are success | failed with invalid token and upto date token key ID | failed with invalid token due to outdated/missing token key ID | failed due to reused token + """ + tokenAuthStatus: string! + + """Broad location assigned to client in this session""" + tokenSigningRegion: string! + + """ + Transport protocol used for this session. Possible values are tcp | quic | udp + """ + transport: string! + + """Time taken for TCP/TLS or QUIC handshake in microsecond""" + transportHandshakeDurationUs: int64! + + """Transport Status. Possible values are unknown | success | failure""" + transportStatus: string! +} + +"""""" +input AccountGatewayL4DownstreamSessionsAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountGatewayL4DownstreamSessionsAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountGatewayL4DownstreamSessionsAdaptiveGroupsFilter_InputObject!] + + """""" + coloCode: string + + """""" + coloCode_geq: string + + """""" + coloCode_gt: string + + """""" + coloCode_in: [string!] + + """""" + coloCode_leq: string + + """""" + coloCode_like: string + + """""" + coloCode_lt: string + + """""" + coloCode_neq: string + + """""" + coloCode_notin: [string!] + + """""" + coloCode_notlike: string + + """""" + coloCountry: string + + """""" + coloCountry_geq: string + + """""" + coloCountry_gt: string + + """""" + coloCountry_in: [string!] + + """""" + coloCountry_leq: string + + """""" + coloCountry_like: string + + """""" + coloCountry_lt: string + + """""" + coloCountry_neq: string + + """""" + coloCountry_notin: [string!] + + """""" + coloCountry_notlike: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + quicErrorCode: uint64 + + """""" + quicErrorCode_geq: uint64 + + """""" + quicErrorCode_gt: uint64 + + """""" + quicErrorCode_in: [uint64!] + + """""" + quicErrorCode_leq: uint64 + + """""" + quicErrorCode_lt: uint64 + + """""" + quicErrorCode_neq: uint64 + + """""" + quicErrorCode_notin: [uint64!] + + """""" + rttUs: int64 + + """""" + rttUs_geq: int64 + + """""" + rttUs_gt: int64 + + """""" + rttUs_in: [int64!] + + """""" + rttUs_leq: int64 + + """""" + rttUs_lt: int64 + + """""" + rttUs_neq: int64 + + """""" + rttUs_notin: [int64!] + + """""" + sessionId: string + + """""" + sessionId_geq: string + + """""" + sessionId_gt: string + + """""" + sessionId_in: [string!] + + """""" + sessionId_leq: string + + """""" + sessionId_like: string + + """""" + sessionId_lt: string + + """""" + sessionId_neq: string + + """""" + sessionId_notin: [string!] + + """""" + sessionId_notlike: string + + """""" + sourceIP: string + + """""" + sourceIP_geq: string + + """""" + sourceIP_gt: string + + """""" + sourceIP_in: [string!] + + """""" + sourceIP_leq: string + + """""" + sourceIP_like: string + + """""" + sourceIP_lt: string + + """""" + sourceIP_neq: string + + """""" + sourceIP_notin: [string!] + + """""" + sourceIP_notlike: string + + """""" + tokenAuthStatus: string + + """""" + tokenAuthStatus_geq: string + + """""" + tokenAuthStatus_gt: string + + """""" + tokenAuthStatus_in: [string!] + + """""" + tokenAuthStatus_leq: string + + """""" + tokenAuthStatus_like: string + + """""" + tokenAuthStatus_lt: string + + """""" + tokenAuthStatus_neq: string + + """""" + tokenAuthStatus_notin: [string!] + + """""" + tokenAuthStatus_notlike: string + + """""" + tokenSigningRegion: string + + """""" + tokenSigningRegion_geq: string + + """""" + tokenSigningRegion_gt: string + + """""" + tokenSigningRegion_in: [string!] + + """""" + tokenSigningRegion_leq: string + + """""" + tokenSigningRegion_like: string + + """""" + tokenSigningRegion_lt: string + + """""" + tokenSigningRegion_neq: string + + """""" + tokenSigningRegion_notin: [string!] + + """""" + tokenSigningRegion_notlike: string + + """""" + transport: string + + """""" + transportHandshakeDurationUs: int64 + + """""" + transportHandshakeDurationUs_geq: int64 + + """""" + transportHandshakeDurationUs_gt: int64 + + """""" + transportHandshakeDurationUs_in: [int64!] + + """""" + transportHandshakeDurationUs_leq: int64 + + """""" + transportHandshakeDurationUs_lt: int64 + + """""" + transportHandshakeDurationUs_neq: int64 + + """""" + transportHandshakeDurationUs_notin: [int64!] + + """""" + transportStatus: string + + """""" + transportStatus_geq: string + + """""" + transportStatus_gt: string + + """""" + transportStatus_in: [string!] + + """""" + transportStatus_leq: string + + """""" + transportStatus_like: string + + """""" + transportStatus_lt: string + + """""" + transportStatus_neq: string + + """""" + transportStatus_notin: [string!] + + """""" + transportStatus_notlike: string + + """""" + transport_geq: string + + """""" + transport_gt: string + + """""" + transport_in: [string!] + + """""" + transport_leq: string + + """""" + transport_like: string + + """""" + transport_lt: string + + """""" + transport_neq: string + + """""" + transport_notin: [string!] + + """""" + transport_notlike: string +} + +"""""" +enum AccountGatewayL4DownstreamSessionsAdaptiveGroupsOrderBy { + """coloCode ascending""" + coloCode_ASC + + """coloCode descending""" + coloCode_DESC + + """coloCountry ascending""" + coloCountry_ASC + + """coloCountry descending""" + coloCountry_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """quantiles(tokenAuthDurationUsP50) ascending""" + quantiles_tokenAuthDurationUsP50_ASC + + """quantiles(tokenAuthDurationUsP50) descending""" + quantiles_tokenAuthDurationUsP50_DESC + + """quantiles(transportHandshakeDurationUsP50) ascending""" + quantiles_transportHandshakeDurationUsP50_ASC + + """quantiles(transportHandshakeDurationUsP50) descending""" + quantiles_transportHandshakeDurationUsP50_DESC + + """quicErrorCode ascending""" + quicErrorCode_ASC + + """quicErrorCode descending""" + quicErrorCode_DESC + + """rttUs ascending""" + rttUs_ASC + + """rttUs descending""" + rttUs_DESC + + """sessionId ascending""" + sessionId_ASC + + """sessionId descending""" + sessionId_DESC + + """sourceIP ascending""" + sourceIP_ASC + + """sourceIP descending""" + sourceIP_DESC + + """sum(bytesRecvd) ascending""" + sum_bytesRecvd_ASC + + """sum(bytesRecvd) descending""" + sum_bytesRecvd_DESC + + """sum(bytesSent) ascending""" + sum_bytesSent_ASC + + """sum(bytesSent) descending""" + sum_bytesSent_DESC + + """sum(clientBytesRetransmitted) ascending""" + sum_clientBytesRetransmitted_ASC + + """sum(clientBytesRetransmitted) descending""" + sum_clientBytesRetransmitted_DESC + + """sum(packetsRecvd) ascending""" + sum_packetsRecvd_ASC + + """sum(packetsRecvd) descending""" + sum_packetsRecvd_DESC + + """sum(packetsSent) ascending""" + sum_packetsSent_ASC + + """sum(packetsSent) descending""" + sum_packetsSent_DESC + + """sum(tokenAuthDurationUs) ascending""" + sum_tokenAuthDurationUs_ASC + + """sum(tokenAuthDurationUs) descending""" + sum_tokenAuthDurationUs_DESC + + """tokenAuthStatus ascending""" + tokenAuthStatus_ASC + + """tokenAuthStatus descending""" + tokenAuthStatus_DESC + + """tokenSigningRegion ascending""" + tokenSigningRegion_ASC + + """tokenSigningRegion descending""" + tokenSigningRegion_DESC + + """transportHandshakeDurationUs ascending""" + transportHandshakeDurationUs_ASC + + """transportHandshakeDurationUs descending""" + transportHandshakeDurationUs_DESC + + """transportStatus ascending""" + transportStatus_ASC + + """transportStatus descending""" + transportStatus_DESC + + """transport ascending""" + transport_ASC + + """transport descending""" + transport_DESC +} + +"""""" +type AccountGatewayL4DownstreamSessionsAdaptiveGroupsQuantiles { + """Time taken for Client Token Authentication in microseconds""" + tokenAuthDurationUsP50: int64! + + """Time taken for TCP/TLS or QUIC handshake in microseconds""" + transportHandshakeDurationUsP50: int64! +} + +"""""" +type AccountGatewayL4DownstreamSessionsAdaptiveGroupsSum { + """Total bytes received in this session""" + bytesRecvd: uint64! + + """Total bytes sent in this session""" + bytesSent: uint64! + + """Total bytes retransmitted by client in this session""" + clientBytesRetransmitted: uint64! + + """Total number of packets received in this session""" + packetsRecvd: uint64! + + """Total number of packets sent in this session""" + packetsSent: uint64! + + """Time taken for client token authentication in microseconds""" + tokenAuthDurationUs: int64! +} + +"""""" +type AccountGatewayL4DownstreamSessionsAdaptiveGroupsSumConfidence { + """Confidence interval for the corresponding point estimate""" + bytesRecvd: Confidence! + + """Confidence interval for the corresponding point estimate""" + bytesSent: Confidence! + + """Confidence interval for the corresponding point estimate""" + clientBytesRetransmitted: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetsRecvd: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetsSent: Confidence! + + """Confidence interval for the corresponding point estimate""" + tokenAuthDurationUs: Confidence! +} + +"""BETA - Aggregate counts of Gateway L4 sessions with adaptive sampling""" +type AccountGatewayL4SessionsAdaptiveGroups { + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountGatewayL4SessionsAdaptiveGroupsConfidence! + + """The number of Gateway L4 sessions""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountGatewayL4SessionsAdaptiveGroupsDimensions +} + +"""""" +type AccountGatewayL4SessionsAdaptiveGroupsConfidence { + """The number of Gateway L4 sessions, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! +} + +"""""" +type AccountGatewayL4SessionsAdaptiveGroupsDimensions { + """action taken by gateway""" + action: string! + + """IDs of the applications that matched the session parameters""" + applicationIds: [uint32!]! + + """Names of the applications that matched the session parameters""" + applicationNames: [string!]! + + """IDs of the categories that matched the session parameters""" + categoryIds: [uint32!]! + + """Names of the categories that matched the session parameters""" + categoryNames: [string!]! + + """Colo Code of edge server""" + coloCode: string! + + """Datetime that the session was started""" + datetime: Time! + + """Datetime that the session was started truncated to hours""" + datetimeHour: Time! + + """Datetime that the session was started truncated to minutes""" + datetimeMinute: Time! + + """The destination IP address for the session""" + destinationIp: string! + + """The destination port for the session""" + destinationPort: uint16! + + """The detected protocol of network traffic""" + detectedProtocol: string! + + """The device ID of the gateway user who initiated the session""" + deviceId: string! + + """Continent code of the session destination IP address""" + dstIpContinent: string! + + """Country code of the session destination IP address""" + dstIpCountry: string! + + """The email address of the gateway user who initiated the session""" + email: string! + + """The proxy endpoint used on this session""" + proxyEndpoint: string! + + """The network session unique identifier""" + sessionId: string! + + """The SNI pulled from the session tls handshake, if present""" + sni: string! + + """ + Local LAN IP of the device. Only available when connected via a GRE/IPsec tunnel on-ramp + """ + sourceInternalIp: string! + + """The source IP address for the session""" + sourceIp: string! + + """The source port for the session""" + sourcePort: uint16! + + """Continent code of the session source IP address""" + srcIpContinent: string! + + """Country code of the session source IP address""" + srcIpCountry: string! + + """ + The transport protocol used in the session, one of (0, tcp) (1, quic) (2, udp). Deprecated, please use transportProtocol + """ + transport: uint16! @deprecated(reason: "Field is replaced with transportProtocol") + + """ + The transport protocol used in the session, one of (0, tcp) (1, quic) (2, udp) + """ + transportProtocol: uint16! + + """The ID of the gateway user who initiated the session""" + userId: string! + + """The ID of the virtual nework the device was connected to""" + virtualNetworkId: string! + + """The name of the virtual nework the device was connected to""" + virtualNetworkName: string! +} + +"""""" +input AccountGatewayL4SessionsAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountGatewayL4SessionsAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountGatewayL4SessionsAdaptiveGroupsFilter_InputObject!] + + """""" + action: string + + """""" + action_geq: string + + """""" + action_gt: string + + """""" + action_in: [string!] + + """""" + action_leq: string + + """""" + action_like: string + + """""" + action_lt: string + + """""" + action_neq: string + + """""" + action_notin: [string!] + + """""" + action_notlike: string + + """""" + applicationIds_has: uint32 + + """""" + applicationIds_hasall: [uint32!] + + """""" + applicationIds_hasany: [uint32!] + + """""" + applicationIds_isempty: bool + + """""" + applicationIds_nothas: uint32 + + """""" + applicationNames_has: string + + """""" + applicationNames_hasall: [string!] + + """""" + applicationNames_hasany: [string!] + + """""" + applicationNames_isempty: bool + + """""" + applicationNames_nothas: string + + """""" + categoryIds_has: uint32 + + """""" + categoryIds_hasall: [uint32!] + + """""" + categoryIds_hasany: [uint32!] + + """""" + categoryIds_isempty: bool + + """""" + categoryIds_nothas: uint32 + + """""" + categoryNames_has: string + + """""" + categoryNames_hasall: [string!] + + """""" + categoryNames_hasany: [string!] + + """""" + categoryNames_isempty: bool + + """""" + categoryNames_nothas: string + + """""" + coloCode: string + + """""" + coloCode_geq: string + + """""" + coloCode_gt: string + + """""" + coloCode_in: [string!] + + """""" + coloCode_leq: string + + """""" + coloCode_like: string + + """""" + coloCode_lt: string + + """""" + coloCode_neq: string + + """""" + coloCode_notin: [string!] + + """""" + coloCode_notlike: string + + """""" + datetime: Time + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + destinationIp: string + + """""" + destinationIp_geq: string + + """""" + destinationIp_gt: string + + """""" + destinationIp_in: [string!] + + """""" + destinationIp_leq: string + + """""" + destinationIp_like: string + + """""" + destinationIp_lt: string + + """""" + destinationIp_neq: string + + """""" + destinationIp_notin: [string!] + + """""" + destinationIp_notlike: string + + """""" + destinationPort: uint16 + + """""" + destinationPort_geq: uint16 + + """""" + destinationPort_gt: uint16 + + """""" + destinationPort_in: [uint16!] + + """""" + destinationPort_leq: uint16 + + """""" + destinationPort_lt: uint16 + + """""" + destinationPort_neq: uint16 + + """""" + destinationPort_notin: [uint16!] + + """""" + detectedProtocol: string + + """""" + detectedProtocol_geq: string + + """""" + detectedProtocol_gt: string + + """""" + detectedProtocol_in: [string!] + + """""" + detectedProtocol_leq: string + + """""" + detectedProtocol_like: string + + """""" + detectedProtocol_lt: string + + """""" + detectedProtocol_neq: string + + """""" + detectedProtocol_notin: [string!] + + """""" + detectedProtocol_notlike: string + + """""" + deviceId: string + + """""" + deviceId_geq: string + + """""" + deviceId_gt: string + + """""" + deviceId_in: [string!] + + """""" + deviceId_leq: string + + """""" + deviceId_like: string + + """""" + deviceId_lt: string + + """""" + deviceId_neq: string + + """""" + deviceId_notin: [string!] + + """""" + deviceId_notlike: string + + """""" + dstIpContinent: string + + """""" + dstIpContinent_geq: string + + """""" + dstIpContinent_gt: string + + """""" + dstIpContinent_in: [string!] + + """""" + dstIpContinent_leq: string + + """""" + dstIpContinent_like: string + + """""" + dstIpContinent_lt: string + + """""" + dstIpContinent_neq: string + + """""" + dstIpContinent_notin: [string!] + + """""" + dstIpContinent_notlike: string + + """""" + dstIpCountry: string + + """""" + dstIpCountry_geq: string + + """""" + dstIpCountry_gt: string + + """""" + dstIpCountry_in: [string!] + + """""" + dstIpCountry_leq: string + + """""" + dstIpCountry_like: string + + """""" + dstIpCountry_lt: string + + """""" + dstIpCountry_neq: string + + """""" + dstIpCountry_notin: [string!] + + """""" + dstIpCountry_notlike: string + + """""" + email: string + + """""" + email_geq: string + + """""" + email_gt: string + + """""" + email_in: [string!] + + """""" + email_leq: string + + """""" + email_like: string + + """""" + email_lt: string + + """""" + email_neq: string + + """""" + email_notin: [string!] + + """""" + email_notlike: string + + """""" + proxyEndpoint: string + + """""" + proxyEndpoint_geq: string + + """""" + proxyEndpoint_gt: string + + """""" + proxyEndpoint_in: [string!] + + """""" + proxyEndpoint_leq: string + + """""" + proxyEndpoint_like: string + + """""" + proxyEndpoint_lt: string + + """""" + proxyEndpoint_neq: string + + """""" + proxyEndpoint_notin: [string!] + + """""" + proxyEndpoint_notlike: string + + """""" + sessionId: string + + """""" + sessionId_geq: string + + """""" + sessionId_gt: string + + """""" + sessionId_in: [string!] + + """""" + sessionId_leq: string + + """""" + sessionId_like: string + + """""" + sessionId_lt: string + + """""" + sessionId_neq: string + + """""" + sessionId_notin: [string!] + + """""" + sessionId_notlike: string + + """""" + sni: string + + """""" + sni_geq: string + + """""" + sni_gt: string + + """""" + sni_in: [string!] + + """""" + sni_leq: string + + """""" + sni_like: string + + """""" + sni_lt: string + + """""" + sni_neq: string + + """""" + sni_notin: [string!] + + """""" + sni_notlike: string + + """""" + sourceInternalIp: string + + """""" + sourceInternalIp_geq: string + + """""" + sourceInternalIp_gt: string + + """""" + sourceInternalIp_in: [string!] + + """""" + sourceInternalIp_leq: string + + """""" + sourceInternalIp_like: string + + """""" + sourceInternalIp_lt: string + + """""" + sourceInternalIp_neq: string + + """""" + sourceInternalIp_notin: [string!] + + """""" + sourceInternalIp_notlike: string + + """""" + sourceIp: string + + """""" + sourceIp_geq: string + + """""" + sourceIp_gt: string + + """""" + sourceIp_in: [string!] + + """""" + sourceIp_leq: string + + """""" + sourceIp_like: string + + """""" + sourceIp_lt: string + + """""" + sourceIp_neq: string + + """""" + sourceIp_notin: [string!] + + """""" + sourceIp_notlike: string + + """""" + sourcePort: uint16 + + """""" + sourcePort_geq: uint16 + + """""" + sourcePort_gt: uint16 + + """""" + sourcePort_in: [uint16!] + + """""" + sourcePort_leq: uint16 + + """""" + sourcePort_lt: uint16 + + """""" + sourcePort_neq: uint16 + + """""" + sourcePort_notin: [uint16!] + + """""" + srcIpContinent: string + + """""" + srcIpContinent_geq: string + + """""" + srcIpContinent_gt: string + + """""" + srcIpContinent_in: [string!] + + """""" + srcIpContinent_leq: string + + """""" + srcIpContinent_like: string + + """""" + srcIpContinent_lt: string + + """""" + srcIpContinent_neq: string + + """""" + srcIpContinent_notin: [string!] + + """""" + srcIpContinent_notlike: string + + """""" + srcIpCountry: string + + """""" + srcIpCountry_geq: string + + """""" + srcIpCountry_gt: string + + """""" + srcIpCountry_in: [string!] + + """""" + srcIpCountry_leq: string + + """""" + srcIpCountry_like: string + + """""" + srcIpCountry_lt: string + + """""" + srcIpCountry_neq: string + + """""" + srcIpCountry_notin: [string!] + + """""" + srcIpCountry_notlike: string + + """""" + transport: uint16 + + """""" + transportProtocol: uint16 + + """""" + transportProtocol_geq: uint16 + + """""" + transportProtocol_gt: uint16 + + """""" + transportProtocol_in: [uint16!] + + """""" + transportProtocol_leq: uint16 + + """""" + transportProtocol_lt: uint16 + + """""" + transportProtocol_neq: uint16 + + """""" + transportProtocol_notin: [uint16!] + + """""" + transport_geq: uint16 + + """""" + transport_gt: uint16 + + """""" + transport_in: [uint16!] + + """""" + transport_leq: uint16 + + """""" + transport_lt: uint16 + + """""" + transport_neq: uint16 + + """""" + transport_notin: [uint16!] + + """""" + userId: string + + """""" + userId_geq: string + + """""" + userId_gt: string + + """""" + userId_in: [string!] + + """""" + userId_leq: string + + """""" + userId_like: string + + """""" + userId_lt: string + + """""" + userId_neq: string + + """""" + userId_notin: [string!] + + """""" + userId_notlike: string + + """""" + virtualNetworkId: string + + """""" + virtualNetworkId_geq: string + + """""" + virtualNetworkId_gt: string + + """""" + virtualNetworkId_in: [string!] + + """""" + virtualNetworkId_leq: string + + """""" + virtualNetworkId_like: string + + """""" + virtualNetworkId_lt: string + + """""" + virtualNetworkId_neq: string + + """""" + virtualNetworkId_notin: [string!] + + """""" + virtualNetworkId_notlike: string + + """""" + virtualNetworkName: string + + """""" + virtualNetworkName_geq: string + + """""" + virtualNetworkName_gt: string + + """""" + virtualNetworkName_in: [string!] + + """""" + virtualNetworkName_leq: string + + """""" + virtualNetworkName_like: string + + """""" + virtualNetworkName_lt: string + + """""" + virtualNetworkName_neq: string + + """""" + virtualNetworkName_notin: [string!] + + """""" + virtualNetworkName_notlike: string +} + +"""""" +enum AccountGatewayL4SessionsAdaptiveGroupsOrderBy { + """action ascending""" + action_ASC + + """action descending""" + action_DESC + + """applicationIds ascending""" + applicationIds_ASC + + """applicationIds descending""" + applicationIds_DESC + + """applicationNames ascending""" + applicationNames_ASC + + """applicationNames descending""" + applicationNames_DESC + + """categoryIds ascending""" + categoryIds_ASC + + """categoryIds descending""" + categoryIds_DESC + + """categoryNames ascending""" + categoryNames_ASC + + """categoryNames descending""" + categoryNames_DESC + + """coloCode ascending""" + coloCode_ASC + + """coloCode descending""" + coloCode_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """destinationIp ascending""" + destinationIp_ASC + + """destinationIp descending""" + destinationIp_DESC + + """destinationPort ascending""" + destinationPort_ASC + + """destinationPort descending""" + destinationPort_DESC + + """detectedProtocol ascending""" + detectedProtocol_ASC + + """detectedProtocol descending""" + detectedProtocol_DESC + + """deviceId ascending""" + deviceId_ASC + + """deviceId descending""" + deviceId_DESC + + """dstIpContinent ascending""" + dstIpContinent_ASC + + """dstIpContinent descending""" + dstIpContinent_DESC + + """dstIpCountry ascending""" + dstIpCountry_ASC + + """dstIpCountry descending""" + dstIpCountry_DESC + + """email ascending""" + email_ASC + + """email descending""" + email_DESC + + """proxyEndpoint ascending""" + proxyEndpoint_ASC + + """proxyEndpoint descending""" + proxyEndpoint_DESC + + """sessionId ascending""" + sessionId_ASC + + """sessionId descending""" + sessionId_DESC + + """sni ascending""" + sni_ASC + + """sni descending""" + sni_DESC + + """sourceInternalIp ascending""" + sourceInternalIp_ASC + + """sourceInternalIp descending""" + sourceInternalIp_DESC + + """sourceIp ascending""" + sourceIp_ASC + + """sourceIp descending""" + sourceIp_DESC + + """sourcePort ascending""" + sourcePort_ASC + + """sourcePort descending""" + sourcePort_DESC + + """srcIpContinent ascending""" + srcIpContinent_ASC + + """srcIpContinent descending""" + srcIpContinent_DESC + + """srcIpCountry ascending""" + srcIpCountry_ASC + + """srcIpCountry descending""" + srcIpCountry_DESC + + """transportProtocol ascending""" + transportProtocol_ASC + + """transportProtocol descending""" + transportProtocol_DESC + + """transport ascending""" + transport_ASC + + """transport descending""" + transport_DESC + + """userId ascending""" + userId_ASC + + """userId descending""" + userId_DESC + + """virtualNetworkId ascending""" + virtualNetworkId_ASC + + """virtualNetworkId descending""" + virtualNetworkId_DESC + + """virtualNetworkName ascending""" + virtualNetworkName_ASC + + """virtualNetworkName descending""" + virtualNetworkName_DESC +} + +""" +Aggregated metrics about upstream (edge to client) L4 Gateway Sessions. Metrics are reported on TCP, QUIC or UDP session close +""" +type AccountGatewayL4UpstreamSessionsAdaptiveGroups { + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountGatewayL4UpstreamSessionsAdaptiveGroupsConfidence! + + """The number of upstream sessions""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountGatewayL4UpstreamSessionsAdaptiveGroupsDimensions + + """""" + quantiles: AccountGatewayL4UpstreamSessionsAdaptiveGroupsQuantiles + + """""" + sum: AccountGatewayL4UpstreamSessionsAdaptiveGroupsSum +} + +"""""" +type AccountGatewayL4UpstreamSessionsAdaptiveGroupsConfidence { + """The number of upstream sessions, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! + + """""" + sum: AccountGatewayL4UpstreamSessionsAdaptiveGroupsSumConfidence +} + +"""""" +type AccountGatewayL4UpstreamSessionsAdaptiveGroupsDimensions { + """ + IATA Airport code that represents the city in which a Cloudflare data center (colo) is located + """ + coloCode: string! + + """ + ISO 3166-1 alpha-2 code that represents the country in which a Cloudflare data center (colo) is located + """ + coloCountry: string! + + """Start timestamp of this session, truncated to date""" + date: Date! + + """Start timestamp of this session, truncated to multiple of 15 minutes""" + datetimeFifteenMinutes: Time! + + """Start timestamp of this session, truncated to multiple of 5 minutes""" + datetimeFiveMinutes: Time! + + """Start timestamp of this session, truncated to the hour""" + datetimeHour: Time! + + """Start timestamp of this session, truncated to the minute""" + datetimeMinute: Time! + + """IP address of the origin server""" + destinationIP: string! + + """SNI domain name for this session""" + domainName: string! + + """Downstream session identifier of this session""" + downstreamSessionId: string! + + """ + Client HTTP CONNECT request status. Possible values are unknown | success | failure + """ + httpConnectReqStatus: string! + + """ + QUIC error code. Possible values are https://www.iana.org/assignments/quic/quic.xhtml#quic-transport-error-codes + """ + quicErrorCode: uint64! + + """Last Round Trip Time estimation for this session in microseconds""" + rttUs: int64! + + """Broad location assigned to client in this session""" + tokenSigningRegion: string! + + """Total time taken for tunnel setup in microseconds""" + totalTunnelSetupDurationUs: int64! + + """ + Transport protocol used for this session. Possible values are tcp | quic | udp + """ + transport: string! + + """Transport status. Possible values are unknown | success | failure""" + transportStatus: string! +} + +"""""" +input AccountGatewayL4UpstreamSessionsAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountGatewayL4UpstreamSessionsAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountGatewayL4UpstreamSessionsAdaptiveGroupsFilter_InputObject!] + + """""" + coloCode: string + + """""" + coloCode_geq: string + + """""" + coloCode_gt: string + + """""" + coloCode_in: [string!] + + """""" + coloCode_leq: string + + """""" + coloCode_like: string + + """""" + coloCode_lt: string + + """""" + coloCode_neq: string + + """""" + coloCode_notin: [string!] + + """""" + coloCode_notlike: string + + """""" + coloCountry: string + + """""" + coloCountry_geq: string + + """""" + coloCountry_gt: string + + """""" + coloCountry_in: [string!] + + """""" + coloCountry_leq: string + + """""" + coloCountry_like: string + + """""" + coloCountry_lt: string + + """""" + coloCountry_neq: string + + """""" + coloCountry_notin: [string!] + + """""" + coloCountry_notlike: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + destinationIP: string + + """""" + destinationIP_geq: string + + """""" + destinationIP_gt: string + + """""" + destinationIP_in: [string!] + + """""" + destinationIP_leq: string + + """""" + destinationIP_like: string + + """""" + destinationIP_lt: string + + """""" + destinationIP_neq: string + + """""" + destinationIP_notin: [string!] + + """""" + destinationIP_notlike: string + + """""" + domainName: string + + """""" + domainName_geq: string + + """""" + domainName_gt: string + + """""" + domainName_in: [string!] + + """""" + domainName_leq: string + + """""" + domainName_like: string + + """""" + domainName_lt: string + + """""" + domainName_neq: string + + """""" + domainName_notin: [string!] + + """""" + domainName_notlike: string + + """""" + downstreamSessionId: string + + """""" + downstreamSessionId_geq: string + + """""" + downstreamSessionId_gt: string + + """""" + downstreamSessionId_in: [string!] + + """""" + downstreamSessionId_leq: string + + """""" + downstreamSessionId_like: string + + """""" + downstreamSessionId_lt: string + + """""" + downstreamSessionId_neq: string + + """""" + downstreamSessionId_notin: [string!] + + """""" + downstreamSessionId_notlike: string + + """""" + httpConnectReqStatus: string + + """""" + httpConnectReqStatus_geq: string + + """""" + httpConnectReqStatus_gt: string + + """""" + httpConnectReqStatus_in: [string!] + + """""" + httpConnectReqStatus_leq: string + + """""" + httpConnectReqStatus_like: string + + """""" + httpConnectReqStatus_lt: string + + """""" + httpConnectReqStatus_neq: string + + """""" + httpConnectReqStatus_notin: [string!] + + """""" + httpConnectReqStatus_notlike: string + + """""" + quicErrorCode: uint64 + + """""" + quicErrorCode_geq: uint64 + + """""" + quicErrorCode_gt: uint64 + + """""" + quicErrorCode_in: [uint64!] + + """""" + quicErrorCode_leq: uint64 + + """""" + quicErrorCode_lt: uint64 + + """""" + quicErrorCode_neq: uint64 + + """""" + quicErrorCode_notin: [uint64!] + + """""" + rttUs: int64 + + """""" + rttUs_geq: int64 + + """""" + rttUs_gt: int64 + + """""" + rttUs_in: [int64!] + + """""" + rttUs_leq: int64 + + """""" + rttUs_lt: int64 + + """""" + rttUs_neq: int64 + + """""" + rttUs_notin: [int64!] + + """""" + tokenSigningRegion: string + + """""" + tokenSigningRegion_geq: string + + """""" + tokenSigningRegion_gt: string + + """""" + tokenSigningRegion_in: [string!] + + """""" + tokenSigningRegion_leq: string + + """""" + tokenSigningRegion_like: string + + """""" + tokenSigningRegion_lt: string + + """""" + tokenSigningRegion_neq: string + + """""" + tokenSigningRegion_notin: [string!] + + """""" + tokenSigningRegion_notlike: string + + """""" + totalTunnelSetupDurationUs: int64 + + """""" + totalTunnelSetupDurationUs_geq: int64 + + """""" + totalTunnelSetupDurationUs_gt: int64 + + """""" + totalTunnelSetupDurationUs_in: [int64!] + + """""" + totalTunnelSetupDurationUs_leq: int64 + + """""" + totalTunnelSetupDurationUs_lt: int64 + + """""" + totalTunnelSetupDurationUs_neq: int64 + + """""" + totalTunnelSetupDurationUs_notin: [int64!] + + """""" + transport: string + + """""" + transportStatus: string + + """""" + transportStatus_geq: string + + """""" + transportStatus_gt: string + + """""" + transportStatus_in: [string!] + + """""" + transportStatus_leq: string + + """""" + transportStatus_like: string + + """""" + transportStatus_lt: string + + """""" + transportStatus_neq: string + + """""" + transportStatus_notin: [string!] + + """""" + transportStatus_notlike: string + + """""" + transport_geq: string + + """""" + transport_gt: string + + """""" + transport_in: [string!] + + """""" + transport_leq: string + + """""" + transport_like: string + + """""" + transport_lt: string + + """""" + transport_neq: string + + """""" + transport_notin: [string!] + + """""" + transport_notlike: string +} + +"""""" +enum AccountGatewayL4UpstreamSessionsAdaptiveGroupsOrderBy { + """coloCode ascending""" + coloCode_ASC + + """coloCode descending""" + coloCode_DESC + + """coloCountry ascending""" + coloCountry_ASC + + """coloCountry descending""" + coloCountry_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """destinationIP ascending""" + destinationIP_ASC + + """destinationIP descending""" + destinationIP_DESC + + """domainName ascending""" + domainName_ASC + + """domainName descending""" + domainName_DESC + + """downstreamSessionId ascending""" + downstreamSessionId_ASC + + """downstreamSessionId descending""" + downstreamSessionId_DESC + + """httpConnectReqStatus ascending""" + httpConnectReqStatus_ASC + + """httpConnectReqStatus descending""" + httpConnectReqStatus_DESC + + """quantiles(connectReqHandlingDurationUsP50) ascending""" + quantiles_connectReqHandlingDurationUsP50_ASC + + """quantiles(connectReqHandlingDurationUsP50) descending""" + quantiles_connectReqHandlingDurationUsP50_DESC + + """quantiles(totalTunnelSetupDurationUsP50) ascending""" + quantiles_totalTunnelSetupDurationUsP50_ASC + + """quantiles(totalTunnelSetupDurationUsP50) descending""" + quantiles_totalTunnelSetupDurationUsP50_DESC + + """quantiles(tunnelSetupDurationUsP50) ascending""" + quantiles_tunnelSetupDurationUsP50_ASC + + """quantiles(tunnelSetupDurationUsP50) descending""" + quantiles_tunnelSetupDurationUsP50_DESC + + """quicErrorCode ascending""" + quicErrorCode_ASC + + """quicErrorCode descending""" + quicErrorCode_DESC + + """rttUs ascending""" + rttUs_ASC + + """rttUs descending""" + rttUs_DESC + + """sum(bytesRecvd) ascending""" + sum_bytesRecvd_ASC + + """sum(bytesRecvd) descending""" + sum_bytesRecvd_DESC + + """sum(bytesSent) ascending""" + sum_bytesSent_ASC + + """sum(bytesSent) descending""" + sum_bytesSent_DESC + + """sum(connectReqHandlingDurationUs) ascending""" + sum_connectReqHandlingDurationUs_ASC + + """sum(connectReqHandlingDurationUs) descending""" + sum_connectReqHandlingDurationUs_DESC + + """sum(originBytesRetransmitted) ascending""" + sum_originBytesRetransmitted_ASC + + """sum(originBytesRetransmitted) descending""" + sum_originBytesRetransmitted_DESC + + """sum(packetsRecvd) ascending""" + sum_packetsRecvd_ASC + + """sum(packetsRecvd) descending""" + sum_packetsRecvd_DESC + + """sum(packetsSent) ascending""" + sum_packetsSent_ASC + + """sum(packetsSent) descending""" + sum_packetsSent_DESC + + """sum(totalTunnelSetupDurationUs) ascending""" + sum_totalTunnelSetupDurationUs_ASC + + """sum(totalTunnelSetupDurationUs) descending""" + sum_totalTunnelSetupDurationUs_DESC + + """sum(tunnelSetupDurationUs) ascending""" + sum_tunnelSetupDurationUs_ASC + + """sum(tunnelSetupDurationUs) descending""" + sum_tunnelSetupDurationUs_DESC + + """tokenSigningRegion ascending""" + tokenSigningRegion_ASC + + """tokenSigningRegion descending""" + tokenSigningRegion_DESC + + """totalTunnelSetupDurationUs ascending""" + totalTunnelSetupDurationUs_ASC + + """totalTunnelSetupDurationUs descending""" + totalTunnelSetupDurationUs_DESC + + """transportStatus ascending""" + transportStatus_ASC + + """transportStatus descending""" + transportStatus_DESC + + """transport ascending""" + transport_ASC + + """transport descending""" + transport_DESC +} + +"""""" +type AccountGatewayL4UpstreamSessionsAdaptiveGroupsQuantiles { + """Time taken for CONNECT request handling in microseconds""" + connectReqHandlingDurationUsP50: int64! + + """Total time taken for tunnel setup in microseconds""" + totalTunnelSetupDurationUsP50: int64! + + """Time taken to setup the tunnel in microseconds""" + tunnelSetupDurationUsP50: int64! +} + +"""""" +type AccountGatewayL4UpstreamSessionsAdaptiveGroupsSum { + """Total bytes received in this session""" + bytesRecvd: uint64! + + """Total bytes sent in this session""" + bytesSent: uint64! + + """Time taken for CONNECT request handling in microseconds""" + connectReqHandlingDurationUs: int64! + + """Total bytes retransmitted by origin in this session""" + originBytesRetransmitted: uint64! + + """Total number of packets received in this session""" + packetsRecvd: uint64! + + """Total number of packets sent in this session""" + packetsSent: uint64! + + """Total time taken for tunnel setup in microseconds""" + totalTunnelSetupDurationUs: int64! + + """Time taken for tunnel setup in microseconds""" + tunnelSetupDurationUs: int64! +} + +"""""" +type AccountGatewayL4UpstreamSessionsAdaptiveGroupsSumConfidence { + """Confidence interval for the corresponding point estimate""" + bytesRecvd: Confidence! + + """Confidence interval for the corresponding point estimate""" + bytesSent: Confidence! + + """Confidence interval for the corresponding point estimate""" + connectReqHandlingDurationUs: Confidence! + + """Confidence interval for the corresponding point estimate""" + originBytesRetransmitted: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetsRecvd: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetsSent: Confidence! + + """Confidence interval for the corresponding point estimate""" + totalTunnelSetupDurationUs: Confidence! + + """Confidence interval for the corresponding point estimate""" + tunnelSetupDurationUs: Confidence! +} + +"""BETA - Aggregate counts of Gateway L7 requests with adaptive sampling""" +type AccountGatewayL7RequestsAdaptiveGroups { + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountGatewayL7RequestsAdaptiveGroupsConfidence! + + """The number of Gateway L7 requests""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountGatewayL7RequestsAdaptiveGroupsDimensions +} + +"""""" +type AccountGatewayL7RequestsAdaptiveGroupsConfidence { + """The number of Gateway L7 requests, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! +} + +"""""" +type AccountGatewayL7RequestsAdaptiveGroupsDimensions { + """action taken by gateway""" + action: string! + + """IDs of the applications that matched the request parameters""" + applicationIds: [uint32!]! + + """Names of the applications that matched the request parameters""" + applicationNames: [string!]! + + """IDs of the categories that matched the request parameters""" + categoryIds: [uint32!]! + + """Names of the categories that matched the request parameters""" + categoryNames: [string!]! + + """Colo Code of edge server""" + coloCode: string! + + """Datetime that the request happened""" + datetime: Time! + + """Datetime that the request happened truncated to hours""" + datetimeHour: Time! + + """Datetime that the request happened truncated to minutes""" + datetimeMinute: Time! + + """The device ID of the gateway user who made the request""" + deviceId: string! + + """Continent code of the request destination IP address""" + dstIpContinent: string! + + """Country code of the request destination IP address""" + dstIpCountry: string! + + """The email address of the gateway user who made the request""" + email: string! + + """The destination host for the request""" + httpHost: string! + + """ + HTTP status code gateway returned to the user. 0 if nothing was returned(e.g client disconnected) + """ + httpStatusCode: float64! + + """Indicates whether this request was made through an isolated link""" + isIsolated: uint16! + + """Access private app AUD""" + privateAppAUD: string! + + """The proxy endpoint used on this request""" + proxyEndpoint: string! + + """Indicates if the request content was quarantined""" + quarantined: uint8! + + """The URI to which the user was redirected""" + redirectTargetURI: string! + + """The request unique identifier""" + requestId: string! + + """ + Local LAN IP of the device. Only available when connected via a GRE/IPsec tunnel on-ramp + """ + sourceInternalIp: string! + + """Continent code of the request source IP address""" + srcIpContinent: string! + + """Country code of the request source IP address""" + srcIpCountry: string! + + """Action taken when an untrusted origin certificate error occurs""" + untrustedCertificateAction: string! + + """The request URL""" + url: string! + + """The ID of the gateway user who made the request""" + userId: string! + + """The ID of the virtual nework the device was connected to""" + virtualNetworkId: string! + + """The name of the virtual nework the device was connected to""" + virtualNetworkName: string! +} + +"""""" +input AccountGatewayL7RequestsAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountGatewayL7RequestsAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountGatewayL7RequestsAdaptiveGroupsFilter_InputObject!] + + """""" + action: string + + """""" + action_geq: string + + """""" + action_gt: string + + """""" + action_in: [string!] + + """""" + action_leq: string + + """""" + action_like: string + + """""" + action_lt: string + + """""" + action_neq: string + + """""" + action_notin: [string!] + + """""" + action_notlike: string + + """""" + applicationIds_has: uint32 + + """""" + applicationIds_hasall: [uint32!] + + """""" + applicationIds_hasany: [uint32!] + + """""" + applicationIds_isempty: bool + + """""" + applicationIds_nothas: uint32 + + """""" + applicationNames_has: string + + """""" + applicationNames_hasall: [string!] + + """""" + applicationNames_hasany: [string!] + + """""" + applicationNames_isempty: bool + + """""" + applicationNames_nothas: string + + """""" + categoryIds_has: uint32 + + """""" + categoryIds_hasall: [uint32!] + + """""" + categoryIds_hasany: [uint32!] + + """""" + categoryIds_isempty: bool + + """""" + categoryIds_nothas: uint32 + + """""" + categoryNames_has: string + + """""" + categoryNames_hasall: [string!] + + """""" + categoryNames_hasany: [string!] + + """""" + categoryNames_isempty: bool + + """""" + categoryNames_nothas: string + + """""" + coloCode: string + + """""" + coloCode_geq: string + + """""" + coloCode_gt: string + + """""" + coloCode_in: [string!] + + """""" + coloCode_leq: string + + """""" + coloCode_like: string + + """""" + coloCode_lt: string + + """""" + coloCode_neq: string + + """""" + coloCode_notin: [string!] + + """""" + coloCode_notlike: string + + """""" + datetime: Time + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + deviceId: string + + """""" + deviceId_geq: string + + """""" + deviceId_gt: string + + """""" + deviceId_in: [string!] + + """""" + deviceId_leq: string + + """""" + deviceId_like: string + + """""" + deviceId_lt: string + + """""" + deviceId_neq: string + + """""" + deviceId_notin: [string!] + + """""" + deviceId_notlike: string + + """""" + dstIpContinent: string + + """""" + dstIpContinent_geq: string + + """""" + dstIpContinent_gt: string + + """""" + dstIpContinent_in: [string!] + + """""" + dstIpContinent_leq: string + + """""" + dstIpContinent_like: string + + """""" + dstIpContinent_lt: string + + """""" + dstIpContinent_neq: string + + """""" + dstIpContinent_notin: [string!] + + """""" + dstIpContinent_notlike: string + + """""" + dstIpCountry: string + + """""" + dstIpCountry_geq: string + + """""" + dstIpCountry_gt: string + + """""" + dstIpCountry_in: [string!] + + """""" + dstIpCountry_leq: string + + """""" + dstIpCountry_like: string + + """""" + dstIpCountry_lt: string + + """""" + dstIpCountry_neq: string + + """""" + dstIpCountry_notin: [string!] + + """""" + dstIpCountry_notlike: string + + """""" + email: string + + """""" + email_geq: string + + """""" + email_gt: string + + """""" + email_in: [string!] + + """""" + email_leq: string + + """""" + email_like: string + + """""" + email_lt: string + + """""" + email_neq: string + + """""" + email_notin: [string!] + + """""" + email_notlike: string + + """""" + httpHost: string + + """""" + httpHost_geq: string + + """""" + httpHost_gt: string + + """""" + httpHost_in: [string!] + + """""" + httpHost_leq: string + + """""" + httpHost_like: string + + """""" + httpHost_lt: string + + """""" + httpHost_neq: string + + """""" + httpHost_notin: [string!] + + """""" + httpHost_notlike: string + + """""" + httpStatusCode: float64 + + """""" + httpStatusCode_geq: float64 + + """""" + httpStatusCode_gt: float64 + + """""" + httpStatusCode_in: [float64!] + + """""" + httpStatusCode_leq: float64 + + """""" + httpStatusCode_lt: float64 + + """""" + httpStatusCode_neq: float64 + + """""" + httpStatusCode_notin: [float64!] + + """""" + isIsolated: uint16 + + """""" + isIsolated_geq: uint16 + + """""" + isIsolated_gt: uint16 + + """""" + isIsolated_in: [uint16!] + + """""" + isIsolated_leq: uint16 + + """""" + isIsolated_lt: uint16 + + """""" + isIsolated_neq: uint16 + + """""" + isIsolated_notin: [uint16!] + + """""" + privateAppAUD: string + + """""" + privateAppAUD_geq: string + + """""" + privateAppAUD_gt: string + + """""" + privateAppAUD_in: [string!] + + """""" + privateAppAUD_leq: string + + """""" + privateAppAUD_like: string + + """""" + privateAppAUD_lt: string + + """""" + privateAppAUD_neq: string + + """""" + privateAppAUD_notin: [string!] + + """""" + privateAppAUD_notlike: string + + """""" + proxyEndpoint: string + + """""" + proxyEndpoint_geq: string + + """""" + proxyEndpoint_gt: string + + """""" + proxyEndpoint_in: [string!] + + """""" + proxyEndpoint_leq: string + + """""" + proxyEndpoint_like: string + + """""" + proxyEndpoint_lt: string + + """""" + proxyEndpoint_neq: string + + """""" + proxyEndpoint_notin: [string!] + + """""" + proxyEndpoint_notlike: string + + """""" + quarantined: uint8 + + """""" + quarantined_geq: uint8 + + """""" + quarantined_gt: uint8 + + """""" + quarantined_in: bytes + + """""" + quarantined_leq: uint8 + + """""" + quarantined_lt: uint8 + + """""" + quarantined_neq: uint8 + + """""" + quarantined_notin: bytes + + """""" + redirectTargetURI: string + + """""" + redirectTargetURI_geq: string + + """""" + redirectTargetURI_gt: string + + """""" + redirectTargetURI_in: [string!] + + """""" + redirectTargetURI_leq: string + + """""" + redirectTargetURI_like: string + + """""" + redirectTargetURI_lt: string + + """""" + redirectTargetURI_neq: string + + """""" + redirectTargetURI_notin: [string!] + + """""" + redirectTargetURI_notlike: string + + """""" + requestId: string + + """""" + requestId_geq: string + + """""" + requestId_gt: string + + """""" + requestId_in: [string!] + + """""" + requestId_leq: string + + """""" + requestId_like: string + + """""" + requestId_lt: string + + """""" + requestId_neq: string + + """""" + requestId_notin: [string!] + + """""" + requestId_notlike: string + + """""" + sourceInternalIp: string + + """""" + sourceInternalIp_geq: string + + """""" + sourceInternalIp_gt: string + + """""" + sourceInternalIp_in: [string!] + + """""" + sourceInternalIp_leq: string + + """""" + sourceInternalIp_like: string + + """""" + sourceInternalIp_lt: string + + """""" + sourceInternalIp_neq: string + + """""" + sourceInternalIp_notin: [string!] + + """""" + sourceInternalIp_notlike: string + + """""" + srcIpContinent: string + + """""" + srcIpContinent_geq: string + + """""" + srcIpContinent_gt: string + + """""" + srcIpContinent_in: [string!] + + """""" + srcIpContinent_leq: string + + """""" + srcIpContinent_like: string + + """""" + srcIpContinent_lt: string + + """""" + srcIpContinent_neq: string + + """""" + srcIpContinent_notin: [string!] + + """""" + srcIpContinent_notlike: string + + """""" + srcIpCountry: string + + """""" + srcIpCountry_geq: string + + """""" + srcIpCountry_gt: string + + """""" + srcIpCountry_in: [string!] + + """""" + srcIpCountry_leq: string + + """""" + srcIpCountry_like: string + + """""" + srcIpCountry_lt: string + + """""" + srcIpCountry_neq: string + + """""" + srcIpCountry_notin: [string!] + + """""" + srcIpCountry_notlike: string + + """""" + untrustedCertificateAction: string + + """""" + untrustedCertificateAction_geq: string + + """""" + untrustedCertificateAction_gt: string + + """""" + untrustedCertificateAction_in: [string!] + + """""" + untrustedCertificateAction_leq: string + + """""" + untrustedCertificateAction_like: string + + """""" + untrustedCertificateAction_lt: string + + """""" + untrustedCertificateAction_neq: string + + """""" + untrustedCertificateAction_notin: [string!] + + """""" + untrustedCertificateAction_notlike: string + + """""" + url: string + + """""" + url_geq: string + + """""" + url_gt: string + + """""" + url_in: [string!] + + """""" + url_leq: string + + """""" + url_like: string + + """""" + url_lt: string + + """""" + url_neq: string + + """""" + url_notin: [string!] + + """""" + url_notlike: string + + """""" + userId: string + + """""" + userId_geq: string + + """""" + userId_gt: string + + """""" + userId_in: [string!] + + """""" + userId_leq: string + + """""" + userId_like: string + + """""" + userId_lt: string + + """""" + userId_neq: string + + """""" + userId_notin: [string!] + + """""" + userId_notlike: string + + """""" + virtualNetworkId: string + + """""" + virtualNetworkId_geq: string + + """""" + virtualNetworkId_gt: string + + """""" + virtualNetworkId_in: [string!] + + """""" + virtualNetworkId_leq: string + + """""" + virtualNetworkId_like: string + + """""" + virtualNetworkId_lt: string + + """""" + virtualNetworkId_neq: string + + """""" + virtualNetworkId_notin: [string!] + + """""" + virtualNetworkId_notlike: string + + """""" + virtualNetworkName: string + + """""" + virtualNetworkName_geq: string + + """""" + virtualNetworkName_gt: string + + """""" + virtualNetworkName_in: [string!] + + """""" + virtualNetworkName_leq: string + + """""" + virtualNetworkName_like: string + + """""" + virtualNetworkName_lt: string + + """""" + virtualNetworkName_neq: string + + """""" + virtualNetworkName_notin: [string!] + + """""" + virtualNetworkName_notlike: string +} + +"""""" +enum AccountGatewayL7RequestsAdaptiveGroupsOrderBy { + """action ascending""" + action_ASC + + """action descending""" + action_DESC + + """applicationIds ascending""" + applicationIds_ASC + + """applicationIds descending""" + applicationIds_DESC + + """applicationNames ascending""" + applicationNames_ASC + + """applicationNames descending""" + applicationNames_DESC + + """categoryIds ascending""" + categoryIds_ASC + + """categoryIds descending""" + categoryIds_DESC + + """categoryNames ascending""" + categoryNames_ASC + + """categoryNames descending""" + categoryNames_DESC + + """coloCode ascending""" + coloCode_ASC + + """coloCode descending""" + coloCode_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """deviceId ascending""" + deviceId_ASC + + """deviceId descending""" + deviceId_DESC + + """dstIpContinent ascending""" + dstIpContinent_ASC + + """dstIpContinent descending""" + dstIpContinent_DESC + + """dstIpCountry ascending""" + dstIpCountry_ASC + + """dstIpCountry descending""" + dstIpCountry_DESC + + """email ascending""" + email_ASC + + """email descending""" + email_DESC + + """httpHost ascending""" + httpHost_ASC + + """httpHost descending""" + httpHost_DESC + + """httpStatusCode ascending""" + httpStatusCode_ASC + + """httpStatusCode descending""" + httpStatusCode_DESC + + """isIsolated ascending""" + isIsolated_ASC + + """isIsolated descending""" + isIsolated_DESC + + """privateAppAUD ascending""" + privateAppAUD_ASC + + """privateAppAUD descending""" + privateAppAUD_DESC + + """proxyEndpoint ascending""" + proxyEndpoint_ASC + + """proxyEndpoint descending""" + proxyEndpoint_DESC + + """quarantined ascending""" + quarantined_ASC + + """quarantined descending""" + quarantined_DESC + + """redirectTargetURI ascending""" + redirectTargetURI_ASC + + """redirectTargetURI descending""" + redirectTargetURI_DESC + + """requestId ascending""" + requestId_ASC + + """requestId descending""" + requestId_DESC + + """sourceInternalIp ascending""" + sourceInternalIp_ASC + + """sourceInternalIp descending""" + sourceInternalIp_DESC + + """srcIpContinent ascending""" + srcIpContinent_ASC + + """srcIpContinent descending""" + srcIpContinent_DESC + + """srcIpCountry ascending""" + srcIpCountry_ASC + + """srcIpCountry descending""" + srcIpCountry_DESC + + """untrustedCertificateAction ascending""" + untrustedCertificateAction_ASC + + """untrustedCertificateAction descending""" + untrustedCertificateAction_DESC + + """url ascending""" + url_ASC + + """url descending""" + url_DESC + + """userId ascending""" + userId_ASC + + """userId descending""" + userId_DESC + + """virtualNetworkId ascending""" + virtualNetworkId_ASC + + """virtualNetworkId descending""" + virtualNetworkId_DESC + + """virtualNetworkName ascending""" + virtualNetworkName_ASC + + """virtualNetworkName descending""" + virtualNetworkName_DESC +} + +""" +BETA - Aggregate counts of Gateway Resolver queries by category with adaptive sampling +""" +type AccountGatewayResolverByCategoryAdaptiveGroups { + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountGatewayResolverByCategoryAdaptiveGroupsConfidence! + + """The number of Gateway Resolver queries""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountGatewayResolverByCategoryAdaptiveGroupsDimensions +} + +"""""" +type AccountGatewayResolverByCategoryAdaptiveGroupsConfidence { + """The number of Gateway Resolver queries, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! +} + +"""""" +type AccountGatewayResolverByCategoryAdaptiveGroupsDimensions { + """ + List of IPs of the authoritative nameservers that provided the answers, if any + """ + authoritativeNameserverIps: [string!]! + + """ID of the category that was assigned to the domain""" + categoryId: uint16! + + """List of resolved intermediate cname domains""" + cnames: [string!]! + + """Address at which the custom resolver query was resolved at""" + customResolverAddress: string! + + """Whether the custom resolver response was cached or not""" + customResolverCacheStatus: uint8! + + "Response code recieved from the custom resolver 0 => unknown 27 => dnsFirewallSuccess 29 => dnsFirewallCustomerRatelimit 31 => dnsFirewallUpstreamFailure 32 => dnsFirewallUpstreamServfail\n" + customResolverResponseCode: float64! + + """The date and time the DNS query was resolved""" + datetime: Time! + + """The date and time the event occurred at the edge truncated to hours""" + datetimeHour: Time! + + """The date and time the event occurred at the edge truncated to minutes""" + datetimeMinute: Time! + + """The destination DoH subdomain the DNS query was made to""" + dohSubdomain: string! + + """The destination DoT subdomain the DNS query was made to""" + dotSubdomain: string! + + """List of returned Extended DNS Error Codes""" + edeErrors: [uint16!]! + + """ + The fallback strategy applied over the internal DNS response. Empty if no fallback strategy was applied + """ + internalDnsFallbackStrategy: string! + + """The return code sent back by the internal DNS service""" + internalDnsRCode: uint16! + + """ + The DNS internal view identifier that was sent to the internal DNS service + """ + internalDnsViewId: string! + + """The DNS zone identifier returned by the internal DNS service""" + internalDnsZoneId: string! + + """The uuid identifying the customer Location used when resolving""" + locationId: string! + + """ID of the application the domain belongs to""" + matchedApplicationId: uint16! + + """Name of the application the domain belongs to""" + matchedApplicationName: string! + + """ID of the policy/rule that was applied, if any""" + policyId: string! + + """Name of the policy that was applied, if any""" + policyName: string! + + """Continent code of each resolved IP, if any""" + resolvedIpContinents: [string!]! + + """Country code of each resolved IP, if any""" + resolvedIpCountries: [string!]! + + """List of resolved IPs in the response, if any""" + resolvedIps: [string!]! + + "Enum identifier for the decision made by gateway-resolver, one of: (0, unknown) (1, allowedByQueryName) (2, blockedByQueryName) (3, blockedByCategory) (4, allowedOnNoLocation) (5, allowedOnNoPolicyMatch) (6, blockedAlwaysCategory) (7, overrideForSafeSearch) (8, overrideApplied) (9, blockedRule) (10, allowedRule)\n" + resolverDecision: uint16! + + """ID of the resolver policy/rule that was applied, if any""" + resolverPolicyId: string! + + """Name of the resolver policy that was applied, if any""" + resolverPolicyName: string! + + """Resource records' classes""" + resourceRecordClasses: [string!]! + + """Resource records' names""" + resourceRecordNames: [string!]! + + """Resource records' rdata values""" + resourceRecordRDatas: [string!]! + + """Resource records' TTL values""" + resourceRecordTTLs: [uint32!]! + + """Resource records' types""" + resourceRecordTypes: [string!]! + + """Continent code of the source IP address making the DNS query""" + srcIpContinent: string! + + """Country code of the source IP address making the DNS query""" + srcIpCountry: string! +} + +"""""" +input AccountGatewayResolverByCategoryAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountGatewayResolverByCategoryAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountGatewayResolverByCategoryAdaptiveGroupsFilter_InputObject!] + + """""" + authoritativeNameserverIps_has: string + + """""" + authoritativeNameserverIps_hasall: [string!] + + """""" + authoritativeNameserverIps_hasany: [string!] + + """""" + authoritativeNameserverIps_isempty: bool + + """""" + authoritativeNameserverIps_nothas: string + + """""" + categoryId: uint16 + + """""" + categoryId_geq: uint16 + + """""" + categoryId_gt: uint16 + + """""" + categoryId_in: [uint16!] + + """""" + categoryId_leq: uint16 + + """""" + categoryId_lt: uint16 + + """""" + categoryId_neq: uint16 + + """""" + categoryId_notin: [uint16!] + + """""" + cnames_has: string + + """""" + cnames_hasall: [string!] + + """""" + cnames_hasany: [string!] + + """""" + cnames_isempty: bool + + """""" + cnames_nothas: string + + """""" + customResolverAddress: string + + """""" + customResolverAddress_geq: string + + """""" + customResolverAddress_gt: string + + """""" + customResolverAddress_in: [string!] + + """""" + customResolverAddress_leq: string + + """""" + customResolverAddress_like: string + + """""" + customResolverAddress_lt: string + + """""" + customResolverAddress_neq: string + + """""" + customResolverAddress_notin: [string!] + + """""" + customResolverAddress_notlike: string + + """""" + customResolverCacheStatus: uint8 + + """""" + customResolverCacheStatus_geq: uint8 + + """""" + customResolverCacheStatus_gt: uint8 + + """""" + customResolverCacheStatus_in: bytes + + """""" + customResolverCacheStatus_leq: uint8 + + """""" + customResolverCacheStatus_lt: uint8 + + """""" + customResolverCacheStatus_neq: uint8 + + """""" + customResolverCacheStatus_notin: bytes + + """""" + customResolverResponseCode: float64 + + """""" + customResolverResponseCode_geq: float64 + + """""" + customResolverResponseCode_gt: float64 + + """""" + customResolverResponseCode_in: [float64!] + + """""" + customResolverResponseCode_leq: float64 + + """""" + customResolverResponseCode_lt: float64 + + """""" + customResolverResponseCode_neq: float64 + + """""" + customResolverResponseCode_notin: [float64!] + + """""" + datetime: Time + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + dohSubdomain: string + + """""" + dohSubdomain_geq: string + + """""" + dohSubdomain_gt: string + + """""" + dohSubdomain_in: [string!] + + """""" + dohSubdomain_leq: string + + """""" + dohSubdomain_like: string + + """""" + dohSubdomain_lt: string + + """""" + dohSubdomain_neq: string + + """""" + dohSubdomain_notin: [string!] + + """""" + dohSubdomain_notlike: string + + """""" + dotSubdomain: string + + """""" + dotSubdomain_geq: string + + """""" + dotSubdomain_gt: string + + """""" + dotSubdomain_in: [string!] + + """""" + dotSubdomain_leq: string + + """""" + dotSubdomain_like: string + + """""" + dotSubdomain_lt: string + + """""" + dotSubdomain_neq: string + + """""" + dotSubdomain_notin: [string!] + + """""" + dotSubdomain_notlike: string + + """""" + edeErrors_has: uint16 + + """""" + edeErrors_hasall: [uint16!] + + """""" + edeErrors_hasany: [uint16!] + + """""" + edeErrors_isempty: bool + + """""" + edeErrors_nothas: uint16 + + """""" + internalDnsFallbackStrategy: string + + """""" + internalDnsFallbackStrategy_geq: string + + """""" + internalDnsFallbackStrategy_gt: string + + """""" + internalDnsFallbackStrategy_in: [string!] + + """""" + internalDnsFallbackStrategy_leq: string + + """""" + internalDnsFallbackStrategy_like: string + + """""" + internalDnsFallbackStrategy_lt: string + + """""" + internalDnsFallbackStrategy_neq: string + + """""" + internalDnsFallbackStrategy_notin: [string!] + + """""" + internalDnsFallbackStrategy_notlike: string + + """""" + internalDnsRCode: uint16 + + """""" + internalDnsRCode_geq: uint16 + + """""" + internalDnsRCode_gt: uint16 + + """""" + internalDnsRCode_in: [uint16!] + + """""" + internalDnsRCode_leq: uint16 + + """""" + internalDnsRCode_lt: uint16 + + """""" + internalDnsRCode_neq: uint16 + + """""" + internalDnsRCode_notin: [uint16!] + + """""" + internalDnsViewId: string + + """""" + internalDnsViewId_geq: string + + """""" + internalDnsViewId_gt: string + + """""" + internalDnsViewId_in: [string!] + + """""" + internalDnsViewId_leq: string + + """""" + internalDnsViewId_like: string + + """""" + internalDnsViewId_lt: string + + """""" + internalDnsViewId_neq: string + + """""" + internalDnsViewId_notin: [string!] + + """""" + internalDnsViewId_notlike: string + + """""" + internalDnsZoneId: string + + """""" + internalDnsZoneId_geq: string + + """""" + internalDnsZoneId_gt: string + + """""" + internalDnsZoneId_in: [string!] + + """""" + internalDnsZoneId_leq: string + + """""" + internalDnsZoneId_like: string + + """""" + internalDnsZoneId_lt: string + + """""" + internalDnsZoneId_neq: string + + """""" + internalDnsZoneId_notin: [string!] + + """""" + internalDnsZoneId_notlike: string + + """""" + locationId: string + + """""" + locationId_geq: string + + """""" + locationId_gt: string + + """""" + locationId_in: [string!] + + """""" + locationId_leq: string + + """""" + locationId_like: string + + """""" + locationId_lt: string + + """""" + locationId_neq: string + + """""" + locationId_notin: [string!] + + """""" + locationId_notlike: string + + """""" + matchedApplicationId: uint16 + + """""" + matchedApplicationId_geq: uint16 + + """""" + matchedApplicationId_gt: uint16 + + """""" + matchedApplicationId_in: [uint16!] + + """""" + matchedApplicationId_leq: uint16 + + """""" + matchedApplicationId_lt: uint16 + + """""" + matchedApplicationId_neq: uint16 + + """""" + matchedApplicationId_notin: [uint16!] + + """""" + matchedApplicationName: string + + """""" + matchedApplicationName_geq: string + + """""" + matchedApplicationName_gt: string + + """""" + matchedApplicationName_in: [string!] + + """""" + matchedApplicationName_leq: string + + """""" + matchedApplicationName_like: string + + """""" + matchedApplicationName_lt: string + + """""" + matchedApplicationName_neq: string + + """""" + matchedApplicationName_notin: [string!] + + """""" + matchedApplicationName_notlike: string + + """""" + policyId: string + + """""" + policyId_geq: string + + """""" + policyId_gt: string + + """""" + policyId_in: [string!] + + """""" + policyId_leq: string + + """""" + policyId_like: string + + """""" + policyId_lt: string + + """""" + policyId_neq: string + + """""" + policyId_notin: [string!] + + """""" + policyId_notlike: string + + """""" + policyName: string + + """""" + policyName_geq: string + + """""" + policyName_gt: string + + """""" + policyName_in: [string!] + + """""" + policyName_leq: string + + """""" + policyName_like: string + + """""" + policyName_lt: string + + """""" + policyName_neq: string + + """""" + policyName_notin: [string!] + + """""" + policyName_notlike: string + + """""" + resolvedIpContinents_has: string + + """""" + resolvedIpContinents_hasall: [string!] + + """""" + resolvedIpContinents_hasany: [string!] + + """""" + resolvedIpContinents_isempty: bool + + """""" + resolvedIpContinents_nothas: string + + """""" + resolvedIpCountries_has: string + + """""" + resolvedIpCountries_hasall: [string!] + + """""" + resolvedIpCountries_hasany: [string!] + + """""" + resolvedIpCountries_isempty: bool + + """""" + resolvedIpCountries_nothas: string + + """""" + resolvedIps_has: string + + """""" + resolvedIps_hasall: [string!] + + """""" + resolvedIps_hasany: [string!] + + """""" + resolvedIps_isempty: bool + + """""" + resolvedIps_nothas: string + + """""" + resolverDecision: uint16 + + """""" + resolverDecision_geq: uint16 + + """""" + resolverDecision_gt: uint16 + + """""" + resolverDecision_in: [uint16!] + + """""" + resolverDecision_leq: uint16 + + """""" + resolverDecision_lt: uint16 + + """""" + resolverDecision_neq: uint16 + + """""" + resolverDecision_notin: [uint16!] + + """""" + resolverPolicyId: string + + """""" + resolverPolicyId_geq: string + + """""" + resolverPolicyId_gt: string + + """""" + resolverPolicyId_in: [string!] + + """""" + resolverPolicyId_leq: string + + """""" + resolverPolicyId_like: string + + """""" + resolverPolicyId_lt: string + + """""" + resolverPolicyId_neq: string + + """""" + resolverPolicyId_notin: [string!] + + """""" + resolverPolicyId_notlike: string + + """""" + resolverPolicyName: string + + """""" + resolverPolicyName_geq: string + + """""" + resolverPolicyName_gt: string + + """""" + resolverPolicyName_in: [string!] + + """""" + resolverPolicyName_leq: string + + """""" + resolverPolicyName_like: string + + """""" + resolverPolicyName_lt: string + + """""" + resolverPolicyName_neq: string + + """""" + resolverPolicyName_notin: [string!] + + """""" + resolverPolicyName_notlike: string + + """""" + resourceRecordClasses_has: string + + """""" + resourceRecordClasses_hasall: [string!] + + """""" + resourceRecordClasses_hasany: [string!] + + """""" + resourceRecordClasses_isempty: bool + + """""" + resourceRecordClasses_nothas: string + + """""" + resourceRecordNames_has: string + + """""" + resourceRecordNames_hasall: [string!] + + """""" + resourceRecordNames_hasany: [string!] + + """""" + resourceRecordNames_isempty: bool + + """""" + resourceRecordNames_nothas: string + + """""" + resourceRecordRDatas_has: string + + """""" + resourceRecordRDatas_hasall: [string!] + + """""" + resourceRecordRDatas_hasany: [string!] + + """""" + resourceRecordRDatas_isempty: bool + + """""" + resourceRecordRDatas_nothas: string + + """""" + resourceRecordTTLs_has: uint32 + + """""" + resourceRecordTTLs_hasall: [uint32!] + + """""" + resourceRecordTTLs_hasany: [uint32!] + + """""" + resourceRecordTTLs_isempty: bool + + """""" + resourceRecordTTLs_nothas: uint32 + + """""" + resourceRecordTypes_has: string + + """""" + resourceRecordTypes_hasall: [string!] + + """""" + resourceRecordTypes_hasany: [string!] + + """""" + resourceRecordTypes_isempty: bool + + """""" + resourceRecordTypes_nothas: string + + """""" + srcIpContinent: string + + """""" + srcIpContinent_geq: string + + """""" + srcIpContinent_gt: string + + """""" + srcIpContinent_in: [string!] + + """""" + srcIpContinent_leq: string + + """""" + srcIpContinent_like: string + + """""" + srcIpContinent_lt: string + + """""" + srcIpContinent_neq: string + + """""" + srcIpContinent_notin: [string!] + + """""" + srcIpContinent_notlike: string + + """""" + srcIpCountry: string + + """""" + srcIpCountry_geq: string + + """""" + srcIpCountry_gt: string + + """""" + srcIpCountry_in: [string!] + + """""" + srcIpCountry_leq: string + + """""" + srcIpCountry_like: string + + """""" + srcIpCountry_lt: string + + """""" + srcIpCountry_neq: string + + """""" + srcIpCountry_notin: [string!] + + """""" + srcIpCountry_notlike: string +} + +"""""" +enum AccountGatewayResolverByCategoryAdaptiveGroupsOrderBy { + """authoritativeNameserverIps ascending""" + authoritativeNameserverIps_ASC + + """authoritativeNameserverIps descending""" + authoritativeNameserverIps_DESC + + """categoryId ascending""" + categoryId_ASC + + """categoryId descending""" + categoryId_DESC + + """cnames ascending""" + cnames_ASC + + """cnames descending""" + cnames_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """customResolverAddress ascending""" + customResolverAddress_ASC + + """customResolverAddress descending""" + customResolverAddress_DESC + + """customResolverCacheStatus ascending""" + customResolverCacheStatus_ASC + + """customResolverCacheStatus descending""" + customResolverCacheStatus_DESC + + """customResolverResponseCode ascending""" + customResolverResponseCode_ASC + + """customResolverResponseCode descending""" + customResolverResponseCode_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """dohSubdomain ascending""" + dohSubdomain_ASC + + """dohSubdomain descending""" + dohSubdomain_DESC + + """dotSubdomain ascending""" + dotSubdomain_ASC + + """dotSubdomain descending""" + dotSubdomain_DESC + + """edeErrors ascending""" + edeErrors_ASC + + """edeErrors descending""" + edeErrors_DESC + + """internalDnsFallbackStrategy ascending""" + internalDnsFallbackStrategy_ASC + + """internalDnsFallbackStrategy descending""" + internalDnsFallbackStrategy_DESC + + """internalDnsRCode ascending""" + internalDnsRCode_ASC + + """internalDnsRCode descending""" + internalDnsRCode_DESC + + """internalDnsViewId ascending""" + internalDnsViewId_ASC + + """internalDnsViewId descending""" + internalDnsViewId_DESC + + """internalDnsZoneId ascending""" + internalDnsZoneId_ASC + + """internalDnsZoneId descending""" + internalDnsZoneId_DESC + + """locationId ascending""" + locationId_ASC + + """locationId descending""" + locationId_DESC + + """matchedApplicationId ascending""" + matchedApplicationId_ASC + + """matchedApplicationId descending""" + matchedApplicationId_DESC + + """matchedApplicationName ascending""" + matchedApplicationName_ASC + + """matchedApplicationName descending""" + matchedApplicationName_DESC + + """policyId ascending""" + policyId_ASC + + """policyId descending""" + policyId_DESC + + """policyName ascending""" + policyName_ASC + + """policyName descending""" + policyName_DESC + + """resolvedIpContinents ascending""" + resolvedIpContinents_ASC + + """resolvedIpContinents descending""" + resolvedIpContinents_DESC + + """resolvedIpCountries ascending""" + resolvedIpCountries_ASC + + """resolvedIpCountries descending""" + resolvedIpCountries_DESC + + """resolvedIps ascending""" + resolvedIps_ASC + + """resolvedIps descending""" + resolvedIps_DESC + + """resolverDecision ascending""" + resolverDecision_ASC + + """resolverDecision descending""" + resolverDecision_DESC + + """resolverPolicyId ascending""" + resolverPolicyId_ASC + + """resolverPolicyId descending""" + resolverPolicyId_DESC + + """resolverPolicyName ascending""" + resolverPolicyName_ASC + + """resolverPolicyName descending""" + resolverPolicyName_DESC + + """resourceRecordClasses ascending""" + resourceRecordClasses_ASC + + """resourceRecordClasses descending""" + resourceRecordClasses_DESC + + """resourceRecordNames ascending""" + resourceRecordNames_ASC + + """resourceRecordNames descending""" + resourceRecordNames_DESC + + """resourceRecordRDatas ascending""" + resourceRecordRDatas_ASC + + """resourceRecordRDatas descending""" + resourceRecordRDatas_DESC + + """resourceRecordTTLs ascending""" + resourceRecordTTLs_ASC + + """resourceRecordTTLs descending""" + resourceRecordTTLs_DESC + + """resourceRecordTypes ascending""" + resourceRecordTypes_ASC + + """resourceRecordTypes descending""" + resourceRecordTypes_DESC + + """srcIpContinent ascending""" + srcIpContinent_ASC + + """srcIpContinent descending""" + srcIpContinent_DESC + + """srcIpCountry ascending""" + srcIpCountry_ASC + + """srcIpCountry descending""" + srcIpCountry_DESC +} + +"""Stats on dns custom resolvers""" +type AccountGatewayResolverByCustomResolverGroups { + """The average value for a metric""" + avg: AccountGatewayResolverByCustomResolverGroupsAvg + + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountGatewayResolverByCustomResolverGroupsConfidence! + + """The number of Gateway Resolver queries""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountGatewayResolverByCustomResolverGroupsDimensions + + """Maximum response time""" + max: AccountGatewayResolverByCustomResolverGroupsMax +} + +"""""" +type AccountGatewayResolverByCustomResolverGroupsAvg { + """Average latency""" + customResolverTimeInMs: uint64! + + """Average sample interval""" + sampleInterval: float64! +} + +"""""" +type AccountGatewayResolverByCustomResolverGroupsConfidence { + """The number of Gateway Resolver queries, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! +} + +"""""" +type AccountGatewayResolverByCustomResolverGroupsDimensions { + """whether the response was cached or not""" + cacheStatus: uint8! + + """address at which custom resolver query was resolved at""" + customResolverAddress: string! + + "Response code recieved from the custom resolver 0 => unknown 27 => dnsFirewallSuccess 29 => dnsFirewallCustomerRatelimit 31 => dnsFirewallUpstreamFailure 32 => dnsFirewallUpstreamServfail\n" + customResolverResponseCode: float64! + + """time took for custom resolver to respond""" + customResolverTimeInMs: float64! + + """The date and time the DNS query was resolved""" + datetime: Time! + + """The uuid identifying the customer Location used when resolving""" + locationId: string! + + """Name of the query, e.g. one.dash.cloudflare.com""" + queryName: string! + + "Enum identifier for the decision made by gateway-resolver, one of: (0, unknown) (1, allowedByQueryName) (2, blockedByQueryName) (3, blockedByCategory) (4, allowedOnNoLocation) (5, allowedOnNoPolicyMatch) (6, blockedAlwaysCategory) (7, overrideForSafeSearch) (8, overrideApplied) (9, blockedRule) (10, allowedRule)\n" + resolverDecision: uint16! +} + +"""""" +input AccountGatewayResolverByCustomResolverGroupsFilter_InputObject { + """""" + AND: [AccountGatewayResolverByCustomResolverGroupsFilter_InputObject!] + + """""" + OR: [AccountGatewayResolverByCustomResolverGroupsFilter_InputObject!] + + """""" + cacheStatus: uint8 + + """""" + cacheStatus_geq: uint8 + + """""" + cacheStatus_gt: uint8 + + """""" + cacheStatus_in: bytes + + """""" + cacheStatus_leq: uint8 + + """""" + cacheStatus_lt: uint8 + + """""" + cacheStatus_neq: uint8 + + """""" + cacheStatus_notin: bytes + + """""" + customResolverAddress: string + + """""" + customResolverAddress_geq: string + + """""" + customResolverAddress_gt: string + + """""" + customResolverAddress_in: [string!] + + """""" + customResolverAddress_leq: string + + """""" + customResolverAddress_like: string + + """""" + customResolverAddress_lt: string + + """""" + customResolverAddress_neq: string + + """""" + customResolverAddress_notin: [string!] + + """""" + customResolverAddress_notlike: string + + """""" + customResolverResponseCode: float64 + + """""" + customResolverResponseCode_geq: float64 + + """""" + customResolverResponseCode_gt: float64 + + """""" + customResolverResponseCode_in: [float64!] + + """""" + customResolverResponseCode_leq: float64 + + """""" + customResolverResponseCode_lt: float64 + + """""" + customResolverResponseCode_neq: float64 + + """""" + customResolverResponseCode_notin: [float64!] + + """""" + customResolverTimeInMs: float64 + + """""" + customResolverTimeInMs_geq: float64 + + """""" + customResolverTimeInMs_gt: float64 + + """""" + customResolverTimeInMs_in: [float64!] + + """""" + customResolverTimeInMs_leq: float64 + + """""" + customResolverTimeInMs_lt: float64 + + """""" + customResolverTimeInMs_neq: float64 + + """""" + customResolverTimeInMs_notin: [float64!] + + """""" + datetime: Time + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + locationId: string + + """""" + locationId_geq: string + + """""" + locationId_gt: string + + """""" + locationId_in: [string!] + + """""" + locationId_leq: string + + """""" + locationId_like: string + + """""" + locationId_lt: string + + """""" + locationId_neq: string + + """""" + locationId_notin: [string!] + + """""" + locationId_notlike: string + + """""" + queryName: string + + """""" + queryName_geq: string + + """""" + queryName_gt: string + + """""" + queryName_in: [string!] + + """""" + queryName_leq: string + + """""" + queryName_like: string + + """""" + queryName_lt: string + + """""" + queryName_neq: string + + """""" + queryName_notin: [string!] + + """""" + queryName_notlike: string + + """""" + resolverDecision: uint16 + + """""" + resolverDecision_geq: uint16 + + """""" + resolverDecision_gt: uint16 + + """""" + resolverDecision_in: [uint16!] + + """""" + resolverDecision_leq: uint16 + + """""" + resolverDecision_lt: uint16 + + """""" + resolverDecision_neq: uint16 + + """""" + resolverDecision_notin: [uint16!] +} + +"""""" +type AccountGatewayResolverByCustomResolverGroupsMax { + """Maximum response time""" + customResolverTimeInMs: float64! +} + +"""""" +enum AccountGatewayResolverByCustomResolverGroupsOrderBy { + """avg(customResolverTimeInMs) ascending""" + avg_customResolverTimeInMs_ASC + + """avg(customResolverTimeInMs) descending""" + avg_customResolverTimeInMs_DESC + + """avg(sampleInterval) ascending""" + avg_sampleInterval_ASC + + """avg(sampleInterval) descending""" + avg_sampleInterval_DESC + + """cacheStatus ascending""" + cacheStatus_ASC + + """cacheStatus descending""" + cacheStatus_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """customResolverAddress ascending""" + customResolverAddress_ASC + + """customResolverAddress descending""" + customResolverAddress_DESC + + """customResolverResponseCode ascending""" + customResolverResponseCode_ASC + + """customResolverResponseCode descending""" + customResolverResponseCode_DESC + + """customResolverTimeInMs ascending""" + customResolverTimeInMs_ASC + + """customResolverTimeInMs descending""" + customResolverTimeInMs_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """locationId ascending""" + locationId_ASC + + """locationId descending""" + locationId_DESC + + """max(customResolverTimeInMs) ascending""" + max_customResolverTimeInMs_ASC + + """max(customResolverTimeInMs) descending""" + max_customResolverTimeInMs_DESC + + """queryName ascending""" + queryName_ASC + + """queryName descending""" + queryName_DESC + + """resolverDecision ascending""" + resolverDecision_ASC + + """resolverDecision descending""" + resolverDecision_DESC +} + +"""Total time spent on executing firewall rules at the edge""" +type AccountGatewayResolverByRuleExecutionPerformanceAdaptiveGroups { + """The average value for a metric per dimension""" + avg: AccountGatewayResolverByRuleExecutionPerformanceAdaptiveGroupsAvg + + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountGatewayResolverByRuleExecutionPerformanceAdaptiveGroupsConfidence! + + """The number of Gateway Resolver queries""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountGatewayResolverByRuleExecutionPerformanceAdaptiveGroupsDimensions + + """Maximum execution time""" + max: AccountGatewayResolverByRuleExecutionPerformanceAdaptiveGroupsMax + + """Quantiles of a rule execution performance""" + quantiles: AccountGatewayResolverByRuleExecutionPerformanceAdaptiveGroupsQuantiles +} + +"""""" +type AccountGatewayResolverByRuleExecutionPerformanceAdaptiveGroupsAvg { + """Average sample interval""" + sampleInterval: float64! +} + +"""""" +type AccountGatewayResolverByRuleExecutionPerformanceAdaptiveGroupsConfidence { + """The number of Gateway Resolver queries, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! +} + +"""""" +type AccountGatewayResolverByRuleExecutionPerformanceAdaptiveGroupsDimensions { + """Request timestamp""" + datetime: Time! + + """Request timestamp month""" + datetimeMonth: Time! +} + +"""""" +input AccountGatewayResolverByRuleExecutionPerformanceAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountGatewayResolverByRuleExecutionPerformanceAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountGatewayResolverByRuleExecutionPerformanceAdaptiveGroupsFilter_InputObject!] + + """""" + datetime: Time + + """""" + datetimeMonth: Time + + """""" + datetimeMonth_geq: Time + + """""" + datetimeMonth_gt: Time + + """""" + datetimeMonth_in: [Time!] + + """""" + datetimeMonth_leq: Time + + """""" + datetimeMonth_lt: Time + + """""" + datetimeMonth_neq: Time + + """""" + datetimeMonth_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] +} + +"""""" +type AccountGatewayResolverByRuleExecutionPerformanceAdaptiveGroupsMax { + """Maximum execution time""" + executionTime: float64! +} + +"""""" +enum AccountGatewayResolverByRuleExecutionPerformanceAdaptiveGroupsOrderBy { + """avg(sampleInterval) ascending""" + avg_sampleInterval_ASC + + """avg(sampleInterval) descending""" + avg_sampleInterval_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """datetimeMonth ascending""" + datetimeMonth_ASC + + """datetimeMonth descending""" + datetimeMonth_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """max(executionTime) ascending""" + max_executionTime_ASC + + """max(executionTime) descending""" + max_executionTime_DESC + + """quantiles(executionTimeMsP25) ascending""" + quantiles_executionTimeMsP25_ASC + + """quantiles(executionTimeMsP25) descending""" + quantiles_executionTimeMsP25_DESC + + """quantiles(executionTimeMsP50) ascending""" + quantiles_executionTimeMsP50_ASC + + """quantiles(executionTimeMsP50) descending""" + quantiles_executionTimeMsP50_DESC + + """quantiles(executionTimeMsP75) ascending""" + quantiles_executionTimeMsP75_ASC + + """quantiles(executionTimeMsP75) descending""" + quantiles_executionTimeMsP75_DESC + + """quantiles(executionTimeMsP90) ascending""" + quantiles_executionTimeMsP90_ASC + + """quantiles(executionTimeMsP90) descending""" + quantiles_executionTimeMsP90_DESC + + """quantiles(executionTimeMsP95) ascending""" + quantiles_executionTimeMsP95_ASC + + """quantiles(executionTimeMsP95) descending""" + quantiles_executionTimeMsP95_DESC + + """quantiles(executionTimeMsP98) ascending""" + quantiles_executionTimeMsP98_ASC + + """quantiles(executionTimeMsP98) descending""" + quantiles_executionTimeMsP98_DESC + + """quantiles(executionTimeMsP99) ascending""" + quantiles_executionTimeMsP99_ASC + + """quantiles(executionTimeMsP99) descending""" + quantiles_executionTimeMsP99_DESC +} + +"""""" +type AccountGatewayResolverByRuleExecutionPerformanceAdaptiveGroupsQuantiles { + """Execution time performance of 25th percentile in milliseconds""" + executionTimeMsP25: float64! + + """Execution time performance of 50th percentile in milliseconds""" + executionTimeMsP50: float64! + + """Execution time performance of 75th percentile in milliseconds""" + executionTimeMsP75: float64! + + """Execution time performance of 90th percentile in milliseconds""" + executionTimeMsP90: float64! + + """Execution time performance of 95th percentile in milliseconds""" + executionTimeMsP95: float64! + + """Execution time performance of 98th percentile in milliseconds""" + executionTimeMsP98: float64! + + """Execution time performance of 99th percentile in milliseconds""" + executionTimeMsP99: float64! +} + +""" +BETA - Aggregate counts of Gateway Resolver queries with adaptive sampling +""" +type AccountGatewayResolverQueriesAdaptiveGroups { + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountGatewayResolverQueriesAdaptiveGroupsConfidence! + + """The number of Gateway Resolver queries""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountGatewayResolverQueriesAdaptiveGroupsDimensions +} + +"""""" +type AccountGatewayResolverQueriesAdaptiveGroupsConfidence { + """The number of Gateway Resolver queries, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! +} + +"""""" +type AccountGatewayResolverQueriesAdaptiveGroupsDimensions { + """ + List of IPs of the authoritative nameservers that provided the answers, if any + """ + authoritativeNameserverIps: [string!]! + + """Json array of categories for this query""" + categoryIds: string! + + """List of matching categories names for this query""" + categoryNames: [string!]! + + """List of resolved intermediate cname domains""" + cnames: [string!]! + + """Address at which the custom resolver query was resolved at""" + customResolverAddress: string! + + """Whether the custom resolver response was cached or not""" + customResolverCacheStatus: uint8! + + "Response code recieved from the custom resolver 0 => unknown 27 => dnsFirewallSuccess 29 => dnsFirewallCustomerRatelimit 31 => dnsFirewallUpstreamFailure 32 => dnsFirewallUpstreamServfail\n" + customResolverResponseCode: float64! + + """The date and time the DNS query was resolved""" + datetime: Time! + + """The date and time the event occurred at the edge truncated to hours""" + datetimeHour: Time! + + """The date and time the event occurred at the edge truncated to minutes""" + datetimeMinute: Time! + + """The destination DoH subdomain the DNS query was made to""" + dohSubdomain: string! + + """The destination DoT subdomain the DNS query was made to""" + dotSubdomain: string! + + """List of returned Extended DNS Error Codes""" + edeErrors: [uint16!]! + + """ + The fallback strategy applied over the internal DNS response. Empty if no fallback strategy was applied + """ + internalDnsFallbackStrategy: string! + + """The return code sent back by the internal DNS service""" + internalDnsRCode: uint16! + + """ + The DNS internal view identifier that was sent to the internal DNS service + """ + internalDnsViewId: string! + + """The DNS zone identifier returned by the internal DNS service""" + internalDnsZoneId: string! + + """The uuid identifying the customer Location used when resolving""" + locationId: string! + + """The name identifying the customer Location used when resolving""" + locationName: string! + + """ID of the application the domain belongs to""" + matchedApplicationId: uint16! + + """Name of the application the domain belongs to""" + matchedApplicationName: string! + + """Json array of indicator feed IDs for this query that matched rule""" + matchedIndicatorFeedIds: string! + + """List of indicator feed names for this query""" + matchedIndicatorFeedNames: [string!]! + + """ID of the policy/rule that was applied, if any""" + policyId: string! + + """Name of the policy that was applied, if any""" + policyName: string! + + """Name of the query, e.g. one.dash.cloudflare.com""" + queryName: string! + + """Name of the query in reverse order, e.g. com.cloudflare.dash.one""" + queryNameReversed: string! + + """Continent code of each resolved IP, if any""" + resolvedIpContinents: [string!]! + + """Country code of each resolved IP, if any""" + resolvedIpCountries: [string!]! + + """List of resolved IPs in the response, if any""" + resolvedIps: [string!]! + + "Enum identifier for the decision made by gateway-resolver, one of: (0, unknown) (1, allowedByQueryName) (2, blockedByQueryName) (3, blockedByCategory) (4, allowedOnNoLocation) (5, allowedOnNoPolicyMatch) (6, blockedAlwaysCategory) (7, overrideForSafeSearch) (8, overrideApplied) (9, blockedRule) (10, allowedRule)\n" + resolverDecision: uint16! + + """ID of the resolver policy/rule that was applied, if any""" + resolverPolicyId: string! + + """Name of the resolver policy that was applied, if any""" + resolverPolicyName: string! + + """Resource records' classes""" + resourceRecordClasses: [string!]! + + """Resource records' names""" + resourceRecordNames: [string!]! + + """Resource records' rdata values""" + resourceRecordRDatas: [string!]! + + """Resource records' TTL values""" + resourceRecordTTLs: [uint32!]! + + """Resource records' types""" + resourceRecordTypes: [string!]! + + """Json object of schedule releated information""" + scheduleInfo: string! + + """Continent code of the source IP address making the DNS query""" + srcIpContinent: string! + + """Country code of the source IP address making the DNS query""" + srcIpCountry: string! +} + +"""""" +input AccountGatewayResolverQueriesAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountGatewayResolverQueriesAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountGatewayResolverQueriesAdaptiveGroupsFilter_InputObject!] + + """""" + authoritativeNameserverIps_has: string + + """""" + authoritativeNameserverIps_hasall: [string!] + + """""" + authoritativeNameserverIps_hasany: [string!] + + """""" + authoritativeNameserverIps_isempty: bool + + """""" + authoritativeNameserverIps_nothas: string + + """""" + categoryIds: string + + """""" + categoryIds_geq: string + + """""" + categoryIds_gt: string + + """""" + categoryIds_in: [string!] + + """""" + categoryIds_leq: string + + """""" + categoryIds_like: string + + """""" + categoryIds_lt: string + + """""" + categoryIds_neq: string + + """""" + categoryIds_notin: [string!] + + """""" + categoryIds_notlike: string + + """""" + categoryNames_has: string + + """""" + categoryNames_hasall: [string!] + + """""" + categoryNames_hasany: [string!] + + """""" + categoryNames_isempty: bool + + """""" + categoryNames_nothas: string + + """""" + cnames_has: string + + """""" + cnames_hasall: [string!] + + """""" + cnames_hasany: [string!] + + """""" + cnames_isempty: bool + + """""" + cnames_nothas: string + + """""" + customResolverAddress: string + + """""" + customResolverAddress_geq: string + + """""" + customResolverAddress_gt: string + + """""" + customResolverAddress_in: [string!] + + """""" + customResolverAddress_leq: string + + """""" + customResolverAddress_like: string + + """""" + customResolverAddress_lt: string + + """""" + customResolverAddress_neq: string + + """""" + customResolverAddress_notin: [string!] + + """""" + customResolverAddress_notlike: string + + """""" + customResolverCacheStatus: uint8 + + """""" + customResolverCacheStatus_geq: uint8 + + """""" + customResolverCacheStatus_gt: uint8 + + """""" + customResolverCacheStatus_in: bytes + + """""" + customResolverCacheStatus_leq: uint8 + + """""" + customResolverCacheStatus_lt: uint8 + + """""" + customResolverCacheStatus_neq: uint8 + + """""" + customResolverCacheStatus_notin: bytes + + """""" + customResolverResponseCode: float64 + + """""" + customResolverResponseCode_geq: float64 + + """""" + customResolverResponseCode_gt: float64 + + """""" + customResolverResponseCode_in: [float64!] + + """""" + customResolverResponseCode_leq: float64 + + """""" + customResolverResponseCode_lt: float64 + + """""" + customResolverResponseCode_neq: float64 + + """""" + customResolverResponseCode_notin: [float64!] + + """""" + datetime: Time + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + dohSubdomain: string + + """""" + dohSubdomain_geq: string + + """""" + dohSubdomain_gt: string + + """""" + dohSubdomain_in: [string!] + + """""" + dohSubdomain_leq: string + + """""" + dohSubdomain_like: string + + """""" + dohSubdomain_lt: string + + """""" + dohSubdomain_neq: string + + """""" + dohSubdomain_notin: [string!] + + """""" + dohSubdomain_notlike: string + + """""" + dotSubdomain: string + + """""" + dotSubdomain_geq: string + + """""" + dotSubdomain_gt: string + + """""" + dotSubdomain_in: [string!] + + """""" + dotSubdomain_leq: string + + """""" + dotSubdomain_like: string + + """""" + dotSubdomain_lt: string + + """""" + dotSubdomain_neq: string + + """""" + dotSubdomain_notin: [string!] + + """""" + dotSubdomain_notlike: string + + """""" + edeErrors_has: uint16 + + """""" + edeErrors_hasall: [uint16!] + + """""" + edeErrors_hasany: [uint16!] + + """""" + edeErrors_isempty: bool + + """""" + edeErrors_nothas: uint16 + + """""" + internalDnsFallbackStrategy: string + + """""" + internalDnsFallbackStrategy_geq: string + + """""" + internalDnsFallbackStrategy_gt: string + + """""" + internalDnsFallbackStrategy_in: [string!] + + """""" + internalDnsFallbackStrategy_leq: string + + """""" + internalDnsFallbackStrategy_like: string + + """""" + internalDnsFallbackStrategy_lt: string + + """""" + internalDnsFallbackStrategy_neq: string + + """""" + internalDnsFallbackStrategy_notin: [string!] + + """""" + internalDnsFallbackStrategy_notlike: string + + """""" + internalDnsRCode: uint16 + + """""" + internalDnsRCode_geq: uint16 + + """""" + internalDnsRCode_gt: uint16 + + """""" + internalDnsRCode_in: [uint16!] + + """""" + internalDnsRCode_leq: uint16 + + """""" + internalDnsRCode_lt: uint16 + + """""" + internalDnsRCode_neq: uint16 + + """""" + internalDnsRCode_notin: [uint16!] + + """""" + internalDnsViewId: string + + """""" + internalDnsViewId_geq: string + + """""" + internalDnsViewId_gt: string + + """""" + internalDnsViewId_in: [string!] + + """""" + internalDnsViewId_leq: string + + """""" + internalDnsViewId_like: string + + """""" + internalDnsViewId_lt: string + + """""" + internalDnsViewId_neq: string + + """""" + internalDnsViewId_notin: [string!] + + """""" + internalDnsViewId_notlike: string + + """""" + internalDnsZoneId: string + + """""" + internalDnsZoneId_geq: string + + """""" + internalDnsZoneId_gt: string + + """""" + internalDnsZoneId_in: [string!] + + """""" + internalDnsZoneId_leq: string + + """""" + internalDnsZoneId_like: string + + """""" + internalDnsZoneId_lt: string + + """""" + internalDnsZoneId_neq: string + + """""" + internalDnsZoneId_notin: [string!] + + """""" + internalDnsZoneId_notlike: string + + """""" + locationId: string + + """""" + locationId_geq: string + + """""" + locationId_gt: string + + """""" + locationId_in: [string!] + + """""" + locationId_leq: string + + """""" + locationId_like: string + + """""" + locationId_lt: string + + """""" + locationId_neq: string + + """""" + locationId_notin: [string!] + + """""" + locationId_notlike: string + + """""" + locationName: string + + """""" + locationName_geq: string + + """""" + locationName_gt: string + + """""" + locationName_in: [string!] + + """""" + locationName_leq: string + + """""" + locationName_like: string + + """""" + locationName_lt: string + + """""" + locationName_neq: string + + """""" + locationName_notin: [string!] + + """""" + locationName_notlike: string + + """""" + matchedApplicationId: uint16 + + """""" + matchedApplicationId_geq: uint16 + + """""" + matchedApplicationId_gt: uint16 + + """""" + matchedApplicationId_in: [uint16!] + + """""" + matchedApplicationId_leq: uint16 + + """""" + matchedApplicationId_lt: uint16 + + """""" + matchedApplicationId_neq: uint16 + + """""" + matchedApplicationId_notin: [uint16!] + + """""" + matchedApplicationName: string + + """""" + matchedApplicationName_geq: string + + """""" + matchedApplicationName_gt: string + + """""" + matchedApplicationName_in: [string!] + + """""" + matchedApplicationName_leq: string + + """""" + matchedApplicationName_like: string + + """""" + matchedApplicationName_lt: string + + """""" + matchedApplicationName_neq: string + + """""" + matchedApplicationName_notin: [string!] + + """""" + matchedApplicationName_notlike: string + + """""" + matchedIndicatorFeedIds: string + + """""" + matchedIndicatorFeedIds_geq: string + + """""" + matchedIndicatorFeedIds_gt: string + + """""" + matchedIndicatorFeedIds_in: [string!] + + """""" + matchedIndicatorFeedIds_leq: string + + """""" + matchedIndicatorFeedIds_like: string + + """""" + matchedIndicatorFeedIds_lt: string + + """""" + matchedIndicatorFeedIds_neq: string + + """""" + matchedIndicatorFeedIds_notin: [string!] + + """""" + matchedIndicatorFeedIds_notlike: string + + """""" + matchedIndicatorFeedNames_has: string + + """""" + matchedIndicatorFeedNames_hasall: [string!] + + """""" + matchedIndicatorFeedNames_hasany: [string!] + + """""" + matchedIndicatorFeedNames_isempty: bool + + """""" + matchedIndicatorFeedNames_nothas: string + + """""" + policyId: string + + """""" + policyId_geq: string + + """""" + policyId_gt: string + + """""" + policyId_in: [string!] + + """""" + policyId_leq: string + + """""" + policyId_like: string + + """""" + policyId_lt: string + + """""" + policyId_neq: string + + """""" + policyId_notin: [string!] + + """""" + policyId_notlike: string + + """""" + policyName: string + + """""" + policyName_geq: string + + """""" + policyName_gt: string + + """""" + policyName_in: [string!] + + """""" + policyName_leq: string + + """""" + policyName_like: string + + """""" + policyName_lt: string + + """""" + policyName_neq: string + + """""" + policyName_notin: [string!] + + """""" + policyName_notlike: string + + """""" + queryName: string + + """""" + queryNameReversed: string + + """""" + queryNameReversed_geq: string + + """""" + queryNameReversed_gt: string + + """""" + queryNameReversed_in: [string!] + + """""" + queryNameReversed_leq: string + + """""" + queryNameReversed_like: string + + """""" + queryNameReversed_lt: string + + """""" + queryNameReversed_neq: string + + """""" + queryNameReversed_notin: [string!] + + """""" + queryNameReversed_notlike: string + + """""" + queryName_geq: string + + """""" + queryName_gt: string + + """""" + queryName_in: [string!] + + """""" + queryName_leq: string + + """""" + queryName_like: string + + """""" + queryName_lt: string + + """""" + queryName_neq: string + + """""" + queryName_notin: [string!] + + """""" + queryName_notlike: string + + """""" + resolvedIpContinents_has: string + + """""" + resolvedIpContinents_hasall: [string!] + + """""" + resolvedIpContinents_hasany: [string!] + + """""" + resolvedIpContinents_isempty: bool + + """""" + resolvedIpContinents_nothas: string + + """""" + resolvedIpCountries_has: string + + """""" + resolvedIpCountries_hasall: [string!] + + """""" + resolvedIpCountries_hasany: [string!] + + """""" + resolvedIpCountries_isempty: bool + + """""" + resolvedIpCountries_nothas: string + + """""" + resolvedIps_has: string + + """""" + resolvedIps_hasall: [string!] + + """""" + resolvedIps_hasany: [string!] + + """""" + resolvedIps_isempty: bool + + """""" + resolvedIps_nothas: string + + """""" + resolverDecision: uint16 + + """""" + resolverDecision_geq: uint16 + + """""" + resolverDecision_gt: uint16 + + """""" + resolverDecision_in: [uint16!] + + """""" + resolverDecision_leq: uint16 + + """""" + resolverDecision_lt: uint16 + + """""" + resolverDecision_neq: uint16 + + """""" + resolverDecision_notin: [uint16!] + + """""" + resolverPolicyId: string + + """""" + resolverPolicyId_geq: string + + """""" + resolverPolicyId_gt: string + + """""" + resolverPolicyId_in: [string!] + + """""" + resolverPolicyId_leq: string + + """""" + resolverPolicyId_like: string + + """""" + resolverPolicyId_lt: string + + """""" + resolverPolicyId_neq: string + + """""" + resolverPolicyId_notin: [string!] + + """""" + resolverPolicyId_notlike: string + + """""" + resolverPolicyName: string + + """""" + resolverPolicyName_geq: string + + """""" + resolverPolicyName_gt: string + + """""" + resolverPolicyName_in: [string!] + + """""" + resolverPolicyName_leq: string + + """""" + resolverPolicyName_like: string + + """""" + resolverPolicyName_lt: string + + """""" + resolverPolicyName_neq: string + + """""" + resolverPolicyName_notin: [string!] + + """""" + resolverPolicyName_notlike: string + + """""" + resourceRecordClasses_has: string + + """""" + resourceRecordClasses_hasall: [string!] + + """""" + resourceRecordClasses_hasany: [string!] + + """""" + resourceRecordClasses_isempty: bool + + """""" + resourceRecordClasses_nothas: string + + """""" + resourceRecordNames_has: string + + """""" + resourceRecordNames_hasall: [string!] + + """""" + resourceRecordNames_hasany: [string!] + + """""" + resourceRecordNames_isempty: bool + + """""" + resourceRecordNames_nothas: string + + """""" + resourceRecordRDatas_has: string + + """""" + resourceRecordRDatas_hasall: [string!] + + """""" + resourceRecordRDatas_hasany: [string!] + + """""" + resourceRecordRDatas_isempty: bool + + """""" + resourceRecordRDatas_nothas: string + + """""" + resourceRecordTTLs_has: uint32 + + """""" + resourceRecordTTLs_hasall: [uint32!] + + """""" + resourceRecordTTLs_hasany: [uint32!] + + """""" + resourceRecordTTLs_isempty: bool + + """""" + resourceRecordTTLs_nothas: uint32 + + """""" + resourceRecordTypes_has: string + + """""" + resourceRecordTypes_hasall: [string!] + + """""" + resourceRecordTypes_hasany: [string!] + + """""" + resourceRecordTypes_isempty: bool + + """""" + resourceRecordTypes_nothas: string + + """""" + scheduleInfo: string + + """""" + scheduleInfo_geq: string + + """""" + scheduleInfo_gt: string + + """""" + scheduleInfo_in: [string!] + + """""" + scheduleInfo_leq: string + + """""" + scheduleInfo_like: string + + """""" + scheduleInfo_lt: string + + """""" + scheduleInfo_neq: string + + """""" + scheduleInfo_notin: [string!] + + """""" + scheduleInfo_notlike: string + + """""" + srcIpContinent: string + + """""" + srcIpContinent_geq: string + + """""" + srcIpContinent_gt: string + + """""" + srcIpContinent_in: [string!] + + """""" + srcIpContinent_leq: string + + """""" + srcIpContinent_like: string + + """""" + srcIpContinent_lt: string + + """""" + srcIpContinent_neq: string + + """""" + srcIpContinent_notin: [string!] + + """""" + srcIpContinent_notlike: string + + """""" + srcIpCountry: string + + """""" + srcIpCountry_geq: string + + """""" + srcIpCountry_gt: string + + """""" + srcIpCountry_in: [string!] + + """""" + srcIpCountry_leq: string + + """""" + srcIpCountry_like: string + + """""" + srcIpCountry_lt: string + + """""" + srcIpCountry_neq: string + + """""" + srcIpCountry_notin: [string!] + + """""" + srcIpCountry_notlike: string +} + +"""""" +enum AccountGatewayResolverQueriesAdaptiveGroupsOrderBy { + """authoritativeNameserverIps ascending""" + authoritativeNameserverIps_ASC + + """authoritativeNameserverIps descending""" + authoritativeNameserverIps_DESC + + """categoryIds ascending""" + categoryIds_ASC + + """categoryIds descending""" + categoryIds_DESC + + """categoryNames ascending""" + categoryNames_ASC + + """categoryNames descending""" + categoryNames_DESC + + """cnames ascending""" + cnames_ASC + + """cnames descending""" + cnames_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """customResolverAddress ascending""" + customResolverAddress_ASC + + """customResolverAddress descending""" + customResolverAddress_DESC + + """customResolverCacheStatus ascending""" + customResolverCacheStatus_ASC + + """customResolverCacheStatus descending""" + customResolverCacheStatus_DESC + + """customResolverResponseCode ascending""" + customResolverResponseCode_ASC + + """customResolverResponseCode descending""" + customResolverResponseCode_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """dohSubdomain ascending""" + dohSubdomain_ASC + + """dohSubdomain descending""" + dohSubdomain_DESC + + """dotSubdomain ascending""" + dotSubdomain_ASC + + """dotSubdomain descending""" + dotSubdomain_DESC + + """edeErrors ascending""" + edeErrors_ASC + + """edeErrors descending""" + edeErrors_DESC + + """internalDnsFallbackStrategy ascending""" + internalDnsFallbackStrategy_ASC + + """internalDnsFallbackStrategy descending""" + internalDnsFallbackStrategy_DESC + + """internalDnsRCode ascending""" + internalDnsRCode_ASC + + """internalDnsRCode descending""" + internalDnsRCode_DESC + + """internalDnsViewId ascending""" + internalDnsViewId_ASC + + """internalDnsViewId descending""" + internalDnsViewId_DESC + + """internalDnsZoneId ascending""" + internalDnsZoneId_ASC + + """internalDnsZoneId descending""" + internalDnsZoneId_DESC + + """locationId ascending""" + locationId_ASC + + """locationId descending""" + locationId_DESC + + """locationName ascending""" + locationName_ASC + + """locationName descending""" + locationName_DESC + + """matchedApplicationId ascending""" + matchedApplicationId_ASC + + """matchedApplicationId descending""" + matchedApplicationId_DESC + + """matchedApplicationName ascending""" + matchedApplicationName_ASC + + """matchedApplicationName descending""" + matchedApplicationName_DESC + + """matchedIndicatorFeedIds ascending""" + matchedIndicatorFeedIds_ASC + + """matchedIndicatorFeedIds descending""" + matchedIndicatorFeedIds_DESC + + """matchedIndicatorFeedNames ascending""" + matchedIndicatorFeedNames_ASC + + """matchedIndicatorFeedNames descending""" + matchedIndicatorFeedNames_DESC + + """policyId ascending""" + policyId_ASC + + """policyId descending""" + policyId_DESC + + """policyName ascending""" + policyName_ASC + + """policyName descending""" + policyName_DESC + + """queryNameReversed ascending""" + queryNameReversed_ASC + + """queryNameReversed descending""" + queryNameReversed_DESC + + """queryName ascending""" + queryName_ASC + + """queryName descending""" + queryName_DESC + + """resolvedIpContinents ascending""" + resolvedIpContinents_ASC + + """resolvedIpContinents descending""" + resolvedIpContinents_DESC + + """resolvedIpCountries ascending""" + resolvedIpCountries_ASC + + """resolvedIpCountries descending""" + resolvedIpCountries_DESC + + """resolvedIps ascending""" + resolvedIps_ASC + + """resolvedIps descending""" + resolvedIps_DESC + + """resolverDecision ascending""" + resolverDecision_ASC + + """resolverDecision descending""" + resolverDecision_DESC + + """resolverPolicyId ascending""" + resolverPolicyId_ASC + + """resolverPolicyId descending""" + resolverPolicyId_DESC + + """resolverPolicyName ascending""" + resolverPolicyName_ASC + + """resolverPolicyName descending""" + resolverPolicyName_DESC + + """resourceRecordClasses ascending""" + resourceRecordClasses_ASC + + """resourceRecordClasses descending""" + resourceRecordClasses_DESC + + """resourceRecordNames ascending""" + resourceRecordNames_ASC + + """resourceRecordNames descending""" + resourceRecordNames_DESC + + """resourceRecordRDatas ascending""" + resourceRecordRDatas_ASC + + """resourceRecordRDatas descending""" + resourceRecordRDatas_DESC + + """resourceRecordTTLs ascending""" + resourceRecordTTLs_ASC + + """resourceRecordTTLs descending""" + resourceRecordTTLs_DESC + + """resourceRecordTypes ascending""" + resourceRecordTypes_ASC + + """resourceRecordTypes descending""" + resourceRecordTypes_DESC + + """scheduleInfo ascending""" + scheduleInfo_ASC + + """scheduleInfo descending""" + scheduleInfo_DESC + + """srcIpContinent ascending""" + srcIpContinent_ASC + + """srcIpContinent descending""" + srcIpContinent_DESC + + """srcIpCountry ascending""" + srcIpCountry_ASC + + """srcIpCountry descending""" + srcIpCountry_DESC +} + +"""Daily rollups of request data""" +type AccountHttpRequests1dGroups { + """The average value for a metric per dimension""" + avg: AccountHttpRequests1dGroupsAvg + + """List of dimensions to group by""" + dimensions: AccountHttpRequests1dGroupsDimensions + + """The sum of values for a metric per dimension""" + sum: AccountHttpRequests1dGroupsSum + + """The number of unique values for a metric per dimension""" + uniq: AccountHttpRequests1dGroupsUniq +} + +"""""" +type AccountHttpRequests1dGroupsAvg { + """""" + bytes: float64! + + """""" + edgeRequestBytes: float64! + + """Average sample interval""" + sampleInterval: float64! +} + +"""""" +type AccountHttpRequests1dGroupsBrowserMapElem { + """Successful requests for HTML content""" + pageViews: uint64! + + """Browser type""" + uaBrowserFamily: string! +} + +"""""" +type AccountHttpRequests1dGroupsClientHTTPVersionMapElem { + """HTTP version""" + clientHTTPProtocol: string! + + """""" + requests: uint64! +} + +"""""" +type AccountHttpRequests1dGroupsClientSSLMapElem { + """Protocol version""" + clientSSLProtocol: string! + + """""" + requests: uint64! +} + +"""""" +type AccountHttpRequests1dGroupsContentTypeMapElem { + """Bytes returned to client""" + bytes: uint64! + + """Content type returned to client""" + edgeResponseContentTypeName: string! + + """""" + requests: uint64! +} + +"""""" +type AccountHttpRequests1dGroupsCountryMapElem { + """Bytes returned to client""" + bytes: uint64! + + """Country from which request originated""" + clientCountryName: string! + + """""" + requests: uint64! + + """Requests classified as threats""" + threats: uint64! @deprecated(reason: "Replaced by more granular information in firewallEventsAdaptive* nodes") +} + +"""""" +type AccountHttpRequests1dGroupsDimensions { + """Request date""" + date: Date! +} + +"""""" +input AccountHttpRequests1dGroupsFilter_InputObject { + """""" + AND: [AccountHttpRequests1dGroupsFilter_InputObject!] + + """""" + OR: [AccountHttpRequests1dGroupsFilter_InputObject!] + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] +} + +"""""" +type AccountHttpRequests1dGroupsIpClassMapElem { + """IP class""" + ipType: string! + + """""" + requests: uint64! +} + +"""""" +enum AccountHttpRequests1dGroupsOrderBy { + """avg(bytes) ascending""" + avg_bytes_ASC + + """avg(bytes) descending""" + avg_bytes_DESC + + """avg(edgeRequestBytes) ascending""" + avg_edgeRequestBytes_ASC + + """avg(edgeRequestBytes) descending""" + avg_edgeRequestBytes_DESC + + """avg(sampleInterval) ascending""" + avg_sampleInterval_ASC + + """avg(sampleInterval) descending""" + avg_sampleInterval_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """sum(bytes) ascending""" + sum_bytes_ASC + + """sum(bytes) descending""" + sum_bytes_DESC + + """sum(cachedBytes) ascending""" + sum_cachedBytes_ASC + + """sum(cachedBytes) descending""" + sum_cachedBytes_DESC + + """sum(cachedRequests) ascending""" + sum_cachedRequests_ASC + + """sum(cachedRequests) descending""" + sum_cachedRequests_DESC + + """sum(edgeRequestBytes) ascending""" + sum_edgeRequestBytes_ASC + + """sum(edgeRequestBytes) descending""" + sum_edgeRequestBytes_DESC + + """sum(encryptedBytes) ascending""" + sum_encryptedBytes_ASC + + """sum(encryptedBytes) descending""" + sum_encryptedBytes_DESC + + """sum(encryptedRequests) ascending""" + sum_encryptedRequests_ASC + + """sum(encryptedRequests) descending""" + sum_encryptedRequests_DESC + + """sum(pageViews) ascending""" + sum_pageViews_ASC + + """sum(pageViews) descending""" + sum_pageViews_DESC + + """sum(requests) ascending""" + sum_requests_ASC + + """sum(requests) descending""" + sum_requests_DESC + + """sum(threats) ascending""" + sum_threats_ASC + + """sum(threats) descending""" + sum_threats_DESC + + """uniq(uniques) ascending""" + uniq_uniques_ASC + + """uniq(uniques) descending""" + uniq_uniques_DESC +} + +"""""" +type AccountHttpRequests1dGroupsResponseStatusMapElem { + """HTTP response status code returned to client""" + edgeResponseStatus: uint64! + + """""" + requests: uint64! +} + +"""""" +type AccountHttpRequests1dGroupsSum { + """""" + browserMap: [AccountHttpRequests1dGroupsBrowserMapElem!]! + + """Bytes returned to client""" + bytes: uint64! + + """Bytes returned to client from cache""" + cachedBytes: uint64! + + """Requests served from cache""" + cachedRequests: uint64! + + """""" + clientHTTPVersionMap: [AccountHttpRequests1dGroupsClientHTTPVersionMapElem!]! + + """""" + clientSSLMap: [AccountHttpRequests1dGroupsClientSSLMapElem!]! + + """""" + contentTypeMap: [AccountHttpRequests1dGroupsContentTypeMapElem!]! + + """""" + countryMap: [AccountHttpRequests1dGroupsCountryMapElem!]! + + """Bytes sent from client""" + edgeRequestBytes: uint64! + + """Bytes returned to client using SSL/TLS protocol""" + encryptedBytes: uint64! + + """Requests served using SSL/TLS protocol""" + encryptedRequests: uint64! + + """""" + ipClassMap: [AccountHttpRequests1dGroupsIpClassMapElem!]! + + """Successful requests for HTML content""" + pageViews: uint64! + + """""" + requests: uint64! + + """""" + responseStatusMap: [AccountHttpRequests1dGroupsResponseStatusMapElem!]! + + """""" + threatPathingMap: [AccountHttpRequests1dGroupsThreatPathingMapElem!]! + + """Requests classified as threats""" + threats: uint64! @deprecated(reason: "Replaced by more granular information in firewallEventsAdaptive* nodes") +} + +"""""" +type AccountHttpRequests1dGroupsThreatPathingMapElem { + """""" + requests: uint64! + + """Threat type""" + threatPathingName: string! +} + +"""""" +type AccountHttpRequests1dGroupsUniq { + """A number of unique IPs""" + uniques: uint64! +} + +"""Hourly rollups of request data""" +type AccountHttpRequests1hGroups { + """The average value for a metric per dimension""" + avg: AccountHttpRequests1hGroupsAvg + + """List of dimensions to group by""" + dimensions: AccountHttpRequests1hGroupsDimensions + + """The sum of values for a metric per dimension""" + sum: AccountHttpRequests1hGroupsSum + + """The number of unique values for a metric per dimension""" + uniq: AccountHttpRequests1hGroupsUniq +} + +"""""" +type AccountHttpRequests1hGroupsAvg { + """""" + bytes: float64! + + """""" + edgeRequestBytes: float64! + + """Average sample interval""" + sampleInterval: float64! +} + +"""""" +type AccountHttpRequests1hGroupsBrowserMapElem { + """Successful requests for HTML content""" + pageViews: uint64! + + """Browser type""" + uaBrowserFamily: string! +} + +"""""" +type AccountHttpRequests1hGroupsClientHTTPVersionMapElem { + """HTTP version""" + clientHTTPProtocol: string! + + """""" + requests: uint64! +} + +"""""" +type AccountHttpRequests1hGroupsClientSSLMapElem { + """Protocol version""" + clientSSLProtocol: string! + + """""" + requests: uint64! +} + +"""""" +type AccountHttpRequests1hGroupsContentTypeMapElem { + """Bytes returned to client""" + bytes: uint64! + + """Content type returned to client""" + edgeResponseContentTypeName: string! + + """""" + requests: uint64! +} + +"""""" +type AccountHttpRequests1hGroupsCountryMapElem { + """Bytes returned to client""" + bytes: uint64! + + """Country from which request originated""" + clientCountryName: string! + + """""" + requests: uint64! + + """Requests classified as threats""" + threats: uint64! @deprecated(reason: "Replaced by more granular information in firewallEventsAdaptive* nodes") +} + +"""""" +type AccountHttpRequests1hGroupsDimensions { + """Request date""" + date: Date! + + """Request datetime truncated to the hour""" + datetime: Time! +} + +"""""" +input AccountHttpRequests1hGroupsFilter_InputObject { + """""" + AND: [AccountHttpRequests1hGroupsFilter_InputObject!] + + """""" + OR: [AccountHttpRequests1hGroupsFilter_InputObject!] + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] +} + +"""""" +type AccountHttpRequests1hGroupsIpClassMapElem { + """IP class""" + ipType: string! + + """""" + requests: uint64! +} + +"""""" +enum AccountHttpRequests1hGroupsOrderBy { + """avg(bytes) ascending""" + avg_bytes_ASC + + """avg(bytes) descending""" + avg_bytes_DESC + + """avg(edgeRequestBytes) ascending""" + avg_edgeRequestBytes_ASC + + """avg(edgeRequestBytes) descending""" + avg_edgeRequestBytes_DESC + + """avg(sampleInterval) ascending""" + avg_sampleInterval_ASC + + """avg(sampleInterval) descending""" + avg_sampleInterval_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """sum(bytes) ascending""" + sum_bytes_ASC + + """sum(bytes) descending""" + sum_bytes_DESC + + """sum(cachedBytes) ascending""" + sum_cachedBytes_ASC + + """sum(cachedBytes) descending""" + sum_cachedBytes_DESC + + """sum(cachedRequests) ascending""" + sum_cachedRequests_ASC + + """sum(cachedRequests) descending""" + sum_cachedRequests_DESC + + """sum(edgeRequestBytes) ascending""" + sum_edgeRequestBytes_ASC + + """sum(edgeRequestBytes) descending""" + sum_edgeRequestBytes_DESC + + """sum(encryptedBytes) ascending""" + sum_encryptedBytes_ASC + + """sum(encryptedBytes) descending""" + sum_encryptedBytes_DESC + + """sum(encryptedRequests) ascending""" + sum_encryptedRequests_ASC + + """sum(encryptedRequests) descending""" + sum_encryptedRequests_DESC + + """sum(pageViews) ascending""" + sum_pageViews_ASC + + """sum(pageViews) descending""" + sum_pageViews_DESC + + """sum(requests) ascending""" + sum_requests_ASC + + """sum(requests) descending""" + sum_requests_DESC + + """sum(threats) ascending""" + sum_threats_ASC + + """sum(threats) descending""" + sum_threats_DESC + + """uniq(uniques) ascending""" + uniq_uniques_ASC + + """uniq(uniques) descending""" + uniq_uniques_DESC +} + +"""""" +type AccountHttpRequests1hGroupsResponseStatusMapElem { + """HTTP response status code returned to client""" + edgeResponseStatus: uint64! + + """""" + requests: uint64! +} + +"""""" +type AccountHttpRequests1hGroupsSum { + """""" + browserMap: [AccountHttpRequests1hGroupsBrowserMapElem!]! + + """Bytes returned to client""" + bytes: uint64! + + """Bytes returned to client from cache""" + cachedBytes: uint64! + + """Requests served from cache""" + cachedRequests: uint64! + + """""" + clientHTTPVersionMap: [AccountHttpRequests1hGroupsClientHTTPVersionMapElem!]! + + """""" + clientSSLMap: [AccountHttpRequests1hGroupsClientSSLMapElem!]! + + """""" + contentTypeMap: [AccountHttpRequests1hGroupsContentTypeMapElem!]! + + """""" + countryMap: [AccountHttpRequests1hGroupsCountryMapElem!]! + + """Bytes sent from client""" + edgeRequestBytes: uint64! + + """Bytes returned to client using SSL/TLS protocol""" + encryptedBytes: uint64! + + """Requests served using SSL/TLS protocol""" + encryptedRequests: uint64! + + """""" + ipClassMap: [AccountHttpRequests1hGroupsIpClassMapElem!]! + + """Successful requests for HTML content""" + pageViews: uint64! + + """""" + requests: uint64! + + """""" + responseStatusMap: [AccountHttpRequests1hGroupsResponseStatusMapElem!]! + + """""" + threatPathingMap: [AccountHttpRequests1hGroupsThreatPathingMapElem!]! + + """Requests classified as threats""" + threats: uint64! @deprecated(reason: "Replaced by more granular information in firewallEventsAdaptive* nodes") +} + +"""""" +type AccountHttpRequests1hGroupsThreatPathingMapElem { + """""" + requests: uint64! + + """Threat type""" + threatPathingName: string! +} + +"""""" +type AccountHttpRequests1hGroupsUniq { + """A number of unique IPs""" + uniques: uint64! +} + +"""Minutely rollups of request data""" +type AccountHttpRequests1mGroups { + """The average value for a metric per dimension""" + avg: AccountHttpRequests1mGroupsAvg + + """List of dimensions to group by""" + dimensions: AccountHttpRequests1mGroupsDimensions + + """The sum of values for a metric per dimension""" + sum: AccountHttpRequests1mGroupsSum + + """The number of unique values for a metric per dimension""" + uniq: AccountHttpRequests1mGroupsUniq +} + +"""""" +type AccountHttpRequests1mGroupsAvg { + """""" + bytes: float64! + + """""" + edgeRequestBytes: float64! + + """Average sample interval""" + sampleInterval: float64! +} + +"""""" +type AccountHttpRequests1mGroupsBrowserMapElem { + """Successful requests for HTML content""" + pageViews: uint64! + + """Browser type""" + uaBrowserFamily: string! +} + +"""""" +type AccountHttpRequests1mGroupsClientHTTPVersionMapElem { + """HTTP version""" + clientHTTPProtocol: string! + + """""" + requests: uint64! +} + +"""""" +type AccountHttpRequests1mGroupsClientSSLMapElem { + """Protocol version""" + clientSSLProtocol: string! + + """""" + requests: uint64! +} + +"""""" +type AccountHttpRequests1mGroupsContentTypeMapElem { + """Bytes returned to client""" + bytes: uint64! + + """Content type returned to client""" + edgeResponseContentTypeName: string! + + """""" + requests: uint64! +} + +"""""" +type AccountHttpRequests1mGroupsCountryMapElem { + """Bytes returned to client""" + bytes: uint64! + + """Country from which request originated""" + clientCountryName: string! + + """""" + requests: uint64! + + """Requests classified as threats""" + threats: uint64! @deprecated(reason: "Replaced by more granular information in firewallEventsAdaptive* nodes") +} + +"""""" +type AccountHttpRequests1mGroupsDimensions { + """Request date""" + date: Date! + + """Request datetime, truncated to the minute""" + datetime: Time! + + """Request datetime truncated to the day""" + datetimeDay: Time! + + """Request datetime truncated to multiple of 15 minutes""" + datetimeFifteenMinutes: Time! + + """Request datetime truncated to multiple of 5 minutes""" + datetimeFiveMinutes: Time! + + """Request datetime truncated to multiple of 30 minutes""" + datetimeHalfOfHour: Time! + + """Request datetime truncated to the hour""" + datetimeHour: Time! + + """Request datetime truncated to the minute""" + datetimeMinute: Time! @deprecated(reason: "Field is replaced with datetime") +} + +"""""" +input AccountHttpRequests1mGroupsFilter_InputObject { + """""" + AND: [AccountHttpRequests1mGroupsFilter_InputObject!] + + """""" + OR: [AccountHttpRequests1mGroupsFilter_InputObject!] + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeDay: Time + + """""" + datetimeDay_geq: Time + + """""" + datetimeDay_gt: Time + + """""" + datetimeDay_in: [Time!] + + """""" + datetimeDay_leq: Time + + """""" + datetimeDay_lt: Time + + """""" + datetimeDay_neq: Time + + """""" + datetimeDay_notin: [Time!] + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHalfOfHour: Time + + """""" + datetimeHalfOfHour_geq: Time + + """""" + datetimeHalfOfHour_gt: Time + + """""" + datetimeHalfOfHour_in: [Time!] + + """""" + datetimeHalfOfHour_leq: Time + + """""" + datetimeHalfOfHour_lt: Time + + """""" + datetimeHalfOfHour_neq: Time + + """""" + datetimeHalfOfHour_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] +} + +"""""" +type AccountHttpRequests1mGroupsIpClassMapElem { + """IP class""" + ipType: string! + + """""" + requests: uint64! +} + +"""""" +enum AccountHttpRequests1mGroupsOrderBy { + """avg(bytes) ascending""" + avg_bytes_ASC + + """avg(bytes) descending""" + avg_bytes_DESC + + """avg(edgeRequestBytes) ascending""" + avg_edgeRequestBytes_ASC + + """avg(edgeRequestBytes) descending""" + avg_edgeRequestBytes_DESC + + """avg(sampleInterval) ascending""" + avg_sampleInterval_ASC + + """avg(sampleInterval) descending""" + avg_sampleInterval_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeDay ascending""" + datetimeDay_ASC + + """datetimeDay descending""" + datetimeDay_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHalfOfHour ascending""" + datetimeHalfOfHour_ASC + + """datetimeHalfOfHour descending""" + datetimeHalfOfHour_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """sum(bytes) ascending""" + sum_bytes_ASC + + """sum(bytes) descending""" + sum_bytes_DESC + + """sum(cachedBytes) ascending""" + sum_cachedBytes_ASC + + """sum(cachedBytes) descending""" + sum_cachedBytes_DESC + + """sum(cachedRequests) ascending""" + sum_cachedRequests_ASC + + """sum(cachedRequests) descending""" + sum_cachedRequests_DESC + + """sum(edgeRequestBytes) ascending""" + sum_edgeRequestBytes_ASC + + """sum(edgeRequestBytes) descending""" + sum_edgeRequestBytes_DESC + + """sum(encryptedBytes) ascending""" + sum_encryptedBytes_ASC + + """sum(encryptedBytes) descending""" + sum_encryptedBytes_DESC + + """sum(encryptedRequests) ascending""" + sum_encryptedRequests_ASC + + """sum(encryptedRequests) descending""" + sum_encryptedRequests_DESC + + """sum(pageViews) ascending""" + sum_pageViews_ASC + + """sum(pageViews) descending""" + sum_pageViews_DESC + + """sum(requests) ascending""" + sum_requests_ASC + + """sum(requests) descending""" + sum_requests_DESC + + """sum(threats) ascending""" + sum_threats_ASC + + """sum(threats) descending""" + sum_threats_DESC + + """uniq(uniques) ascending""" + uniq_uniques_ASC + + """uniq(uniques) descending""" + uniq_uniques_DESC +} + +"""""" +type AccountHttpRequests1mGroupsResponseStatusMapElem { + """HTTP response status code returned to client""" + edgeResponseStatus: uint64! + + """""" + requests: uint64! +} + +"""""" +type AccountHttpRequests1mGroupsSum { + """""" + browserMap: [AccountHttpRequests1mGroupsBrowserMapElem!]! + + """Bytes returned to client""" + bytes: uint64! + + """Bytes returned to client from cache""" + cachedBytes: uint64! + + """Requests served from cache""" + cachedRequests: uint64! + + """""" + clientHTTPVersionMap: [AccountHttpRequests1mGroupsClientHTTPVersionMapElem!]! + + """""" + clientSSLMap: [AccountHttpRequests1mGroupsClientSSLMapElem!]! + + """""" + contentTypeMap: [AccountHttpRequests1mGroupsContentTypeMapElem!]! + + """""" + countryMap: [AccountHttpRequests1mGroupsCountryMapElem!]! + + """Bytes sent from client""" + edgeRequestBytes: uint64! + + """Bytes returned to client using SSL/TLS protocol""" + encryptedBytes: uint64! + + """Requests served using SSL/TLS protocol""" + encryptedRequests: uint64! + + """""" + ipClassMap: [AccountHttpRequests1mGroupsIpClassMapElem!]! + + """Successful requests for HTML content""" + pageViews: uint64! + + """""" + requests: uint64! + + """""" + responseStatusMap: [AccountHttpRequests1mGroupsResponseStatusMapElem!]! + + """""" + threatPathingMap: [AccountHttpRequests1mGroupsThreatPathingMapElem!]! + + """Requests classified as threats""" + threats: uint64! @deprecated(reason: "Replaced by more granular information in firewallEventsAdaptive* nodes") +} + +"""""" +type AccountHttpRequests1mGroupsThreatPathingMapElem { + """""" + requests: uint64! + + """Threat type""" + threatPathingName: string! +} + +"""""" +type AccountHttpRequests1mGroupsUniq { + """A number of unique IPs""" + uniques: uint64! +} + +"""Raw HTTP requests with adaptive sampling""" +type AccountHttpRequestsAdaptive { + """API Gateway endpoint matched at the edge""" + apiGatewayMatchedEndpoint: string! + + """API Gateway host matched at the edge""" + apiGatewayMatchedHost: string! + + """ + 1-D array of the categories associated with the rules ref in attackSignatureRefs + """ + attackSignatureCategories: [string!]! + + """ + cf.waf.attack_signature.refs Ruleset field truncated to maximum 10 elements. + """ + attackSignatureRefs: [string!]! + + """Array of detections ids that matched this request""" + botDetectionIds: [uint32!]! + + """Array of detections tags that matched this request""" + botDetectionTags: [string!]! + + """Judgement of the bot management system""" + botManagementDecision: string! + + """The final score originated from bot management detections.""" + botScore: uint8! + + """Range of the bot management score""" + botScoreBucketBy10: uint8! + + """Name of the source detection which generated the bot management score.""" + botScoreSrcName: string! + + """Used Cache Reserve to serve the response""" + cacheReserveUsed: uint8! + + """Cache status""" + cacheStatus: string! + + """The ASN of the visitor as string""" + clientASNDescription: string! + + """The ASN number of the visitor""" + clientAsn: string! + + """Country from which request originated""" + clientCountryName: string! + + """""" + clientDeviceType: string! + + """The visitor's IP address (IPv4 or IPv6)""" + clientIP: string! + + """The referrer host""" + clientRefererHost: string! + + """The HTTP hostname requested by the visitor""" + clientRequestHTTPHost: string! + + """HTTP method of client request""" + clientRequestHTTPMethodName: string! + + """The version of HTTP protocol requested by the visitor""" + clientRequestHTTPProtocol: string! + + """The path requested by visitor""" + clientRequestPath: string! + + """Query parameters of client request""" + clientRequestQuery: string! + + """HTTP request referrer""" + clientRequestReferer: string! + + """The url scheme requested by the visitor""" + clientRequestScheme: string! + + """SSL protocol version""" + clientSSLProtocol: string! + + """""" + coloCode: string! + + """ + 1 if not all contents for this request where successfully scanned, else 0 + """ + contentScanHasFailed: uint8! + + """Number of scannable content objects that are malicious""" + contentScanNumMaliciousObj: uint8! + + """Number of scannable content objects""" + contentScanNumObj: uint8! + + """Array of scan results in order of detection""" + contentScanObjResults: [string!]! + + """Array of scan sizes in order of detection""" + contentScanObjSizes: [uint32!]! + + """Array of content types in order of detection""" + contentScanObjTypes: [string!]! + + """The date the event occurred at the edge""" + date: Date! + + """The date and time the event occurred at the edge""" + datetime: Time! + + """ + The date and time the event occurred at the edge truncated to a multiple of 15 minutes + """ + datetimeFifteenMinutes: Time! + + """ + The date and time the event occurred at the edge truncated to a multiple of 5 minutes + """ + datetimeFiveMinutes: Time! + + """The date and time the event occurred at the edge truncated to hours""" + datetimeHour: Time! + + """ + The date and time the event occurred at the edge truncated to the minute + """ + datetimeMinute: Time! + + """ + The time elapsed resolving a CNAME if it was required to reach your origin + """ + edgeDnsResponseTimeMs: uint16! + + """""" + edgeResponseContentTypeName: string! + + """HTTP response status code returned to browser""" + edgeResponseStatus: uint16! + + """ + The time elapsed between processing the first byte of the request until when we started sending a response + """ + edgeTimeToFirstByteMs: uint16! + + """ + Whether firewallForAiPiiCategories is non empty. 0 if empty, 1 if not empty. + """ + firewallForAiAnyPiiCategory: int8! + + """Corresponds to the Ruleset field cf.llm.prompt.injection_score.""" + firewallForAiInjectionScore: int8! + + """Corresponds to the Ruleset field cf.llm.prompt.pii_categories.""" + firewallForAiPiiCategories: [string!]! + + """Corresponds to the Ruleset field cf.llm.prompt.unsafe_data_categories.""" + firewallForAiUnsafeTopicCategories: [string!]! + + """ + The primary attack or use case detected in the request by Fraud detections + """ + fraudAttack: string! + + """Array of fraud detections ids that matched this request""" + fraudDetectionIds: [uint32!]! + + """Array of fraud detections tags that matched this request""" + fraudDetectionTags: [string!]! + + """Risk of a specific email address in account signup attempts""" + fraudEmailRisk: string! + + """Version associated with HTTP Application""" + httpApplicationVersion: uint64! @deprecated(reason: "Field is replaced with zoneVersion") + + """ + '1' if a request was inititiated by a Cloudflare Worker on another zone; '0' otherwise. + """ + isCrossZoneSubrequest: uint8! + + """MD5 hash of the JA3 TLS fingerprint""" + ja3Hash: string! + + """JA4 TLS fingerprint""" + ja4: string! + + """ + Inter-request statistics computed for this JA4 across Cloudflare's entire global edge network + """ + ja4Signals: [AccountHttpRequestsAdaptiveJa4SignalsElem!]! + + """Whether the request passed background JavaScript Detection""" + jsDetectionPassed: string! + + """The distinct result of checking for leaked credentials""" + leakedCredentialCheckResult: string! + + """""" + originASN: uint32! + + """ASN associated with origin""" + originASNDescription: string! + + """""" + originIP: string! + + """""" + originResponseDurationMs: uint64! + + """HTTP origin response status code returned to browser""" + originResponseStatus: uint16! + + """ + Pay Per Crawl outcome, when applicable (e.g. request enabled for charging and not blocked by a WAF rule) + """ + payPerCrawlStatus: string! + + """The RayId of the request""" + rayName: string! + + """""" + requestSource: string! + + """ + The code of the first-class action the Cloudflare Firewall took on this request + """ + securityAction: string! + + """The Cloudflare security product triggered by this request""" + securitySource: string! + + """API Security Session ID hash""" + sessionIdHash: string! + + """""" + upperTierColoName: string! + + """visitor's user-agent string""" + userAgent: string! + + """Browser parsed from the user agent""" + userAgentBrowser: string! + + """OS parsed from the user agent""" + userAgentOS: string! + + """The category of verified bot""" + verifiedBotCategory: string! + + """Beta. Overall request score generated by the WAF detection module""" + wafAttackScore: uint8! + + """ + Beta. Overall request score class generated by the WAF detection module + """ + wafAttackScoreClass: string! + + """Beta. WAF score for a RCE attack""" + wafRceAttackScore: uint8! + + """Beta. WAF score for a SQLi attack""" + wafSqliAttackScore: uint8! + + """Beta. WAF score for a XSS attack""" + wafXssAttackScore: uint8! + + """The X-Requested-With header of the client request""" + xRequestedWith: string! + + """Associated zone""" + zoneTag: string! + + """The version of a zone""" + zoneVersion: uint64! +} + +"""""" +input AccountHttpRequestsAdaptiveFilter_InputObject { + """""" + AND: [AccountHttpRequestsAdaptiveFilter_InputObject!] + + """""" + OR: [AccountHttpRequestsAdaptiveFilter_InputObject!] + + """""" + apiGatewayMatchedEndpoint: string + + """""" + apiGatewayMatchedEndpoint_geq: string + + """""" + apiGatewayMatchedEndpoint_gt: string + + """""" + apiGatewayMatchedEndpoint_in: [string!] + + """""" + apiGatewayMatchedEndpoint_leq: string + + """""" + apiGatewayMatchedEndpoint_like: string + + """""" + apiGatewayMatchedEndpoint_lt: string + + """""" + apiGatewayMatchedEndpoint_neq: string + + """""" + apiGatewayMatchedEndpoint_notin: [string!] + + """""" + apiGatewayMatchedEndpoint_notlike: string + + """""" + apiGatewayMatchedHost: string + + """""" + apiGatewayMatchedHost_geq: string + + """""" + apiGatewayMatchedHost_gt: string + + """""" + apiGatewayMatchedHost_in: [string!] + + """""" + apiGatewayMatchedHost_leq: string + + """""" + apiGatewayMatchedHost_like: string + + """""" + apiGatewayMatchedHost_lt: string + + """""" + apiGatewayMatchedHost_neq: string + + """""" + apiGatewayMatchedHost_notin: [string!] + + """""" + apiGatewayMatchedHost_notlike: string + + """""" + attackSignatureCategories_has: string + + """""" + attackSignatureCategories_hasall: [string!] + + """""" + attackSignatureCategories_hasany: [string!] + + """""" + attackSignatureCategories_isempty: bool + + """""" + attackSignatureCategories_nothas: string + + """""" + attackSignatureRefs_has: string + + """""" + attackSignatureRefs_hasall: [string!] + + """""" + attackSignatureRefs_hasany: [string!] + + """""" + attackSignatureRefs_isempty: bool + + """""" + attackSignatureRefs_nothas: string + + """""" + botDetectionIds_has: uint32 + + """""" + botDetectionIds_hasall: [uint32!] + + """""" + botDetectionIds_hasany: [uint32!] + + """""" + botDetectionIds_isempty: bool + + """""" + botDetectionIds_nothas: uint32 + + """""" + botDetectionTags_has: string + + """""" + botDetectionTags_hasall: [string!] + + """""" + botDetectionTags_hasany: [string!] + + """""" + botDetectionTags_isempty: bool + + """""" + botDetectionTags_nothas: string + + """""" + botManagementDecision: string + + """""" + botManagementDecision_geq: string + + """""" + botManagementDecision_gt: string + + """""" + botManagementDecision_in: [string!] + + """""" + botManagementDecision_leq: string + + """""" + botManagementDecision_like: string + + """""" + botManagementDecision_lt: string + + """""" + botManagementDecision_neq: string + + """""" + botManagementDecision_notin: [string!] + + """""" + botManagementDecision_notlike: string + + """""" + botScore: uint8 + + """""" + botScoreBucketBy10: uint8 + + """""" + botScoreBucketBy10_geq: uint8 + + """""" + botScoreBucketBy10_gt: uint8 + + """""" + botScoreBucketBy10_in: bytes + + """""" + botScoreBucketBy10_leq: uint8 + + """""" + botScoreBucketBy10_lt: uint8 + + """""" + botScoreBucketBy10_neq: uint8 + + """""" + botScoreBucketBy10_notin: bytes + + """""" + botScoreSrcName: string + + """""" + botScoreSrcName_geq: string + + """""" + botScoreSrcName_gt: string + + """""" + botScoreSrcName_in: [string!] + + """""" + botScoreSrcName_leq: string + + """""" + botScoreSrcName_like: string + + """""" + botScoreSrcName_lt: string + + """""" + botScoreSrcName_neq: string + + """""" + botScoreSrcName_notin: [string!] + + """""" + botScoreSrcName_notlike: string + + """""" + botScore_geq: uint8 + + """""" + botScore_gt: uint8 + + """""" + botScore_in: bytes + + """""" + botScore_leq: uint8 + + """""" + botScore_lt: uint8 + + """""" + botScore_neq: uint8 + + """""" + botScore_notin: bytes + + """""" + cacheReserveUsed: uint8 + + """""" + cacheReserveUsed_geq: uint8 + + """""" + cacheReserveUsed_gt: uint8 + + """""" + cacheReserveUsed_in: bytes + + """""" + cacheReserveUsed_leq: uint8 + + """""" + cacheReserveUsed_lt: uint8 + + """""" + cacheReserveUsed_neq: uint8 + + """""" + cacheReserveUsed_notin: bytes + + """""" + cacheStatus: string + + """""" + cacheStatus_geq: string + + """""" + cacheStatus_gt: string + + """""" + cacheStatus_in: [string!] + + """""" + cacheStatus_leq: string + + """""" + cacheStatus_like: string + + """""" + cacheStatus_lt: string + + """""" + cacheStatus_neq: string + + """""" + cacheStatus_notin: [string!] + + """""" + cacheStatus_notlike: string + + """""" + clientASNDescription: string + + """""" + clientASNDescription_geq: string + + """""" + clientASNDescription_gt: string + + """""" + clientASNDescription_in: [string!] + + """""" + clientASNDescription_leq: string + + """""" + clientASNDescription_like: string + + """""" + clientASNDescription_lt: string + + """""" + clientASNDescription_neq: string + + """""" + clientASNDescription_notin: [string!] + + """""" + clientASNDescription_notlike: string + + """""" + clientAsn: string + + """""" + clientAsn_geq: string + + """""" + clientAsn_gt: string + + """""" + clientAsn_in: [string!] + + """""" + clientAsn_leq: string + + """""" + clientAsn_like: string + + """""" + clientAsn_lt: string + + """""" + clientAsn_neq: string + + """""" + clientAsn_notin: [string!] + + """""" + clientAsn_notlike: string + + """""" + clientCountryName: string + + """""" + clientCountryName_geq: string + + """""" + clientCountryName_gt: string + + """""" + clientCountryName_in: [string!] + + """""" + clientCountryName_leq: string + + """""" + clientCountryName_like: string + + """""" + clientCountryName_lt: string + + """""" + clientCountryName_neq: string + + """""" + clientCountryName_notin: [string!] + + """""" + clientCountryName_notlike: string + + """""" + clientDeviceType: string + + """""" + clientDeviceType_geq: string + + """""" + clientDeviceType_gt: string + + """""" + clientDeviceType_in: [string!] + + """""" + clientDeviceType_leq: string + + """""" + clientDeviceType_like: string + + """""" + clientDeviceType_lt: string + + """""" + clientDeviceType_neq: string + + """""" + clientDeviceType_notin: [string!] + + """""" + clientDeviceType_notlike: string + + """""" + clientIP: string + + """""" + clientIP_geq: string + + """""" + clientIP_gt: string + + """""" + clientIP_in: [string!] + + """""" + clientIP_leq: string + + """""" + clientIP_like: string + + """""" + clientIP_lt: string + + """""" + clientIP_neq: string + + """""" + clientIP_notin: [string!] + + """""" + clientIP_notlike: string + + """""" + clientRefererHost: string + + """""" + clientRefererHost_geq: string + + """""" + clientRefererHost_gt: string + + """""" + clientRefererHost_in: [string!] + + """""" + clientRefererHost_leq: string + + """""" + clientRefererHost_like: string + + """""" + clientRefererHost_lt: string + + """""" + clientRefererHost_neq: string + + """""" + clientRefererHost_notin: [string!] + + """""" + clientRefererHost_notlike: string + + """""" + clientRequestHTTPHost: string + + """""" + clientRequestHTTPHost_geq: string + + """""" + clientRequestHTTPHost_gt: string + + """""" + clientRequestHTTPHost_in: [string!] + + """""" + clientRequestHTTPHost_leq: string + + """""" + clientRequestHTTPHost_like: string + + """""" + clientRequestHTTPHost_lt: string + + """""" + clientRequestHTTPHost_neq: string + + """""" + clientRequestHTTPHost_notin: [string!] + + """""" + clientRequestHTTPHost_notlike: string + + """""" + clientRequestHTTPMethodName: string + + """""" + clientRequestHTTPMethodName_geq: string + + """""" + clientRequestHTTPMethodName_gt: string + + """""" + clientRequestHTTPMethodName_in: [string!] + + """""" + clientRequestHTTPMethodName_leq: string + + """""" + clientRequestHTTPMethodName_like: string + + """""" + clientRequestHTTPMethodName_lt: string + + """""" + clientRequestHTTPMethodName_neq: string + + """""" + clientRequestHTTPMethodName_notin: [string!] + + """""" + clientRequestHTTPMethodName_notlike: string + + """""" + clientRequestHTTPProtocol: string + + """""" + clientRequestHTTPProtocol_geq: string + + """""" + clientRequestHTTPProtocol_gt: string + + """""" + clientRequestHTTPProtocol_in: [string!] + + """""" + clientRequestHTTPProtocol_leq: string + + """""" + clientRequestHTTPProtocol_like: string + + """""" + clientRequestHTTPProtocol_lt: string + + """""" + clientRequestHTTPProtocol_neq: string + + """""" + clientRequestHTTPProtocol_notin: [string!] + + """""" + clientRequestHTTPProtocol_notlike: string + + """""" + clientRequestPath: string + + """""" + clientRequestPath_geq: string + + """""" + clientRequestPath_gt: string + + """""" + clientRequestPath_in: [string!] + + """""" + clientRequestPath_leq: string + + """""" + clientRequestPath_like: string + + """""" + clientRequestPath_lt: string + + """""" + clientRequestPath_neq: string + + """""" + clientRequestPath_notin: [string!] + + """""" + clientRequestPath_notlike: string + + """""" + clientRequestQuery: string + + """""" + clientRequestQuery_geq: string + + """""" + clientRequestQuery_gt: string + + """""" + clientRequestQuery_in: [string!] + + """""" + clientRequestQuery_leq: string + + """""" + clientRequestQuery_like: string + + """""" + clientRequestQuery_lt: string + + """""" + clientRequestQuery_neq: string + + """""" + clientRequestQuery_notin: [string!] + + """""" + clientRequestQuery_notlike: string + + """""" + clientRequestReferer: string + + """""" + clientRequestReferer_geq: string + + """""" + clientRequestReferer_gt: string + + """""" + clientRequestReferer_in: [string!] + + """""" + clientRequestReferer_leq: string + + """""" + clientRequestReferer_like: string + + """""" + clientRequestReferer_lt: string + + """""" + clientRequestReferer_neq: string + + """""" + clientRequestReferer_notin: [string!] + + """""" + clientRequestReferer_notlike: string + + """""" + clientRequestScheme: string + + """""" + clientRequestScheme_geq: string + + """""" + clientRequestScheme_gt: string + + """""" + clientRequestScheme_in: [string!] + + """""" + clientRequestScheme_leq: string + + """""" + clientRequestScheme_like: string + + """""" + clientRequestScheme_lt: string + + """""" + clientRequestScheme_neq: string + + """""" + clientRequestScheme_notin: [string!] + + """""" + clientRequestScheme_notlike: string + + """""" + clientSSLProtocol: string + + """""" + clientSSLProtocol_geq: string + + """""" + clientSSLProtocol_gt: string + + """""" + clientSSLProtocol_in: [string!] + + """""" + clientSSLProtocol_leq: string + + """""" + clientSSLProtocol_like: string + + """""" + clientSSLProtocol_lt: string + + """""" + clientSSLProtocol_neq: string + + """""" + clientSSLProtocol_notin: [string!] + + """""" + clientSSLProtocol_notlike: string + + """""" + coloCode: string + + """""" + coloCode_geq: string + + """""" + coloCode_gt: string + + """""" + coloCode_in: [string!] + + """""" + coloCode_leq: string + + """""" + coloCode_like: string + + """""" + coloCode_lt: string + + """""" + coloCode_neq: string + + """""" + coloCode_notin: [string!] + + """""" + coloCode_notlike: string + + """""" + contentScanHasFailed: uint8 + + """""" + contentScanHasFailed_geq: uint8 + + """""" + contentScanHasFailed_gt: uint8 + + """""" + contentScanHasFailed_in: bytes + + """""" + contentScanHasFailed_leq: uint8 + + """""" + contentScanHasFailed_lt: uint8 + + """""" + contentScanHasFailed_neq: uint8 + + """""" + contentScanHasFailed_notin: bytes + + """""" + contentScanNumMaliciousObj: uint8 + + """""" + contentScanNumMaliciousObj_geq: uint8 + + """""" + contentScanNumMaliciousObj_gt: uint8 + + """""" + contentScanNumMaliciousObj_in: bytes + + """""" + contentScanNumMaliciousObj_leq: uint8 + + """""" + contentScanNumMaliciousObj_lt: uint8 + + """""" + contentScanNumMaliciousObj_neq: uint8 + + """""" + contentScanNumMaliciousObj_notin: bytes + + """""" + contentScanNumObj: uint8 + + """""" + contentScanNumObj_geq: uint8 + + """""" + contentScanNumObj_gt: uint8 + + """""" + contentScanNumObj_in: bytes + + """""" + contentScanNumObj_leq: uint8 + + """""" + contentScanNumObj_lt: uint8 + + """""" + contentScanNumObj_neq: uint8 + + """""" + contentScanNumObj_notin: bytes + + """""" + contentScanObjResults_has: string + + """""" + contentScanObjResults_hasall: [string!] + + """""" + contentScanObjResults_hasany: [string!] + + """""" + contentScanObjResults_isempty: bool + + """""" + contentScanObjResults_nothas: string + + """""" + contentScanObjSizes_has: uint32 + + """""" + contentScanObjSizes_hasall: [uint32!] + + """""" + contentScanObjSizes_hasany: [uint32!] + + """""" + contentScanObjSizes_isempty: bool + + """""" + contentScanObjSizes_nothas: uint32 + + """""" + contentScanObjTypes_has: string + + """""" + contentScanObjTypes_hasall: [string!] + + """""" + contentScanObjTypes_hasany: [string!] + + """""" + contentScanObjTypes_isempty: bool + + """""" + contentScanObjTypes_nothas: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + edgeDnsResponseTimeMs: uint16 + + """""" + edgeDnsResponseTimeMs_geq: uint16 + + """""" + edgeDnsResponseTimeMs_gt: uint16 + + """""" + edgeDnsResponseTimeMs_in: [uint16!] + + """""" + edgeDnsResponseTimeMs_leq: uint16 + + """""" + edgeDnsResponseTimeMs_lt: uint16 + + """""" + edgeDnsResponseTimeMs_neq: uint16 + + """""" + edgeDnsResponseTimeMs_notin: [uint16!] + + """""" + edgeResponseContentTypeName: string + + """""" + edgeResponseContentTypeName_geq: string + + """""" + edgeResponseContentTypeName_gt: string + + """""" + edgeResponseContentTypeName_in: [string!] + + """""" + edgeResponseContentTypeName_leq: string + + """""" + edgeResponseContentTypeName_like: string + + """""" + edgeResponseContentTypeName_lt: string + + """""" + edgeResponseContentTypeName_neq: string + + """""" + edgeResponseContentTypeName_notin: [string!] + + """""" + edgeResponseContentTypeName_notlike: string + + """""" + edgeResponseStatus: uint16 + + """""" + edgeResponseStatus_geq: uint16 + + """""" + edgeResponseStatus_gt: uint16 + + """""" + edgeResponseStatus_in: [uint16!] + + """""" + edgeResponseStatus_leq: uint16 + + """""" + edgeResponseStatus_lt: uint16 + + """""" + edgeResponseStatus_neq: uint16 + + """""" + edgeResponseStatus_notin: [uint16!] + + """""" + edgeTimeToFirstByteMs: uint16 + + """""" + edgeTimeToFirstByteMs_geq: uint16 + + """""" + edgeTimeToFirstByteMs_gt: uint16 + + """""" + edgeTimeToFirstByteMs_in: [uint16!] + + """""" + edgeTimeToFirstByteMs_leq: uint16 + + """""" + edgeTimeToFirstByteMs_lt: uint16 + + """""" + edgeTimeToFirstByteMs_neq: uint16 + + """""" + edgeTimeToFirstByteMs_notin: [uint16!] + + """""" + firewallForAiAnyPiiCategory: int8 + + """""" + firewallForAiAnyPiiCategory_geq: int8 + + """""" + firewallForAiAnyPiiCategory_gt: int8 + + """""" + firewallForAiAnyPiiCategory_in: [int8!] + + """""" + firewallForAiAnyPiiCategory_leq: int8 + + """""" + firewallForAiAnyPiiCategory_lt: int8 + + """""" + firewallForAiAnyPiiCategory_neq: int8 + + """""" + firewallForAiAnyPiiCategory_notin: [int8!] + + """""" + firewallForAiInjectionScore: int8 + + """""" + firewallForAiInjectionScore_geq: int8 + + """""" + firewallForAiInjectionScore_gt: int8 + + """""" + firewallForAiInjectionScore_in: [int8!] + + """""" + firewallForAiInjectionScore_leq: int8 + + """""" + firewallForAiInjectionScore_lt: int8 + + """""" + firewallForAiInjectionScore_neq: int8 + + """""" + firewallForAiInjectionScore_notin: [int8!] + + """""" + firewallForAiPiiCategories_has: string + + """""" + firewallForAiPiiCategories_hasall: [string!] + + """""" + firewallForAiPiiCategories_hasany: [string!] + + """""" + firewallForAiPiiCategories_isempty: bool + + """""" + firewallForAiPiiCategories_nothas: string + + """""" + firewallForAiUnsafeTopicCategories_has: string + + """""" + firewallForAiUnsafeTopicCategories_hasall: [string!] + + """""" + firewallForAiUnsafeTopicCategories_hasany: [string!] + + """""" + firewallForAiUnsafeTopicCategories_isempty: bool + + """""" + firewallForAiUnsafeTopicCategories_nothas: string + + """""" + fraudAttack: string + + """""" + fraudAttack_geq: string + + """""" + fraudAttack_gt: string + + """""" + fraudAttack_in: [string!] + + """""" + fraudAttack_leq: string + + """""" + fraudAttack_like: string + + """""" + fraudAttack_lt: string + + """""" + fraudAttack_neq: string + + """""" + fraudAttack_notin: [string!] + + """""" + fraudAttack_notlike: string + + """""" + fraudDetectionIds_has: uint32 + + """""" + fraudDetectionIds_hasall: [uint32!] + + """""" + fraudDetectionIds_hasany: [uint32!] + + """""" + fraudDetectionIds_isempty: bool + + """""" + fraudDetectionIds_nothas: uint32 + + """""" + fraudDetectionTags_has: string + + """""" + fraudDetectionTags_hasall: [string!] + + """""" + fraudDetectionTags_hasany: [string!] + + """""" + fraudDetectionTags_isempty: bool + + """""" + fraudDetectionTags_nothas: string + + """""" + fraudEmailRisk: string + + """""" + fraudEmailRisk_geq: string + + """""" + fraudEmailRisk_gt: string + + """""" + fraudEmailRisk_in: [string!] + + """""" + fraudEmailRisk_leq: string + + """""" + fraudEmailRisk_like: string + + """""" + fraudEmailRisk_lt: string + + """""" + fraudEmailRisk_neq: string + + """""" + fraudEmailRisk_notin: [string!] + + """""" + fraudEmailRisk_notlike: string + + """""" + httpApplicationVersion: uint64 + + """""" + httpApplicationVersion_geq: uint64 + + """""" + httpApplicationVersion_gt: uint64 + + """""" + httpApplicationVersion_in: [uint64!] + + """""" + httpApplicationVersion_leq: uint64 + + """""" + httpApplicationVersion_lt: uint64 + + """""" + httpApplicationVersion_neq: uint64 + + """""" + httpApplicationVersion_notin: [uint64!] + + """""" + isCrossZoneSubrequest: uint8 + + """""" + isCrossZoneSubrequest_geq: uint8 + + """""" + isCrossZoneSubrequest_gt: uint8 + + """""" + isCrossZoneSubrequest_in: bytes + + """""" + isCrossZoneSubrequest_leq: uint8 + + """""" + isCrossZoneSubrequest_lt: uint8 + + """""" + isCrossZoneSubrequest_neq: uint8 + + """""" + isCrossZoneSubrequest_notin: bytes + + """""" + ja3Hash: string + + """""" + ja3Hash_geq: string + + """""" + ja3Hash_gt: string + + """""" + ja3Hash_in: [string!] + + """""" + ja3Hash_leq: string + + """""" + ja3Hash_like: string + + """""" + ja3Hash_lt: string + + """""" + ja3Hash_neq: string + + """""" + ja3Hash_notin: [string!] + + """""" + ja3Hash_notlike: string + + """""" + ja4: string + + """""" + ja4_geq: string + + """""" + ja4_gt: string + + """""" + ja4_in: [string!] + + """""" + ja4_leq: string + + """""" + ja4_like: string + + """""" + ja4_lt: string + + """""" + ja4_neq: string + + """""" + ja4_notin: [string!] + + """""" + ja4_notlike: string + + """""" + jsDetectionPassed: string + + """""" + jsDetectionPassed_geq: string + + """""" + jsDetectionPassed_gt: string + + """""" + jsDetectionPassed_in: [string!] + + """""" + jsDetectionPassed_leq: string + + """""" + jsDetectionPassed_like: string + + """""" + jsDetectionPassed_lt: string + + """""" + jsDetectionPassed_neq: string + + """""" + jsDetectionPassed_notin: [string!] + + """""" + jsDetectionPassed_notlike: string + + """""" + leakedCredentialCheckResult: string + + """""" + leakedCredentialCheckResult_geq: string + + """""" + leakedCredentialCheckResult_gt: string + + """""" + leakedCredentialCheckResult_in: [string!] + + """""" + leakedCredentialCheckResult_leq: string + + """""" + leakedCredentialCheckResult_like: string + + """""" + leakedCredentialCheckResult_lt: string + + """""" + leakedCredentialCheckResult_neq: string + + """""" + leakedCredentialCheckResult_notin: [string!] + + """""" + leakedCredentialCheckResult_notlike: string + + """""" + originASN: uint32 + + """""" + originASNDescription: string + + """""" + originASNDescription_geq: string + + """""" + originASNDescription_gt: string + + """""" + originASNDescription_in: [string!] + + """""" + originASNDescription_leq: string + + """""" + originASNDescription_like: string + + """""" + originASNDescription_lt: string + + """""" + originASNDescription_neq: string + + """""" + originASNDescription_notin: [string!] + + """""" + originASNDescription_notlike: string + + """""" + originASN_geq: uint32 + + """""" + originASN_gt: uint32 + + """""" + originASN_in: [uint32!] + + """""" + originASN_leq: uint32 + + """""" + originASN_lt: uint32 + + """""" + originASN_neq: uint32 + + """""" + originASN_notin: [uint32!] + + """""" + originIP: string + + """""" + originIP_geq: string + + """""" + originIP_gt: string + + """""" + originIP_in: [string!] + + """""" + originIP_leq: string + + """""" + originIP_like: string + + """""" + originIP_lt: string + + """""" + originIP_neq: string + + """""" + originIP_notin: [string!] + + """""" + originIP_notlike: string + + """""" + originResponseDurationMs: uint64 + + """""" + originResponseDurationMs_geq: uint64 + + """""" + originResponseDurationMs_gt: uint64 + + """""" + originResponseDurationMs_in: [uint64!] + + """""" + originResponseDurationMs_leq: uint64 + + """""" + originResponseDurationMs_lt: uint64 + + """""" + originResponseDurationMs_neq: uint64 + + """""" + originResponseDurationMs_notin: [uint64!] + + """""" + originResponseStatus: uint16 + + """""" + originResponseStatus_geq: uint16 + + """""" + originResponseStatus_gt: uint16 + + """""" + originResponseStatus_in: [uint16!] + + """""" + originResponseStatus_leq: uint16 + + """""" + originResponseStatus_lt: uint16 + + """""" + originResponseStatus_neq: uint16 + + """""" + originResponseStatus_notin: [uint16!] + + """""" + payPerCrawlStatus: string + + """""" + payPerCrawlStatus_geq: string + + """""" + payPerCrawlStatus_gt: string + + """""" + payPerCrawlStatus_in: [string!] + + """""" + payPerCrawlStatus_leq: string + + """""" + payPerCrawlStatus_like: string + + """""" + payPerCrawlStatus_lt: string + + """""" + payPerCrawlStatus_neq: string + + """""" + payPerCrawlStatus_notin: [string!] + + """""" + payPerCrawlStatus_notlike: string + + """""" + rayName: string + + """""" + rayName_geq: string + + """""" + rayName_gt: string + + """""" + rayName_in: [string!] + + """""" + rayName_leq: string + + """""" + rayName_like: string + + """""" + rayName_lt: string + + """""" + rayName_neq: string + + """""" + rayName_notin: [string!] + + """""" + rayName_notlike: string + + """""" + requestSource: string + + """""" + requestSource_geq: string + + """""" + requestSource_gt: string + + """""" + requestSource_in: [string!] + + """""" + requestSource_leq: string + + """""" + requestSource_like: string + + """""" + requestSource_lt: string + + """""" + requestSource_neq: string + + """""" + requestSource_notin: [string!] + + """""" + requestSource_notlike: string + + """""" + securityAction: string + + """""" + securityAction_geq: string + + """""" + securityAction_gt: string + + """""" + securityAction_in: [string!] + + """""" + securityAction_leq: string + + """""" + securityAction_like: string + + """""" + securityAction_lt: string + + """""" + securityAction_neq: string + + """""" + securityAction_notin: [string!] + + """""" + securityAction_notlike: string + + """""" + securitySource: string + + """""" + securitySource_geq: string + + """""" + securitySource_gt: string + + """""" + securitySource_in: [string!] + + """""" + securitySource_leq: string + + """""" + securitySource_like: string + + """""" + securitySource_lt: string + + """""" + securitySource_neq: string + + """""" + securitySource_notin: [string!] + + """""" + securitySource_notlike: string + + """""" + sessionIdHash: string + + """""" + sessionIdHash_geq: string + + """""" + sessionIdHash_gt: string + + """""" + sessionIdHash_in: [string!] + + """""" + sessionIdHash_leq: string + + """""" + sessionIdHash_like: string + + """""" + sessionIdHash_lt: string + + """""" + sessionIdHash_neq: string + + """""" + sessionIdHash_notin: [string!] + + """""" + sessionIdHash_notlike: string + + """""" + upperTierColoName: string + + """""" + upperTierColoName_geq: string + + """""" + upperTierColoName_gt: string + + """""" + upperTierColoName_in: [string!] + + """""" + upperTierColoName_leq: string + + """""" + upperTierColoName_like: string + + """""" + upperTierColoName_lt: string + + """""" + upperTierColoName_neq: string + + """""" + upperTierColoName_notin: [string!] + + """""" + upperTierColoName_notlike: string + + """""" + userAgent: string + + """""" + userAgentBrowser: string + + """""" + userAgentBrowser_geq: string + + """""" + userAgentBrowser_gt: string + + """""" + userAgentBrowser_in: [string!] + + """""" + userAgentBrowser_leq: string + + """""" + userAgentBrowser_like: string + + """""" + userAgentBrowser_lt: string + + """""" + userAgentBrowser_neq: string + + """""" + userAgentBrowser_notin: [string!] + + """""" + userAgentBrowser_notlike: string + + """""" + userAgentOS: string + + """""" + userAgentOS_geq: string + + """""" + userAgentOS_gt: string + + """""" + userAgentOS_in: [string!] + + """""" + userAgentOS_leq: string + + """""" + userAgentOS_like: string + + """""" + userAgentOS_lt: string + + """""" + userAgentOS_neq: string + + """""" + userAgentOS_notin: [string!] + + """""" + userAgentOS_notlike: string + + """""" + userAgent_geq: string + + """""" + userAgent_gt: string + + """""" + userAgent_in: [string!] + + """""" + userAgent_leq: string + + """""" + userAgent_like: string + + """""" + userAgent_lt: string + + """""" + userAgent_neq: string + + """""" + userAgent_notin: [string!] + + """""" + userAgent_notlike: string + + """""" + verifiedBotCategory: string + + """""" + verifiedBotCategory_geq: string + + """""" + verifiedBotCategory_gt: string + + """""" + verifiedBotCategory_in: [string!] + + """""" + verifiedBotCategory_leq: string + + """""" + verifiedBotCategory_like: string + + """""" + verifiedBotCategory_lt: string + + """""" + verifiedBotCategory_neq: string + + """""" + verifiedBotCategory_notin: [string!] + + """""" + verifiedBotCategory_notlike: string + + """""" + wafAttackScore: uint8 + + """""" + wafAttackScoreClass: string + + """""" + wafAttackScoreClass_geq: string + + """""" + wafAttackScoreClass_gt: string + + """""" + wafAttackScoreClass_in: [string!] + + """""" + wafAttackScoreClass_leq: string + + """""" + wafAttackScoreClass_like: string + + """""" + wafAttackScoreClass_lt: string + + """""" + wafAttackScoreClass_neq: string + + """""" + wafAttackScoreClass_notin: [string!] + + """""" + wafAttackScoreClass_notlike: string + + """""" + wafAttackScore_geq: uint8 + + """""" + wafAttackScore_gt: uint8 + + """""" + wafAttackScore_in: bytes + + """""" + wafAttackScore_leq: uint8 + + """""" + wafAttackScore_lt: uint8 + + """""" + wafAttackScore_neq: uint8 + + """""" + wafAttackScore_notin: bytes + + """""" + wafRceAttackScore: uint8 + + """""" + wafRceAttackScore_geq: uint8 + + """""" + wafRceAttackScore_gt: uint8 + + """""" + wafRceAttackScore_in: bytes + + """""" + wafRceAttackScore_leq: uint8 + + """""" + wafRceAttackScore_lt: uint8 + + """""" + wafRceAttackScore_neq: uint8 + + """""" + wafRceAttackScore_notin: bytes + + """""" + wafSqliAttackScore: uint8 + + """""" + wafSqliAttackScore_geq: uint8 + + """""" + wafSqliAttackScore_gt: uint8 + + """""" + wafSqliAttackScore_in: bytes + + """""" + wafSqliAttackScore_leq: uint8 + + """""" + wafSqliAttackScore_lt: uint8 + + """""" + wafSqliAttackScore_neq: uint8 + + """""" + wafSqliAttackScore_notin: bytes + + """""" + wafXssAttackScore: uint8 + + """""" + wafXssAttackScore_geq: uint8 + + """""" + wafXssAttackScore_gt: uint8 + + """""" + wafXssAttackScore_in: bytes + + """""" + wafXssAttackScore_leq: uint8 + + """""" + wafXssAttackScore_lt: uint8 + + """""" + wafXssAttackScore_neq: uint8 + + """""" + wafXssAttackScore_notin: bytes + + """""" + xRequestedWith: string + + """""" + xRequestedWith_geq: string + + """""" + xRequestedWith_gt: string + + """""" + xRequestedWith_in: [string!] + + """""" + xRequestedWith_leq: string + + """""" + xRequestedWith_like: string + + """""" + xRequestedWith_lt: string + + """""" + xRequestedWith_neq: string + + """""" + xRequestedWith_notin: [string!] + + """""" + xRequestedWith_notlike: string + + """""" + zoneTag: string + + """""" + zoneTag_geq: string + + """""" + zoneTag_gt: string + + """""" + zoneTag_in: [string!] + + """""" + zoneTag_leq: string + + """""" + zoneTag_like: string + + """""" + zoneTag_lt: string + + """""" + zoneTag_neq: string + + """""" + zoneTag_notin: [string!] + + """""" + zoneTag_notlike: string + + """""" + zoneVersion: uint64 + + """""" + zoneVersion_geq: uint64 + + """""" + zoneVersion_gt: uint64 + + """""" + zoneVersion_in: [uint64!] + + """""" + zoneVersion_leq: uint64 + + """""" + zoneVersion_lt: uint64 + + """""" + zoneVersion_neq: uint64 + + """""" + zoneVersion_notin: [uint64!] +} + +"""Aggregated HTTP requests data with adaptive sampling""" +type AccountHttpRequestsAdaptiveGroups { + """The average value used for sample interval""" + avg: AccountHttpRequestsAdaptiveGroupsAvg + + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountHttpRequestsAdaptiveGroupsConfidence! + + """The number of values for a metric per dimension""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountHttpRequestsAdaptiveGroupsDimensions + + """Quantiles of a metric per dimension""" + quantiles: AccountHttpRequestsAdaptiveGroupsQuantiles + + """The ratio of a range of status codes, between 0 and 1""" + ratio: AccountHttpRequestsAdaptiveGroupsRatio + + """The sum of values for a metric per dimension""" + sum: AccountHttpRequestsAdaptiveGroupsSum +} + +"""""" +type AccountHttpRequestsAdaptiveGroupsAvg { + """ + The proportion of requests that were inititiated by a Cloudflare Worker on another zone + """ + crossZoneSubrequests: float64! + + """""" + edgeDnsResponseTimeMs: float64! + + """""" + edgeTimeToFirstByteMs: float64! + + """ + The average originResponseDuration, in milliseconds, excluding 0 values (i.e. cached ones) + """ + originResponseDurationMs: float64! + + """""" + sampleInterval: float64! +} + +"""""" +type AccountHttpRequestsAdaptiveGroupsConfidence { + """ + The number of values for a metric per dimension, with confidence intervals + """ + count: Confidence! + + """Confidence level that was requested""" + level: float64! + + """ + The sum of values for a metric per dimension, with confidence intervals + """ + sum: AccountHttpRequestsAdaptiveGroupsSumConfidence +} + +"""""" +type AccountHttpRequestsAdaptiveGroupsDimensions { + """API Gateway endpoint matched at the edge""" + apiGatewayMatchedEndpoint: string! + + """API Gateway host matched at the edge""" + apiGatewayMatchedHost: string! + + """ + 1-D array of the categories associated with the rules ref in attackSignatureRefs + """ + attackSignatureCategories: [string!]! + + """ + cf.waf.attack_signature.refs Ruleset field truncated to maximum 10 elements. + """ + attackSignatureRefs: [string!]! + + """Array of detections ids that matched this request""" + botDetectionIds: [uint32!]! + + """Array of detections tags that matched this request""" + botDetectionTags: [string!]! + + """Judgement of the bot management system""" + botManagementDecision: string! + + """The final score originated from bot management detections.""" + botScore: uint8! + + """Range of the bot management score""" + botScoreBucketBy10: uint8! + + """Name of the source detection which generated the bot management score.""" + botScoreSrcName: string! + + """Used Cache Reserve to serve the response""" + cacheReserveUsed: uint8! + + """""" + cacheStatus: string! + + """The ASN of the visitor as string""" + clientASNDescription: string! + + """""" + clientAsn: string! + + """Country from which request originated""" + clientCountryName: string! + + """""" + clientDeviceType: string! + + """""" + clientIP: string! + + """The referrer host""" + clientRefererHost: string! + + """Host requested by the client""" + clientRequestHTTPHost: string! + + """HTTP method of client request""" + clientRequestHTTPMethodName: string! + + """HTTP protocol version""" + clientRequestHTTPProtocol: string! + + """Path of client request""" + clientRequestPath: string! + + """Query parameters of client request""" + clientRequestQuery: string! + + """HTTP request referrer""" + clientRequestReferer: string! + + """HTTP request URI scheme (http/https)""" + clientRequestScheme: string! + + """SSL protocol version""" + clientSSLProtocol: string! + + """""" + coloCode: string! + + """ + 1 if not all contents for this request where successfully scanned, else 0 + """ + contentScanHasFailed: uint8! + + """Number of scannable content objects that are malicious""" + contentScanNumMaliciousObj: uint8! + + """Number of scannable content objects""" + contentScanNumObj: uint8! + + """Array of scan results in order of detection""" + contentScanObjResults: [string!]! + + """Array of scan sizes in order of detection""" + contentScanObjSizes: [uint32!]! + + """Array of content types in order of detection""" + contentScanObjTypes: [string!]! + + """The date the event occurred at the edge""" + date: Date! + + """The date and time the event occurred at the edge""" + datetime: Time! + + """ + The date and time the event occurred at the edge truncated to a multiple of 15 minutes + """ + datetimeFifteenMinutes: Time! + + """ + The date and time the event occurred at the edge truncated to a multiple of 5 minutes + """ + datetimeFiveMinutes: Time! + + """The date and time the event occurred at the edge truncated to hours""" + datetimeHour: Time! + + """ + The date and time the event occurred at the edge truncated to the minute + """ + datetimeMinute: Time! + + """ + The time elapsed resolving a CNAME if it was required to reach your origin + """ + edgeDnsResponseTimeMs: uint16! + + """""" + edgeResponseContentTypeName: string! + + """""" + edgeResponseStatus: uint16! + + """ + The time elapsed between processing the first byte of the request until when we started sending a response + """ + edgeTimeToFirstByteMs: uint16! + + """ + Whether firewallForAiPiiCategories is non empty. 0 if empty, 1 if not empty. + """ + firewallForAiAnyPiiCategory: int8! + + """Corresponds to the Ruleset field cf.llm.prompt.injection_score.""" + firewallForAiInjectionScore: int8! + + """Corresponds to the Ruleset field cf.llm.prompt.pii_categories.""" + firewallForAiPiiCategories: [string!]! + + """Corresponds to the Ruleset field cf.llm.prompt.unsafe_data_categories.""" + firewallForAiUnsafeTopicCategories: [string!]! + + """ + The primary attack or use case detected in the request by Fraud detections + """ + fraudAttack: string! + + """Array of fraud detections ids that matched this request""" + fraudDetectionIds: [uint32!]! + + """Array of fraud detections tags that matched this request""" + fraudDetectionTags: [string!]! + + """Risk of a specific email address in account signup attempts""" + fraudEmailRisk: string! + + """Version associated with HTTP Application""" + httpApplicationVersion: uint64! @deprecated(reason: "Field is replaced with zoneVersion") + + """ + '1' if a request was inititiated by a Cloudflare Worker on another zone; '0' otherwise. + """ + isCrossZoneSubrequest: uint8! + + """MD5 hash of the JA3 TLS fingerprint""" + ja3Hash: string! + + """JA4 TLS fingerprint""" + ja4: string! + + """Whether the request passed background JavaScript Detection""" + jsDetectionPassed: string! + + """The distinct result of checking for leaked credentials""" + leakedCredentialCheckResult: string! + + """""" + originASN: uint32! + + """ASN associated with origin""" + originASNDescription: string! + + """""" + originIP: string! + + """""" + originResponseDurationMs: uint64! + + """HTTP response status code returned by the origin""" + originResponseStatus: uint16! + + """ + Pay Per Crawl outcome, when applicable (e.g. request enabled for charging and not blocked by a WAF rule) + """ + payPerCrawlStatus: string! + + """""" + requestSource: string! + + """ABR sample interval""" + sampleInterval: uint32! + + """ + The code of the first-class action the Cloudflare Firewall took on this request + """ + securityAction: string! + + """The Cloudflare security product triggered by this request""" + securitySource: string! + + """API Security Session ID hash""" + sessionIdHash: string! + + """""" + upperTierColoName: string! + + """""" + userAgent: string! + + """Browser parsed from the user agent""" + userAgentBrowser: string! + + """OS parsed from the user agent""" + userAgentOS: string! + + """The category of verified bot""" + verifiedBotCategory: string! + + """Beta. Overall request score generated by the WAF detection module""" + wafAttackScore: uint8! + + """ + Beta. Overall request score class generated by the WAF detection module + """ + wafAttackScoreClass: string! + + """Beta. WAF score for a RCE attack""" + wafRceAttackScore: uint8! + + """Beta. WAF score for a SQLi attack""" + wafSqliAttackScore: uint8! + + """Beta. WAF score for a XSS attack""" + wafXssAttackScore: uint8! + + """The X-Requested-With header of the client request""" + xRequestedWith: string! + + """Associated zone""" + zoneTag: string! + + """The version of a zone""" + zoneVersion: uint64! +} + +"""""" +input AccountHttpRequestsAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountHttpRequestsAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountHttpRequestsAdaptiveGroupsFilter_InputObject!] + + """""" + apiGatewayMatchedEndpoint: string + + """""" + apiGatewayMatchedEndpoint_geq: string + + """""" + apiGatewayMatchedEndpoint_gt: string + + """""" + apiGatewayMatchedEndpoint_in: [string!] + + """""" + apiGatewayMatchedEndpoint_leq: string + + """""" + apiGatewayMatchedEndpoint_like: string + + """""" + apiGatewayMatchedEndpoint_lt: string + + """""" + apiGatewayMatchedEndpoint_neq: string + + """""" + apiGatewayMatchedEndpoint_notin: [string!] + + """""" + apiGatewayMatchedEndpoint_notlike: string + + """""" + apiGatewayMatchedHost: string + + """""" + apiGatewayMatchedHost_geq: string + + """""" + apiGatewayMatchedHost_gt: string + + """""" + apiGatewayMatchedHost_in: [string!] + + """""" + apiGatewayMatchedHost_leq: string + + """""" + apiGatewayMatchedHost_like: string + + """""" + apiGatewayMatchedHost_lt: string + + """""" + apiGatewayMatchedHost_neq: string + + """""" + apiGatewayMatchedHost_notin: [string!] + + """""" + apiGatewayMatchedHost_notlike: string + + """""" + attackSignatureCategories_has: string + + """""" + attackSignatureCategories_hasall: [string!] + + """""" + attackSignatureCategories_hasany: [string!] + + """""" + attackSignatureCategories_isempty: bool + + """""" + attackSignatureCategories_nothas: string + + """""" + attackSignatureRefs_has: string + + """""" + attackSignatureRefs_hasall: [string!] + + """""" + attackSignatureRefs_hasany: [string!] + + """""" + attackSignatureRefs_isempty: bool + + """""" + attackSignatureRefs_nothas: string + + """""" + botDetectionIds_has: uint32 + + """""" + botDetectionIds_hasall: [uint32!] + + """""" + botDetectionIds_hasany: [uint32!] + + """""" + botDetectionIds_isempty: bool + + """""" + botDetectionIds_nothas: uint32 + + """""" + botDetectionTags_has: string + + """""" + botDetectionTags_hasall: [string!] + + """""" + botDetectionTags_hasany: [string!] + + """""" + botDetectionTags_isempty: bool + + """""" + botDetectionTags_nothas: string + + """""" + botManagementDecision: string + + """""" + botManagementDecision_geq: string + + """""" + botManagementDecision_gt: string + + """""" + botManagementDecision_in: [string!] + + """""" + botManagementDecision_leq: string + + """""" + botManagementDecision_like: string + + """""" + botManagementDecision_lt: string + + """""" + botManagementDecision_neq: string + + """""" + botManagementDecision_notin: [string!] + + """""" + botManagementDecision_notlike: string + + """""" + botScore: uint8 + + """""" + botScoreBucketBy10: uint8 + + """""" + botScoreBucketBy10_geq: uint8 + + """""" + botScoreBucketBy10_gt: uint8 + + """""" + botScoreBucketBy10_in: bytes + + """""" + botScoreBucketBy10_leq: uint8 + + """""" + botScoreBucketBy10_lt: uint8 + + """""" + botScoreBucketBy10_neq: uint8 + + """""" + botScoreBucketBy10_notin: bytes + + """""" + botScoreSrcName: string + + """""" + botScoreSrcName_geq: string + + """""" + botScoreSrcName_gt: string + + """""" + botScoreSrcName_in: [string!] + + """""" + botScoreSrcName_leq: string + + """""" + botScoreSrcName_like: string + + """""" + botScoreSrcName_lt: string + + """""" + botScoreSrcName_neq: string + + """""" + botScoreSrcName_notin: [string!] + + """""" + botScoreSrcName_notlike: string + + """""" + botScore_geq: uint8 + + """""" + botScore_gt: uint8 + + """""" + botScore_in: bytes + + """""" + botScore_leq: uint8 + + """""" + botScore_lt: uint8 + + """""" + botScore_neq: uint8 + + """""" + botScore_notin: bytes + + """""" + cacheReserveUsed: uint8 + + """""" + cacheReserveUsed_geq: uint8 + + """""" + cacheReserveUsed_gt: uint8 + + """""" + cacheReserveUsed_in: bytes + + """""" + cacheReserveUsed_leq: uint8 + + """""" + cacheReserveUsed_lt: uint8 + + """""" + cacheReserveUsed_neq: uint8 + + """""" + cacheReserveUsed_notin: bytes + + """""" + cacheStatus: string + + """""" + cacheStatus_geq: string + + """""" + cacheStatus_gt: string + + """""" + cacheStatus_in: [string!] + + """""" + cacheStatus_leq: string + + """""" + cacheStatus_like: string + + """""" + cacheStatus_lt: string + + """""" + cacheStatus_neq: string + + """""" + cacheStatus_notin: [string!] + + """""" + cacheStatus_notlike: string + + """""" + clientASNDescription: string + + """""" + clientASNDescription_geq: string + + """""" + clientASNDescription_gt: string + + """""" + clientASNDescription_in: [string!] + + """""" + clientASNDescription_leq: string + + """""" + clientASNDescription_like: string + + """""" + clientASNDescription_lt: string + + """""" + clientASNDescription_neq: string + + """""" + clientASNDescription_notin: [string!] + + """""" + clientASNDescription_notlike: string + + """""" + clientAsn: string + + """""" + clientAsn_geq: string + + """""" + clientAsn_gt: string + + """""" + clientAsn_in: [string!] + + """""" + clientAsn_leq: string + + """""" + clientAsn_like: string + + """""" + clientAsn_lt: string + + """""" + clientAsn_neq: string + + """""" + clientAsn_notin: [string!] + + """""" + clientAsn_notlike: string + + """""" + clientCountryName: string + + """""" + clientCountryName_geq: string + + """""" + clientCountryName_gt: string + + """""" + clientCountryName_in: [string!] + + """""" + clientCountryName_leq: string + + """""" + clientCountryName_like: string + + """""" + clientCountryName_lt: string + + """""" + clientCountryName_neq: string + + """""" + clientCountryName_notin: [string!] + + """""" + clientCountryName_notlike: string + + """""" + clientDeviceType: string + + """""" + clientDeviceType_geq: string + + """""" + clientDeviceType_gt: string + + """""" + clientDeviceType_in: [string!] + + """""" + clientDeviceType_leq: string + + """""" + clientDeviceType_like: string + + """""" + clientDeviceType_lt: string + + """""" + clientDeviceType_neq: string + + """""" + clientDeviceType_notin: [string!] + + """""" + clientDeviceType_notlike: string + + """""" + clientIP: string + + """""" + clientIP_geq: string + + """""" + clientIP_gt: string + + """""" + clientIP_in: [string!] + + """""" + clientIP_leq: string + + """""" + clientIP_like: string + + """""" + clientIP_lt: string + + """""" + clientIP_neq: string + + """""" + clientIP_notin: [string!] + + """""" + clientIP_notlike: string + + """""" + clientRefererHost: string + + """""" + clientRefererHost_geq: string + + """""" + clientRefererHost_gt: string + + """""" + clientRefererHost_in: [string!] + + """""" + clientRefererHost_leq: string + + """""" + clientRefererHost_like: string + + """""" + clientRefererHost_lt: string + + """""" + clientRefererHost_neq: string + + """""" + clientRefererHost_notin: [string!] + + """""" + clientRefererHost_notlike: string + + """""" + clientRequestHTTPHost: string + + """""" + clientRequestHTTPHost_geq: string + + """""" + clientRequestHTTPHost_gt: string + + """""" + clientRequestHTTPHost_in: [string!] + + """""" + clientRequestHTTPHost_leq: string + + """""" + clientRequestHTTPHost_like: string + + """""" + clientRequestHTTPHost_lt: string + + """""" + clientRequestHTTPHost_neq: string + + """""" + clientRequestHTTPHost_notin: [string!] + + """""" + clientRequestHTTPHost_notlike: string + + """""" + clientRequestHTTPMethodName: string + + """""" + clientRequestHTTPMethodName_geq: string + + """""" + clientRequestHTTPMethodName_gt: string + + """""" + clientRequestHTTPMethodName_in: [string!] + + """""" + clientRequestHTTPMethodName_leq: string + + """""" + clientRequestHTTPMethodName_like: string + + """""" + clientRequestHTTPMethodName_lt: string + + """""" + clientRequestHTTPMethodName_neq: string + + """""" + clientRequestHTTPMethodName_notin: [string!] + + """""" + clientRequestHTTPMethodName_notlike: string + + """""" + clientRequestHTTPProtocol: string + + """""" + clientRequestHTTPProtocol_geq: string + + """""" + clientRequestHTTPProtocol_gt: string + + """""" + clientRequestHTTPProtocol_in: [string!] + + """""" + clientRequestHTTPProtocol_leq: string + + """""" + clientRequestHTTPProtocol_like: string + + """""" + clientRequestHTTPProtocol_lt: string + + """""" + clientRequestHTTPProtocol_neq: string + + """""" + clientRequestHTTPProtocol_notin: [string!] + + """""" + clientRequestHTTPProtocol_notlike: string + + """""" + clientRequestPath: string + + """""" + clientRequestPath_geq: string + + """""" + clientRequestPath_gt: string + + """""" + clientRequestPath_in: [string!] + + """""" + clientRequestPath_leq: string + + """""" + clientRequestPath_like: string + + """""" + clientRequestPath_lt: string + + """""" + clientRequestPath_neq: string + + """""" + clientRequestPath_notin: [string!] + + """""" + clientRequestPath_notlike: string + + """""" + clientRequestQuery: string + + """""" + clientRequestQuery_geq: string + + """""" + clientRequestQuery_gt: string + + """""" + clientRequestQuery_in: [string!] + + """""" + clientRequestQuery_leq: string + + """""" + clientRequestQuery_like: string + + """""" + clientRequestQuery_lt: string + + """""" + clientRequestQuery_neq: string + + """""" + clientRequestQuery_notin: [string!] + + """""" + clientRequestQuery_notlike: string + + """""" + clientRequestReferer: string + + """""" + clientRequestReferer_geq: string + + """""" + clientRequestReferer_gt: string + + """""" + clientRequestReferer_in: [string!] + + """""" + clientRequestReferer_leq: string + + """""" + clientRequestReferer_like: string + + """""" + clientRequestReferer_lt: string + + """""" + clientRequestReferer_neq: string + + """""" + clientRequestReferer_notin: [string!] + + """""" + clientRequestReferer_notlike: string + + """""" + clientRequestScheme: string + + """""" + clientRequestScheme_geq: string + + """""" + clientRequestScheme_gt: string + + """""" + clientRequestScheme_in: [string!] + + """""" + clientRequestScheme_leq: string + + """""" + clientRequestScheme_like: string + + """""" + clientRequestScheme_lt: string + + """""" + clientRequestScheme_neq: string + + """""" + clientRequestScheme_notin: [string!] + + """""" + clientRequestScheme_notlike: string + + """""" + clientSSLProtocol: string + + """""" + clientSSLProtocol_geq: string + + """""" + clientSSLProtocol_gt: string + + """""" + clientSSLProtocol_in: [string!] + + """""" + clientSSLProtocol_leq: string + + """""" + clientSSLProtocol_like: string + + """""" + clientSSLProtocol_lt: string + + """""" + clientSSLProtocol_neq: string + + """""" + clientSSLProtocol_notin: [string!] + + """""" + clientSSLProtocol_notlike: string + + """""" + coloCode: string + + """""" + coloCode_geq: string + + """""" + coloCode_gt: string + + """""" + coloCode_in: [string!] + + """""" + coloCode_leq: string + + """""" + coloCode_like: string + + """""" + coloCode_lt: string + + """""" + coloCode_neq: string + + """""" + coloCode_notin: [string!] + + """""" + coloCode_notlike: string + + """""" + contentScanHasFailed: uint8 + + """""" + contentScanHasFailed_geq: uint8 + + """""" + contentScanHasFailed_gt: uint8 + + """""" + contentScanHasFailed_in: bytes + + """""" + contentScanHasFailed_leq: uint8 + + """""" + contentScanHasFailed_lt: uint8 + + """""" + contentScanHasFailed_neq: uint8 + + """""" + contentScanHasFailed_notin: bytes + + """""" + contentScanNumMaliciousObj: uint8 + + """""" + contentScanNumMaliciousObj_geq: uint8 + + """""" + contentScanNumMaliciousObj_gt: uint8 + + """""" + contentScanNumMaliciousObj_in: bytes + + """""" + contentScanNumMaliciousObj_leq: uint8 + + """""" + contentScanNumMaliciousObj_lt: uint8 + + """""" + contentScanNumMaliciousObj_neq: uint8 + + """""" + contentScanNumMaliciousObj_notin: bytes + + """""" + contentScanNumObj: uint8 + + """""" + contentScanNumObj_geq: uint8 + + """""" + contentScanNumObj_gt: uint8 + + """""" + contentScanNumObj_in: bytes + + """""" + contentScanNumObj_leq: uint8 + + """""" + contentScanNumObj_lt: uint8 + + """""" + contentScanNumObj_neq: uint8 + + """""" + contentScanNumObj_notin: bytes + + """""" + contentScanObjResults_has: string + + """""" + contentScanObjResults_hasall: [string!] + + """""" + contentScanObjResults_hasany: [string!] + + """""" + contentScanObjResults_isempty: bool + + """""" + contentScanObjResults_nothas: string + + """""" + contentScanObjSizes_has: uint32 + + """""" + contentScanObjSizes_hasall: [uint32!] + + """""" + contentScanObjSizes_hasany: [uint32!] + + """""" + contentScanObjSizes_isempty: bool + + """""" + contentScanObjSizes_nothas: uint32 + + """""" + contentScanObjTypes_has: string + + """""" + contentScanObjTypes_hasall: [string!] + + """""" + contentScanObjTypes_hasany: [string!] + + """""" + contentScanObjTypes_isempty: bool + + """""" + contentScanObjTypes_nothas: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + edgeDnsResponseTimeMs: uint16 + + """""" + edgeDnsResponseTimeMs_geq: uint16 + + """""" + edgeDnsResponseTimeMs_gt: uint16 + + """""" + edgeDnsResponseTimeMs_in: [uint16!] + + """""" + edgeDnsResponseTimeMs_leq: uint16 + + """""" + edgeDnsResponseTimeMs_lt: uint16 + + """""" + edgeDnsResponseTimeMs_neq: uint16 + + """""" + edgeDnsResponseTimeMs_notin: [uint16!] + + """""" + edgeResponseContentTypeName: string + + """""" + edgeResponseContentTypeName_geq: string + + """""" + edgeResponseContentTypeName_gt: string + + """""" + edgeResponseContentTypeName_in: [string!] + + """""" + edgeResponseContentTypeName_leq: string + + """""" + edgeResponseContentTypeName_like: string + + """""" + edgeResponseContentTypeName_lt: string + + """""" + edgeResponseContentTypeName_neq: string + + """""" + edgeResponseContentTypeName_notin: [string!] + + """""" + edgeResponseContentTypeName_notlike: string + + """""" + edgeResponseStatus: uint16 + + """""" + edgeResponseStatus_geq: uint16 + + """""" + edgeResponseStatus_gt: uint16 + + """""" + edgeResponseStatus_in: [uint16!] + + """""" + edgeResponseStatus_leq: uint16 + + """""" + edgeResponseStatus_lt: uint16 + + """""" + edgeResponseStatus_neq: uint16 + + """""" + edgeResponseStatus_notin: [uint16!] + + """""" + edgeTimeToFirstByteMs: uint16 + + """""" + edgeTimeToFirstByteMs_geq: uint16 + + """""" + edgeTimeToFirstByteMs_gt: uint16 + + """""" + edgeTimeToFirstByteMs_in: [uint16!] + + """""" + edgeTimeToFirstByteMs_leq: uint16 + + """""" + edgeTimeToFirstByteMs_lt: uint16 + + """""" + edgeTimeToFirstByteMs_neq: uint16 + + """""" + edgeTimeToFirstByteMs_notin: [uint16!] + + """""" + firewallForAiAnyPiiCategory: int8 + + """""" + firewallForAiAnyPiiCategory_geq: int8 + + """""" + firewallForAiAnyPiiCategory_gt: int8 + + """""" + firewallForAiAnyPiiCategory_in: [int8!] + + """""" + firewallForAiAnyPiiCategory_leq: int8 + + """""" + firewallForAiAnyPiiCategory_lt: int8 + + """""" + firewallForAiAnyPiiCategory_neq: int8 + + """""" + firewallForAiAnyPiiCategory_notin: [int8!] + + """""" + firewallForAiInjectionScore: int8 + + """""" + firewallForAiInjectionScore_geq: int8 + + """""" + firewallForAiInjectionScore_gt: int8 + + """""" + firewallForAiInjectionScore_in: [int8!] + + """""" + firewallForAiInjectionScore_leq: int8 + + """""" + firewallForAiInjectionScore_lt: int8 + + """""" + firewallForAiInjectionScore_neq: int8 + + """""" + firewallForAiInjectionScore_notin: [int8!] + + """""" + firewallForAiPiiCategories_has: string + + """""" + firewallForAiPiiCategories_hasall: [string!] + + """""" + firewallForAiPiiCategories_hasany: [string!] + + """""" + firewallForAiPiiCategories_isempty: bool + + """""" + firewallForAiPiiCategories_nothas: string + + """""" + firewallForAiUnsafeTopicCategories_has: string + + """""" + firewallForAiUnsafeTopicCategories_hasall: [string!] + + """""" + firewallForAiUnsafeTopicCategories_hasany: [string!] + + """""" + firewallForAiUnsafeTopicCategories_isempty: bool + + """""" + firewallForAiUnsafeTopicCategories_nothas: string + + """""" + fraudAttack: string + + """""" + fraudAttack_geq: string + + """""" + fraudAttack_gt: string + + """""" + fraudAttack_in: [string!] + + """""" + fraudAttack_leq: string + + """""" + fraudAttack_like: string + + """""" + fraudAttack_lt: string + + """""" + fraudAttack_neq: string + + """""" + fraudAttack_notin: [string!] + + """""" + fraudAttack_notlike: string + + """""" + fraudDetectionIds_has: uint32 + + """""" + fraudDetectionIds_hasall: [uint32!] + + """""" + fraudDetectionIds_hasany: [uint32!] + + """""" + fraudDetectionIds_isempty: bool + + """""" + fraudDetectionIds_nothas: uint32 + + """""" + fraudDetectionTags_has: string + + """""" + fraudDetectionTags_hasall: [string!] + + """""" + fraudDetectionTags_hasany: [string!] + + """""" + fraudDetectionTags_isempty: bool + + """""" + fraudDetectionTags_nothas: string + + """""" + fraudEmailRisk: string + + """""" + fraudEmailRisk_geq: string + + """""" + fraudEmailRisk_gt: string + + """""" + fraudEmailRisk_in: [string!] + + """""" + fraudEmailRisk_leq: string + + """""" + fraudEmailRisk_like: string + + """""" + fraudEmailRisk_lt: string + + """""" + fraudEmailRisk_neq: string + + """""" + fraudEmailRisk_notin: [string!] + + """""" + fraudEmailRisk_notlike: string + + """""" + httpApplicationVersion: uint64 + + """""" + httpApplicationVersion_geq: uint64 + + """""" + httpApplicationVersion_gt: uint64 + + """""" + httpApplicationVersion_in: [uint64!] + + """""" + httpApplicationVersion_leq: uint64 + + """""" + httpApplicationVersion_lt: uint64 + + """""" + httpApplicationVersion_neq: uint64 + + """""" + httpApplicationVersion_notin: [uint64!] + + """""" + isCrossZoneSubrequest: uint8 + + """""" + isCrossZoneSubrequest_geq: uint8 + + """""" + isCrossZoneSubrequest_gt: uint8 + + """""" + isCrossZoneSubrequest_in: bytes + + """""" + isCrossZoneSubrequest_leq: uint8 + + """""" + isCrossZoneSubrequest_lt: uint8 + + """""" + isCrossZoneSubrequest_neq: uint8 + + """""" + isCrossZoneSubrequest_notin: bytes + + """""" + ja3Hash: string + + """""" + ja3Hash_geq: string + + """""" + ja3Hash_gt: string + + """""" + ja3Hash_in: [string!] + + """""" + ja3Hash_leq: string + + """""" + ja3Hash_like: string + + """""" + ja3Hash_lt: string + + """""" + ja3Hash_neq: string + + """""" + ja3Hash_notin: [string!] + + """""" + ja3Hash_notlike: string + + """""" + ja4: string + + """""" + ja4_geq: string + + """""" + ja4_gt: string + + """""" + ja4_in: [string!] + + """""" + ja4_leq: string + + """""" + ja4_like: string + + """""" + ja4_lt: string + + """""" + ja4_neq: string + + """""" + ja4_notin: [string!] + + """""" + ja4_notlike: string + + """""" + jsDetectionPassed: string + + """""" + jsDetectionPassed_geq: string + + """""" + jsDetectionPassed_gt: string + + """""" + jsDetectionPassed_in: [string!] + + """""" + jsDetectionPassed_leq: string + + """""" + jsDetectionPassed_like: string + + """""" + jsDetectionPassed_lt: string + + """""" + jsDetectionPassed_neq: string + + """""" + jsDetectionPassed_notin: [string!] + + """""" + jsDetectionPassed_notlike: string + + """""" + leakedCredentialCheckResult: string + + """""" + leakedCredentialCheckResult_geq: string + + """""" + leakedCredentialCheckResult_gt: string + + """""" + leakedCredentialCheckResult_in: [string!] + + """""" + leakedCredentialCheckResult_leq: string + + """""" + leakedCredentialCheckResult_like: string + + """""" + leakedCredentialCheckResult_lt: string + + """""" + leakedCredentialCheckResult_neq: string + + """""" + leakedCredentialCheckResult_notin: [string!] + + """""" + leakedCredentialCheckResult_notlike: string + + """""" + originASN: uint32 + + """""" + originASNDescription: string + + """""" + originASNDescription_geq: string + + """""" + originASNDescription_gt: string + + """""" + originASNDescription_in: [string!] + + """""" + originASNDescription_leq: string + + """""" + originASNDescription_like: string + + """""" + originASNDescription_lt: string + + """""" + originASNDescription_neq: string + + """""" + originASNDescription_notin: [string!] + + """""" + originASNDescription_notlike: string + + """""" + originASN_geq: uint32 + + """""" + originASN_gt: uint32 + + """""" + originASN_in: [uint32!] + + """""" + originASN_leq: uint32 + + """""" + originASN_lt: uint32 + + """""" + originASN_neq: uint32 + + """""" + originASN_notin: [uint32!] + + """""" + originIP: string + + """""" + originIP_geq: string + + """""" + originIP_gt: string + + """""" + originIP_in: [string!] + + """""" + originIP_leq: string + + """""" + originIP_like: string + + """""" + originIP_lt: string + + """""" + originIP_neq: string + + """""" + originIP_notin: [string!] + + """""" + originIP_notlike: string + + """""" + originResponseDurationMs: uint64 + + """""" + originResponseDurationMs_geq: uint64 + + """""" + originResponseDurationMs_gt: uint64 + + """""" + originResponseDurationMs_in: [uint64!] + + """""" + originResponseDurationMs_leq: uint64 + + """""" + originResponseDurationMs_lt: uint64 + + """""" + originResponseDurationMs_neq: uint64 + + """""" + originResponseDurationMs_notin: [uint64!] + + """""" + originResponseStatus: uint16 + + """""" + originResponseStatus_geq: uint16 + + """""" + originResponseStatus_gt: uint16 + + """""" + originResponseStatus_in: [uint16!] + + """""" + originResponseStatus_leq: uint16 + + """""" + originResponseStatus_lt: uint16 + + """""" + originResponseStatus_neq: uint16 + + """""" + originResponseStatus_notin: [uint16!] + + """""" + payPerCrawlStatus: string + + """""" + payPerCrawlStatus_geq: string + + """""" + payPerCrawlStatus_gt: string + + """""" + payPerCrawlStatus_in: [string!] + + """""" + payPerCrawlStatus_leq: string + + """""" + payPerCrawlStatus_like: string + + """""" + payPerCrawlStatus_lt: string + + """""" + payPerCrawlStatus_neq: string + + """""" + payPerCrawlStatus_notin: [string!] + + """""" + payPerCrawlStatus_notlike: string + + """""" + rayName: string + + """""" + rayName_geq: string + + """""" + rayName_gt: string + + """""" + rayName_in: [string!] + + """""" + rayName_leq: string + + """""" + rayName_like: string + + """""" + rayName_lt: string + + """""" + rayName_neq: string + + """""" + rayName_notin: [string!] + + """""" + rayName_notlike: string + + """""" + requestSource: string + + """""" + requestSource_geq: string + + """""" + requestSource_gt: string + + """""" + requestSource_in: [string!] + + """""" + requestSource_leq: string + + """""" + requestSource_like: string + + """""" + requestSource_lt: string + + """""" + requestSource_neq: string + + """""" + requestSource_notin: [string!] + + """""" + requestSource_notlike: string + + """""" + sampleInterval: uint32 + + """""" + sampleInterval_geq: uint32 + + """""" + sampleInterval_gt: uint32 + + """""" + sampleInterval_in: [uint32!] + + """""" + sampleInterval_leq: uint32 + + """""" + sampleInterval_lt: uint32 + + """""" + sampleInterval_neq: uint32 + + """""" + sampleInterval_notin: [uint32!] + + """""" + securityAction: string + + """""" + securityAction_geq: string + + """""" + securityAction_gt: string + + """""" + securityAction_in: [string!] + + """""" + securityAction_leq: string + + """""" + securityAction_like: string + + """""" + securityAction_lt: string + + """""" + securityAction_neq: string + + """""" + securityAction_notin: [string!] + + """""" + securityAction_notlike: string + + """""" + securitySource: string + + """""" + securitySource_geq: string + + """""" + securitySource_gt: string + + """""" + securitySource_in: [string!] + + """""" + securitySource_leq: string + + """""" + securitySource_like: string + + """""" + securitySource_lt: string + + """""" + securitySource_neq: string + + """""" + securitySource_notin: [string!] + + """""" + securitySource_notlike: string + + """""" + sessionIdHash: string + + """""" + sessionIdHash_geq: string + + """""" + sessionIdHash_gt: string + + """""" + sessionIdHash_in: [string!] + + """""" + sessionIdHash_leq: string + + """""" + sessionIdHash_like: string + + """""" + sessionIdHash_lt: string + + """""" + sessionIdHash_neq: string + + """""" + sessionIdHash_notin: [string!] + + """""" + sessionIdHash_notlike: string + + """""" + upperTierColoName: string + + """""" + upperTierColoName_geq: string + + """""" + upperTierColoName_gt: string + + """""" + upperTierColoName_in: [string!] + + """""" + upperTierColoName_leq: string + + """""" + upperTierColoName_like: string + + """""" + upperTierColoName_lt: string + + """""" + upperTierColoName_neq: string + + """""" + upperTierColoName_notin: [string!] + + """""" + upperTierColoName_notlike: string + + """""" + userAgent: string + + """""" + userAgentBrowser: string + + """""" + userAgentBrowser_geq: string + + """""" + userAgentBrowser_gt: string + + """""" + userAgentBrowser_in: [string!] + + """""" + userAgentBrowser_leq: string + + """""" + userAgentBrowser_like: string + + """""" + userAgentBrowser_lt: string + + """""" + userAgentBrowser_neq: string + + """""" + userAgentBrowser_notin: [string!] + + """""" + userAgentBrowser_notlike: string + + """""" + userAgentOS: string + + """""" + userAgentOS_geq: string + + """""" + userAgentOS_gt: string + + """""" + userAgentOS_in: [string!] + + """""" + userAgentOS_leq: string + + """""" + userAgentOS_like: string + + """""" + userAgentOS_lt: string + + """""" + userAgentOS_neq: string + + """""" + userAgentOS_notin: [string!] + + """""" + userAgentOS_notlike: string + + """""" + userAgent_geq: string + + """""" + userAgent_gt: string + + """""" + userAgent_in: [string!] + + """""" + userAgent_leq: string + + """""" + userAgent_like: string + + """""" + userAgent_lt: string + + """""" + userAgent_neq: string + + """""" + userAgent_notin: [string!] + + """""" + userAgent_notlike: string + + """""" + verifiedBotCategory: string + + """""" + verifiedBotCategory_geq: string + + """""" + verifiedBotCategory_gt: string + + """""" + verifiedBotCategory_in: [string!] + + """""" + verifiedBotCategory_leq: string + + """""" + verifiedBotCategory_like: string + + """""" + verifiedBotCategory_lt: string + + """""" + verifiedBotCategory_neq: string + + """""" + verifiedBotCategory_notin: [string!] + + """""" + verifiedBotCategory_notlike: string + + """""" + wafAttackScore: uint8 + + """""" + wafAttackScoreClass: string + + """""" + wafAttackScoreClass_geq: string + + """""" + wafAttackScoreClass_gt: string + + """""" + wafAttackScoreClass_in: [string!] + + """""" + wafAttackScoreClass_leq: string + + """""" + wafAttackScoreClass_like: string + + """""" + wafAttackScoreClass_lt: string + + """""" + wafAttackScoreClass_neq: string + + """""" + wafAttackScoreClass_notin: [string!] + + """""" + wafAttackScoreClass_notlike: string + + """""" + wafAttackScore_geq: uint8 + + """""" + wafAttackScore_gt: uint8 + + """""" + wafAttackScore_in: bytes + + """""" + wafAttackScore_leq: uint8 + + """""" + wafAttackScore_lt: uint8 + + """""" + wafAttackScore_neq: uint8 + + """""" + wafAttackScore_notin: bytes + + """""" + wafRceAttackScore: uint8 + + """""" + wafRceAttackScore_geq: uint8 + + """""" + wafRceAttackScore_gt: uint8 + + """""" + wafRceAttackScore_in: bytes + + """""" + wafRceAttackScore_leq: uint8 + + """""" + wafRceAttackScore_lt: uint8 + + """""" + wafRceAttackScore_neq: uint8 + + """""" + wafRceAttackScore_notin: bytes + + """""" + wafSqliAttackScore: uint8 + + """""" + wafSqliAttackScore_geq: uint8 + + """""" + wafSqliAttackScore_gt: uint8 + + """""" + wafSqliAttackScore_in: bytes + + """""" + wafSqliAttackScore_leq: uint8 + + """""" + wafSqliAttackScore_lt: uint8 + + """""" + wafSqliAttackScore_neq: uint8 + + """""" + wafSqliAttackScore_notin: bytes + + """""" + wafXssAttackScore: uint8 + + """""" + wafXssAttackScore_geq: uint8 + + """""" + wafXssAttackScore_gt: uint8 + + """""" + wafXssAttackScore_in: bytes + + """""" + wafXssAttackScore_leq: uint8 + + """""" + wafXssAttackScore_lt: uint8 + + """""" + wafXssAttackScore_neq: uint8 + + """""" + wafXssAttackScore_notin: bytes + + """""" + xRequestedWith: string + + """""" + xRequestedWith_geq: string + + """""" + xRequestedWith_gt: string + + """""" + xRequestedWith_in: [string!] + + """""" + xRequestedWith_leq: string + + """""" + xRequestedWith_like: string + + """""" + xRequestedWith_lt: string + + """""" + xRequestedWith_neq: string + + """""" + xRequestedWith_notin: [string!] + + """""" + xRequestedWith_notlike: string + + """""" + zoneTag: string + + """""" + zoneTag_geq: string + + """""" + zoneTag_gt: string + + """""" + zoneTag_in: [string!] + + """""" + zoneTag_leq: string + + """""" + zoneTag_like: string + + """""" + zoneTag_lt: string + + """""" + zoneTag_neq: string + + """""" + zoneTag_notin: [string!] + + """""" + zoneTag_notlike: string + + """""" + zoneVersion: uint64 + + """""" + zoneVersion_geq: uint64 + + """""" + zoneVersion_gt: uint64 + + """""" + zoneVersion_in: [uint64!] + + """""" + zoneVersion_leq: uint64 + + """""" + zoneVersion_lt: uint64 + + """""" + zoneVersion_neq: uint64 + + """""" + zoneVersion_notin: [uint64!] +} + +"""""" +enum AccountHttpRequestsAdaptiveGroupsOrderBy { + """apiGatewayMatchedEndpoint ascending""" + apiGatewayMatchedEndpoint_ASC + + """apiGatewayMatchedEndpoint descending""" + apiGatewayMatchedEndpoint_DESC + + """apiGatewayMatchedHost ascending""" + apiGatewayMatchedHost_ASC + + """apiGatewayMatchedHost descending""" + apiGatewayMatchedHost_DESC + + """attackSignatureCategories ascending""" + attackSignatureCategories_ASC + + """attackSignatureCategories descending""" + attackSignatureCategories_DESC + + """attackSignatureRefs ascending""" + attackSignatureRefs_ASC + + """attackSignatureRefs descending""" + attackSignatureRefs_DESC + + """avg(crossZoneSubrequests) ascending""" + avg_crossZoneSubrequests_ASC + + """avg(crossZoneSubrequests) descending""" + avg_crossZoneSubrequests_DESC + + """avg(edgeDnsResponseTimeMs) ascending""" + avg_edgeDnsResponseTimeMs_ASC + + """avg(edgeDnsResponseTimeMs) descending""" + avg_edgeDnsResponseTimeMs_DESC + + """avg(edgeTimeToFirstByteMs) ascending""" + avg_edgeTimeToFirstByteMs_ASC + + """avg(edgeTimeToFirstByteMs) descending""" + avg_edgeTimeToFirstByteMs_DESC + + """avg(originResponseDurationMs) ascending""" + avg_originResponseDurationMs_ASC + + """avg(originResponseDurationMs) descending""" + avg_originResponseDurationMs_DESC + + """avg(sampleInterval) ascending""" + avg_sampleInterval_ASC + + """avg(sampleInterval) descending""" + avg_sampleInterval_DESC + + """botDetectionIds ascending""" + botDetectionIds_ASC + + """botDetectionIds descending""" + botDetectionIds_DESC + + """botDetectionTags ascending""" + botDetectionTags_ASC + + """botDetectionTags descending""" + botDetectionTags_DESC + + """botManagementDecision ascending""" + botManagementDecision_ASC + + """botManagementDecision descending""" + botManagementDecision_DESC + + """botScoreBucketBy10 ascending""" + botScoreBucketBy10_ASC + + """botScoreBucketBy10 descending""" + botScoreBucketBy10_DESC + + """botScoreSrcName ascending""" + botScoreSrcName_ASC + + """botScoreSrcName descending""" + botScoreSrcName_DESC + + """botScore ascending""" + botScore_ASC + + """botScore descending""" + botScore_DESC + + """cacheReserveUsed ascending""" + cacheReserveUsed_ASC + + """cacheReserveUsed descending""" + cacheReserveUsed_DESC + + """cacheStatus ascending""" + cacheStatus_ASC + + """cacheStatus descending""" + cacheStatus_DESC + + """clientASNDescription ascending""" + clientASNDescription_ASC + + """clientASNDescription descending""" + clientASNDescription_DESC + + """clientAsn ascending""" + clientAsn_ASC + + """clientAsn descending""" + clientAsn_DESC + + """clientCountryName ascending""" + clientCountryName_ASC + + """clientCountryName descending""" + clientCountryName_DESC + + """clientDeviceType ascending""" + clientDeviceType_ASC + + """clientDeviceType descending""" + clientDeviceType_DESC + + """clientIP ascending""" + clientIP_ASC + + """clientIP descending""" + clientIP_DESC + + """clientRefererHost ascending""" + clientRefererHost_ASC + + """clientRefererHost descending""" + clientRefererHost_DESC + + """clientRequestHTTPHost ascending""" + clientRequestHTTPHost_ASC + + """clientRequestHTTPHost descending""" + clientRequestHTTPHost_DESC + + """clientRequestHTTPMethodName ascending""" + clientRequestHTTPMethodName_ASC + + """clientRequestHTTPMethodName descending""" + clientRequestHTTPMethodName_DESC + + """clientRequestHTTPProtocol ascending""" + clientRequestHTTPProtocol_ASC + + """clientRequestHTTPProtocol descending""" + clientRequestHTTPProtocol_DESC + + """clientRequestPath ascending""" + clientRequestPath_ASC + + """clientRequestPath descending""" + clientRequestPath_DESC + + """clientRequestQuery ascending""" + clientRequestQuery_ASC + + """clientRequestQuery descending""" + clientRequestQuery_DESC + + """clientRequestReferer ascending""" + clientRequestReferer_ASC + + """clientRequestReferer descending""" + clientRequestReferer_DESC + + """clientRequestScheme ascending""" + clientRequestScheme_ASC + + """clientRequestScheme descending""" + clientRequestScheme_DESC + + """clientSSLProtocol ascending""" + clientSSLProtocol_ASC + + """clientSSLProtocol descending""" + clientSSLProtocol_DESC + + """coloCode ascending""" + coloCode_ASC + + """coloCode descending""" + coloCode_DESC + + """contentScanHasFailed ascending""" + contentScanHasFailed_ASC + + """contentScanHasFailed descending""" + contentScanHasFailed_DESC + + """contentScanNumMaliciousObj ascending""" + contentScanNumMaliciousObj_ASC + + """contentScanNumMaliciousObj descending""" + contentScanNumMaliciousObj_DESC + + """contentScanNumObj ascending""" + contentScanNumObj_ASC + + """contentScanNumObj descending""" + contentScanNumObj_DESC + + """contentScanObjResults ascending""" + contentScanObjResults_ASC + + """contentScanObjResults descending""" + contentScanObjResults_DESC + + """contentScanObjSizes ascending""" + contentScanObjSizes_ASC + + """contentScanObjSizes descending""" + contentScanObjSizes_DESC + + """contentScanObjTypes ascending""" + contentScanObjTypes_ASC + + """contentScanObjTypes descending""" + contentScanObjTypes_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """edgeDnsResponseTimeMs ascending""" + edgeDnsResponseTimeMs_ASC + + """edgeDnsResponseTimeMs descending""" + edgeDnsResponseTimeMs_DESC + + """edgeResponseContentTypeName ascending""" + edgeResponseContentTypeName_ASC + + """edgeResponseContentTypeName descending""" + edgeResponseContentTypeName_DESC + + """edgeResponseStatus ascending""" + edgeResponseStatus_ASC + + """edgeResponseStatus descending""" + edgeResponseStatus_DESC + + """edgeTimeToFirstByteMs ascending""" + edgeTimeToFirstByteMs_ASC + + """edgeTimeToFirstByteMs descending""" + edgeTimeToFirstByteMs_DESC + + """firewallForAiAnyPiiCategory ascending""" + firewallForAiAnyPiiCategory_ASC + + """firewallForAiAnyPiiCategory descending""" + firewallForAiAnyPiiCategory_DESC + + """firewallForAiInjectionScore ascending""" + firewallForAiInjectionScore_ASC + + """firewallForAiInjectionScore descending""" + firewallForAiInjectionScore_DESC + + """firewallForAiPiiCategories ascending""" + firewallForAiPiiCategories_ASC + + """firewallForAiPiiCategories descending""" + firewallForAiPiiCategories_DESC + + """firewallForAiUnsafeTopicCategories ascending""" + firewallForAiUnsafeTopicCategories_ASC + + """firewallForAiUnsafeTopicCategories descending""" + firewallForAiUnsafeTopicCategories_DESC + + """fraudAttack ascending""" + fraudAttack_ASC + + """fraudAttack descending""" + fraudAttack_DESC + + """fraudDetectionIds ascending""" + fraudDetectionIds_ASC + + """fraudDetectionIds descending""" + fraudDetectionIds_DESC + + """fraudDetectionTags ascending""" + fraudDetectionTags_ASC + + """fraudDetectionTags descending""" + fraudDetectionTags_DESC + + """fraudEmailRisk ascending""" + fraudEmailRisk_ASC + + """fraudEmailRisk descending""" + fraudEmailRisk_DESC + + """httpApplicationVersion ascending""" + httpApplicationVersion_ASC + + """httpApplicationVersion descending""" + httpApplicationVersion_DESC + + """isCrossZoneSubrequest ascending""" + isCrossZoneSubrequest_ASC + + """isCrossZoneSubrequest descending""" + isCrossZoneSubrequest_DESC + + """ja3Hash ascending""" + ja3Hash_ASC + + """ja3Hash descending""" + ja3Hash_DESC + + """ja4 ascending""" + ja4_ASC + + """ja4 descending""" + ja4_DESC + + """jsDetectionPassed ascending""" + jsDetectionPassed_ASC + + """jsDetectionPassed descending""" + jsDetectionPassed_DESC + + """leakedCredentialCheckResult ascending""" + leakedCredentialCheckResult_ASC + + """leakedCredentialCheckResult descending""" + leakedCredentialCheckResult_DESC + + """originASNDescription ascending""" + originASNDescription_ASC + + """originASNDescription descending""" + originASNDescription_DESC + + """originASN ascending""" + originASN_ASC + + """originASN descending""" + originASN_DESC + + """originIP ascending""" + originIP_ASC + + """originIP descending""" + originIP_DESC + + """originResponseDurationMs ascending""" + originResponseDurationMs_ASC + + """originResponseDurationMs descending""" + originResponseDurationMs_DESC + + """originResponseStatus ascending""" + originResponseStatus_ASC + + """originResponseStatus descending""" + originResponseStatus_DESC + + """payPerCrawlStatus ascending""" + payPerCrawlStatus_ASC + + """payPerCrawlStatus descending""" + payPerCrawlStatus_DESC + + """quantiles(edgeDnsResponseTimeMsP50) ascending""" + quantiles_edgeDnsResponseTimeMsP50_ASC + + """quantiles(edgeDnsResponseTimeMsP50) descending""" + quantiles_edgeDnsResponseTimeMsP50_DESC + + """quantiles(edgeDnsResponseTimeMsP95) ascending""" + quantiles_edgeDnsResponseTimeMsP95_ASC + + """quantiles(edgeDnsResponseTimeMsP95) descending""" + quantiles_edgeDnsResponseTimeMsP95_DESC + + """quantiles(edgeDnsResponseTimeMsP99) ascending""" + quantiles_edgeDnsResponseTimeMsP99_ASC + + """quantiles(edgeDnsResponseTimeMsP99) descending""" + quantiles_edgeDnsResponseTimeMsP99_DESC + + """quantiles(edgeResponseBytesP50) ascending""" + quantiles_edgeResponseBytesP50_ASC + + """quantiles(edgeResponseBytesP50) descending""" + quantiles_edgeResponseBytesP50_DESC + + """quantiles(edgeResponseBytesP95) ascending""" + quantiles_edgeResponseBytesP95_ASC + + """quantiles(edgeResponseBytesP95) descending""" + quantiles_edgeResponseBytesP95_DESC + + """quantiles(edgeResponseBytesP99) ascending""" + quantiles_edgeResponseBytesP99_ASC + + """quantiles(edgeResponseBytesP99) descending""" + quantiles_edgeResponseBytesP99_DESC + + """quantiles(edgeTimeToFirstByteMsP50) ascending""" + quantiles_edgeTimeToFirstByteMsP50_ASC + + """quantiles(edgeTimeToFirstByteMsP50) descending""" + quantiles_edgeTimeToFirstByteMsP50_DESC + + """quantiles(edgeTimeToFirstByteMsP95) ascending""" + quantiles_edgeTimeToFirstByteMsP95_ASC + + """quantiles(edgeTimeToFirstByteMsP95) descending""" + quantiles_edgeTimeToFirstByteMsP95_DESC + + """quantiles(edgeTimeToFirstByteMsP99) ascending""" + quantiles_edgeTimeToFirstByteMsP99_ASC + + """quantiles(edgeTimeToFirstByteMsP99) descending""" + quantiles_edgeTimeToFirstByteMsP99_DESC + + """quantiles(originResponseDurationMsP50) ascending""" + quantiles_originResponseDurationMsP50_ASC + + """quantiles(originResponseDurationMsP50) descending""" + quantiles_originResponseDurationMsP50_DESC + + """quantiles(originResponseDurationMsP95) ascending""" + quantiles_originResponseDurationMsP95_ASC + + """quantiles(originResponseDurationMsP95) descending""" + quantiles_originResponseDurationMsP95_DESC + + """quantiles(originResponseDurationMsP99) ascending""" + quantiles_originResponseDurationMsP99_ASC + + """quantiles(originResponseDurationMsP99) descending""" + quantiles_originResponseDurationMsP99_DESC + + """ratio(status4xx) ascending""" + ratio_status4xx_ASC + + """ratio(status4xx) descending""" + ratio_status4xx_DESC + + """ratio(status5xx) ascending""" + ratio_status5xx_ASC + + """ratio(status5xx) descending""" + ratio_status5xx_DESC + + """requestSource ascending""" + requestSource_ASC + + """requestSource descending""" + requestSource_DESC + + """sampleInterval ascending""" + sampleInterval_ASC + + """sampleInterval descending""" + sampleInterval_DESC + + """securityAction ascending""" + securityAction_ASC + + """securityAction descending""" + securityAction_DESC + + """securitySource ascending""" + securitySource_ASC + + """securitySource descending""" + securitySource_DESC + + """sessionIdHash ascending""" + sessionIdHash_ASC + + """sessionIdHash descending""" + sessionIdHash_DESC + + """sum(botDetectionIdArray) ascending""" + sum_botDetectionIdArray_ASC + + """sum(botDetectionIdArray) descending""" + sum_botDetectionIdArray_DESC + + """sum(botDetectionIdCountArray) ascending""" + sum_botDetectionIdCountArray_ASC + + """sum(botDetectionIdCountArray) descending""" + sum_botDetectionIdCountArray_DESC + + """sum(botDetectionTagArray) ascending""" + sum_botDetectionTagArray_ASC + + """sum(botDetectionTagArray) descending""" + sum_botDetectionTagArray_DESC + + """sum(botDetectionTagCountArray) ascending""" + sum_botDetectionTagCountArray_ASC + + """sum(botDetectionTagCountArray) descending""" + sum_botDetectionTagCountArray_DESC + + """sum(crossZoneSubrequests) ascending""" + sum_crossZoneSubrequests_ASC + + """sum(crossZoneSubrequests) descending""" + sum_crossZoneSubrequests_DESC + + """sum(edgeDnsResponseTimeMs) ascending""" + sum_edgeDnsResponseTimeMs_ASC + + """sum(edgeDnsResponseTimeMs) descending""" + sum_edgeDnsResponseTimeMs_DESC + + """sum(edgeRequestBytes) ascending""" + sum_edgeRequestBytes_ASC + + """sum(edgeRequestBytes) descending""" + sum_edgeRequestBytes_DESC + + """sum(edgeResponseBytes) ascending""" + sum_edgeResponseBytes_ASC + + """sum(edgeResponseBytes) descending""" + sum_edgeResponseBytes_DESC + + """sum(edgeTimeToFirstByteMs) ascending""" + sum_edgeTimeToFirstByteMs_ASC + + """sum(edgeTimeToFirstByteMs) descending""" + sum_edgeTimeToFirstByteMs_DESC + + """sum(fraudDetectionIdArray) ascending""" + sum_fraudDetectionIdArray_ASC + + """sum(fraudDetectionIdArray) descending""" + sum_fraudDetectionIdArray_DESC + + """sum(fraudDetectionIdCountArray) ascending""" + sum_fraudDetectionIdCountArray_ASC + + """sum(fraudDetectionIdCountArray) descending""" + sum_fraudDetectionIdCountArray_DESC + + """sum(fraudDetectionTagArray) ascending""" + sum_fraudDetectionTagArray_ASC + + """sum(fraudDetectionTagArray) descending""" + sum_fraudDetectionTagArray_DESC + + """sum(fraudDetectionTagCountArray) ascending""" + sum_fraudDetectionTagCountArray_ASC + + """sum(fraudDetectionTagCountArray) descending""" + sum_fraudDetectionTagCountArray_DESC + + """sum(originResponseDurationMs) ascending""" + sum_originResponseDurationMs_ASC + + """sum(originResponseDurationMs) descending""" + sum_originResponseDurationMs_DESC + + """sum(visits) ascending""" + sum_visits_ASC + + """sum(visits) descending""" + sum_visits_DESC + + """upperTierColoName ascending""" + upperTierColoName_ASC + + """upperTierColoName descending""" + upperTierColoName_DESC + + """userAgentBrowser ascending""" + userAgentBrowser_ASC + + """userAgentBrowser descending""" + userAgentBrowser_DESC + + """userAgentOS ascending""" + userAgentOS_ASC + + """userAgentOS descending""" + userAgentOS_DESC + + """userAgent ascending""" + userAgent_ASC + + """userAgent descending""" + userAgent_DESC + + """verifiedBotCategory ascending""" + verifiedBotCategory_ASC + + """verifiedBotCategory descending""" + verifiedBotCategory_DESC + + """wafAttackScoreClass ascending""" + wafAttackScoreClass_ASC + + """wafAttackScoreClass descending""" + wafAttackScoreClass_DESC + + """wafAttackScore ascending""" + wafAttackScore_ASC + + """wafAttackScore descending""" + wafAttackScore_DESC + + """wafRceAttackScore ascending""" + wafRceAttackScore_ASC + + """wafRceAttackScore descending""" + wafRceAttackScore_DESC + + """wafSqliAttackScore ascending""" + wafSqliAttackScore_ASC + + """wafSqliAttackScore descending""" + wafSqliAttackScore_DESC + + """wafXssAttackScore ascending""" + wafXssAttackScore_ASC + + """wafXssAttackScore descending""" + wafXssAttackScore_DESC + + """xRequestedWith ascending""" + xRequestedWith_ASC + + """xRequestedWith descending""" + xRequestedWith_DESC + + """zoneTag ascending""" + zoneTag_ASC + + """zoneTag descending""" + zoneTag_DESC + + """zoneVersion ascending""" + zoneVersion_ASC + + """zoneVersion descending""" + zoneVersion_DESC +} + +"""""" +type AccountHttpRequestsAdaptiveGroupsQuantiles { + """50th percentile DNS Response Time (milliseconds)""" + edgeDnsResponseTimeMsP50: float64! + + """95th percentile DNS Response Time (milliseconds)""" + edgeDnsResponseTimeMsP95: float64! + + """99th percentile DNS Response Time (milliseconds)""" + edgeDnsResponseTimeMsP99: float64! + + """50th percentile Bytes returned to client""" + edgeResponseBytesP50: float64! + + """95th percentile Bytes returned to client""" + edgeResponseBytesP95: float64! + + """99th percentile Bytes returned to client""" + edgeResponseBytesP99: float64! + + """50th percentile Time To First Byte (milliseconds)""" + edgeTimeToFirstByteMsP50: float64! + + """95th percentile Time To First Byte (milliseconds)""" + edgeTimeToFirstByteMsP95: float64! + + """99th percentile Time To First Byte (milliseconds)""" + edgeTimeToFirstByteMsP99: float64! + + """50th percentile Origin Response Duration (milliseconds)""" + originResponseDurationMsP50: float64! + + """95th percentile Origin Response Duration (milliseconds)""" + originResponseDurationMsP95: float64! + + """99th percentile Origin Response Duration (milliseconds)""" + originResponseDurationMsP99: float64! +} + +"""""" +type AccountHttpRequestsAdaptiveGroupsRatio { + """""" + status4xx: float64! + + """""" + status5xx: float64! +} + +"""""" +type AccountHttpRequestsAdaptiveGroupsSum { + """Array of bot management detection ids""" + botDetectionIdArray: [uint32!]! + + """ + Count array of bot management detection ids. Elements in this array correspond to elements in botDetectionIdArray by index. + """ + botDetectionIdCountArray: [uint32!]! + + """Array of bot management detection tags""" + botDetectionTagArray: [string!]! + + """ + Count array of bot management detection tags. Elements in this array correspond to elements in botDetectionTagArray by index. + """ + botDetectionTagCountArray: [uint32!]! + + """ + The number of requests that were inititiated by a Cloudflare Worker on another zone + """ + crossZoneSubrequests: uint64! + + """""" + edgeDnsResponseTimeMs: uint64! + + """""" + edgeRequestBytes: uint64! + + """""" + edgeResponseBytes: uint64! + + """""" + edgeTimeToFirstByteMs: uint64! + + """Array of fraud detection ids""" + fraudDetectionIdArray: [uint32!]! + + """ + Count array of fraud detection ids. Elements in this array correspond to elements in fraudDetectionIdArray by index. + """ + fraudDetectionIdCountArray: [uint32!]! + + """Array of fraud detection tags""" + fraudDetectionTagArray: [string!]! + + """ + Count array of fraud detection tags. Elements in this array correspond to elements in fraudDetectionTagArray by index. + """ + fraudDetectionTagCountArray: [uint32!]! + + """""" + originResponseDurationMs: uint64! + + """ + The number of requests by end-users that were initiated from a different website (i.e. where the request HTTP Referer header does not match the host in the HTTP Host header) + """ + visits: uint64! +} + +"""""" +type AccountHttpRequestsAdaptiveGroupsSumConfidence { + """Confidence interval for the corresponding point estimate""" + crossZoneSubrequests: Confidence! + + """Confidence interval for the corresponding point estimate""" + edgeDnsResponseTimeMs: Confidence! + + """Confidence interval for the corresponding point estimate""" + edgeRequestBytes: Confidence! + + """Confidence interval for the corresponding point estimate""" + edgeResponseBytes: Confidence! + + """Confidence interval for the corresponding point estimate""" + edgeTimeToFirstByteMs: Confidence! + + """Confidence interval for the corresponding point estimate""" + originResponseDurationMs: Confidence! + + """Confidence interval for the corresponding point estimate""" + visits: Confidence! +} + +"""""" +type AccountHttpRequestsAdaptiveJa4SignalsElem { + """Signal name""" + signalName: string! + + """Signal value""" + signalValue: float32! +} + +"""""" +enum AccountHttpRequestsAdaptiveOrderBy { + """apiGatewayMatchedEndpoint ascending""" + apiGatewayMatchedEndpoint_ASC + + """apiGatewayMatchedEndpoint descending""" + apiGatewayMatchedEndpoint_DESC + + """apiGatewayMatchedHost ascending""" + apiGatewayMatchedHost_ASC + + """apiGatewayMatchedHost descending""" + apiGatewayMatchedHost_DESC + + """attackSignatureCategories ascending""" + attackSignatureCategories_ASC + + """attackSignatureCategories descending""" + attackSignatureCategories_DESC + + """attackSignatureRefs ascending""" + attackSignatureRefs_ASC + + """attackSignatureRefs descending""" + attackSignatureRefs_DESC + + """botDetectionIds ascending""" + botDetectionIds_ASC + + """botDetectionIds descending""" + botDetectionIds_DESC + + """botDetectionTags ascending""" + botDetectionTags_ASC + + """botDetectionTags descending""" + botDetectionTags_DESC + + """botManagementDecision ascending""" + botManagementDecision_ASC + + """botManagementDecision descending""" + botManagementDecision_DESC + + """botScoreBucketBy10 ascending""" + botScoreBucketBy10_ASC + + """botScoreBucketBy10 descending""" + botScoreBucketBy10_DESC + + """botScoreSrcName ascending""" + botScoreSrcName_ASC + + """botScoreSrcName descending""" + botScoreSrcName_DESC + + """botScore ascending""" + botScore_ASC + + """botScore descending""" + botScore_DESC + + """cacheReserveUsed ascending""" + cacheReserveUsed_ASC + + """cacheReserveUsed descending""" + cacheReserveUsed_DESC + + """cacheStatus ascending""" + cacheStatus_ASC + + """cacheStatus descending""" + cacheStatus_DESC + + """clientASNDescription ascending""" + clientASNDescription_ASC + + """clientASNDescription descending""" + clientASNDescription_DESC + + """clientAsn ascending""" + clientAsn_ASC + + """clientAsn descending""" + clientAsn_DESC + + """clientCountryName ascending""" + clientCountryName_ASC + + """clientCountryName descending""" + clientCountryName_DESC + + """clientDeviceType ascending""" + clientDeviceType_ASC + + """clientDeviceType descending""" + clientDeviceType_DESC + + """clientIP ascending""" + clientIP_ASC + + """clientIP descending""" + clientIP_DESC + + """clientRefererHost ascending""" + clientRefererHost_ASC + + """clientRefererHost descending""" + clientRefererHost_DESC + + """clientRequestHTTPHost ascending""" + clientRequestHTTPHost_ASC + + """clientRequestHTTPHost descending""" + clientRequestHTTPHost_DESC + + """clientRequestHTTPMethodName ascending""" + clientRequestHTTPMethodName_ASC + + """clientRequestHTTPMethodName descending""" + clientRequestHTTPMethodName_DESC + + """clientRequestHTTPProtocol ascending""" + clientRequestHTTPProtocol_ASC + + """clientRequestHTTPProtocol descending""" + clientRequestHTTPProtocol_DESC + + """clientRequestPath ascending""" + clientRequestPath_ASC + + """clientRequestPath descending""" + clientRequestPath_DESC + + """clientRequestQuery ascending""" + clientRequestQuery_ASC + + """clientRequestQuery descending""" + clientRequestQuery_DESC + + """clientRequestReferer ascending""" + clientRequestReferer_ASC + + """clientRequestReferer descending""" + clientRequestReferer_DESC + + """clientRequestScheme ascending""" + clientRequestScheme_ASC + + """clientRequestScheme descending""" + clientRequestScheme_DESC + + """clientSSLProtocol ascending""" + clientSSLProtocol_ASC + + """clientSSLProtocol descending""" + clientSSLProtocol_DESC + + """coloCode ascending""" + coloCode_ASC + + """coloCode descending""" + coloCode_DESC + + """contentScanHasFailed ascending""" + contentScanHasFailed_ASC + + """contentScanHasFailed descending""" + contentScanHasFailed_DESC + + """contentScanNumMaliciousObj ascending""" + contentScanNumMaliciousObj_ASC + + """contentScanNumMaliciousObj descending""" + contentScanNumMaliciousObj_DESC + + """contentScanNumObj ascending""" + contentScanNumObj_ASC + + """contentScanNumObj descending""" + contentScanNumObj_DESC + + """contentScanObjResults ascending""" + contentScanObjResults_ASC + + """contentScanObjResults descending""" + contentScanObjResults_DESC + + """contentScanObjSizes ascending""" + contentScanObjSizes_ASC + + """contentScanObjSizes descending""" + contentScanObjSizes_DESC + + """contentScanObjTypes ascending""" + contentScanObjTypes_ASC + + """contentScanObjTypes descending""" + contentScanObjTypes_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """edgeDnsResponseTimeMs ascending""" + edgeDnsResponseTimeMs_ASC + + """edgeDnsResponseTimeMs descending""" + edgeDnsResponseTimeMs_DESC + + """edgeResponseContentTypeName ascending""" + edgeResponseContentTypeName_ASC + + """edgeResponseContentTypeName descending""" + edgeResponseContentTypeName_DESC + + """edgeResponseStatus ascending""" + edgeResponseStatus_ASC + + """edgeResponseStatus descending""" + edgeResponseStatus_DESC + + """edgeTimeToFirstByteMs ascending""" + edgeTimeToFirstByteMs_ASC + + """edgeTimeToFirstByteMs descending""" + edgeTimeToFirstByteMs_DESC + + """firewallForAiAnyPiiCategory ascending""" + firewallForAiAnyPiiCategory_ASC + + """firewallForAiAnyPiiCategory descending""" + firewallForAiAnyPiiCategory_DESC + + """firewallForAiInjectionScore ascending""" + firewallForAiInjectionScore_ASC + + """firewallForAiInjectionScore descending""" + firewallForAiInjectionScore_DESC + + """firewallForAiPiiCategories ascending""" + firewallForAiPiiCategories_ASC + + """firewallForAiPiiCategories descending""" + firewallForAiPiiCategories_DESC + + """firewallForAiUnsafeTopicCategories ascending""" + firewallForAiUnsafeTopicCategories_ASC + + """firewallForAiUnsafeTopicCategories descending""" + firewallForAiUnsafeTopicCategories_DESC + + """fraudAttack ascending""" + fraudAttack_ASC + + """fraudAttack descending""" + fraudAttack_DESC + + """fraudDetectionIds ascending""" + fraudDetectionIds_ASC + + """fraudDetectionIds descending""" + fraudDetectionIds_DESC + + """fraudDetectionTags ascending""" + fraudDetectionTags_ASC + + """fraudDetectionTags descending""" + fraudDetectionTags_DESC + + """fraudEmailRisk ascending""" + fraudEmailRisk_ASC + + """fraudEmailRisk descending""" + fraudEmailRisk_DESC + + """httpApplicationVersion ascending""" + httpApplicationVersion_ASC + + """httpApplicationVersion descending""" + httpApplicationVersion_DESC + + """isCrossZoneSubrequest ascending""" + isCrossZoneSubrequest_ASC + + """isCrossZoneSubrequest descending""" + isCrossZoneSubrequest_DESC + + """ja3Hash ascending""" + ja3Hash_ASC + + """ja3Hash descending""" + ja3Hash_DESC + + """ja4 ascending""" + ja4_ASC + + """ja4 descending""" + ja4_DESC + + """jsDetectionPassed ascending""" + jsDetectionPassed_ASC + + """jsDetectionPassed descending""" + jsDetectionPassed_DESC + + """leakedCredentialCheckResult ascending""" + leakedCredentialCheckResult_ASC + + """leakedCredentialCheckResult descending""" + leakedCredentialCheckResult_DESC + + """originASNDescription ascending""" + originASNDescription_ASC + + """originASNDescription descending""" + originASNDescription_DESC + + """originASN ascending""" + originASN_ASC + + """originASN descending""" + originASN_DESC + + """originIP ascending""" + originIP_ASC + + """originIP descending""" + originIP_DESC + + """originResponseDurationMs ascending""" + originResponseDurationMs_ASC + + """originResponseDurationMs descending""" + originResponseDurationMs_DESC + + """originResponseStatus ascending""" + originResponseStatus_ASC + + """originResponseStatus descending""" + originResponseStatus_DESC + + """payPerCrawlStatus ascending""" + payPerCrawlStatus_ASC + + """payPerCrawlStatus descending""" + payPerCrawlStatus_DESC + + """rayName ascending""" + rayName_ASC + + """rayName descending""" + rayName_DESC + + """requestSource ascending""" + requestSource_ASC + + """requestSource descending""" + requestSource_DESC + + """securityAction ascending""" + securityAction_ASC + + """securityAction descending""" + securityAction_DESC + + """securitySource ascending""" + securitySource_ASC + + """securitySource descending""" + securitySource_DESC + + """sessionIdHash ascending""" + sessionIdHash_ASC + + """sessionIdHash descending""" + sessionIdHash_DESC + + """upperTierColoName ascending""" + upperTierColoName_ASC + + """upperTierColoName descending""" + upperTierColoName_DESC + + """userAgentBrowser ascending""" + userAgentBrowser_ASC + + """userAgentBrowser descending""" + userAgentBrowser_DESC + + """userAgentOS ascending""" + userAgentOS_ASC + + """userAgentOS descending""" + userAgentOS_DESC + + """userAgent ascending""" + userAgent_ASC + + """userAgent descending""" + userAgent_DESC + + """verifiedBotCategory ascending""" + verifiedBotCategory_ASC + + """verifiedBotCategory descending""" + verifiedBotCategory_DESC + + """wafAttackScoreClass ascending""" + wafAttackScoreClass_ASC + + """wafAttackScoreClass descending""" + wafAttackScoreClass_DESC + + """wafAttackScore ascending""" + wafAttackScore_ASC + + """wafAttackScore descending""" + wafAttackScore_DESC + + """wafRceAttackScore ascending""" + wafRceAttackScore_ASC + + """wafRceAttackScore descending""" + wafRceAttackScore_DESC + + """wafSqliAttackScore ascending""" + wafSqliAttackScore_ASC + + """wafSqliAttackScore descending""" + wafSqliAttackScore_DESC + + """wafXssAttackScore ascending""" + wafXssAttackScore_ASC + + """wafXssAttackScore descending""" + wafXssAttackScore_DESC + + """xRequestedWith ascending""" + xRequestedWith_ASC + + """xRequestedWith descending""" + xRequestedWith_DESC + + """zoneTag ascending""" + zoneTag_ASC + + """zoneTag descending""" + zoneTag_DESC + + """zoneVersion ascending""" + zoneVersion_ASC + + """zoneVersion descending""" + zoneVersion_DESC +} + +"""A high-level summary of HTTP requests made by end users.""" +type AccountHttpRequestsOverviewAdaptiveGroups { + """The average value for a metric per dimension""" + avg: AccountHttpRequestsOverviewAdaptiveGroupsAvg + + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountHttpRequestsOverviewAdaptiveGroupsConfidence! + + """List of dimensions to group by""" + dimensions: AccountHttpRequestsOverviewAdaptiveGroupsDimensions + + """ + The ratio of a metric in comparison to the rest of the traffic, between 0 and 1 + """ + ratio: AccountHttpRequestsOverviewAdaptiveGroupsRatio + + """The sum of values for a metric per dimension""" + sum: AccountHttpRequestsOverviewAdaptiveGroupsSum +} + +"""""" +type AccountHttpRequestsOverviewAdaptiveGroupsAvg { + """ + The average originResponseDuration, in milliseconds, excluding 0 values (i.e. cached ones) + """ + originResponseDurationMs: float64! + + """Average sample interval""" + sampleInterval: float64! +} + +"""""" +type AccountHttpRequestsOverviewAdaptiveGroupsConfidence { + """Confidence level that was requested""" + level: float64! + + """ + The sum of values for a metric per dimension, with confidence intervals + """ + sum: AccountHttpRequestsOverviewAdaptiveGroupsSumConfidence +} + +"""""" +type AccountHttpRequestsOverviewAdaptiveGroupsDimensions { + """Country from which request originated""" + clientCountryName: string! + + """HTTP protocol version""" + clientRequestHTTPProtocol: string! + + """SSL protocol version""" + clientSSLProtocol: string! + + """The date the event occurred at the edge""" + date: Date! + + """The date and time the event occurred at the edge""" + datetime: Time! + + """ + The date and time the event occurred at the edge truncated to a multiple of 15 minutes + """ + datetimeFifteenMinutes: Time! + + """ + The date and time the event occurred at the edge truncated to a multiple of 5 minutes + """ + datetimeFiveMinutes: Time! + + """The date and time the event occurred at the edge truncated to hours""" + datetimeHour: Time! + + """ + The date and time the event occurred at the edge truncated to the minute + """ + datetimeMinute: Time! + + """Content type returned to client""" + edgeResponseContentTypeName: string! + + """HTTP response status code returned to client""" + edgeResponseStatus: uint16! + + """Version associated with HTTP Application""" + httpApplicationVersion: uint64! @deprecated(reason: "Field is replaced with zoneVersion") + + """Browser parsed from the user agent""" + userAgentBrowser: string! + + """The version of a zone""" + zoneVersion: uint64! +} + +"""""" +input AccountHttpRequestsOverviewAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountHttpRequestsOverviewAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountHttpRequestsOverviewAdaptiveGroupsFilter_InputObject!] + + """""" + clientCountryName: string + + """""" + clientCountryName_geq: string + + """""" + clientCountryName_gt: string + + """""" + clientCountryName_in: [string!] + + """""" + clientCountryName_leq: string + + """""" + clientCountryName_like: string + + """""" + clientCountryName_lt: string + + """""" + clientCountryName_neq: string + + """""" + clientCountryName_notin: [string!] + + """""" + clientCountryName_notlike: string + + """""" + clientRequestHTTPProtocol: string + + """""" + clientRequestHTTPProtocol_geq: string + + """""" + clientRequestHTTPProtocol_gt: string + + """""" + clientRequestHTTPProtocol_in: [string!] + + """""" + clientRequestHTTPProtocol_leq: string + + """""" + clientRequestHTTPProtocol_like: string + + """""" + clientRequestHTTPProtocol_lt: string + + """""" + clientRequestHTTPProtocol_neq: string + + """""" + clientRequestHTTPProtocol_notin: [string!] + + """""" + clientRequestHTTPProtocol_notlike: string + + """""" + clientSSLProtocol: string + + """""" + clientSSLProtocol_geq: string + + """""" + clientSSLProtocol_gt: string + + """""" + clientSSLProtocol_in: [string!] + + """""" + clientSSLProtocol_leq: string + + """""" + clientSSLProtocol_like: string + + """""" + clientSSLProtocol_lt: string + + """""" + clientSSLProtocol_neq: string + + """""" + clientSSLProtocol_notin: [string!] + + """""" + clientSSLProtocol_notlike: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + edgeResponseContentTypeName: string + + """""" + edgeResponseContentTypeName_geq: string + + """""" + edgeResponseContentTypeName_gt: string + + """""" + edgeResponseContentTypeName_in: [string!] + + """""" + edgeResponseContentTypeName_leq: string + + """""" + edgeResponseContentTypeName_like: string + + """""" + edgeResponseContentTypeName_lt: string + + """""" + edgeResponseContentTypeName_neq: string + + """""" + edgeResponseContentTypeName_notin: [string!] + + """""" + edgeResponseContentTypeName_notlike: string + + """""" + edgeResponseStatus: uint16 + + """""" + edgeResponseStatus_geq: uint16 + + """""" + edgeResponseStatus_gt: uint16 + + """""" + edgeResponseStatus_in: [uint16!] + + """""" + edgeResponseStatus_leq: uint16 + + """""" + edgeResponseStatus_lt: uint16 + + """""" + edgeResponseStatus_neq: uint16 + + """""" + edgeResponseStatus_notin: [uint16!] + + """""" + httpApplicationVersion: uint64 + + """""" + httpApplicationVersion_geq: uint64 + + """""" + httpApplicationVersion_gt: uint64 + + """""" + httpApplicationVersion_in: [uint64!] + + """""" + httpApplicationVersion_leq: uint64 + + """""" + httpApplicationVersion_lt: uint64 + + """""" + httpApplicationVersion_neq: uint64 + + """""" + httpApplicationVersion_notin: [uint64!] + + """""" + rayName: string + + """""" + rayName_geq: string + + """""" + rayName_gt: string + + """""" + rayName_in: [string!] + + """""" + rayName_leq: string + + """""" + rayName_like: string + + """""" + rayName_lt: string + + """""" + rayName_neq: string + + """""" + rayName_notin: [string!] + + """""" + rayName_notlike: string + + """""" + userAgentBrowser: string + + """""" + userAgentBrowser_geq: string + + """""" + userAgentBrowser_gt: string + + """""" + userAgentBrowser_in: [string!] + + """""" + userAgentBrowser_leq: string + + """""" + userAgentBrowser_like: string + + """""" + userAgentBrowser_lt: string + + """""" + userAgentBrowser_neq: string + + """""" + userAgentBrowser_notin: [string!] + + """""" + userAgentBrowser_notlike: string + + """""" + zoneVersion: uint64 + + """""" + zoneVersion_geq: uint64 + + """""" + zoneVersion_gt: uint64 + + """""" + zoneVersion_in: [uint64!] + + """""" + zoneVersion_leq: uint64 + + """""" + zoneVersion_lt: uint64 + + """""" + zoneVersion_neq: uint64 + + """""" + zoneVersion_notin: [uint64!] +} + +"""""" +enum AccountHttpRequestsOverviewAdaptiveGroupsOrderBy { + """avg(originResponseDurationMs) ascending""" + avg_originResponseDurationMs_ASC + + """avg(originResponseDurationMs) descending""" + avg_originResponseDurationMs_DESC + + """avg(sampleInterval) ascending""" + avg_sampleInterval_ASC + + """avg(sampleInterval) descending""" + avg_sampleInterval_DESC + + """clientCountryName ascending""" + clientCountryName_ASC + + """clientCountryName descending""" + clientCountryName_DESC + + """clientRequestHTTPProtocol ascending""" + clientRequestHTTPProtocol_ASC + + """clientRequestHTTPProtocol descending""" + clientRequestHTTPProtocol_DESC + + """clientSSLProtocol ascending""" + clientSSLProtocol_ASC + + """clientSSLProtocol descending""" + clientSSLProtocol_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """edgeResponseContentTypeName ascending""" + edgeResponseContentTypeName_ASC + + """edgeResponseContentTypeName descending""" + edgeResponseContentTypeName_DESC + + """edgeResponseStatus ascending""" + edgeResponseStatus_ASC + + """edgeResponseStatus descending""" + edgeResponseStatus_DESC + + """httpApplicationVersion ascending""" + httpApplicationVersion_ASC + + """httpApplicationVersion descending""" + httpApplicationVersion_DESC + + """ratio(cachedBytes) ascending""" + ratio_cachedBytes_ASC + + """ratio(cachedBytes) descending""" + ratio_cachedBytes_DESC + + """ratio(cachedRequests) ascending""" + ratio_cachedRequests_ASC + + """ratio(cachedRequests) descending""" + ratio_cachedRequests_DESC + + """ratio(encryptedBytes) ascending""" + ratio_encryptedBytes_ASC + + """ratio(encryptedBytes) descending""" + ratio_encryptedBytes_DESC + + """ratio(encryptedRequests) ascending""" + ratio_encryptedRequests_ASC + + """ratio(encryptedRequests) descending""" + ratio_encryptedRequests_DESC + + """ratio(status4xx) ascending""" + ratio_status4xx_ASC + + """ratio(status4xx) descending""" + ratio_status4xx_DESC + + """ratio(status5xx) ascending""" + ratio_status5xx_ASC + + """ratio(status5xx) descending""" + ratio_status5xx_DESC + + """requestSource ascending""" + requestSource_ASC + + """requestSource descending""" + requestSource_DESC + + """sum(bytes) ascending""" + sum_bytes_ASC + + """sum(bytes) descending""" + sum_bytes_DESC + + """sum(cachedBytes) ascending""" + sum_cachedBytes_ASC + + """sum(cachedBytes) descending""" + sum_cachedBytes_DESC + + """sum(cachedRequests) ascending""" + sum_cachedRequests_ASC + + """sum(cachedRequests) descending""" + sum_cachedRequests_DESC + + """sum(pageViews) ascending""" + sum_pageViews_ASC + + """sum(pageViews) descending""" + sum_pageViews_DESC + + """sum(requests) ascending""" + sum_requests_ASC + + """sum(requests) descending""" + sum_requests_DESC + + """sum(visits) ascending""" + sum_visits_ASC + + """sum(visits) descending""" + sum_visits_DESC + + """userAgentBrowser ascending""" + userAgentBrowser_ASC + + """userAgentBrowser descending""" + userAgentBrowser_DESC + + """zoneVersion ascending""" + zoneVersion_ASC + + """zoneVersion descending""" + zoneVersion_DESC +} + +"""""" +type AccountHttpRequestsOverviewAdaptiveGroupsRatio { + """""" + cachedBytes: float64! + + """""" + cachedRequests: float64! + + """""" + encryptedBytes: float64! + + """""" + encryptedRequests: float64! + + """""" + status4xx: float64! + + """""" + status5xx: float64! +} + +"""""" +type AccountHttpRequestsOverviewAdaptiveGroupsSum { + """""" + bytes: uint64! + + """Bytes returned to client from cache""" + cachedBytes: uint64! + + """Requests served from cache""" + cachedRequests: uint64! + + """Successful requests for HTML content""" + pageViews: uint64! + + """""" + requests: uint64! + + """ + The number of requests by end-users that were initiated from a different website (i.e. where the request HTTP Referer header does not match the host in the HTTP Host header) + """ + visits: uint64! +} + +"""""" +type AccountHttpRequestsOverviewAdaptiveGroupsSumConfidence { + """Confidence interval for the corresponding point estimate""" + bytes: Confidence! + + """Confidence interval for the corresponding point estimate""" + cachedBytes: Confidence! + + """Confidence interval for the corresponding point estimate""" + cachedRequests: Confidence! + + """Confidence interval for the corresponding point estimate""" + pageViews: Confidence! + + """Confidence interval for the corresponding point estimate""" + requests: Confidence! + + """Confidence interval for the corresponding point estimate""" + visits: Confidence! +} + +"""Hyperdrive query events with adaptive sampling.""" +type AccountHyperdriveQueriesAdaptiveGroups { + """The average value for a metric per dimension""" + avg: AccountHyperdriveQueriesAdaptiveGroupsAvg + + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountHyperdriveQueriesAdaptiveGroupsConfidence! + + """Total number of Hyperdrive queries""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountHyperdriveQueriesAdaptiveGroupsDimensions + + """The sum of values for a metric per dimension""" + sum: AccountHyperdriveQueriesAdaptiveGroupsSum +} + +"""""" +type AccountHyperdriveQueriesAdaptiveGroupsAvg { + """ + Average latency (in milliseconds) of retrieving a connection to the origin database + """ + connectionLatency: uint64! + + """Average size (in bytes) of queries handled by Hyperdrive""" + queryBytes: uint64! + + """Average latency (in milliseconds) of serving a query using Hyperdrive""" + queryLatency: uint64! + + """Average size (in bytes) of query results served by Hyperdrive""" + resultBytes: uint64! + + """The average value used for sample interval""" + sampleInterval: float64! +} + +"""""" +type AccountHyperdriveQueriesAdaptiveGroupsConfidence { + """Total number of Hyperdrive queries, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! + + """ + The sum of values for a metric per dimension, with confidence intervals + """ + sum: AccountHyperdriveQueriesAdaptiveGroupsSumConfidence +} + +"""""" +type AccountHyperdriveQueriesAdaptiveGroupsDimensions { + """The cache status of the Hyperdrive query event""" + cacheStatus: string! + + """ + IATA airport code for the Cloudflare datacenter where the query was handled. + """ + coloCode: string! + + """The ID of the Hyperdrive Config""" + configId: string! + + """Hyperdrive query event timestamp, truncated to start of a day""" + date: Date! + + """Hyperdrive query event timestamp""" + datetime: Time! + + """Hyperdrive query event timestamp, truncated to start of hour""" + datetimeHour: Time! + + """Hyperdrive query event timestamp, truncated to start of minute""" + datetimeMinute: Time! + + """ + The result of the Hyperdrive event: 'error' or 'complete'. Error events may not have complete data. + """ + eventStatus: string! + + """Whether the query originates from a Hyperdrive config on the free tier""" + isFree: string! +} + +"""""" +input AccountHyperdriveQueriesAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountHyperdriveQueriesAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountHyperdriveQueriesAdaptiveGroupsFilter_InputObject!] + + """""" + cacheStatus: string + + """""" + cacheStatus_geq: string + + """""" + cacheStatus_gt: string + + """""" + cacheStatus_in: [string!] + + """""" + cacheStatus_leq: string + + """""" + cacheStatus_like: string + + """""" + cacheStatus_lt: string + + """""" + cacheStatus_neq: string + + """""" + cacheStatus_notin: [string!] + + """""" + cacheStatus_notlike: string + + """""" + coloCode: string + + """""" + coloCode_geq: string + + """""" + coloCode_gt: string + + """""" + coloCode_in: [string!] + + """""" + coloCode_leq: string + + """""" + coloCode_like: string + + """""" + coloCode_lt: string + + """""" + coloCode_neq: string + + """""" + coloCode_notin: [string!] + + """""" + coloCode_notlike: string + + """""" + configId: string + + """""" + configId_geq: string + + """""" + configId_gt: string + + """""" + configId_in: [string!] + + """""" + configId_leq: string + + """""" + configId_like: string + + """""" + configId_lt: string + + """""" + configId_neq: string + + """""" + configId_notin: [string!] + + """""" + configId_notlike: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + eventStatus: string + + """""" + eventStatus_geq: string + + """""" + eventStatus_gt: string + + """""" + eventStatus_in: [string!] + + """""" + eventStatus_leq: string + + """""" + eventStatus_like: string + + """""" + eventStatus_lt: string + + """""" + eventStatus_neq: string + + """""" + eventStatus_notin: [string!] + + """""" + eventStatus_notlike: string + + """""" + isFree: string + + """""" + isFree_geq: string + + """""" + isFree_gt: string + + """""" + isFree_in: [string!] + + """""" + isFree_leq: string + + """""" + isFree_like: string + + """""" + isFree_lt: string + + """""" + isFree_neq: string + + """""" + isFree_notin: [string!] + + """""" + isFree_notlike: string +} + +"""""" +enum AccountHyperdriveQueriesAdaptiveGroupsOrderBy { + """avg(connectionLatency) ascending""" + avg_connectionLatency_ASC + + """avg(connectionLatency) descending""" + avg_connectionLatency_DESC + + """avg(queryBytes) ascending""" + avg_queryBytes_ASC + + """avg(queryBytes) descending""" + avg_queryBytes_DESC + + """avg(queryLatency) ascending""" + avg_queryLatency_ASC + + """avg(queryLatency) descending""" + avg_queryLatency_DESC + + """avg(resultBytes) ascending""" + avg_resultBytes_ASC + + """avg(resultBytes) descending""" + avg_resultBytes_DESC + + """avg(sampleInterval) ascending""" + avg_sampleInterval_ASC + + """avg(sampleInterval) descending""" + avg_sampleInterval_DESC + + """cacheStatus ascending""" + cacheStatus_ASC + + """cacheStatus descending""" + cacheStatus_DESC + + """coloCode ascending""" + coloCode_ASC + + """coloCode descending""" + coloCode_DESC + + """configId ascending""" + configId_ASC + + """configId descending""" + configId_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """eventStatus ascending""" + eventStatus_ASC + + """eventStatus descending""" + eventStatus_DESC + + """isFree ascending""" + isFree_ASC + + """isFree descending""" + isFree_DESC + + """sum(clientWriteLatency) ascending""" + sum_clientWriteLatency_ASC + + """sum(clientWriteLatency) descending""" + sum_clientWriteLatency_DESC + + """sum(connectionLatency) ascending""" + sum_connectionLatency_ASC + + """sum(connectionLatency) descending""" + sum_connectionLatency_DESC + + """sum(originReadLatency) ascending""" + sum_originReadLatency_ASC + + """sum(originReadLatency) descending""" + sum_originReadLatency_DESC + + """sum(originWriteLatency) ascending""" + sum_originWriteLatency_ASC + + """sum(originWriteLatency) descending""" + sum_originWriteLatency_DESC + + """sum(queryBytes) ascending""" + sum_queryBytes_ASC + + """sum(queryBytes) descending""" + sum_queryBytes_DESC + + """sum(queryLatency) ascending""" + sum_queryLatency_ASC + + """sum(queryLatency) descending""" + sum_queryLatency_DESC + + """sum(resultBytes) ascending""" + sum_resultBytes_ASC + + """sum(resultBytes) descending""" + sum_resultBytes_DESC +} + +"""""" +type AccountHyperdriveQueriesAdaptiveGroupsSum { + """ + Total latency (in milliseconds) of sending query results back to client + """ + clientWriteLatency: uint64! + + """ + Total latency (in milliseconds) of retrieving a connection to the origin database + """ + connectionLatency: uint64! + + """ + Total latency (in milliseconds) of receiving responses from origin to Hyperdrive + """ + originReadLatency: uint64! + + """ + Total latency (in milliseconds) of sending queries to origin from Hyperdrive + """ + originWriteLatency: uint64! + + """Total size (in bytes) of queries handled by Hyperdrive""" + queryBytes: uint64! + + """Total latency (in milliseconds) of serving a query using Hyperdrive""" + queryLatency: uint64! + + """Total size (in bytes) of query results served by Hyperdrive""" + resultBytes: uint64! +} + +"""""" +type AccountHyperdriveQueriesAdaptiveGroupsSumConfidence { + """Confidence interval for the corresponding point estimate""" + clientWriteLatency: Confidence! + + """Confidence interval for the corresponding point estimate""" + connectionLatency: Confidence! + + """Confidence interval for the corresponding point estimate""" + originReadLatency: Confidence! + + """Confidence interval for the corresponding point estimate""" + originWriteLatency: Confidence! + + """Confidence interval for the corresponding point estimate""" + queryBytes: Confidence! + + """Confidence interval for the corresponding point estimate""" + queryLatency: Confidence! + + """Confidence interval for the corresponding point estimate""" + resultBytes: Confidence! +} + +"""A high-level summary of Cloudflare Images served to end users.""" +type AccountImagesRequestsAdaptiveGroups { + """The average value for a metric per dimension""" + avg: AccountImagesRequestsAdaptiveGroupsAvg + + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountImagesRequestsAdaptiveGroupsConfidence! + + """List of dimensions to group by""" + dimensions: AccountImagesRequestsAdaptiveGroupsDimensions + + """The sum of values for a metric per dimension""" + sum: AccountImagesRequestsAdaptiveGroupsSum +} + +"""""" +type AccountImagesRequestsAdaptiveGroupsAvg { + """""" + sampleInterval: float64! +} + +"""""" +type AccountImagesRequestsAdaptiveGroupsConfidence { + """Confidence level that was requested""" + level: float64! + + """ + The sum of values for a metric per dimension, with confidence intervals + """ + sum: AccountImagesRequestsAdaptiveGroupsSumConfidence +} + +"""""" +type AccountImagesRequestsAdaptiveGroupsDimensions { + """The date the event occurred at the edge""" + date: Date! + + """The date and time the event occurred at the edge""" + datetime: Time! + + """ + The date and time the event occurred at the edge truncated to a multiple of 15 minutes + """ + datetimeFifteenMinutes: Time! + + """ + The date and time the event occurred at the edge truncated to a multiple of 5 minutes + """ + datetimeFiveMinutes: Time! + + """The date and time the event occurred at the edge truncated to hours""" + datetimeHour: Time! + + """ + The date and time the event occurred at the edge truncated to the minute + """ + datetimeMinute: Time! +} + +"""""" +input AccountImagesRequestsAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountImagesRequestsAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountImagesRequestsAdaptiveGroupsFilter_InputObject!] + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] +} + +"""""" +enum AccountImagesRequestsAdaptiveGroupsOrderBy { + """avg(sampleInterval) ascending""" + avg_sampleInterval_ASC + + """avg(sampleInterval) descending""" + avg_sampleInterval_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """edgeResponseBytes ascending""" + edgeResponseBytes_ASC + + """edgeResponseBytes descending""" + edgeResponseBytes_DESC + + """edgeResponseStatus ascending""" + edgeResponseStatus_ASC + + """edgeResponseStatus descending""" + edgeResponseStatus_DESC + + """sum(requests) ascending""" + sum_requests_ASC + + """sum(requests) descending""" + sum_requests_DESC +} + +"""""" +type AccountImagesRequestsAdaptiveGroupsSum { + """""" + requests: uint64! +} + +"""""" +type AccountImagesRequestsAdaptiveGroupsSumConfidence { + """Confidence interval for the corresponding point estimate""" + requests: Confidence! +} + +"""Image unique transfromations per day""" +type AccountImagesUniqueTransformations { + """The date uniques are calculated for""" + date: Date! + + """Number of unique image transformations per day in sliding window""" + transformations: uint64! +} + +"""Image unique transformations accumulated since start of month""" +type AccountImagesUniqueTransformationsAccumulatedSinceStartOfMonth { + """The date uniques are calculated for""" + date: Date! + + """ + Accumulated number of unique image transformations since start of month per day in sliding window + """ + transformations: uint64! +} + +"""""" +input AccountImagesUniqueTransformationsAccumulatedSinceStartOfMonthFilter_InputObject { + """""" + AND: [AccountImagesUniqueTransformationsAccumulatedSinceStartOfMonthFilter_InputObject!] + + """""" + OR: [AccountImagesUniqueTransformationsAccumulatedSinceStartOfMonthFilter_InputObject!] + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] +} + +"""""" +enum AccountImagesUniqueTransformationsAccumulatedSinceStartOfMonthOrderBy { + """date ascending""" + date_ASC + + """date descending""" + date_DESC +} + +"""""" +input AccountImagesUniqueTransformationsFilter_InputObject { + """""" + AND: [AccountImagesUniqueTransformationsFilter_InputObject!] + + """""" + OR: [AccountImagesUniqueTransformationsFilter_InputObject!] + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] +} + +"""""" +enum AccountImagesUniqueTransformationsOrderBy { + """date ascending""" + date_ASC + + """date descending""" + date_DESC +} + +"""KV operations data with adaptive sampling""" +type AccountKvOperationsAdaptiveGroups { + """The average value for a metric per dimension""" + avg: AccountKvOperationsAdaptiveGroupsAvg + + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountKvOperationsAdaptiveGroupsConfidence! + + """Number of requests""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountKvOperationsAdaptiveGroupsDimensions + + """The max of values for a metric per dimension""" + max: AccountKvOperationsAdaptiveGroupsMax + + """The min of values for a metric per dimension""" + min: AccountKvOperationsAdaptiveGroupsMin + + """Quantiles of a metric per dimension""" + quantiles: AccountKvOperationsAdaptiveGroupsQuantiles + + """The sum of values for a metric per dimension""" + sum: AccountKvOperationsAdaptiveGroupsSum +} + +"""""" +type AccountKvOperationsAdaptiveGroupsAvg { + """The average value used for sample interval""" + sampleInterval: float64! +} + +"""""" +type AccountKvOperationsAdaptiveGroupsConfidence { + """Number of requests, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! + + """ + The sum of values for a metric per dimension, with confidence intervals + """ + sum: AccountKvOperationsAdaptiveGroupsSumConfidence +} + +"""""" +type AccountKvOperationsAdaptiveGroupsDimensions { + """The type of the action (read, write, delete, list)""" + actionType: string! + + """Message operation timestamp, truncated to start of a day""" + date: Date! + + """Message operation timestamp""" + datetime: Time! + + """Message operation timestamp, truncated to start of an hour""" + datetimeHour: Time! + + """Message operation timestamp, truncated to start of an minute""" + datetimeMinute: Time! + + """The hexa-encoded namespace id""" + namespaceId: string! + + """The http status code of the response.""" + responseStatusCode: uint16! + + """ + The result of the action (hot_read, cold_read, deleted, uploaded, error, not_found) + """ + result: string! +} + +"""""" +input AccountKvOperationsAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountKvOperationsAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountKvOperationsAdaptiveGroupsFilter_InputObject!] + + """""" + actionType: string + + """""" + actionType_geq: string + + """""" + actionType_gt: string + + """""" + actionType_in: [string!] + + """""" + actionType_leq: string + + """""" + actionType_like: string + + """""" + actionType_lt: string + + """""" + actionType_neq: string + + """""" + actionType_notin: [string!] + + """""" + actionType_notlike: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + namespaceId: string + + """""" + namespaceId_geq: string + + """""" + namespaceId_gt: string + + """""" + namespaceId_in: [string!] + + """""" + namespaceId_leq: string + + """""" + namespaceId_like: string + + """""" + namespaceId_lt: string + + """""" + namespaceId_neq: string + + """""" + namespaceId_notin: [string!] + + """""" + namespaceId_notlike: string + + """""" + responseStatusCode: uint16 + + """""" + responseStatusCode_geq: uint16 + + """""" + responseStatusCode_gt: uint16 + + """""" + responseStatusCode_in: [uint16!] + + """""" + responseStatusCode_leq: uint16 + + """""" + responseStatusCode_lt: uint16 + + """""" + responseStatusCode_neq: uint16 + + """""" + responseStatusCode_notin: [uint16!] + + """""" + result: string + + """""" + result_geq: string + + """""" + result_gt: string + + """""" + result_in: [string!] + + """""" + result_leq: string + + """""" + result_like: string + + """""" + result_lt: string + + """""" + result_neq: string + + """""" + result_notin: [string!] + + """""" + result_notlike: string +} + +"""""" +type AccountKvOperationsAdaptiveGroupsMax { + """Max latency""" + latencyMs: uint32! + + """Max object bytes""" + objectBytes: uint32! +} + +"""""" +type AccountKvOperationsAdaptiveGroupsMin { + """Min latency""" + latencyMs: uint32! + + """Min object bytes""" + objectBytes: uint32! +} + +"""""" +enum AccountKvOperationsAdaptiveGroupsOrderBy { + """actionType ascending""" + actionType_ASC + + """actionType descending""" + actionType_DESC + + """avg(sampleInterval) ascending""" + avg_sampleInterval_ASC + + """avg(sampleInterval) descending""" + avg_sampleInterval_DESC + + """clientType ascending""" + clientType_ASC + + """clientType descending""" + clientType_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """max(latencyMs) ascending""" + max_latencyMs_ASC + + """max(latencyMs) descending""" + max_latencyMs_DESC + + """max(objectBytes) ascending""" + max_objectBytes_ASC + + """max(objectBytes) descending""" + max_objectBytes_DESC + + """min(latencyMs) ascending""" + min_latencyMs_ASC + + """min(latencyMs) descending""" + min_latencyMs_DESC + + """min(objectBytes) ascending""" + min_objectBytes_ASC + + """min(objectBytes) descending""" + min_objectBytes_DESC + + """namespaceDeleted ascending""" + namespaceDeleted_ASC + + """namespaceDeleted descending""" + namespaceDeleted_DESC + + """namespaceId ascending""" + namespaceId_ASC + + """namespaceId descending""" + namespaceId_DESC + + """quantiles(latencyMsP25) ascending""" + quantiles_latencyMsP25_ASC + + """quantiles(latencyMsP25) descending""" + quantiles_latencyMsP25_DESC + + """quantiles(latencyMsP50) ascending""" + quantiles_latencyMsP50_ASC + + """quantiles(latencyMsP50) descending""" + quantiles_latencyMsP50_DESC + + """quantiles(latencyMsP75) ascending""" + quantiles_latencyMsP75_ASC + + """quantiles(latencyMsP75) descending""" + quantiles_latencyMsP75_DESC + + """quantiles(latencyMsP90) ascending""" + quantiles_latencyMsP90_ASC + + """quantiles(latencyMsP90) descending""" + quantiles_latencyMsP90_DESC + + """quantiles(latencyMsP999) ascending""" + quantiles_latencyMsP999_ASC + + """quantiles(latencyMsP999) descending""" + quantiles_latencyMsP999_DESC + + """quantiles(latencyMsP99) ascending""" + quantiles_latencyMsP99_ASC + + """quantiles(latencyMsP99) descending""" + quantiles_latencyMsP99_DESC + + """responseStatusCode ascending""" + responseStatusCode_ASC + + """responseStatusCode descending""" + responseStatusCode_DESC + + """result ascending""" + result_ASC + + """result descending""" + result_DESC + + """sum(objectBytes) ascending""" + sum_objectBytes_ASC + + """sum(objectBytes) descending""" + sum_objectBytes_DESC + + """sum(requests) ascending""" + sum_requests_ASC + + """sum(requests) descending""" + sum_requests_DESC +} + +"""""" +type AccountKvOperationsAdaptiveGroupsQuantiles { + """25th percentile latency (milliseconds)""" + latencyMsP25: float32! + + """50th percentile latency (milliseconds)""" + latencyMsP50: float32! + + """75th percentile latency (milliseconds)""" + latencyMsP75: float32! + + """90th percentile latency (milliseconds)""" + latencyMsP90: float32! + + """99th percentile latency (milliseconds)""" + latencyMsP99: float32! + + """99.9th percentile latency (milliseconds)""" + latencyMsP999: float32! +} + +"""""" +type AccountKvOperationsAdaptiveGroupsSum { + """Total bytes of all objects""" + objectBytes: uint64! + + """Total number of requests""" + requests: uint64! +} + +"""""" +type AccountKvOperationsAdaptiveGroupsSumConfidence { + """Confidence interval for the corresponding point estimate""" + objectBytes: Confidence! + + """Confidence interval for the corresponding point estimate""" + requests: Confidence! +} + +"""KV stored data with adaptive sampling""" +type AccountKvStorageAdaptiveGroups { + """List of dimensions to group by""" + dimensions: AccountKvStorageAdaptiveGroupsDimensions + + """The max of values for a metric per dimension""" + max: AccountKvStorageAdaptiveGroupsMax +} + +"""""" +type AccountKvStorageAdaptiveGroupsDimensions { + """Message operation timestamp, truncated to start of a day""" + date: Date! + + """Message operation timestamp""" + datetime: Time! + + """Message operation timestamp, truncated to start of an hour""" + datetimeHour: Time! + + """Message operation timestamp, truncated to start of an minute""" + datetimeMinute: Time! + + """The hexa-encoded namespace id""" + namespaceId: string! +} + +"""""" +input AccountKvStorageAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountKvStorageAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountKvStorageAdaptiveGroupsFilter_InputObject!] + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + namespaceId: string + + """""" + namespaceId_geq: string + + """""" + namespaceId_gt: string + + """""" + namespaceId_in: [string!] + + """""" + namespaceId_leq: string + + """""" + namespaceId_like: string + + """""" + namespaceId_lt: string + + """""" + namespaceId_neq: string + + """""" + namespaceId_notin: [string!] + + """""" + namespaceId_notlike: string +} + +"""""" +type AccountKvStorageAdaptiveGroupsMax { + """Max number of bytes""" + byteCount: uint64! + + """Max number of keys""" + keyCount: uint64! +} + +"""""" +enum AccountKvStorageAdaptiveGroupsOrderBy { + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """max(byteCount) ascending""" + max_byteCount_ASC + + """max(byteCount) descending""" + max_byteCount_DESC + + """max(keyCount) ascending""" + max_keyCount_ASC + + """max(keyCount) descending""" + max_keyCount_DESC + + """namespaceId ascending""" + namespaceId_ASC + + """namespaceId descending""" + namespaceId_DESC +} + +"""Live input events with adaptive sampling""" +type AccountLiveInputEventsAdaptive { + """Ingest colo""" + coloCode: string! + + """The time of the event""" + datetime: Time! + + """Event code""" + eventCode: string! + + """Event description""" + eventDescription: string! + + """Live input ID""" + inputId: string! +} + +"""""" +input AccountLiveInputEventsAdaptiveFilter_InputObject { + """""" + AND: [AccountLiveInputEventsAdaptiveFilter_InputObject!] + + """""" + OR: [AccountLiveInputEventsAdaptiveFilter_InputObject!] + + """""" + coloCode: string + + """""" + coloCode_geq: string + + """""" + coloCode_gt: string + + """""" + coloCode_in: [string!] + + """""" + coloCode_leq: string + + """""" + coloCode_like: string + + """""" + coloCode_lt: string + + """""" + coloCode_neq: string + + """""" + coloCode_notin: [string!] + + """""" + coloCode_notlike: string + + """""" + datetime: Time + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + eventCode: string + + """""" + eventCode_geq: string + + """""" + eventCode_gt: string + + """""" + eventCode_in: [string!] + + """""" + eventCode_leq: string + + """""" + eventCode_like: string + + """""" + eventCode_lt: string + + """""" + eventCode_neq: string + + """""" + eventCode_notin: [string!] + + """""" + eventCode_notlike: string + + """""" + eventDescription: string + + """""" + eventDescription_geq: string + + """""" + eventDescription_gt: string + + """""" + eventDescription_in: [string!] + + """""" + eventDescription_leq: string + + """""" + eventDescription_like: string + + """""" + eventDescription_lt: string + + """""" + eventDescription_neq: string + + """""" + eventDescription_notin: [string!] + + """""" + eventDescription_notlike: string + + """""" + inputId: string + + """""" + inputId_geq: string + + """""" + inputId_gt: string + + """""" + inputId_in: [string!] + + """""" + inputId_leq: string + + """""" + inputId_like: string + + """""" + inputId_lt: string + + """""" + inputId_neq: string + + """""" + inputId_notin: [string!] + + """""" + inputId_notlike: string +} + +"""Aggregated live input events with adaptive sampling""" +type AccountLiveInputEventsAdaptiveGroups { + """The average of values for a metric per dimension""" + avg: AccountLiveInputEventsAdaptiveGroupsAvg + + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountLiveInputEventsAdaptiveGroupsConfidence! + + """Number of segments stored""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountLiveInputEventsAdaptiveGroupsDimensions + + """The maximum value for a metric per dimension""" + max: AccountLiveInputEventsAdaptiveGroupsMax + + """The minimum value for a metric per dimension""" + min: AccountLiveInputEventsAdaptiveGroupsMin +} + +"""""" +type AccountLiveInputEventsAdaptiveGroupsAvg { + """Per-second bit rate when grouped by datetime""" + bitRate: float64! + + """Per-second bit rate when grouped by datetimeFifteenMinutes""" + bitRateFifteenMinutes: float64! + + """Per-second bit rate when grouped by datetimeFiveMinutes""" + bitRateFiveMinutes: float64! + + """Per-second bit rate when grouped by datetimeHour""" + bitRateHour: float64! + + """Per-second bit rate when grouped by datetimeMinute""" + bitRateMinute: float64! + + """Average GOP size in bytes""" + gopByteSize: float64! + + """Average GOP duration in ms""" + gopDuration: float64! + + """Average GOP upload time in ms""" + gopUploadTime: float64! + + """Average upload to duration ratio""" + uploadDurationRatio: float64! +} + +"""""" +type AccountLiveInputEventsAdaptiveGroupsAvgConfidence { + """Confidence interval for the corresponding point estimate""" + bitRate: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateFifteenMinutes: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateFiveMinutes: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateHour: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateMinute: Confidence! +} + +"""""" +type AccountLiveInputEventsAdaptiveGroupsConfidence { + """ + The average of values for a metric per dimension, with confidence intervals + """ + avg: AccountLiveInputEventsAdaptiveGroupsAvgConfidence + + """Number of segments stored, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! +} + +"""""" +type AccountLiveInputEventsAdaptiveGroupsDimensions { + """Live input events timestamp""" + datetime: Time! + + """The date and time of the event truncated to fifteen minutes""" + datetimeFifteenMinutes: Time! + + """The date and time of the event truncated to five minutes""" + datetimeFiveMinutes: Time! + + """The date and time of the event truncated to the hour""" + datetimeHour: Time! + + """The date and time of the event truncated to the minute""" + datetimeMinute: Time! + + """Event code""" + eventCode: string! + + """Live input ID""" + inputId: string! +} + +"""""" +input AccountLiveInputEventsAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountLiveInputEventsAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountLiveInputEventsAdaptiveGroupsFilter_InputObject!] + + """""" + datetime: Time + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + eventCode: string + + """""" + eventCode_geq: string + + """""" + eventCode_gt: string + + """""" + eventCode_in: [string!] + + """""" + eventCode_leq: string + + """""" + eventCode_like: string + + """""" + eventCode_lt: string + + """""" + eventCode_neq: string + + """""" + eventCode_notin: [string!] + + """""" + eventCode_notlike: string + + """""" + inputId: string + + """""" + inputId_geq: string + + """""" + inputId_gt: string + + """""" + inputId_in: [string!] + + """""" + inputId_leq: string + + """""" + inputId_like: string + + """""" + inputId_lt: string + + """""" + inputId_neq: string + + """""" + inputId_notin: [string!] + + """""" + inputId_notlike: string +} + +"""""" +type AccountLiveInputEventsAdaptiveGroupsMax { + """Max GOP size in bytes""" + gopByteSize: float64! + + """Max GOP duration in ms""" + gopDuration: float64! + + """Max GOP upload time in ms""" + gopUploadTime: float64! + + """Max upload to duration ratio""" + uploadDurationRatio: float64! +} + +"""""" +type AccountLiveInputEventsAdaptiveGroupsMin { + """Min GOP size in bytes""" + gopByteSize: float64! + + """Min GOP duration in ms""" + gopDuration: float64! + + """Min GOP upload time in ms""" + gopUploadTime: float64! + + """Min upload to duration ratio""" + uploadDurationRatio: float64! +} + +"""""" +enum AccountLiveInputEventsAdaptiveGroupsOrderBy { + """avg(bitRateFifteenMinutes) ascending""" + avg_bitRateFifteenMinutes_ASC + + """avg(bitRateFifteenMinutes) descending""" + avg_bitRateFifteenMinutes_DESC + + """avg(bitRateFiveMinutes) ascending""" + avg_bitRateFiveMinutes_ASC + + """avg(bitRateFiveMinutes) descending""" + avg_bitRateFiveMinutes_DESC + + """avg(bitRateHour) ascending""" + avg_bitRateHour_ASC + + """avg(bitRateHour) descending""" + avg_bitRateHour_DESC + + """avg(bitRateMinute) ascending""" + avg_bitRateMinute_ASC + + """avg(bitRateMinute) descending""" + avg_bitRateMinute_DESC + + """avg(bitRate) ascending""" + avg_bitRate_ASC + + """avg(bitRate) descending""" + avg_bitRate_DESC + + """avg(gopByteSize) ascending""" + avg_gopByteSize_ASC + + """avg(gopByteSize) descending""" + avg_gopByteSize_DESC + + """avg(gopDuration) ascending""" + avg_gopDuration_ASC + + """avg(gopDuration) descending""" + avg_gopDuration_DESC + + """avg(gopUploadTime) ascending""" + avg_gopUploadTime_ASC + + """avg(gopUploadTime) descending""" + avg_gopUploadTime_DESC + + """avg(uploadDurationRatio) ascending""" + avg_uploadDurationRatio_ASC + + """avg(uploadDurationRatio) descending""" + avg_uploadDurationRatio_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """eventCode ascending""" + eventCode_ASC + + """eventCode descending""" + eventCode_DESC + + """inputId ascending""" + inputId_ASC + + """inputId descending""" + inputId_DESC + + """max(gopByteSize) ascending""" + max_gopByteSize_ASC + + """max(gopByteSize) descending""" + max_gopByteSize_DESC + + """max(gopDuration) ascending""" + max_gopDuration_ASC + + """max(gopDuration) descending""" + max_gopDuration_DESC + + """max(gopUploadTime) ascending""" + max_gopUploadTime_ASC + + """max(gopUploadTime) descending""" + max_gopUploadTime_DESC + + """max(uploadDurationRatio) ascending""" + max_uploadDurationRatio_ASC + + """max(uploadDurationRatio) descending""" + max_uploadDurationRatio_DESC + + """min(gopByteSize) ascending""" + min_gopByteSize_ASC + + """min(gopByteSize) descending""" + min_gopByteSize_DESC + + """min(gopDuration) ascending""" + min_gopDuration_ASC + + """min(gopDuration) descending""" + min_gopDuration_DESC + + """min(gopUploadTime) ascending""" + min_gopUploadTime_ASC + + """min(gopUploadTime) descending""" + min_gopUploadTime_DESC + + """min(uploadDurationRatio) ascending""" + min_uploadDurationRatio_ASC + + """min(uploadDurationRatio) descending""" + min_uploadDurationRatio_DESC +} + +"""""" +enum AccountLiveInputEventsAdaptiveOrderBy { + """coloCode ascending""" + coloCode_ASC + + """coloCode descending""" + coloCode_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """eventCode ascending""" + eventCode_ASC + + """eventCode descending""" + eventCode_DESC + + """eventDescription ascending""" + eventDescription_ASC + + """eventDescription descending""" + eventDescription_DESC + + """inputId ascending""" + inputId_ASC + + """inputId descending""" + inputId_DESC +} + +"""Ingestion metrics for Log Explorer""" +type AccountLogExplorerIngestionAdaptiveGroups { + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountLogExplorerIngestionAdaptiveGroupsConfidence! + + """List of dimensions to group by""" + dimensions: AccountLogExplorerIngestionAdaptiveGroupsDimensions + + """""" + sum: AccountLogExplorerIngestionAdaptiveGroupsSum +} + +"""""" +type AccountLogExplorerIngestionAdaptiveGroupsConfidence { + """Confidence level that was requested""" + level: float64! + + """""" + sum: AccountLogExplorerIngestionAdaptiveGroupsSumConfidence +} + +"""""" +type AccountLogExplorerIngestionAdaptiveGroupsDimensions { + """Ingestion date""" + date: Date! + + """Ingestion time, truncated to multiple of 15 minutes""" + datetimeFifteenMinutes: Time! + + """Ingestion time, truncated to multiple of 5 minutes""" + datetimeFiveMinutes: Time! + + """Ingestion time, truncated to the hour""" + datetimeHour: Time! + + """Ingestion time, truncated to the minute""" + datetimeMinute: Time! +} + +"""""" +input AccountLogExplorerIngestionAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountLogExplorerIngestionAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountLogExplorerIngestionAdaptiveGroupsFilter_InputObject!] + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] +} + +"""""" +enum AccountLogExplorerIngestionAdaptiveGroupsOrderBy { + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """sum(billableBytes) ascending""" + sum_billableBytes_ASC + + """sum(billableBytes) descending""" + sum_billableBytes_DESC + + """sum(totalBytes) ascending""" + sum_totalBytes_ASC + + """sum(totalBytes) descending""" + sum_totalBytes_DESC +} + +"""""" +type AccountLogExplorerIngestionAdaptiveGroupsSum { + """Total billable bytes ingested to Log Explorer""" + billableBytes: uint64! + + """Total bytes ingested to Log Explorer""" + totalBytes: uint64! +} + +"""""" +type AccountLogExplorerIngestionAdaptiveGroupsSumConfidence { + """Confidence interval for the corresponding point estimate""" + billableBytes: Confidence! + + """Confidence interval for the corresponding point estimate""" + totalBytes: Confidence! +} + +"""Beta. Logpush job health metrics""" +type AccountLogpushHealthAdaptiveGroups { + """""" + avg: AccountLogpushHealthAdaptiveGroupsAvg + + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountLogpushHealthAdaptiveGroupsConfidence! + + """The number of values for a metric per dimension""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountLogpushHealthAdaptiveGroupsDimensions + + """Maximum value of a metric per dimension""" + max: AccountLogpushHealthAdaptiveGroupsMax + + """The sum of values for a metric per dimension""" + sum: AccountLogpushHealthAdaptiveGroupsSum +} + +"""""" +type AccountLogpushHealthAdaptiveGroupsAvg { + """Average sample interval""" + sampleInterval: float64! + + """Average upload duration in seconds""" + uploadDuration: float64! +} + +"""""" +type AccountLogpushHealthAdaptiveGroupsConfidence { + """ + The number of values for a metric per dimension, with confidence intervals + """ + count: Confidence! + + """Confidence level that was requested""" + level: float64! + + """ + The sum of values for a metric per dimension, with confidence intervals + """ + sum: AccountLogpushHealthAdaptiveGroupsSumConfidence +} + +"""""" +type AccountLogpushHealthAdaptiveGroupsDimensions { + """Date that we completed pushing the log batch""" + date: Date! + + """Datetime that we completed pushing the log batch""" + datetime: Time! + + """ + Datetime that we completed pushing the log batch, truncated to multiple of 15 minutes + """ + datetimeFifteenMinutes: Time! + + """ + Datetime that we completed pushing the log batch, truncated to multiple of 5 minutes + """ + datetimeFiveMinutes: Time! + + """ + Datetime that we completed pushing the log batch, truncated to the hour + """ + datetimeHour: Time! + + """ + Datetime that we completed pushing the log batch, truncated to the minute + """ + datetimeMinute: Time! + + """Destination type, e.g. 'S3' or 'GCS'""" + destinationType: string! + + """Error message""" + error: string! + + """ + Cloudflare may attempt to push a batch of logs multiple times if we encounter a failure. This field will be set to 1 if this was the last push attempt for this batch of logs. If this field is set to 0, it means the push failed but another retry was attempted. If this field is set to 1 and status >= 300, then the batch of logs failed to push and log data was lost. If you want to count the total number of logs that succeeded or failed, you should always set final = 1. + """ + final: uint8! + + """The Logpush Job ID""" + jobId: uint64! + + """HTTP response status code of the log destination""" + status: uint16! + + """1 when the upload was successful without error, otherwise 0""" + success: uint8! +} + +"""""" +input AccountLogpushHealthAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountLogpushHealthAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountLogpushHealthAdaptiveGroupsFilter_InputObject!] + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + destinationType: string + + """""" + destinationType_geq: string + + """""" + destinationType_gt: string + + """""" + destinationType_in: [string!] + + """""" + destinationType_leq: string + + """""" + destinationType_like: string + + """""" + destinationType_lt: string + + """""" + destinationType_neq: string + + """""" + destinationType_notin: [string!] + + """""" + destinationType_notlike: string + + """""" + error: string + + """""" + error_geq: string + + """""" + error_gt: string + + """""" + error_in: [string!] + + """""" + error_leq: string + + """""" + error_like: string + + """""" + error_lt: string + + """""" + error_neq: string + + """""" + error_notin: [string!] + + """""" + error_notlike: string + + """""" + final: uint8 + + """""" + final_geq: uint8 + + """""" + final_gt: uint8 + + """""" + final_in: bytes + + """""" + final_leq: uint8 + + """""" + final_lt: uint8 + + """""" + final_neq: uint8 + + """""" + final_notin: bytes + + """""" + jobId: uint64 + + """""" + jobId_geq: uint64 + + """""" + jobId_gt: uint64 + + """""" + jobId_in: [uint64!] + + """""" + jobId_leq: uint64 + + """""" + jobId_lt: uint64 + + """""" + jobId_neq: uint64 + + """""" + jobId_notin: [uint64!] + + """""" + status: uint16 + + """""" + status_geq: uint16 + + """""" + status_gt: uint16 + + """""" + status_in: [uint16!] + + """""" + status_leq: uint16 + + """""" + status_lt: uint16 + + """""" + status_neq: uint16 + + """""" + status_notin: [uint16!] + + """""" + success: uint8 + + """""" + success_geq: uint8 + + """""" + success_gt: uint8 + + """""" + success_in: bytes + + """""" + success_leq: uint8 + + """""" + success_lt: uint8 + + """""" + success_neq: uint8 + + """""" + success_notin: bytes +} + +"""""" +type AccountLogpushHealthAdaptiveGroupsMax { + """Latest timestamp of upload attempts""" + timestamp: Time! +} + +"""""" +enum AccountLogpushHealthAdaptiveGroupsOrderBy { + """accountId ascending""" + accountId_ASC + + """accountId descending""" + accountId_DESC + + """avg(sampleInterval) ascending""" + avg_sampleInterval_ASC + + """avg(sampleInterval) descending""" + avg_sampleInterval_DESC + + """avg(uploadDuration) ascending""" + avg_uploadDuration_ASC + + """avg(uploadDuration) descending""" + avg_uploadDuration_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """destinationType ascending""" + destinationType_ASC + + """destinationType descending""" + destinationType_DESC + + """error ascending""" + error_ASC + + """error descending""" + error_DESC + + """final ascending""" + final_ASC + + """final descending""" + final_DESC + + """jobId ascending""" + jobId_ASC + + """jobId descending""" + jobId_DESC + + """max(timestamp) ascending""" + max_timestamp_ASC + + """max(timestamp) descending""" + max_timestamp_DESC + + """objectType ascending""" + objectType_ASC + + """objectType descending""" + objectType_DESC + + """status ascending""" + status_ASC + + """status descending""" + status_DESC + + """success ascending""" + success_ASC + + """success descending""" + success_DESC + + """sum(bytesCompressed) ascending""" + sum_bytesCompressed_ASC + + """sum(bytesCompressed) descending""" + sum_bytesCompressed_DESC + + """sum(bytes) ascending""" + sum_bytes_ASC + + """sum(bytes) descending""" + sum_bytes_DESC + + """sum(records) ascending""" + sum_records_ASC + + """sum(records) descending""" + sum_records_DESC + + """sum(uploads) ascending""" + sum_uploads_ASC + + """sum(uploads) descending""" + sum_uploads_DESC +} + +"""""" +type AccountLogpushHealthAdaptiveGroupsSum { + """Bytes of uncompressed log data in upload attempts""" + bytes: uint64! + + """Bytes of compressed log data in upload attempts""" + bytesCompressed: uint64! + + """A count of the total number of records in upload attempts.""" + records: uint64! + + """A count of the total number of upload attempts""" + uploads: uint64! +} + +"""""" +type AccountLogpushHealthAdaptiveGroupsSumConfidence { + """Confidence interval for the corresponding point estimate""" + bytes: Confidence! + + """Confidence interval for the corresponding point estimate""" + bytesCompressed: Confidence! + + """Confidence interval for the corresponding point estimate""" + records: Confidence! + + """Confidence interval for the corresponding point estimate""" + uploads: Confidence! +} + +"""Magic Endpoint Healthcheck events with adaptive sampling.""" +type AccountMagicEndpointHealthCheckAdaptiveGroups { + """The average value for a metric per dimension""" + avg: AccountMagicEndpointHealthCheckAdaptiveGroupsAvg + + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountMagicEndpointHealthCheckAdaptiveGroupsConfidence! + + """Total number of health checks""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountMagicEndpointHealthCheckAdaptiveGroupsDimensions + + """The sum of value for a metric per dimension""" + sum: AccountMagicEndpointHealthCheckAdaptiveGroupsSum +} + +"""""" +type AccountMagicEndpointHealthCheckAdaptiveGroupsAvg { + """Average calculated percentage (0-100) for endpoint healthchecks""" + lossPercentage: float64! + + """The average value used for sample interval""" + sampleInterval: float64! +} + +"""""" +type AccountMagicEndpointHealthCheckAdaptiveGroupsConfidence { + """Total number of health checks, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! +} + +"""""" +type AccountMagicEndpointHealthCheckAdaptiveGroupsDimensions { + """The ID of the check associated with the healthcheck""" + checkId: string! + + """The type of check associated with the healthcheck""" + checkType: string! + + """Healthcheck event timestamp, truncated to the day""" + date: Date! + + """Healthcheck event timestamp""" + datetime: Time! + + """Healthcheck event timestamp, truncated to multiple of 15 minutes""" + datetimeFifteenMinutes: Time! + + """Calculation event timestamp, truncated to multiple of 5 minutes""" + datetimeFiveMinutes: Time! + + """Healthcheck event timestamp, truncated to multiple of 30 minutes""" + datetimeHalfOfHour: Time! + + """Healthcheck event timestamp, truncated to the hour""" + datetimeHour: Time! + + """Healthcheck event timestamp, truncated to the minute""" + datetimeMinute: Time! + + """The endpoint of the check associated with the healthcheck""" + endpoint: string! + + """The name associated with the healthcheck""" + name: string! +} + +"""""" +input AccountMagicEndpointHealthCheckAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountMagicEndpointHealthCheckAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountMagicEndpointHealthCheckAdaptiveGroupsFilter_InputObject!] + + """""" + checkId: string + + """""" + checkId_geq: string + + """""" + checkId_gt: string + + """""" + checkId_in: [string!] + + """""" + checkId_leq: string + + """""" + checkId_like: string + + """""" + checkId_lt: string + + """""" + checkId_neq: string + + """""" + checkId_notin: [string!] + + """""" + checkId_notlike: string + + """""" + checkType: string + + """""" + checkType_geq: string + + """""" + checkType_gt: string + + """""" + checkType_in: [string!] + + """""" + checkType_leq: string + + """""" + checkType_like: string + + """""" + checkType_lt: string + + """""" + checkType_neq: string + + """""" + checkType_notin: [string!] + + """""" + checkType_notlike: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHalfOfHour: Time + + """""" + datetimeHalfOfHour_geq: Time + + """""" + datetimeHalfOfHour_gt: Time + + """""" + datetimeHalfOfHour_in: [Time!] + + """""" + datetimeHalfOfHour_leq: Time + + """""" + datetimeHalfOfHour_lt: Time + + """""" + datetimeHalfOfHour_neq: Time + + """""" + datetimeHalfOfHour_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + endpoint: string + + """""" + endpoint_geq: string + + """""" + endpoint_gt: string + + """""" + endpoint_in: [string!] + + """""" + endpoint_leq: string + + """""" + endpoint_like: string + + """""" + endpoint_lt: string + + """""" + endpoint_neq: string + + """""" + endpoint_notin: [string!] + + """""" + endpoint_notlike: string + + """""" + name: string + + """""" + name_geq: string + + """""" + name_gt: string + + """""" + name_in: [string!] + + """""" + name_leq: string + + """""" + name_like: string + + """""" + name_lt: string + + """""" + name_neq: string + + """""" + name_notin: [string!] + + """""" + name_notlike: string +} + +"""""" +enum AccountMagicEndpointHealthCheckAdaptiveGroupsOrderBy { + """avg(lossPercentage) ascending""" + avg_lossPercentage_ASC + + """avg(lossPercentage) descending""" + avg_lossPercentage_DESC + + """avg(sampleInterval) ascending""" + avg_sampleInterval_ASC + + """avg(sampleInterval) descending""" + avg_sampleInterval_DESC + + """checkId ascending""" + checkId_ASC + + """checkId descending""" + checkId_DESC + + """checkType ascending""" + checkType_ASC + + """checkType descending""" + checkType_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHalfOfHour ascending""" + datetimeHalfOfHour_ASC + + """datetimeHalfOfHour descending""" + datetimeHalfOfHour_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """endpoint ascending""" + endpoint_ASC + + """endpoint descending""" + endpoint_DESC + + """name ascending""" + name_ASC + + """name descending""" + name_DESC + + """sum(failures) ascending""" + sum_failures_ASC + + """sum(failures) descending""" + sum_failures_DESC + + """sum(total) ascending""" + sum_total_ASC + + """sum(total) descending""" + sum_total_DESC +} + +"""""" +type AccountMagicEndpointHealthCheckAdaptiveGroupsSum { + """Total failures""" + failures: float64! + + """Total number of health check events""" + total: float64! +} + +"""Network analytics data for Magic Firewall""" +type AccountMagicFirewallNetworkAnalyticsAdaptiveGroups { + """The average of values for a metric per dimension""" + avg: AccountMagicFirewallNetworkAnalyticsAdaptiveGroupsAvg + + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountMagicFirewallNetworkAnalyticsAdaptiveGroupsConfidence! + + """List of dimensions to group by""" + dimensions: AccountMagicFirewallNetworkAnalyticsAdaptiveGroupsDimensions + + """The sum of values for a metric per dimension""" + sum: AccountMagicFirewallNetworkAnalyticsAdaptiveGroupsSum +} + +"""""" +type AccountMagicFirewallNetworkAnalyticsAdaptiveGroupsAvg { + """ + Sum of bits received, divided by 1 second, providing a per-second bit rate when grouped by datetime + """ + bitRate: uint64! + + """ + Sum of bits received, divided by 86400 seconds, providing a per-second bit rate when grouped by date + """ + bitRateDay: uint64! + + """ + Sum of bits received, divided by 900 seconds, providing a per-second bit rate when grouped by datetimeFifteenMinutes + """ + bitRateFifteenMinutes: uint64! + + """ + Sum of bits received, divided by 300 seconds, providing a per-second bit rate when grouped by datetimeFiveMinutes + """ + bitRateFiveMinutes: uint64! + + """ + Sum of bits received, divided by 3600 seconds, providing a per-second bit rate when grouped by datetimeHour + """ + bitRateHour: uint64! + + """ + Sum of bits received, divided by 60 seconds, providing a per-second bit rate when grouped by datetimeMinute + """ + bitRateMinute: uint64! + + """ + Sum of bits received, divided by 10 seconds, providing a per-second bit rate when grouped by datetimeTenSeconds + """ + bitRateTenSeconds: uint64! + + """ + Sum of packets received, divided by 1 second, providing a per-second packet rate when grouped by datetime + """ + packetRate: uint64! + + """ + Sum of packets received, divided by 86400 seconds, providing a per-second packet rate when grouped by date + """ + packetRateDay: uint64! + + """ + Sum of packets received, divided by 900 seconds, providing a per-second packet rate when grouped by datetimeFifteenMinutes + """ + packetRateFifteenMinutes: uint64! + + """ + Sum of packets received, divided by 300 seconds, providing a per-second packet rate when grouped by datetimeFiveMinutes + """ + packetRateFiveMinutes: uint64! + + """ + Sum of packets received, divided by 3600 seconds, providing a per-second packet rate when grouped by datetimeHour + """ + packetRateHour: uint64! + + """ + Sum of packets received, divided by 60 seconds, providing a per-second packet rate when grouped by datetimeMinute + """ + packetRateMinute: uint64! + + """ + Sum of packets received, divided by 10 seconds, providing a per-second packet rate when grouped by datetimeTenSeconds + """ + packetRateTenSeconds: uint64! +} + +"""""" +type AccountMagicFirewallNetworkAnalyticsAdaptiveGroupsAvgConfidence { + """Confidence interval for the corresponding point estimate""" + bitRate: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateDay: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateFifteenMinutes: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateFiveMinutes: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateHour: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateMinute: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateTenSeconds: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRate: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateDay: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateFifteenMinutes: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateFiveMinutes: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateHour: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateMinute: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateTenSeconds: Confidence! +} + +"""""" +type AccountMagicFirewallNetworkAnalyticsAdaptiveGroupsConfidence { + """ + The average of values for a metric per dimension, with confidence intervals + """ + avg: AccountMagicFirewallNetworkAnalyticsAdaptiveGroupsAvgConfidence + + """Confidence level that was requested""" + level: float64! + + """ + The sum of values for a metric per dimension, with confidence intervals + """ + sum: AccountMagicFirewallNetworkAnalyticsAdaptiveGroupsSumConfidence +} + +"""""" +type AccountMagicFirewallNetworkAnalyticsAdaptiveGroupsDimensions { + """Application tag associated with the packet""" + applicationTag: string! + + """ + City where the Cloudflare datacenter that received the packet is located + """ + coloCity: string! + + """ + Cloudflare datacenter that received the packet (nearest IATA airport code) + """ + coloCode: string! + + """ + Country where the Cloudflare datacenter that received the packet is located (ISO 3166-1 alpha-2) + """ + coloCountry: string! + + """ + Latitude and longitude where the Cloudflare datacenter that received the packet is located (Geohash encoding) + """ + coloGeohash: string! + + """ + Cloudflare datacenter that received the packet (unique site identifier) + """ + coloName: string! + + """Date that the packet was received""" + date: Date! + + """Date and time that the packet was received""" + datetime: Time! + + """ + Date and time that the packet was received, rounded to the start of the nearest fifteen minutes + """ + datetimeFifteenMinutes: Time! + + """ + Date and time that the packet was received, rounded to the start of the nearest five minutes + """ + datetimeFiveMinutes: Time! + + """ + Date and time that the packet was received, rounded to the start of the nearest hour + """ + datetimeHour: Time! + + """ + Date and time that the packet was received, rounded to the start of the nearest minute + """ + datetimeMinute: Time! + + """ + Date and time that the packet was received, rounded to the start of the nearest ten seconds + """ + datetimeTenSeconds: Time! + + """ + ASN associated with the destination IP of the packet, or 0 if there was no mapping available + """ + destinationAsn: uint32! + + """ + Name of ASN associated with the destination IP of the packet, if available + """ + destinationAsnName: string! + + """ + Country where the destination IP of the packet is located (ISO 3166-1 alpha-2) + """ + destinationCountry: string! + + """Device tag associated with the destination IP of the packet""" + destinationDeviceTag: string! + + """ + Latitude and longitude where the destination IP of the packet is located (Geohash encoding) + """ + destinationGeohash: string! + + """Value of the Destination Port header field in the TCP or UDP packet""" + destinationPort: uint16! + + """ + Direction of the packet relative to the customer network (possible values: inbound, outbound, lateral) + """ + direction: string! + + """ + Value of the Ethertype header field in the Ethernet packet (2048 for IPv4; 34525 for IPv6) + """ + ethertype: uint16! + + """Value of the Checkusm header field in the GRE packet""" + greChecksum: uint16! + + """Value of the Ethertype header field in the GRE packet""" + greEthertype: uint16! + + """Length of the GRE packet header, in bytes""" + greHeaderLength: uint16! + + """Value of the Key header field in the GRE packet""" + greKey: uint32! + + """Value of the Sequence Number header field in the GRE packet""" + greSequenceNumber: uint32! + + """Value of the Version header field in the GRE packet""" + greVersion: uint8! + + """Value of the Checkusm header field in the ICMP packet""" + icmpChecksum: uint16! + + """Value of the Code header field in the ICMP packet""" + icmpCode: uint8! + + """Value of the Type header field in the ICMP packet""" + icmpType: uint8! + + """ + Value of the Destination Address header field in the IPv4 or IPv6 packet + """ + ipDestinationAddress: string! + + """ + Computed subnet of the Destination Address header field in the IPv4 or IPv6 packet (/24 for IPv4; /48 for IPv6) + """ + ipDestinationSubnet: string! + + """Value of the Fragment Offset header field in the IPv4 or IPv6 packet""" + ipFragmentOffset: uint16! + + """Length of the IPv4 or IPv6 packet header, in bytes""" + ipHeaderLength: uint16! + + """Value of the More Fragments header field in the IPv4 or IPv6 packet""" + ipMoreFragments: uint8! + + """Value of the Protocol header field in the IPv4 or IPv6 packet""" + ipProtocol: uint8! + + """ + Name of the protocol specified by the Protocol header field in the IPv4 or IPv6 packet + """ + ipProtocolName: string! + + """Value of the Source Address header field in the IPv4 or IPv6 packet""" + ipSourceAddress: string! + + """ + Computed subnet of the Source Address header field in the IPv4 or IPv6 packet (/24 for IPv4; /48 for IPv6) + """ + ipSourceSubnet: string! + + """Total length of the IPv4 or IPv6 packet, in bytes""" + ipTotalLength: uint16! + + """ + Total length of the IPv4 or IPv6 packet, in bytes, with the last two digits truncated + """ + ipTotalLengthBuckets: uint16! + + """ + Value of the TTL header field in the IPv4 packet or the Hop Limit header field in the IPv6 packet + """ + ipTtl: uint8! + + """ + Value of the TTL header field in the IPv4 packet or the Hop Limit header field in the IPv6 packet, with the last digit truncated + """ + ipTtlBuckets: uint8! + + """Value of the Checksum header field in the IPv4 packet""" + ipv4Checksum: uint16! + + """Value of the Don't Fragment header field in the IPv4 packet""" + ipv4DontFragment: uint8! + + """ + Value of the Differentiated Services Code Point header field in the IPv4 packet + """ + ipv4Dscp: uint8! + + """ + Value of the Explicit Congestion Notification header field in the IPv4 packet + """ + ipv4Ecn: uint8! + + """Value of the Identification header field in the IPv4 packet""" + ipv4Identification: uint16! + + """List of Options numbers included in the IPv4 packet header""" + ipv4Options: string! + + """ + Value of the Differentiated Services Code Point header field in the IPv6 packet + """ + ipv6Dscp: uint8! + + """ + Value of the Explicit Congestion Notification header field in the IPv6 packet + """ + ipv6Ecn: uint8! + + """List of Extension Header numbers included in the IPv6 packet header""" + ipv6ExtensionHeaders: string! + + """Value of the Flow Label header field in the IPv6 packet""" + ipv6FlowLabel: uint32! + + """Value of the Identification extension header field in the IPv6 packet""" + ipv6Identification: uint32! + + """IP lease tag associated with the packet""" + leaseTag: string! + + """The action that was taken on the packet (possible values: pass, drop)""" + outcome: string! + + """IP prefix tag associated with the packet""" + prefixTag: string! + + """Unique identifier of the rule that matched the packet, if any""" + ruleId: string! + + """ + Unique identifier of the ruleset containing the rule that matched the packet, if any + """ + rulesetId: string! + + """ABR sample interval""" + sampleInterval: uint32! + + """ + ASN associated with the source IP of the packet, or 0 if there was no mapping available + """ + sourceAsn: uint32! + + """Name of ASN associated with the source IP of the packet, if available""" + sourceAsnName: string! + + """ + Country where the source IP of the packet is located (ISO 3166-1 alpha-2) + """ + sourceCountry: string! + + """Device tag associated with the source IP of the packet""" + sourceDeviceTag: string! + + """ + Latitude and longitude where the source IP of the packet is located (Geohash encoding) + """ + sourceGeohash: string! + + """Value of the Source Port header field in the TCP or UDP packet""" + sourcePort: uint16! + + """Value of the Acknowledgement Number header field in the TCP packet""" + tcpAcknowledgementNumber: uint32! + + """Value of the Checkusm header field in the TCP packet""" + tcpChecksum: uint16! + + """Value of the Data Offset header field in the TCP packet""" + tcpDataOffset: uint16! + + """Value of the Flags header field in the TCP packet""" + tcpFlags: uint8! + + """ + Human-readable string representation of the Flags header field in the TCP packet + """ + tcpFlagsString: string! + + """Value of the MSS option header field in the TCP packet""" + tcpMss: uint16! + + """List of Options numbers included in the TCP packet header""" + tcpOptions: string! + + """Value of the SACK Blocks option header field in the TCP packet""" + tcpSackBlocks: string! + + """Value of the SACK Permitted option header field in the TCP packet""" + tcpSackPermitted: uint8! + + """Value of the Sequence Number header field in the TCP packet""" + tcpSequenceNumber: uint32! + + """ + Value of the Timestamp Echo Reply option header field in the TCP packet + """ + tcpTimestampEcr: uint32! + + """Value of the Timestamp option header field in the TCP packet""" + tcpTimestampValue: uint32! + + """Value of the Urgent Pointer header field in the TCP packet""" + tcpUrgentPointer: uint16! + + """Value of the Window Scale option header field in the TCP packet""" + tcpWindowScale: uint16! + + """Value of the Window Size header field in the TCP packet""" + tcpWindowSize: uint16! + + """Value of the Checkusm header field in the UDP packet""" + udpChecksum: uint16! + + """Value of the Payload Length header field in the UDP packet""" + udpPayloadLength: uint16! + + """ + The action that Cloudflare thinks should be taken on the packet (possible values: pass, drop) + """ + verdict: string! +} + +"""""" +input AccountMagicFirewallNetworkAnalyticsAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountMagicFirewallNetworkAnalyticsAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountMagicFirewallNetworkAnalyticsAdaptiveGroupsFilter_InputObject!] + + """""" + applicationTag: string + + """""" + applicationTag_geq: string + + """""" + applicationTag_gt: string + + """""" + applicationTag_in: [string!] + + """""" + applicationTag_leq: string + + """""" + applicationTag_like: string + + """""" + applicationTag_lt: string + + """""" + applicationTag_neq: string + + """""" + applicationTag_notin: [string!] + + """""" + applicationTag_notlike: string + + """""" + coloCity: string + + """""" + coloCity_geq: string + + """""" + coloCity_gt: string + + """""" + coloCity_in: [string!] + + """""" + coloCity_leq: string + + """""" + coloCity_like: string + + """""" + coloCity_lt: string + + """""" + coloCity_neq: string + + """""" + coloCity_notin: [string!] + + """""" + coloCity_notlike: string + + """""" + coloCode: string + + """""" + coloCode_geq: string + + """""" + coloCode_gt: string + + """""" + coloCode_in: [string!] + + """""" + coloCode_leq: string + + """""" + coloCode_like: string + + """""" + coloCode_lt: string + + """""" + coloCode_neq: string + + """""" + coloCode_notin: [string!] + + """""" + coloCode_notlike: string + + """""" + coloCountry: string + + """""" + coloCountry_geq: string + + """""" + coloCountry_gt: string + + """""" + coloCountry_in: [string!] + + """""" + coloCountry_leq: string + + """""" + coloCountry_like: string + + """""" + coloCountry_lt: string + + """""" + coloCountry_neq: string + + """""" + coloCountry_notin: [string!] + + """""" + coloCountry_notlike: string + + """""" + coloGeohash: string + + """""" + coloGeohash_geq: string + + """""" + coloGeohash_gt: string + + """""" + coloGeohash_in: [string!] + + """""" + coloGeohash_leq: string + + """""" + coloGeohash_like: string + + """""" + coloGeohash_lt: string + + """""" + coloGeohash_neq: string + + """""" + coloGeohash_notin: [string!] + + """""" + coloGeohash_notlike: string + + """""" + coloName: string + + """""" + coloName_geq: string + + """""" + coloName_gt: string + + """""" + coloName_in: [string!] + + """""" + coloName_leq: string + + """""" + coloName_like: string + + """""" + coloName_lt: string + + """""" + coloName_neq: string + + """""" + coloName_notin: [string!] + + """""" + coloName_notlike: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetimeTenSeconds: Time + + """""" + datetimeTenSeconds_geq: Time + + """""" + datetimeTenSeconds_gt: Time + + """""" + datetimeTenSeconds_in: [Time!] + + """""" + datetimeTenSeconds_leq: Time + + """""" + datetimeTenSeconds_lt: Time + + """""" + datetimeTenSeconds_neq: Time + + """""" + datetimeTenSeconds_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + destinationAsn: uint32 + + """""" + destinationAsnName: string + + """""" + destinationAsnName_geq: string + + """""" + destinationAsnName_gt: string + + """""" + destinationAsnName_in: [string!] + + """""" + destinationAsnName_leq: string + + """""" + destinationAsnName_like: string + + """""" + destinationAsnName_lt: string + + """""" + destinationAsnName_neq: string + + """""" + destinationAsnName_notin: [string!] + + """""" + destinationAsnName_notlike: string + + """""" + destinationAsn_geq: uint32 + + """""" + destinationAsn_gt: uint32 + + """""" + destinationAsn_in: [uint32!] + + """""" + destinationAsn_leq: uint32 + + """""" + destinationAsn_lt: uint32 + + """""" + destinationAsn_neq: uint32 + + """""" + destinationAsn_notin: [uint32!] + + """""" + destinationCountry: string + + """""" + destinationCountry_geq: string + + """""" + destinationCountry_gt: string + + """""" + destinationCountry_in: [string!] + + """""" + destinationCountry_leq: string + + """""" + destinationCountry_like: string + + """""" + destinationCountry_lt: string + + """""" + destinationCountry_neq: string + + """""" + destinationCountry_notin: [string!] + + """""" + destinationCountry_notlike: string + + """""" + destinationDeviceTag: string + + """""" + destinationDeviceTag_geq: string + + """""" + destinationDeviceTag_gt: string + + """""" + destinationDeviceTag_in: [string!] + + """""" + destinationDeviceTag_leq: string + + """""" + destinationDeviceTag_like: string + + """""" + destinationDeviceTag_lt: string + + """""" + destinationDeviceTag_neq: string + + """""" + destinationDeviceTag_notin: [string!] + + """""" + destinationDeviceTag_notlike: string + + """""" + destinationGeohash: string + + """""" + destinationGeohash_geq: string + + """""" + destinationGeohash_gt: string + + """""" + destinationGeohash_in: [string!] + + """""" + destinationGeohash_leq: string + + """""" + destinationGeohash_like: string + + """""" + destinationGeohash_lt: string + + """""" + destinationGeohash_neq: string + + """""" + destinationGeohash_notin: [string!] + + """""" + destinationGeohash_notlike: string + + """""" + destinationPort: uint16 + + """""" + destinationPort_geq: uint16 + + """""" + destinationPort_gt: uint16 + + """""" + destinationPort_in: [uint16!] + + """""" + destinationPort_leq: uint16 + + """""" + destinationPort_lt: uint16 + + """""" + destinationPort_neq: uint16 + + """""" + destinationPort_notin: [uint16!] + + """""" + direction: string + + """""" + direction_geq: string + + """""" + direction_gt: string + + """""" + direction_in: [string!] + + """""" + direction_leq: string + + """""" + direction_like: string + + """""" + direction_lt: string + + """""" + direction_neq: string + + """""" + direction_notin: [string!] + + """""" + direction_notlike: string + + """""" + ethertype: uint16 + + """""" + ethertype_geq: uint16 + + """""" + ethertype_gt: uint16 + + """""" + ethertype_in: [uint16!] + + """""" + ethertype_leq: uint16 + + """""" + ethertype_lt: uint16 + + """""" + ethertype_neq: uint16 + + """""" + ethertype_notin: [uint16!] + + """""" + greChecksum: uint16 + + """""" + greChecksum_geq: uint16 + + """""" + greChecksum_gt: uint16 + + """""" + greChecksum_in: [uint16!] + + """""" + greChecksum_leq: uint16 + + """""" + greChecksum_lt: uint16 + + """""" + greChecksum_neq: uint16 + + """""" + greChecksum_notin: [uint16!] + + """""" + greEthertype: uint16 + + """""" + greEthertype_geq: uint16 + + """""" + greEthertype_gt: uint16 + + """""" + greEthertype_in: [uint16!] + + """""" + greEthertype_leq: uint16 + + """""" + greEthertype_lt: uint16 + + """""" + greEthertype_neq: uint16 + + """""" + greEthertype_notin: [uint16!] + + """""" + greHeaderLength: uint16 + + """""" + greHeaderLength_geq: uint16 + + """""" + greHeaderLength_gt: uint16 + + """""" + greHeaderLength_in: [uint16!] + + """""" + greHeaderLength_leq: uint16 + + """""" + greHeaderLength_lt: uint16 + + """""" + greHeaderLength_neq: uint16 + + """""" + greHeaderLength_notin: [uint16!] + + """""" + greKey: uint32 + + """""" + greKey_geq: uint32 + + """""" + greKey_gt: uint32 + + """""" + greKey_in: [uint32!] + + """""" + greKey_leq: uint32 + + """""" + greKey_lt: uint32 + + """""" + greKey_neq: uint32 + + """""" + greKey_notin: [uint32!] + + """""" + greSequenceNumber: uint32 + + """""" + greSequenceNumber_geq: uint32 + + """""" + greSequenceNumber_gt: uint32 + + """""" + greSequenceNumber_in: [uint32!] + + """""" + greSequenceNumber_leq: uint32 + + """""" + greSequenceNumber_lt: uint32 + + """""" + greSequenceNumber_neq: uint32 + + """""" + greSequenceNumber_notin: [uint32!] + + """""" + greVersion: uint8 + + """""" + greVersion_geq: uint8 + + """""" + greVersion_gt: uint8 + + """""" + greVersion_in: bytes + + """""" + greVersion_leq: uint8 + + """""" + greVersion_lt: uint8 + + """""" + greVersion_neq: uint8 + + """""" + greVersion_notin: bytes + + """""" + icmpChecksum: uint16 + + """""" + icmpChecksum_geq: uint16 + + """""" + icmpChecksum_gt: uint16 + + """""" + icmpChecksum_in: [uint16!] + + """""" + icmpChecksum_leq: uint16 + + """""" + icmpChecksum_lt: uint16 + + """""" + icmpChecksum_neq: uint16 + + """""" + icmpChecksum_notin: [uint16!] + + """""" + icmpCode: uint8 + + """""" + icmpCode_geq: uint8 + + """""" + icmpCode_gt: uint8 + + """""" + icmpCode_in: bytes + + """""" + icmpCode_leq: uint8 + + """""" + icmpCode_lt: uint8 + + """""" + icmpCode_neq: uint8 + + """""" + icmpCode_notin: bytes + + """""" + icmpType: uint8 + + """""" + icmpType_geq: uint8 + + """""" + icmpType_gt: uint8 + + """""" + icmpType_in: bytes + + """""" + icmpType_leq: uint8 + + """""" + icmpType_lt: uint8 + + """""" + icmpType_neq: uint8 + + """""" + icmpType_notin: bytes + + """""" + ipDestinationAddress: string + + """""" + ipDestinationAddress_geq: string + + """""" + ipDestinationAddress_gt: string + + """""" + ipDestinationAddress_in: [string!] + + """""" + ipDestinationAddress_leq: string + + """""" + ipDestinationAddress_like: string + + """""" + ipDestinationAddress_lt: string + + """""" + ipDestinationAddress_neq: string + + """""" + ipDestinationAddress_notin: [string!] + + """""" + ipDestinationAddress_notlike: string + + """""" + ipDestinationSubnet: string + + """""" + ipDestinationSubnet_geq: string + + """""" + ipDestinationSubnet_gt: string + + """""" + ipDestinationSubnet_in: [string!] + + """""" + ipDestinationSubnet_leq: string + + """""" + ipDestinationSubnet_like: string + + """""" + ipDestinationSubnet_lt: string + + """""" + ipDestinationSubnet_neq: string + + """""" + ipDestinationSubnet_notin: [string!] + + """""" + ipDestinationSubnet_notlike: string + + """""" + ipFragmentOffset: uint16 + + """""" + ipFragmentOffset_geq: uint16 + + """""" + ipFragmentOffset_gt: uint16 + + """""" + ipFragmentOffset_in: [uint16!] + + """""" + ipFragmentOffset_leq: uint16 + + """""" + ipFragmentOffset_lt: uint16 + + """""" + ipFragmentOffset_neq: uint16 + + """""" + ipFragmentOffset_notin: [uint16!] + + """""" + ipHeaderLength: uint16 + + """""" + ipHeaderLength_geq: uint16 + + """""" + ipHeaderLength_gt: uint16 + + """""" + ipHeaderLength_in: [uint16!] + + """""" + ipHeaderLength_leq: uint16 + + """""" + ipHeaderLength_lt: uint16 + + """""" + ipHeaderLength_neq: uint16 + + """""" + ipHeaderLength_notin: [uint16!] + + """""" + ipMoreFragments: uint8 + + """""" + ipMoreFragments_geq: uint8 + + """""" + ipMoreFragments_gt: uint8 + + """""" + ipMoreFragments_in: bytes + + """""" + ipMoreFragments_leq: uint8 + + """""" + ipMoreFragments_lt: uint8 + + """""" + ipMoreFragments_neq: uint8 + + """""" + ipMoreFragments_notin: bytes + + """""" + ipProtocol: uint8 + + """""" + ipProtocolName: string + + """""" + ipProtocolName_geq: string + + """""" + ipProtocolName_gt: string + + """""" + ipProtocolName_in: [string!] + + """""" + ipProtocolName_leq: string + + """""" + ipProtocolName_like: string + + """""" + ipProtocolName_lt: string + + """""" + ipProtocolName_neq: string + + """""" + ipProtocolName_notin: [string!] + + """""" + ipProtocolName_notlike: string + + """""" + ipProtocol_geq: uint8 + + """""" + ipProtocol_gt: uint8 + + """""" + ipProtocol_in: bytes + + """""" + ipProtocol_leq: uint8 + + """""" + ipProtocol_lt: uint8 + + """""" + ipProtocol_neq: uint8 + + """""" + ipProtocol_notin: bytes + + """""" + ipSourceAddress: string + + """""" + ipSourceAddress_geq: string + + """""" + ipSourceAddress_gt: string + + """""" + ipSourceAddress_in: [string!] + + """""" + ipSourceAddress_leq: string + + """""" + ipSourceAddress_like: string + + """""" + ipSourceAddress_lt: string + + """""" + ipSourceAddress_neq: string + + """""" + ipSourceAddress_notin: [string!] + + """""" + ipSourceAddress_notlike: string + + """""" + ipSourceSubnet: string + + """""" + ipSourceSubnet_geq: string + + """""" + ipSourceSubnet_gt: string + + """""" + ipSourceSubnet_in: [string!] + + """""" + ipSourceSubnet_leq: string + + """""" + ipSourceSubnet_like: string + + """""" + ipSourceSubnet_lt: string + + """""" + ipSourceSubnet_neq: string + + """""" + ipSourceSubnet_notin: [string!] + + """""" + ipSourceSubnet_notlike: string + + """""" + ipTotalLength: uint16 + + """""" + ipTotalLengthBuckets: uint16 + + """""" + ipTotalLengthBuckets_geq: uint16 + + """""" + ipTotalLengthBuckets_gt: uint16 + + """""" + ipTotalLengthBuckets_in: [uint16!] + + """""" + ipTotalLengthBuckets_leq: uint16 + + """""" + ipTotalLengthBuckets_lt: uint16 + + """""" + ipTotalLengthBuckets_neq: uint16 + + """""" + ipTotalLengthBuckets_notin: [uint16!] + + """""" + ipTotalLength_geq: uint16 + + """""" + ipTotalLength_gt: uint16 + + """""" + ipTotalLength_in: [uint16!] + + """""" + ipTotalLength_leq: uint16 + + """""" + ipTotalLength_lt: uint16 + + """""" + ipTotalLength_neq: uint16 + + """""" + ipTotalLength_notin: [uint16!] + + """""" + ipTtl: uint8 + + """""" + ipTtlBuckets: uint8 + + """""" + ipTtlBuckets_geq: uint8 + + """""" + ipTtlBuckets_gt: uint8 + + """""" + ipTtlBuckets_in: bytes + + """""" + ipTtlBuckets_leq: uint8 + + """""" + ipTtlBuckets_lt: uint8 + + """""" + ipTtlBuckets_neq: uint8 + + """""" + ipTtlBuckets_notin: bytes + + """""" + ipTtl_geq: uint8 + + """""" + ipTtl_gt: uint8 + + """""" + ipTtl_in: bytes + + """""" + ipTtl_leq: uint8 + + """""" + ipTtl_lt: uint8 + + """""" + ipTtl_neq: uint8 + + """""" + ipTtl_notin: bytes + + """""" + ipv4Checksum: uint16 + + """""" + ipv4Checksum_geq: uint16 + + """""" + ipv4Checksum_gt: uint16 + + """""" + ipv4Checksum_in: [uint16!] + + """""" + ipv4Checksum_leq: uint16 + + """""" + ipv4Checksum_lt: uint16 + + """""" + ipv4Checksum_neq: uint16 + + """""" + ipv4Checksum_notin: [uint16!] + + """""" + ipv4DontFragment: uint8 + + """""" + ipv4DontFragment_geq: uint8 + + """""" + ipv4DontFragment_gt: uint8 + + """""" + ipv4DontFragment_in: bytes + + """""" + ipv4DontFragment_leq: uint8 + + """""" + ipv4DontFragment_lt: uint8 + + """""" + ipv4DontFragment_neq: uint8 + + """""" + ipv4DontFragment_notin: bytes + + """""" + ipv4Dscp: uint8 + + """""" + ipv4Dscp_geq: uint8 + + """""" + ipv4Dscp_gt: uint8 + + """""" + ipv4Dscp_in: bytes + + """""" + ipv4Dscp_leq: uint8 + + """""" + ipv4Dscp_lt: uint8 + + """""" + ipv4Dscp_neq: uint8 + + """""" + ipv4Dscp_notin: bytes + + """""" + ipv4Ecn: uint8 + + """""" + ipv4Ecn_geq: uint8 + + """""" + ipv4Ecn_gt: uint8 + + """""" + ipv4Ecn_in: bytes + + """""" + ipv4Ecn_leq: uint8 + + """""" + ipv4Ecn_lt: uint8 + + """""" + ipv4Ecn_neq: uint8 + + """""" + ipv4Ecn_notin: bytes + + """""" + ipv4Identification: uint16 + + """""" + ipv4Identification_geq: uint16 + + """""" + ipv4Identification_gt: uint16 + + """""" + ipv4Identification_in: [uint16!] + + """""" + ipv4Identification_leq: uint16 + + """""" + ipv4Identification_lt: uint16 + + """""" + ipv4Identification_neq: uint16 + + """""" + ipv4Identification_notin: [uint16!] + + """""" + ipv4Options: string + + """""" + ipv4Options_geq: string + + """""" + ipv4Options_gt: string + + """""" + ipv4Options_in: [string!] + + """""" + ipv4Options_leq: string + + """""" + ipv4Options_like: string + + """""" + ipv4Options_lt: string + + """""" + ipv4Options_neq: string + + """""" + ipv4Options_notin: [string!] + + """""" + ipv4Options_notlike: string + + """""" + ipv6Dscp: uint8 + + """""" + ipv6Dscp_geq: uint8 + + """""" + ipv6Dscp_gt: uint8 + + """""" + ipv6Dscp_in: bytes + + """""" + ipv6Dscp_leq: uint8 + + """""" + ipv6Dscp_lt: uint8 + + """""" + ipv6Dscp_neq: uint8 + + """""" + ipv6Dscp_notin: bytes + + """""" + ipv6Ecn: uint8 + + """""" + ipv6Ecn_geq: uint8 + + """""" + ipv6Ecn_gt: uint8 + + """""" + ipv6Ecn_in: bytes + + """""" + ipv6Ecn_leq: uint8 + + """""" + ipv6Ecn_lt: uint8 + + """""" + ipv6Ecn_neq: uint8 + + """""" + ipv6Ecn_notin: bytes + + """""" + ipv6ExtensionHeaders: string + + """""" + ipv6ExtensionHeaders_geq: string + + """""" + ipv6ExtensionHeaders_gt: string + + """""" + ipv6ExtensionHeaders_in: [string!] + + """""" + ipv6ExtensionHeaders_leq: string + + """""" + ipv6ExtensionHeaders_like: string + + """""" + ipv6ExtensionHeaders_lt: string + + """""" + ipv6ExtensionHeaders_neq: string + + """""" + ipv6ExtensionHeaders_notin: [string!] + + """""" + ipv6ExtensionHeaders_notlike: string + + """""" + ipv6FlowLabel: uint32 + + """""" + ipv6FlowLabel_geq: uint32 + + """""" + ipv6FlowLabel_gt: uint32 + + """""" + ipv6FlowLabel_in: [uint32!] + + """""" + ipv6FlowLabel_leq: uint32 + + """""" + ipv6FlowLabel_lt: uint32 + + """""" + ipv6FlowLabel_neq: uint32 + + """""" + ipv6FlowLabel_notin: [uint32!] + + """""" + ipv6Identification: uint32 + + """""" + ipv6Identification_geq: uint32 + + """""" + ipv6Identification_gt: uint32 + + """""" + ipv6Identification_in: [uint32!] + + """""" + ipv6Identification_leq: uint32 + + """""" + ipv6Identification_lt: uint32 + + """""" + ipv6Identification_neq: uint32 + + """""" + ipv6Identification_notin: [uint32!] + + """""" + leaseTag: string + + """""" + leaseTag_geq: string + + """""" + leaseTag_gt: string + + """""" + leaseTag_in: [string!] + + """""" + leaseTag_leq: string + + """""" + leaseTag_like: string + + """""" + leaseTag_lt: string + + """""" + leaseTag_neq: string + + """""" + leaseTag_notin: [string!] + + """""" + leaseTag_notlike: string + + """""" + outcome: string + + """""" + outcome_geq: string + + """""" + outcome_gt: string + + """""" + outcome_in: [string!] + + """""" + outcome_leq: string + + """""" + outcome_like: string + + """""" + outcome_lt: string + + """""" + outcome_neq: string + + """""" + outcome_notin: [string!] + + """""" + outcome_notlike: string + + """""" + prefixTag: string + + """""" + prefixTag_geq: string + + """""" + prefixTag_gt: string + + """""" + prefixTag_in: [string!] + + """""" + prefixTag_leq: string + + """""" + prefixTag_like: string + + """""" + prefixTag_lt: string + + """""" + prefixTag_neq: string + + """""" + prefixTag_notin: [string!] + + """""" + prefixTag_notlike: string + + """""" + ruleId: string + + """""" + ruleId_geq: string + + """""" + ruleId_gt: string + + """""" + ruleId_in: [string!] + + """""" + ruleId_leq: string + + """""" + ruleId_like: string + + """""" + ruleId_lt: string + + """""" + ruleId_neq: string + + """""" + ruleId_notin: [string!] + + """""" + ruleId_notlike: string + + """""" + rulesetId: string + + """""" + rulesetId_geq: string + + """""" + rulesetId_gt: string + + """""" + rulesetId_in: [string!] + + """""" + rulesetId_leq: string + + """""" + rulesetId_like: string + + """""" + rulesetId_lt: string + + """""" + rulesetId_neq: string + + """""" + rulesetId_notin: [string!] + + """""" + rulesetId_notlike: string + + """""" + sampleInterval: uint32 + + """""" + sampleInterval_geq: uint32 + + """""" + sampleInterval_gt: uint32 + + """""" + sampleInterval_in: [uint32!] + + """""" + sampleInterval_leq: uint32 + + """""" + sampleInterval_lt: uint32 + + """""" + sampleInterval_neq: uint32 + + """""" + sampleInterval_notin: [uint32!] + + """""" + sourceAsn: uint32 + + """""" + sourceAsnName: string + + """""" + sourceAsnName_geq: string + + """""" + sourceAsnName_gt: string + + """""" + sourceAsnName_in: [string!] + + """""" + sourceAsnName_leq: string + + """""" + sourceAsnName_like: string + + """""" + sourceAsnName_lt: string + + """""" + sourceAsnName_neq: string + + """""" + sourceAsnName_notin: [string!] + + """""" + sourceAsnName_notlike: string + + """""" + sourceAsn_geq: uint32 + + """""" + sourceAsn_gt: uint32 + + """""" + sourceAsn_in: [uint32!] + + """""" + sourceAsn_leq: uint32 + + """""" + sourceAsn_lt: uint32 + + """""" + sourceAsn_neq: uint32 + + """""" + sourceAsn_notin: [uint32!] + + """""" + sourceCountry: string + + """""" + sourceCountry_geq: string + + """""" + sourceCountry_gt: string + + """""" + sourceCountry_in: [string!] + + """""" + sourceCountry_leq: string + + """""" + sourceCountry_like: string + + """""" + sourceCountry_lt: string + + """""" + sourceCountry_neq: string + + """""" + sourceCountry_notin: [string!] + + """""" + sourceCountry_notlike: string + + """""" + sourceDeviceTag: string + + """""" + sourceDeviceTag_geq: string + + """""" + sourceDeviceTag_gt: string + + """""" + sourceDeviceTag_in: [string!] + + """""" + sourceDeviceTag_leq: string + + """""" + sourceDeviceTag_like: string + + """""" + sourceDeviceTag_lt: string + + """""" + sourceDeviceTag_neq: string + + """""" + sourceDeviceTag_notin: [string!] + + """""" + sourceDeviceTag_notlike: string + + """""" + sourceGeohash: string + + """""" + sourceGeohash_geq: string + + """""" + sourceGeohash_gt: string + + """""" + sourceGeohash_in: [string!] + + """""" + sourceGeohash_leq: string + + """""" + sourceGeohash_like: string + + """""" + sourceGeohash_lt: string + + """""" + sourceGeohash_neq: string + + """""" + sourceGeohash_notin: [string!] + + """""" + sourceGeohash_notlike: string + + """""" + sourcePort: uint16 + + """""" + sourcePort_geq: uint16 + + """""" + sourcePort_gt: uint16 + + """""" + sourcePort_in: [uint16!] + + """""" + sourcePort_leq: uint16 + + """""" + sourcePort_lt: uint16 + + """""" + sourcePort_neq: uint16 + + """""" + sourcePort_notin: [uint16!] + + """""" + tcpAcknowledgementNumber: uint32 + + """""" + tcpAcknowledgementNumber_geq: uint32 + + """""" + tcpAcknowledgementNumber_gt: uint32 + + """""" + tcpAcknowledgementNumber_in: [uint32!] + + """""" + tcpAcknowledgementNumber_leq: uint32 + + """""" + tcpAcknowledgementNumber_lt: uint32 + + """""" + tcpAcknowledgementNumber_neq: uint32 + + """""" + tcpAcknowledgementNumber_notin: [uint32!] + + """""" + tcpChecksum: uint16 + + """""" + tcpChecksum_geq: uint16 + + """""" + tcpChecksum_gt: uint16 + + """""" + tcpChecksum_in: [uint16!] + + """""" + tcpChecksum_leq: uint16 + + """""" + tcpChecksum_lt: uint16 + + """""" + tcpChecksum_neq: uint16 + + """""" + tcpChecksum_notin: [uint16!] + + """""" + tcpDataOffset: uint16 + + """""" + tcpDataOffset_geq: uint16 + + """""" + tcpDataOffset_gt: uint16 + + """""" + tcpDataOffset_in: [uint16!] + + """""" + tcpDataOffset_leq: uint16 + + """""" + tcpDataOffset_lt: uint16 + + """""" + tcpDataOffset_neq: uint16 + + """""" + tcpDataOffset_notin: [uint16!] + + """""" + tcpFlags: uint8 + + """""" + tcpFlagsString: string + + """""" + tcpFlagsString_geq: string + + """""" + tcpFlagsString_gt: string + + """""" + tcpFlagsString_in: [string!] + + """""" + tcpFlagsString_leq: string + + """""" + tcpFlagsString_like: string + + """""" + tcpFlagsString_lt: string + + """""" + tcpFlagsString_neq: string + + """""" + tcpFlagsString_notin: [string!] + + """""" + tcpFlagsString_notlike: string + + """""" + tcpFlags_geq: uint8 + + """""" + tcpFlags_gt: uint8 + + """""" + tcpFlags_in: bytes + + """""" + tcpFlags_leq: uint8 + + """""" + tcpFlags_lt: uint8 + + """""" + tcpFlags_neq: uint8 + + """""" + tcpFlags_notin: bytes + + """""" + tcpMss: uint16 + + """""" + tcpMss_geq: uint16 + + """""" + tcpMss_gt: uint16 + + """""" + tcpMss_in: [uint16!] + + """""" + tcpMss_leq: uint16 + + """""" + tcpMss_lt: uint16 + + """""" + tcpMss_neq: uint16 + + """""" + tcpMss_notin: [uint16!] + + """""" + tcpOptions: string + + """""" + tcpOptions_geq: string + + """""" + tcpOptions_gt: string + + """""" + tcpOptions_in: [string!] + + """""" + tcpOptions_leq: string + + """""" + tcpOptions_like: string + + """""" + tcpOptions_lt: string + + """""" + tcpOptions_neq: string + + """""" + tcpOptions_notin: [string!] + + """""" + tcpOptions_notlike: string + + """""" + tcpSackBlocks: string + + """""" + tcpSackBlocks_geq: string + + """""" + tcpSackBlocks_gt: string + + """""" + tcpSackBlocks_in: [string!] + + """""" + tcpSackBlocks_leq: string + + """""" + tcpSackBlocks_like: string + + """""" + tcpSackBlocks_lt: string + + """""" + tcpSackBlocks_neq: string + + """""" + tcpSackBlocks_notin: [string!] + + """""" + tcpSackBlocks_notlike: string + + """""" + tcpSackPermitted: uint8 + + """""" + tcpSackPermitted_geq: uint8 + + """""" + tcpSackPermitted_gt: uint8 + + """""" + tcpSackPermitted_in: bytes + + """""" + tcpSackPermitted_leq: uint8 + + """""" + tcpSackPermitted_lt: uint8 + + """""" + tcpSackPermitted_neq: uint8 + + """""" + tcpSackPermitted_notin: bytes + + """""" + tcpSequenceNumber: uint32 + + """""" + tcpSequenceNumber_geq: uint32 + + """""" + tcpSequenceNumber_gt: uint32 + + """""" + tcpSequenceNumber_in: [uint32!] + + """""" + tcpSequenceNumber_leq: uint32 + + """""" + tcpSequenceNumber_lt: uint32 + + """""" + tcpSequenceNumber_neq: uint32 + + """""" + tcpSequenceNumber_notin: [uint32!] + + """""" + tcpTimestampEcr: uint32 + + """""" + tcpTimestampEcr_geq: uint32 + + """""" + tcpTimestampEcr_gt: uint32 + + """""" + tcpTimestampEcr_in: [uint32!] + + """""" + tcpTimestampEcr_leq: uint32 + + """""" + tcpTimestampEcr_lt: uint32 + + """""" + tcpTimestampEcr_neq: uint32 + + """""" + tcpTimestampEcr_notin: [uint32!] + + """""" + tcpTimestampValue: uint32 + + """""" + tcpTimestampValue_geq: uint32 + + """""" + tcpTimestampValue_gt: uint32 + + """""" + tcpTimestampValue_in: [uint32!] + + """""" + tcpTimestampValue_leq: uint32 + + """""" + tcpTimestampValue_lt: uint32 + + """""" + tcpTimestampValue_neq: uint32 + + """""" + tcpTimestampValue_notin: [uint32!] + + """""" + tcpUrgentPointer: uint16 + + """""" + tcpUrgentPointer_geq: uint16 + + """""" + tcpUrgentPointer_gt: uint16 + + """""" + tcpUrgentPointer_in: [uint16!] + + """""" + tcpUrgentPointer_leq: uint16 + + """""" + tcpUrgentPointer_lt: uint16 + + """""" + tcpUrgentPointer_neq: uint16 + + """""" + tcpUrgentPointer_notin: [uint16!] + + """""" + tcpWindowScale: uint16 + + """""" + tcpWindowScale_geq: uint16 + + """""" + tcpWindowScale_gt: uint16 + + """""" + tcpWindowScale_in: [uint16!] + + """""" + tcpWindowScale_leq: uint16 + + """""" + tcpWindowScale_lt: uint16 + + """""" + tcpWindowScale_neq: uint16 + + """""" + tcpWindowScale_notin: [uint16!] + + """""" + tcpWindowSize: uint16 + + """""" + tcpWindowSize_geq: uint16 + + """""" + tcpWindowSize_gt: uint16 + + """""" + tcpWindowSize_in: [uint16!] + + """""" + tcpWindowSize_leq: uint16 + + """""" + tcpWindowSize_lt: uint16 + + """""" + tcpWindowSize_neq: uint16 + + """""" + tcpWindowSize_notin: [uint16!] + + """""" + udpChecksum: uint16 + + """""" + udpChecksum_geq: uint16 + + """""" + udpChecksum_gt: uint16 + + """""" + udpChecksum_in: [uint16!] + + """""" + udpChecksum_leq: uint16 + + """""" + udpChecksum_lt: uint16 + + """""" + udpChecksum_neq: uint16 + + """""" + udpChecksum_notin: [uint16!] + + """""" + udpPayloadLength: uint16 + + """""" + udpPayloadLength_geq: uint16 + + """""" + udpPayloadLength_gt: uint16 + + """""" + udpPayloadLength_in: [uint16!] + + """""" + udpPayloadLength_leq: uint16 + + """""" + udpPayloadLength_lt: uint16 + + """""" + udpPayloadLength_neq: uint16 + + """""" + udpPayloadLength_notin: [uint16!] + + """""" + verdict: string + + """""" + verdict_geq: string + + """""" + verdict_gt: string + + """""" + verdict_in: [string!] + + """""" + verdict_leq: string + + """""" + verdict_like: string + + """""" + verdict_lt: string + + """""" + verdict_neq: string + + """""" + verdict_notin: [string!] + + """""" + verdict_notlike: string +} + +"""""" +enum AccountMagicFirewallNetworkAnalyticsAdaptiveGroupsOrderBy { + """applicationTag ascending""" + applicationTag_ASC + + """applicationTag descending""" + applicationTag_DESC + + """avg(bitRateDay) ascending""" + avg_bitRateDay_ASC + + """avg(bitRateDay) descending""" + avg_bitRateDay_DESC + + """avg(bitRateFifteenMinutes) ascending""" + avg_bitRateFifteenMinutes_ASC + + """avg(bitRateFifteenMinutes) descending""" + avg_bitRateFifteenMinutes_DESC + + """avg(bitRateFiveMinutes) ascending""" + avg_bitRateFiveMinutes_ASC + + """avg(bitRateFiveMinutes) descending""" + avg_bitRateFiveMinutes_DESC + + """avg(bitRateHour) ascending""" + avg_bitRateHour_ASC + + """avg(bitRateHour) descending""" + avg_bitRateHour_DESC + + """avg(bitRateMinute) ascending""" + avg_bitRateMinute_ASC + + """avg(bitRateMinute) descending""" + avg_bitRateMinute_DESC + + """avg(bitRateTenSeconds) ascending""" + avg_bitRateTenSeconds_ASC + + """avg(bitRateTenSeconds) descending""" + avg_bitRateTenSeconds_DESC + + """avg(bitRate) ascending""" + avg_bitRate_ASC + + """avg(bitRate) descending""" + avg_bitRate_DESC + + """avg(packetRateDay) ascending""" + avg_packetRateDay_ASC + + """avg(packetRateDay) descending""" + avg_packetRateDay_DESC + + """avg(packetRateFifteenMinutes) ascending""" + avg_packetRateFifteenMinutes_ASC + + """avg(packetRateFifteenMinutes) descending""" + avg_packetRateFifteenMinutes_DESC + + """avg(packetRateFiveMinutes) ascending""" + avg_packetRateFiveMinutes_ASC + + """avg(packetRateFiveMinutes) descending""" + avg_packetRateFiveMinutes_DESC + + """avg(packetRateHour) ascending""" + avg_packetRateHour_ASC + + """avg(packetRateHour) descending""" + avg_packetRateHour_DESC + + """avg(packetRateMinute) ascending""" + avg_packetRateMinute_ASC + + """avg(packetRateMinute) descending""" + avg_packetRateMinute_DESC + + """avg(packetRateTenSeconds) ascending""" + avg_packetRateTenSeconds_ASC + + """avg(packetRateTenSeconds) descending""" + avg_packetRateTenSeconds_DESC + + """avg(packetRate) ascending""" + avg_packetRate_ASC + + """avg(packetRate) descending""" + avg_packetRate_DESC + + """coloCity ascending""" + coloCity_ASC + + """coloCity descending""" + coloCity_DESC + + """coloCode ascending""" + coloCode_ASC + + """coloCode descending""" + coloCode_DESC + + """coloCountry ascending""" + coloCountry_ASC + + """coloCountry descending""" + coloCountry_DESC + + """coloGeohash ascending""" + coloGeohash_ASC + + """coloGeohash descending""" + coloGeohash_DESC + + """coloName ascending""" + coloName_ASC + + """coloName descending""" + coloName_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetimeTenSeconds ascending""" + datetimeTenSeconds_ASC + + """datetimeTenSeconds descending""" + datetimeTenSeconds_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """destinationAsnName ascending""" + destinationAsnName_ASC + + """destinationAsnName descending""" + destinationAsnName_DESC + + """destinationAsn ascending""" + destinationAsn_ASC + + """destinationAsn descending""" + destinationAsn_DESC + + """destinationCountry ascending""" + destinationCountry_ASC + + """destinationCountry descending""" + destinationCountry_DESC + + """destinationDeviceTag ascending""" + destinationDeviceTag_ASC + + """destinationDeviceTag descending""" + destinationDeviceTag_DESC + + """destinationGeohash ascending""" + destinationGeohash_ASC + + """destinationGeohash descending""" + destinationGeohash_DESC + + """destinationPort ascending""" + destinationPort_ASC + + """destinationPort descending""" + destinationPort_DESC + + """direction ascending""" + direction_ASC + + """direction descending""" + direction_DESC + + """ethertype ascending""" + ethertype_ASC + + """ethertype descending""" + ethertype_DESC + + """greChecksum ascending""" + greChecksum_ASC + + """greChecksum descending""" + greChecksum_DESC + + """greEthertype ascending""" + greEthertype_ASC + + """greEthertype descending""" + greEthertype_DESC + + """greHeaderLength ascending""" + greHeaderLength_ASC + + """greHeaderLength descending""" + greHeaderLength_DESC + + """greKey ascending""" + greKey_ASC + + """greKey descending""" + greKey_DESC + + """greSequenceNumber ascending""" + greSequenceNumber_ASC + + """greSequenceNumber descending""" + greSequenceNumber_DESC + + """greVersion ascending""" + greVersion_ASC + + """greVersion descending""" + greVersion_DESC + + """icmpChecksum ascending""" + icmpChecksum_ASC + + """icmpChecksum descending""" + icmpChecksum_DESC + + """icmpCode ascending""" + icmpCode_ASC + + """icmpCode descending""" + icmpCode_DESC + + """icmpType ascending""" + icmpType_ASC + + """icmpType descending""" + icmpType_DESC + + """ipDestinationAddress ascending""" + ipDestinationAddress_ASC + + """ipDestinationAddress descending""" + ipDestinationAddress_DESC + + """ipDestinationSubnet ascending""" + ipDestinationSubnet_ASC + + """ipDestinationSubnet descending""" + ipDestinationSubnet_DESC + + """ipFragmentOffset ascending""" + ipFragmentOffset_ASC + + """ipFragmentOffset descending""" + ipFragmentOffset_DESC + + """ipHeaderLength ascending""" + ipHeaderLength_ASC + + """ipHeaderLength descending""" + ipHeaderLength_DESC + + """ipMoreFragments ascending""" + ipMoreFragments_ASC + + """ipMoreFragments descending""" + ipMoreFragments_DESC + + """ipProtocolName ascending""" + ipProtocolName_ASC + + """ipProtocolName descending""" + ipProtocolName_DESC + + """ipProtocol ascending""" + ipProtocol_ASC + + """ipProtocol descending""" + ipProtocol_DESC + + """ipSourceAddress ascending""" + ipSourceAddress_ASC + + """ipSourceAddress descending""" + ipSourceAddress_DESC + + """ipSourceSubnet ascending""" + ipSourceSubnet_ASC + + """ipSourceSubnet descending""" + ipSourceSubnet_DESC + + """ipTotalLengthBuckets ascending""" + ipTotalLengthBuckets_ASC + + """ipTotalLengthBuckets descending""" + ipTotalLengthBuckets_DESC + + """ipTotalLength ascending""" + ipTotalLength_ASC + + """ipTotalLength descending""" + ipTotalLength_DESC + + """ipTtlBuckets ascending""" + ipTtlBuckets_ASC + + """ipTtlBuckets descending""" + ipTtlBuckets_DESC + + """ipTtl ascending""" + ipTtl_ASC + + """ipTtl descending""" + ipTtl_DESC + + """ipv4Checksum ascending""" + ipv4Checksum_ASC + + """ipv4Checksum descending""" + ipv4Checksum_DESC + + """ipv4DontFragment ascending""" + ipv4DontFragment_ASC + + """ipv4DontFragment descending""" + ipv4DontFragment_DESC + + """ipv4Dscp ascending""" + ipv4Dscp_ASC + + """ipv4Dscp descending""" + ipv4Dscp_DESC + + """ipv4Ecn ascending""" + ipv4Ecn_ASC + + """ipv4Ecn descending""" + ipv4Ecn_DESC + + """ipv4Identification ascending""" + ipv4Identification_ASC + + """ipv4Identification descending""" + ipv4Identification_DESC + + """ipv4Options ascending""" + ipv4Options_ASC + + """ipv4Options descending""" + ipv4Options_DESC + + """ipv6Dscp ascending""" + ipv6Dscp_ASC + + """ipv6Dscp descending""" + ipv6Dscp_DESC + + """ipv6Ecn ascending""" + ipv6Ecn_ASC + + """ipv6Ecn descending""" + ipv6Ecn_DESC + + """ipv6ExtensionHeaders ascending""" + ipv6ExtensionHeaders_ASC + + """ipv6ExtensionHeaders descending""" + ipv6ExtensionHeaders_DESC + + """ipv6FlowLabel ascending""" + ipv6FlowLabel_ASC + + """ipv6FlowLabel descending""" + ipv6FlowLabel_DESC + + """ipv6Identification ascending""" + ipv6Identification_ASC + + """ipv6Identification descending""" + ipv6Identification_DESC + + """leaseTag ascending""" + leaseTag_ASC + + """leaseTag descending""" + leaseTag_DESC + + """outcome ascending""" + outcome_ASC + + """outcome descending""" + outcome_DESC + + """prefixTag ascending""" + prefixTag_ASC + + """prefixTag descending""" + prefixTag_DESC + + """ruleId ascending""" + ruleId_ASC + + """ruleId descending""" + ruleId_DESC + + """rulesetId ascending""" + rulesetId_ASC + + """rulesetId descending""" + rulesetId_DESC + + """sampleInterval ascending""" + sampleInterval_ASC + + """sampleInterval descending""" + sampleInterval_DESC + + """sourceAsnName ascending""" + sourceAsnName_ASC + + """sourceAsnName descending""" + sourceAsnName_DESC + + """sourceAsn ascending""" + sourceAsn_ASC + + """sourceAsn descending""" + sourceAsn_DESC + + """sourceCountry ascending""" + sourceCountry_ASC + + """sourceCountry descending""" + sourceCountry_DESC + + """sourceDeviceTag ascending""" + sourceDeviceTag_ASC + + """sourceDeviceTag descending""" + sourceDeviceTag_DESC + + """sourceGeohash ascending""" + sourceGeohash_ASC + + """sourceGeohash descending""" + sourceGeohash_DESC + + """sourcePort ascending""" + sourcePort_ASC + + """sourcePort descending""" + sourcePort_DESC + + """sum(bits) ascending""" + sum_bits_ASC + + """sum(bits) descending""" + sum_bits_DESC + + """sum(packets) ascending""" + sum_packets_ASC + + """sum(packets) descending""" + sum_packets_DESC + + """system ascending""" + system_ASC + + """system descending""" + system_DESC + + """tcpAcknowledgementNumber ascending""" + tcpAcknowledgementNumber_ASC + + """tcpAcknowledgementNumber descending""" + tcpAcknowledgementNumber_DESC + + """tcpChecksum ascending""" + tcpChecksum_ASC + + """tcpChecksum descending""" + tcpChecksum_DESC + + """tcpDataOffset ascending""" + tcpDataOffset_ASC + + """tcpDataOffset descending""" + tcpDataOffset_DESC + + """tcpFlagsString ascending""" + tcpFlagsString_ASC + + """tcpFlagsString descending""" + tcpFlagsString_DESC + + """tcpFlags ascending""" + tcpFlags_ASC + + """tcpFlags descending""" + tcpFlags_DESC + + """tcpMss ascending""" + tcpMss_ASC + + """tcpMss descending""" + tcpMss_DESC + + """tcpOptions ascending""" + tcpOptions_ASC + + """tcpOptions descending""" + tcpOptions_DESC + + """tcpSackBlocks ascending""" + tcpSackBlocks_ASC + + """tcpSackBlocks descending""" + tcpSackBlocks_DESC + + """tcpSackPermitted ascending""" + tcpSackPermitted_ASC + + """tcpSackPermitted descending""" + tcpSackPermitted_DESC + + """tcpSequenceNumber ascending""" + tcpSequenceNumber_ASC + + """tcpSequenceNumber descending""" + tcpSequenceNumber_DESC + + """tcpTimestampEcr ascending""" + tcpTimestampEcr_ASC + + """tcpTimestampEcr descending""" + tcpTimestampEcr_DESC + + """tcpTimestampValue ascending""" + tcpTimestampValue_ASC + + """tcpTimestampValue descending""" + tcpTimestampValue_DESC + + """tcpUrgentPointer ascending""" + tcpUrgentPointer_ASC + + """tcpUrgentPointer descending""" + tcpUrgentPointer_DESC + + """tcpWindowScale ascending""" + tcpWindowScale_ASC + + """tcpWindowScale descending""" + tcpWindowScale_DESC + + """tcpWindowSize ascending""" + tcpWindowSize_ASC + + """tcpWindowSize descending""" + tcpWindowSize_DESC + + """udpChecksum ascending""" + udpChecksum_ASC + + """udpChecksum descending""" + udpChecksum_DESC + + """udpPayloadLength ascending""" + udpPayloadLength_ASC + + """udpPayloadLength descending""" + udpPayloadLength_DESC + + """verdict ascending""" + verdict_ASC + + """verdict descending""" + verdict_DESC +} + +"""""" +type AccountMagicFirewallNetworkAnalyticsAdaptiveGroupsSum { + """Sum of bits received""" + bits: uint64! + + """Sum of packets received""" + packets: uint64! +} + +"""""" +type AccountMagicFirewallNetworkAnalyticsAdaptiveGroupsSumConfidence { + """Confidence interval for the corresponding point estimate""" + bits: Confidence! + + """Confidence interval for the corresponding point estimate""" + packets: Confidence! +} + +"""Network analytics data for Magic Firewall Ratelimiting""" +type AccountMagicFirewallRateLimitNetworkAnalyticsAdaptiveGroups { + """The average of values for a metric per dimension""" + avg: AccountMagicFirewallRateLimitNetworkAnalyticsAdaptiveGroupsAvg + + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountMagicFirewallRateLimitNetworkAnalyticsAdaptiveGroupsConfidence! + + """List of dimensions to group by""" + dimensions: AccountMagicFirewallRateLimitNetworkAnalyticsAdaptiveGroupsDimensions + + """The sum of values for a metric per dimension""" + sum: AccountMagicFirewallRateLimitNetworkAnalyticsAdaptiveGroupsSum +} + +"""""" +type AccountMagicFirewallRateLimitNetworkAnalyticsAdaptiveGroupsAvg { + """ + Sum of bits received, divided by 1 second, providing a per-second bit rate when grouped by datetime + """ + bitRate: uint64! + + """ + Sum of bits received, divided by 86400 seconds, providing a per-second bit rate when grouped by date + """ + bitRateDay: uint64! + + """ + Sum of bits received, divided by 900 seconds, providing a per-second bit rate when grouped by datetimeFifteenMinutes + """ + bitRateFifteenMinutes: uint64! + + """ + Sum of bits received, divided by 300 seconds, providing a per-second bit rate when grouped by datetimeFiveMinutes + """ + bitRateFiveMinutes: uint64! + + """ + Sum of bits received, divided by 3600 seconds, providing a per-second bit rate when grouped by datetimeHour + """ + bitRateHour: uint64! + + """ + Sum of bits received, divided by 60 seconds, providing a per-second bit rate when grouped by datetimeMinute + """ + bitRateMinute: uint64! + + """ + Sum of bits received, divided by 10 seconds, providing a per-second bit rate when grouped by datetimeTenSeconds + """ + bitRateTenSeconds: uint64! + + """ + Sum of packets received, divided by 1 second, providing a per-second packet rate when grouped by datetime + """ + packetRate: uint64! + + """ + Sum of packets received, divided by 86400 seconds, providing a per-second packet rate when grouped by date + """ + packetRateDay: uint64! + + """ + Sum of packets received, divided by 900 seconds, providing a per-second packet rate when grouped by datetimeFifteenMinutes + """ + packetRateFifteenMinutes: uint64! + + """ + Sum of packets received, divided by 300 seconds, providing a per-second packet rate when grouped by datetimeFiveMinutes + """ + packetRateFiveMinutes: uint64! + + """ + Sum of packets received, divided by 3600 seconds, providing a per-second packet rate when grouped by datetimeHour + """ + packetRateHour: uint64! + + """ + Sum of packets received, divided by 60 seconds, providing a per-second packet rate when grouped by datetimeMinute + """ + packetRateMinute: uint64! + + """ + Sum of packets received, divided by 10 seconds, providing a per-second packet rate when grouped by datetimeTenSeconds + """ + packetRateTenSeconds: uint64! +} + +"""""" +type AccountMagicFirewallRateLimitNetworkAnalyticsAdaptiveGroupsAvgConfidence { + """Confidence interval for the corresponding point estimate""" + bitRate: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateDay: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateFifteenMinutes: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateFiveMinutes: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateHour: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateMinute: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateTenSeconds: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRate: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateDay: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateFifteenMinutes: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateFiveMinutes: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateHour: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateMinute: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateTenSeconds: Confidence! +} + +"""""" +type AccountMagicFirewallRateLimitNetworkAnalyticsAdaptiveGroupsConfidence { + """ + The average of values for a metric per dimension, with confidence intervals + """ + avg: AccountMagicFirewallRateLimitNetworkAnalyticsAdaptiveGroupsAvgConfidence + + """Confidence level that was requested""" + level: float64! + + """ + The sum of values for a metric per dimension, with confidence intervals + """ + sum: AccountMagicFirewallRateLimitNetworkAnalyticsAdaptiveGroupsSumConfidence +} + +"""""" +type AccountMagicFirewallRateLimitNetworkAnalyticsAdaptiveGroupsDimensions { + """Application tag associated with the packet""" + applicationTag: string! + + """ + City where the Cloudflare datacenter that received the packet is located + """ + coloCity: string! + + """ + Cloudflare datacenter that received the packet (nearest IATA airport code) + """ + coloCode: string! + + """ + Country where the Cloudflare datacenter that received the packet is located (ISO 3166-1 alpha-2) + """ + coloCountry: string! + + """ + Latitude and longitude where the Cloudflare datacenter that received the packet is located (Geohash encoding) + """ + coloGeohash: string! + + """ + Cloudflare datacenter that received the packet (unique site identifier) + """ + coloName: string! + + """Date that the packet was received""" + date: Date! + + """Date and time that the packet was received""" + datetime: Time! + + """ + Date and time that the packet was received, rounded to the start of the nearest fifteen minutes + """ + datetimeFifteenMinutes: Time! + + """ + Date and time that the packet was received, rounded to the start of the nearest five minutes + """ + datetimeFiveMinutes: Time! + + """ + Date and time that the packet was received, rounded to the start of the nearest hour + """ + datetimeHour: Time! + + """ + Date and time that the packet was received, rounded to the start of the nearest minute + """ + datetimeMinute: Time! + + """ + Date and time that the packet was received, rounded to the start of the nearest ten seconds + """ + datetimeTenSeconds: Time! + + """ + ASN associated with the destination IP of the packet, or 0 if there was no mapping available + """ + destinationAsn: uint32! + + """ + Name of ASN associated with the destination IP of the packet, if available + """ + destinationAsnName: string! + + """ + Country where the destination IP of the packet is located (ISO 3166-1 alpha-2) + """ + destinationCountry: string! + + """Device tag associated with the destination IP of the packet""" + destinationDeviceTag: string! + + """ + Latitude and longitude where the destination IP of the packet is located (Geohash encoding) + """ + destinationGeohash: string! + + """Value of the Destination Port header field in the TCP or UDP packet""" + destinationPort: uint16! + + """ + Direction of the packet relative to the customer network (possible values: inbound, outbound, lateral) + """ + direction: string! + + """ + Value of the Ethertype header field in the Ethernet packet (2048 for IPv4; 34525 for IPv6) + """ + ethertype: uint16! + + """Value of the Checkusm header field in the GRE packet""" + greChecksum: uint16! + + """Value of the Ethertype header field in the GRE packet""" + greEthertype: uint16! + + """Length of the GRE packet header, in bytes""" + greHeaderLength: uint16! + + """Value of the Key header field in the GRE packet""" + greKey: uint32! + + """Value of the Sequence Number header field in the GRE packet""" + greSequenceNumber: uint32! + + """Value of the Version header field in the GRE packet""" + greVersion: uint8! + + """Value of the Checkusm header field in the ICMP packet""" + icmpChecksum: uint16! + + """Value of the Code header field in the ICMP packet""" + icmpCode: uint8! + + """Value of the Type header field in the ICMP packet""" + icmpType: uint8! + + """ + Value of the Destination Address header field in the IPv4 or IPv6 packet + """ + ipDestinationAddress: string! + + """ + Computed subnet of the Destination Address header field in the IPv4 or IPv6 packet (/24 for IPv4; /48 for IPv6) + """ + ipDestinationSubnet: string! + + """Value of the Fragment Offset header field in the IPv4 or IPv6 packet""" + ipFragmentOffset: uint16! + + """Length of the IPv4 or IPv6 packet header, in bytes""" + ipHeaderLength: uint16! + + """Value of the More Fragments header field in the IPv4 or IPv6 packet""" + ipMoreFragments: uint8! + + """Value of the Protocol header field in the IPv4 or IPv6 packet""" + ipProtocol: uint8! + + """ + Name of the protocol specified by the Protocol header field in the IPv4 or IPv6 packet + """ + ipProtocolName: string! + + """Value of the Source Address header field in the IPv4 or IPv6 packet""" + ipSourceAddress: string! + + """ + Computed subnet of the Source Address header field in the IPv4 or IPv6 packet (/24 for IPv4; /48 for IPv6) + """ + ipSourceSubnet: string! + + """Total length of the IPv4 or IPv6 packet, in bytes""" + ipTotalLength: uint16! + + """ + Total length of the IPv4 or IPv6 packet, in bytes, with the last two digits truncated + """ + ipTotalLengthBuckets: uint16! + + """ + Value of the TTL header field in the IPv4 packet or the Hop Limit header field in the IPv6 packet + """ + ipTtl: uint8! + + """ + Value of the TTL header field in the IPv4 packet or the Hop Limit header field in the IPv6 packet, with the last digit truncated + """ + ipTtlBuckets: uint8! + + """Value of the Checksum header field in the IPv4 packet""" + ipv4Checksum: uint16! + + """Value of the Don't Fragment header field in the IPv4 packet""" + ipv4DontFragment: uint8! + + """ + Value of the Differentiated Services Code Point header field in the IPv4 packet + """ + ipv4Dscp: uint8! + + """ + Value of the Explicit Congestion Notification header field in the IPv4 packet + """ + ipv4Ecn: uint8! + + """Value of the Identification header field in the IPv4 packet""" + ipv4Identification: uint16! + + """List of Options numbers included in the IPv4 packet header""" + ipv4Options: string! + + """ + Value of the Differentiated Services Code Point header field in the IPv6 packet + """ + ipv6Dscp: uint8! + + """ + Value of the Explicit Congestion Notification header field in the IPv6 packet + """ + ipv6Ecn: uint8! + + """List of Extension Header numbers included in the IPv6 packet header""" + ipv6ExtensionHeaders: string! + + """Value of the Flow Label header field in the IPv6 packet""" + ipv6FlowLabel: uint32! + + """Value of the Identification extension header field in the IPv6 packet""" + ipv6Identification: uint32! + + """IP lease tag associated with the packet""" + leaseTag: string! + + """The action that was taken on the packet (possible values: pass, drop)""" + outcome: string! + + """IP prefix tag associated with the packet""" + prefixTag: string! + + """Unique identifier of the rule that matched the packet, if any""" + ruleId: string! + + """ + Unique identifier of the ruleset containing the rule that matched the packet, if any + """ + rulesetId: string! + + """ABR sample interval""" + sampleInterval: uint32! + + """ + ASN associated with the source IP of the packet, or 0 if there was no mapping available + """ + sourceAsn: uint32! + + """Name of ASN associated with the source IP of the packet, if available""" + sourceAsnName: string! + + """ + Country where the source IP of the packet is located (ISO 3166-1 alpha-2) + """ + sourceCountry: string! + + """Device tag associated with the source IP of the packet""" + sourceDeviceTag: string! + + """ + Latitude and longitude where the source IP of the packet is located (Geohash encoding) + """ + sourceGeohash: string! + + """Value of the Source Port header field in the TCP or UDP packet""" + sourcePort: uint16! + + """Value of the Acknowledgement Number header field in the TCP packet""" + tcpAcknowledgementNumber: uint32! + + """Value of the Checkusm header field in the TCP packet""" + tcpChecksum: uint16! + + """Value of the Data Offset header field in the TCP packet""" + tcpDataOffset: uint16! + + """Value of the Flags header field in the TCP packet""" + tcpFlags: uint8! + + """ + Human-readable string representation of the Flags header field in the TCP packet + """ + tcpFlagsString: string! + + """Value of the MSS option header field in the TCP packet""" + tcpMss: uint16! + + """List of Options numbers included in the TCP packet header""" + tcpOptions: string! + + """Value of the SACK Blocks option header field in the TCP packet""" + tcpSackBlocks: string! + + """Value of the SACK Permitted option header field in the TCP packet""" + tcpSackPermitted: uint8! + + """Value of the Sequence Number header field in the TCP packet""" + tcpSequenceNumber: uint32! + + """ + Value of the Timestamp Echo Reply option header field in the TCP packet + """ + tcpTimestampEcr: uint32! + + """Value of the Timestamp option header field in the TCP packet""" + tcpTimestampValue: uint32! + + """Value of the Urgent Pointer header field in the TCP packet""" + tcpUrgentPointer: uint16! + + """Value of the Window Scale option header field in the TCP packet""" + tcpWindowScale: uint16! + + """Value of the Window Size header field in the TCP packet""" + tcpWindowSize: uint16! + + """Value of the Checkusm header field in the UDP packet""" + udpChecksum: uint16! + + """Value of the Payload Length header field in the UDP packet""" + udpPayloadLength: uint16! + + """ + The action that Cloudflare thinks should be taken on the packet (possible values: pass, drop) + """ + verdict: string! +} + +"""""" +input AccountMagicFirewallRateLimitNetworkAnalyticsAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountMagicFirewallRateLimitNetworkAnalyticsAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountMagicFirewallRateLimitNetworkAnalyticsAdaptiveGroupsFilter_InputObject!] + + """""" + applicationTag: string + + """""" + applicationTag_geq: string + + """""" + applicationTag_gt: string + + """""" + applicationTag_in: [string!] + + """""" + applicationTag_leq: string + + """""" + applicationTag_like: string + + """""" + applicationTag_lt: string + + """""" + applicationTag_neq: string + + """""" + applicationTag_notin: [string!] + + """""" + applicationTag_notlike: string + + """""" + coloCity: string + + """""" + coloCity_geq: string + + """""" + coloCity_gt: string + + """""" + coloCity_in: [string!] + + """""" + coloCity_leq: string + + """""" + coloCity_like: string + + """""" + coloCity_lt: string + + """""" + coloCity_neq: string + + """""" + coloCity_notin: [string!] + + """""" + coloCity_notlike: string + + """""" + coloCode: string + + """""" + coloCode_geq: string + + """""" + coloCode_gt: string + + """""" + coloCode_in: [string!] + + """""" + coloCode_leq: string + + """""" + coloCode_like: string + + """""" + coloCode_lt: string + + """""" + coloCode_neq: string + + """""" + coloCode_notin: [string!] + + """""" + coloCode_notlike: string + + """""" + coloCountry: string + + """""" + coloCountry_geq: string + + """""" + coloCountry_gt: string + + """""" + coloCountry_in: [string!] + + """""" + coloCountry_leq: string + + """""" + coloCountry_like: string + + """""" + coloCountry_lt: string + + """""" + coloCountry_neq: string + + """""" + coloCountry_notin: [string!] + + """""" + coloCountry_notlike: string + + """""" + coloGeohash: string + + """""" + coloGeohash_geq: string + + """""" + coloGeohash_gt: string + + """""" + coloGeohash_in: [string!] + + """""" + coloGeohash_leq: string + + """""" + coloGeohash_like: string + + """""" + coloGeohash_lt: string + + """""" + coloGeohash_neq: string + + """""" + coloGeohash_notin: [string!] + + """""" + coloGeohash_notlike: string + + """""" + coloName: string + + """""" + coloName_geq: string + + """""" + coloName_gt: string + + """""" + coloName_in: [string!] + + """""" + coloName_leq: string + + """""" + coloName_like: string + + """""" + coloName_lt: string + + """""" + coloName_neq: string + + """""" + coloName_notin: [string!] + + """""" + coloName_notlike: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetimeTenSeconds: Time + + """""" + datetimeTenSeconds_geq: Time + + """""" + datetimeTenSeconds_gt: Time + + """""" + datetimeTenSeconds_in: [Time!] + + """""" + datetimeTenSeconds_leq: Time + + """""" + datetimeTenSeconds_lt: Time + + """""" + datetimeTenSeconds_neq: Time + + """""" + datetimeTenSeconds_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + destinationAsn: uint32 + + """""" + destinationAsnName: string + + """""" + destinationAsnName_geq: string + + """""" + destinationAsnName_gt: string + + """""" + destinationAsnName_in: [string!] + + """""" + destinationAsnName_leq: string + + """""" + destinationAsnName_like: string + + """""" + destinationAsnName_lt: string + + """""" + destinationAsnName_neq: string + + """""" + destinationAsnName_notin: [string!] + + """""" + destinationAsnName_notlike: string + + """""" + destinationAsn_geq: uint32 + + """""" + destinationAsn_gt: uint32 + + """""" + destinationAsn_in: [uint32!] + + """""" + destinationAsn_leq: uint32 + + """""" + destinationAsn_lt: uint32 + + """""" + destinationAsn_neq: uint32 + + """""" + destinationAsn_notin: [uint32!] + + """""" + destinationCountry: string + + """""" + destinationCountry_geq: string + + """""" + destinationCountry_gt: string + + """""" + destinationCountry_in: [string!] + + """""" + destinationCountry_leq: string + + """""" + destinationCountry_like: string + + """""" + destinationCountry_lt: string + + """""" + destinationCountry_neq: string + + """""" + destinationCountry_notin: [string!] + + """""" + destinationCountry_notlike: string + + """""" + destinationDeviceTag: string + + """""" + destinationDeviceTag_geq: string + + """""" + destinationDeviceTag_gt: string + + """""" + destinationDeviceTag_in: [string!] + + """""" + destinationDeviceTag_leq: string + + """""" + destinationDeviceTag_like: string + + """""" + destinationDeviceTag_lt: string + + """""" + destinationDeviceTag_neq: string + + """""" + destinationDeviceTag_notin: [string!] + + """""" + destinationDeviceTag_notlike: string + + """""" + destinationGeohash: string + + """""" + destinationGeohash_geq: string + + """""" + destinationGeohash_gt: string + + """""" + destinationGeohash_in: [string!] + + """""" + destinationGeohash_leq: string + + """""" + destinationGeohash_like: string + + """""" + destinationGeohash_lt: string + + """""" + destinationGeohash_neq: string + + """""" + destinationGeohash_notin: [string!] + + """""" + destinationGeohash_notlike: string + + """""" + destinationPort: uint16 + + """""" + destinationPort_geq: uint16 + + """""" + destinationPort_gt: uint16 + + """""" + destinationPort_in: [uint16!] + + """""" + destinationPort_leq: uint16 + + """""" + destinationPort_lt: uint16 + + """""" + destinationPort_neq: uint16 + + """""" + destinationPort_notin: [uint16!] + + """""" + direction: string + + """""" + direction_geq: string + + """""" + direction_gt: string + + """""" + direction_in: [string!] + + """""" + direction_leq: string + + """""" + direction_like: string + + """""" + direction_lt: string + + """""" + direction_neq: string + + """""" + direction_notin: [string!] + + """""" + direction_notlike: string + + """""" + ethertype: uint16 + + """""" + ethertype_geq: uint16 + + """""" + ethertype_gt: uint16 + + """""" + ethertype_in: [uint16!] + + """""" + ethertype_leq: uint16 + + """""" + ethertype_lt: uint16 + + """""" + ethertype_neq: uint16 + + """""" + ethertype_notin: [uint16!] + + """""" + greChecksum: uint16 + + """""" + greChecksum_geq: uint16 + + """""" + greChecksum_gt: uint16 + + """""" + greChecksum_in: [uint16!] + + """""" + greChecksum_leq: uint16 + + """""" + greChecksum_lt: uint16 + + """""" + greChecksum_neq: uint16 + + """""" + greChecksum_notin: [uint16!] + + """""" + greEthertype: uint16 + + """""" + greEthertype_geq: uint16 + + """""" + greEthertype_gt: uint16 + + """""" + greEthertype_in: [uint16!] + + """""" + greEthertype_leq: uint16 + + """""" + greEthertype_lt: uint16 + + """""" + greEthertype_neq: uint16 + + """""" + greEthertype_notin: [uint16!] + + """""" + greHeaderLength: uint16 + + """""" + greHeaderLength_geq: uint16 + + """""" + greHeaderLength_gt: uint16 + + """""" + greHeaderLength_in: [uint16!] + + """""" + greHeaderLength_leq: uint16 + + """""" + greHeaderLength_lt: uint16 + + """""" + greHeaderLength_neq: uint16 + + """""" + greHeaderLength_notin: [uint16!] + + """""" + greKey: uint32 + + """""" + greKey_geq: uint32 + + """""" + greKey_gt: uint32 + + """""" + greKey_in: [uint32!] + + """""" + greKey_leq: uint32 + + """""" + greKey_lt: uint32 + + """""" + greKey_neq: uint32 + + """""" + greKey_notin: [uint32!] + + """""" + greSequenceNumber: uint32 + + """""" + greSequenceNumber_geq: uint32 + + """""" + greSequenceNumber_gt: uint32 + + """""" + greSequenceNumber_in: [uint32!] + + """""" + greSequenceNumber_leq: uint32 + + """""" + greSequenceNumber_lt: uint32 + + """""" + greSequenceNumber_neq: uint32 + + """""" + greSequenceNumber_notin: [uint32!] + + """""" + greVersion: uint8 + + """""" + greVersion_geq: uint8 + + """""" + greVersion_gt: uint8 + + """""" + greVersion_in: bytes + + """""" + greVersion_leq: uint8 + + """""" + greVersion_lt: uint8 + + """""" + greVersion_neq: uint8 + + """""" + greVersion_notin: bytes + + """""" + icmpChecksum: uint16 + + """""" + icmpChecksum_geq: uint16 + + """""" + icmpChecksum_gt: uint16 + + """""" + icmpChecksum_in: [uint16!] + + """""" + icmpChecksum_leq: uint16 + + """""" + icmpChecksum_lt: uint16 + + """""" + icmpChecksum_neq: uint16 + + """""" + icmpChecksum_notin: [uint16!] + + """""" + icmpCode: uint8 + + """""" + icmpCode_geq: uint8 + + """""" + icmpCode_gt: uint8 + + """""" + icmpCode_in: bytes + + """""" + icmpCode_leq: uint8 + + """""" + icmpCode_lt: uint8 + + """""" + icmpCode_neq: uint8 + + """""" + icmpCode_notin: bytes + + """""" + icmpType: uint8 + + """""" + icmpType_geq: uint8 + + """""" + icmpType_gt: uint8 + + """""" + icmpType_in: bytes + + """""" + icmpType_leq: uint8 + + """""" + icmpType_lt: uint8 + + """""" + icmpType_neq: uint8 + + """""" + icmpType_notin: bytes + + """""" + ipDestinationAddress: string + + """""" + ipDestinationAddress_geq: string + + """""" + ipDestinationAddress_gt: string + + """""" + ipDestinationAddress_in: [string!] + + """""" + ipDestinationAddress_leq: string + + """""" + ipDestinationAddress_like: string + + """""" + ipDestinationAddress_lt: string + + """""" + ipDestinationAddress_neq: string + + """""" + ipDestinationAddress_notin: [string!] + + """""" + ipDestinationAddress_notlike: string + + """""" + ipDestinationSubnet: string + + """""" + ipDestinationSubnet_geq: string + + """""" + ipDestinationSubnet_gt: string + + """""" + ipDestinationSubnet_in: [string!] + + """""" + ipDestinationSubnet_leq: string + + """""" + ipDestinationSubnet_like: string + + """""" + ipDestinationSubnet_lt: string + + """""" + ipDestinationSubnet_neq: string + + """""" + ipDestinationSubnet_notin: [string!] + + """""" + ipDestinationSubnet_notlike: string + + """""" + ipFragmentOffset: uint16 + + """""" + ipFragmentOffset_geq: uint16 + + """""" + ipFragmentOffset_gt: uint16 + + """""" + ipFragmentOffset_in: [uint16!] + + """""" + ipFragmentOffset_leq: uint16 + + """""" + ipFragmentOffset_lt: uint16 + + """""" + ipFragmentOffset_neq: uint16 + + """""" + ipFragmentOffset_notin: [uint16!] + + """""" + ipHeaderLength: uint16 + + """""" + ipHeaderLength_geq: uint16 + + """""" + ipHeaderLength_gt: uint16 + + """""" + ipHeaderLength_in: [uint16!] + + """""" + ipHeaderLength_leq: uint16 + + """""" + ipHeaderLength_lt: uint16 + + """""" + ipHeaderLength_neq: uint16 + + """""" + ipHeaderLength_notin: [uint16!] + + """""" + ipMoreFragments: uint8 + + """""" + ipMoreFragments_geq: uint8 + + """""" + ipMoreFragments_gt: uint8 + + """""" + ipMoreFragments_in: bytes + + """""" + ipMoreFragments_leq: uint8 + + """""" + ipMoreFragments_lt: uint8 + + """""" + ipMoreFragments_neq: uint8 + + """""" + ipMoreFragments_notin: bytes + + """""" + ipProtocol: uint8 + + """""" + ipProtocolName: string + + """""" + ipProtocolName_geq: string + + """""" + ipProtocolName_gt: string + + """""" + ipProtocolName_in: [string!] + + """""" + ipProtocolName_leq: string + + """""" + ipProtocolName_like: string + + """""" + ipProtocolName_lt: string + + """""" + ipProtocolName_neq: string + + """""" + ipProtocolName_notin: [string!] + + """""" + ipProtocolName_notlike: string + + """""" + ipProtocol_geq: uint8 + + """""" + ipProtocol_gt: uint8 + + """""" + ipProtocol_in: bytes + + """""" + ipProtocol_leq: uint8 + + """""" + ipProtocol_lt: uint8 + + """""" + ipProtocol_neq: uint8 + + """""" + ipProtocol_notin: bytes + + """""" + ipSourceAddress: string + + """""" + ipSourceAddress_geq: string + + """""" + ipSourceAddress_gt: string + + """""" + ipSourceAddress_in: [string!] + + """""" + ipSourceAddress_leq: string + + """""" + ipSourceAddress_like: string + + """""" + ipSourceAddress_lt: string + + """""" + ipSourceAddress_neq: string + + """""" + ipSourceAddress_notin: [string!] + + """""" + ipSourceAddress_notlike: string + + """""" + ipSourceSubnet: string + + """""" + ipSourceSubnet_geq: string + + """""" + ipSourceSubnet_gt: string + + """""" + ipSourceSubnet_in: [string!] + + """""" + ipSourceSubnet_leq: string + + """""" + ipSourceSubnet_like: string + + """""" + ipSourceSubnet_lt: string + + """""" + ipSourceSubnet_neq: string + + """""" + ipSourceSubnet_notin: [string!] + + """""" + ipSourceSubnet_notlike: string + + """""" + ipTotalLength: uint16 + + """""" + ipTotalLengthBuckets: uint16 + + """""" + ipTotalLengthBuckets_geq: uint16 + + """""" + ipTotalLengthBuckets_gt: uint16 + + """""" + ipTotalLengthBuckets_in: [uint16!] + + """""" + ipTotalLengthBuckets_leq: uint16 + + """""" + ipTotalLengthBuckets_lt: uint16 + + """""" + ipTotalLengthBuckets_neq: uint16 + + """""" + ipTotalLengthBuckets_notin: [uint16!] + + """""" + ipTotalLength_geq: uint16 + + """""" + ipTotalLength_gt: uint16 + + """""" + ipTotalLength_in: [uint16!] + + """""" + ipTotalLength_leq: uint16 + + """""" + ipTotalLength_lt: uint16 + + """""" + ipTotalLength_neq: uint16 + + """""" + ipTotalLength_notin: [uint16!] + + """""" + ipTtl: uint8 + + """""" + ipTtlBuckets: uint8 + + """""" + ipTtlBuckets_geq: uint8 + + """""" + ipTtlBuckets_gt: uint8 + + """""" + ipTtlBuckets_in: bytes + + """""" + ipTtlBuckets_leq: uint8 + + """""" + ipTtlBuckets_lt: uint8 + + """""" + ipTtlBuckets_neq: uint8 + + """""" + ipTtlBuckets_notin: bytes + + """""" + ipTtl_geq: uint8 + + """""" + ipTtl_gt: uint8 + + """""" + ipTtl_in: bytes + + """""" + ipTtl_leq: uint8 + + """""" + ipTtl_lt: uint8 + + """""" + ipTtl_neq: uint8 + + """""" + ipTtl_notin: bytes + + """""" + ipv4Checksum: uint16 + + """""" + ipv4Checksum_geq: uint16 + + """""" + ipv4Checksum_gt: uint16 + + """""" + ipv4Checksum_in: [uint16!] + + """""" + ipv4Checksum_leq: uint16 + + """""" + ipv4Checksum_lt: uint16 + + """""" + ipv4Checksum_neq: uint16 + + """""" + ipv4Checksum_notin: [uint16!] + + """""" + ipv4DontFragment: uint8 + + """""" + ipv4DontFragment_geq: uint8 + + """""" + ipv4DontFragment_gt: uint8 + + """""" + ipv4DontFragment_in: bytes + + """""" + ipv4DontFragment_leq: uint8 + + """""" + ipv4DontFragment_lt: uint8 + + """""" + ipv4DontFragment_neq: uint8 + + """""" + ipv4DontFragment_notin: bytes + + """""" + ipv4Dscp: uint8 + + """""" + ipv4Dscp_geq: uint8 + + """""" + ipv4Dscp_gt: uint8 + + """""" + ipv4Dscp_in: bytes + + """""" + ipv4Dscp_leq: uint8 + + """""" + ipv4Dscp_lt: uint8 + + """""" + ipv4Dscp_neq: uint8 + + """""" + ipv4Dscp_notin: bytes + + """""" + ipv4Ecn: uint8 + + """""" + ipv4Ecn_geq: uint8 + + """""" + ipv4Ecn_gt: uint8 + + """""" + ipv4Ecn_in: bytes + + """""" + ipv4Ecn_leq: uint8 + + """""" + ipv4Ecn_lt: uint8 + + """""" + ipv4Ecn_neq: uint8 + + """""" + ipv4Ecn_notin: bytes + + """""" + ipv4Identification: uint16 + + """""" + ipv4Identification_geq: uint16 + + """""" + ipv4Identification_gt: uint16 + + """""" + ipv4Identification_in: [uint16!] + + """""" + ipv4Identification_leq: uint16 + + """""" + ipv4Identification_lt: uint16 + + """""" + ipv4Identification_neq: uint16 + + """""" + ipv4Identification_notin: [uint16!] + + """""" + ipv4Options: string + + """""" + ipv4Options_geq: string + + """""" + ipv4Options_gt: string + + """""" + ipv4Options_in: [string!] + + """""" + ipv4Options_leq: string + + """""" + ipv4Options_like: string + + """""" + ipv4Options_lt: string + + """""" + ipv4Options_neq: string + + """""" + ipv4Options_notin: [string!] + + """""" + ipv4Options_notlike: string + + """""" + ipv6Dscp: uint8 + + """""" + ipv6Dscp_geq: uint8 + + """""" + ipv6Dscp_gt: uint8 + + """""" + ipv6Dscp_in: bytes + + """""" + ipv6Dscp_leq: uint8 + + """""" + ipv6Dscp_lt: uint8 + + """""" + ipv6Dscp_neq: uint8 + + """""" + ipv6Dscp_notin: bytes + + """""" + ipv6Ecn: uint8 + + """""" + ipv6Ecn_geq: uint8 + + """""" + ipv6Ecn_gt: uint8 + + """""" + ipv6Ecn_in: bytes + + """""" + ipv6Ecn_leq: uint8 + + """""" + ipv6Ecn_lt: uint8 + + """""" + ipv6Ecn_neq: uint8 + + """""" + ipv6Ecn_notin: bytes + + """""" + ipv6ExtensionHeaders: string + + """""" + ipv6ExtensionHeaders_geq: string + + """""" + ipv6ExtensionHeaders_gt: string + + """""" + ipv6ExtensionHeaders_in: [string!] + + """""" + ipv6ExtensionHeaders_leq: string + + """""" + ipv6ExtensionHeaders_like: string + + """""" + ipv6ExtensionHeaders_lt: string + + """""" + ipv6ExtensionHeaders_neq: string + + """""" + ipv6ExtensionHeaders_notin: [string!] + + """""" + ipv6ExtensionHeaders_notlike: string + + """""" + ipv6FlowLabel: uint32 + + """""" + ipv6FlowLabel_geq: uint32 + + """""" + ipv6FlowLabel_gt: uint32 + + """""" + ipv6FlowLabel_in: [uint32!] + + """""" + ipv6FlowLabel_leq: uint32 + + """""" + ipv6FlowLabel_lt: uint32 + + """""" + ipv6FlowLabel_neq: uint32 + + """""" + ipv6FlowLabel_notin: [uint32!] + + """""" + ipv6Identification: uint32 + + """""" + ipv6Identification_geq: uint32 + + """""" + ipv6Identification_gt: uint32 + + """""" + ipv6Identification_in: [uint32!] + + """""" + ipv6Identification_leq: uint32 + + """""" + ipv6Identification_lt: uint32 + + """""" + ipv6Identification_neq: uint32 + + """""" + ipv6Identification_notin: [uint32!] + + """""" + leaseTag: string + + """""" + leaseTag_geq: string + + """""" + leaseTag_gt: string + + """""" + leaseTag_in: [string!] + + """""" + leaseTag_leq: string + + """""" + leaseTag_like: string + + """""" + leaseTag_lt: string + + """""" + leaseTag_neq: string + + """""" + leaseTag_notin: [string!] + + """""" + leaseTag_notlike: string + + """""" + outcome: string + + """""" + outcome_geq: string + + """""" + outcome_gt: string + + """""" + outcome_in: [string!] + + """""" + outcome_leq: string + + """""" + outcome_like: string + + """""" + outcome_lt: string + + """""" + outcome_neq: string + + """""" + outcome_notin: [string!] + + """""" + outcome_notlike: string + + """""" + prefixTag: string + + """""" + prefixTag_geq: string + + """""" + prefixTag_gt: string + + """""" + prefixTag_in: [string!] + + """""" + prefixTag_leq: string + + """""" + prefixTag_like: string + + """""" + prefixTag_lt: string + + """""" + prefixTag_neq: string + + """""" + prefixTag_notin: [string!] + + """""" + prefixTag_notlike: string + + """""" + ruleId: string + + """""" + ruleId_geq: string + + """""" + ruleId_gt: string + + """""" + ruleId_in: [string!] + + """""" + ruleId_leq: string + + """""" + ruleId_like: string + + """""" + ruleId_lt: string + + """""" + ruleId_neq: string + + """""" + ruleId_notin: [string!] + + """""" + ruleId_notlike: string + + """""" + rulesetId: string + + """""" + rulesetId_geq: string + + """""" + rulesetId_gt: string + + """""" + rulesetId_in: [string!] + + """""" + rulesetId_leq: string + + """""" + rulesetId_like: string + + """""" + rulesetId_lt: string + + """""" + rulesetId_neq: string + + """""" + rulesetId_notin: [string!] + + """""" + rulesetId_notlike: string + + """""" + sampleInterval: uint32 + + """""" + sampleInterval_geq: uint32 + + """""" + sampleInterval_gt: uint32 + + """""" + sampleInterval_in: [uint32!] + + """""" + sampleInterval_leq: uint32 + + """""" + sampleInterval_lt: uint32 + + """""" + sampleInterval_neq: uint32 + + """""" + sampleInterval_notin: [uint32!] + + """""" + sourceAsn: uint32 + + """""" + sourceAsnName: string + + """""" + sourceAsnName_geq: string + + """""" + sourceAsnName_gt: string + + """""" + sourceAsnName_in: [string!] + + """""" + sourceAsnName_leq: string + + """""" + sourceAsnName_like: string + + """""" + sourceAsnName_lt: string + + """""" + sourceAsnName_neq: string + + """""" + sourceAsnName_notin: [string!] + + """""" + sourceAsnName_notlike: string + + """""" + sourceAsn_geq: uint32 + + """""" + sourceAsn_gt: uint32 + + """""" + sourceAsn_in: [uint32!] + + """""" + sourceAsn_leq: uint32 + + """""" + sourceAsn_lt: uint32 + + """""" + sourceAsn_neq: uint32 + + """""" + sourceAsn_notin: [uint32!] + + """""" + sourceCountry: string + + """""" + sourceCountry_geq: string + + """""" + sourceCountry_gt: string + + """""" + sourceCountry_in: [string!] + + """""" + sourceCountry_leq: string + + """""" + sourceCountry_like: string + + """""" + sourceCountry_lt: string + + """""" + sourceCountry_neq: string + + """""" + sourceCountry_notin: [string!] + + """""" + sourceCountry_notlike: string + + """""" + sourceDeviceTag: string + + """""" + sourceDeviceTag_geq: string + + """""" + sourceDeviceTag_gt: string + + """""" + sourceDeviceTag_in: [string!] + + """""" + sourceDeviceTag_leq: string + + """""" + sourceDeviceTag_like: string + + """""" + sourceDeviceTag_lt: string + + """""" + sourceDeviceTag_neq: string + + """""" + sourceDeviceTag_notin: [string!] + + """""" + sourceDeviceTag_notlike: string + + """""" + sourceGeohash: string + + """""" + sourceGeohash_geq: string + + """""" + sourceGeohash_gt: string + + """""" + sourceGeohash_in: [string!] + + """""" + sourceGeohash_leq: string + + """""" + sourceGeohash_like: string + + """""" + sourceGeohash_lt: string + + """""" + sourceGeohash_neq: string + + """""" + sourceGeohash_notin: [string!] + + """""" + sourceGeohash_notlike: string + + """""" + sourcePort: uint16 + + """""" + sourcePort_geq: uint16 + + """""" + sourcePort_gt: uint16 + + """""" + sourcePort_in: [uint16!] + + """""" + sourcePort_leq: uint16 + + """""" + sourcePort_lt: uint16 + + """""" + sourcePort_neq: uint16 + + """""" + sourcePort_notin: [uint16!] + + """""" + tcpAcknowledgementNumber: uint32 + + """""" + tcpAcknowledgementNumber_geq: uint32 + + """""" + tcpAcknowledgementNumber_gt: uint32 + + """""" + tcpAcknowledgementNumber_in: [uint32!] + + """""" + tcpAcknowledgementNumber_leq: uint32 + + """""" + tcpAcknowledgementNumber_lt: uint32 + + """""" + tcpAcknowledgementNumber_neq: uint32 + + """""" + tcpAcknowledgementNumber_notin: [uint32!] + + """""" + tcpChecksum: uint16 + + """""" + tcpChecksum_geq: uint16 + + """""" + tcpChecksum_gt: uint16 + + """""" + tcpChecksum_in: [uint16!] + + """""" + tcpChecksum_leq: uint16 + + """""" + tcpChecksum_lt: uint16 + + """""" + tcpChecksum_neq: uint16 + + """""" + tcpChecksum_notin: [uint16!] + + """""" + tcpDataOffset: uint16 + + """""" + tcpDataOffset_geq: uint16 + + """""" + tcpDataOffset_gt: uint16 + + """""" + tcpDataOffset_in: [uint16!] + + """""" + tcpDataOffset_leq: uint16 + + """""" + tcpDataOffset_lt: uint16 + + """""" + tcpDataOffset_neq: uint16 + + """""" + tcpDataOffset_notin: [uint16!] + + """""" + tcpFlags: uint8 + + """""" + tcpFlagsString: string + + """""" + tcpFlagsString_geq: string + + """""" + tcpFlagsString_gt: string + + """""" + tcpFlagsString_in: [string!] + + """""" + tcpFlagsString_leq: string + + """""" + tcpFlagsString_like: string + + """""" + tcpFlagsString_lt: string + + """""" + tcpFlagsString_neq: string + + """""" + tcpFlagsString_notin: [string!] + + """""" + tcpFlagsString_notlike: string + + """""" + tcpFlags_geq: uint8 + + """""" + tcpFlags_gt: uint8 + + """""" + tcpFlags_in: bytes + + """""" + tcpFlags_leq: uint8 + + """""" + tcpFlags_lt: uint8 + + """""" + tcpFlags_neq: uint8 + + """""" + tcpFlags_notin: bytes + + """""" + tcpMss: uint16 + + """""" + tcpMss_geq: uint16 + + """""" + tcpMss_gt: uint16 + + """""" + tcpMss_in: [uint16!] + + """""" + tcpMss_leq: uint16 + + """""" + tcpMss_lt: uint16 + + """""" + tcpMss_neq: uint16 + + """""" + tcpMss_notin: [uint16!] + + """""" + tcpOptions: string + + """""" + tcpOptions_geq: string + + """""" + tcpOptions_gt: string + + """""" + tcpOptions_in: [string!] + + """""" + tcpOptions_leq: string + + """""" + tcpOptions_like: string + + """""" + tcpOptions_lt: string + + """""" + tcpOptions_neq: string + + """""" + tcpOptions_notin: [string!] + + """""" + tcpOptions_notlike: string + + """""" + tcpSackBlocks: string + + """""" + tcpSackBlocks_geq: string + + """""" + tcpSackBlocks_gt: string + + """""" + tcpSackBlocks_in: [string!] + + """""" + tcpSackBlocks_leq: string + + """""" + tcpSackBlocks_like: string + + """""" + tcpSackBlocks_lt: string + + """""" + tcpSackBlocks_neq: string + + """""" + tcpSackBlocks_notin: [string!] + + """""" + tcpSackBlocks_notlike: string + + """""" + tcpSackPermitted: uint8 + + """""" + tcpSackPermitted_geq: uint8 + + """""" + tcpSackPermitted_gt: uint8 + + """""" + tcpSackPermitted_in: bytes + + """""" + tcpSackPermitted_leq: uint8 + + """""" + tcpSackPermitted_lt: uint8 + + """""" + tcpSackPermitted_neq: uint8 + + """""" + tcpSackPermitted_notin: bytes + + """""" + tcpSequenceNumber: uint32 + + """""" + tcpSequenceNumber_geq: uint32 + + """""" + tcpSequenceNumber_gt: uint32 + + """""" + tcpSequenceNumber_in: [uint32!] + + """""" + tcpSequenceNumber_leq: uint32 + + """""" + tcpSequenceNumber_lt: uint32 + + """""" + tcpSequenceNumber_neq: uint32 + + """""" + tcpSequenceNumber_notin: [uint32!] + + """""" + tcpTimestampEcr: uint32 + + """""" + tcpTimestampEcr_geq: uint32 + + """""" + tcpTimestampEcr_gt: uint32 + + """""" + tcpTimestampEcr_in: [uint32!] + + """""" + tcpTimestampEcr_leq: uint32 + + """""" + tcpTimestampEcr_lt: uint32 + + """""" + tcpTimestampEcr_neq: uint32 + + """""" + tcpTimestampEcr_notin: [uint32!] + + """""" + tcpTimestampValue: uint32 + + """""" + tcpTimestampValue_geq: uint32 + + """""" + tcpTimestampValue_gt: uint32 + + """""" + tcpTimestampValue_in: [uint32!] + + """""" + tcpTimestampValue_leq: uint32 + + """""" + tcpTimestampValue_lt: uint32 + + """""" + tcpTimestampValue_neq: uint32 + + """""" + tcpTimestampValue_notin: [uint32!] + + """""" + tcpUrgentPointer: uint16 + + """""" + tcpUrgentPointer_geq: uint16 + + """""" + tcpUrgentPointer_gt: uint16 + + """""" + tcpUrgentPointer_in: [uint16!] + + """""" + tcpUrgentPointer_leq: uint16 + + """""" + tcpUrgentPointer_lt: uint16 + + """""" + tcpUrgentPointer_neq: uint16 + + """""" + tcpUrgentPointer_notin: [uint16!] + + """""" + tcpWindowScale: uint16 + + """""" + tcpWindowScale_geq: uint16 + + """""" + tcpWindowScale_gt: uint16 + + """""" + tcpWindowScale_in: [uint16!] + + """""" + tcpWindowScale_leq: uint16 + + """""" + tcpWindowScale_lt: uint16 + + """""" + tcpWindowScale_neq: uint16 + + """""" + tcpWindowScale_notin: [uint16!] + + """""" + tcpWindowSize: uint16 + + """""" + tcpWindowSize_geq: uint16 + + """""" + tcpWindowSize_gt: uint16 + + """""" + tcpWindowSize_in: [uint16!] + + """""" + tcpWindowSize_leq: uint16 + + """""" + tcpWindowSize_lt: uint16 + + """""" + tcpWindowSize_neq: uint16 + + """""" + tcpWindowSize_notin: [uint16!] + + """""" + udpChecksum: uint16 + + """""" + udpChecksum_geq: uint16 + + """""" + udpChecksum_gt: uint16 + + """""" + udpChecksum_in: [uint16!] + + """""" + udpChecksum_leq: uint16 + + """""" + udpChecksum_lt: uint16 + + """""" + udpChecksum_neq: uint16 + + """""" + udpChecksum_notin: [uint16!] + + """""" + udpPayloadLength: uint16 + + """""" + udpPayloadLength_geq: uint16 + + """""" + udpPayloadLength_gt: uint16 + + """""" + udpPayloadLength_in: [uint16!] + + """""" + udpPayloadLength_leq: uint16 + + """""" + udpPayloadLength_lt: uint16 + + """""" + udpPayloadLength_neq: uint16 + + """""" + udpPayloadLength_notin: [uint16!] + + """""" + verdict: string + + """""" + verdict_geq: string + + """""" + verdict_gt: string + + """""" + verdict_in: [string!] + + """""" + verdict_leq: string + + """""" + verdict_like: string + + """""" + verdict_lt: string + + """""" + verdict_neq: string + + """""" + verdict_notin: [string!] + + """""" + verdict_notlike: string +} + +"""""" +enum AccountMagicFirewallRateLimitNetworkAnalyticsAdaptiveGroupsOrderBy { + """applicationTag ascending""" + applicationTag_ASC + + """applicationTag descending""" + applicationTag_DESC + + """avg(bitRateDay) ascending""" + avg_bitRateDay_ASC + + """avg(bitRateDay) descending""" + avg_bitRateDay_DESC + + """avg(bitRateFifteenMinutes) ascending""" + avg_bitRateFifteenMinutes_ASC + + """avg(bitRateFifteenMinutes) descending""" + avg_bitRateFifteenMinutes_DESC + + """avg(bitRateFiveMinutes) ascending""" + avg_bitRateFiveMinutes_ASC + + """avg(bitRateFiveMinutes) descending""" + avg_bitRateFiveMinutes_DESC + + """avg(bitRateHour) ascending""" + avg_bitRateHour_ASC + + """avg(bitRateHour) descending""" + avg_bitRateHour_DESC + + """avg(bitRateMinute) ascending""" + avg_bitRateMinute_ASC + + """avg(bitRateMinute) descending""" + avg_bitRateMinute_DESC + + """avg(bitRateTenSeconds) ascending""" + avg_bitRateTenSeconds_ASC + + """avg(bitRateTenSeconds) descending""" + avg_bitRateTenSeconds_DESC + + """avg(bitRate) ascending""" + avg_bitRate_ASC + + """avg(bitRate) descending""" + avg_bitRate_DESC + + """avg(packetRateDay) ascending""" + avg_packetRateDay_ASC + + """avg(packetRateDay) descending""" + avg_packetRateDay_DESC + + """avg(packetRateFifteenMinutes) ascending""" + avg_packetRateFifteenMinutes_ASC + + """avg(packetRateFifteenMinutes) descending""" + avg_packetRateFifteenMinutes_DESC + + """avg(packetRateFiveMinutes) ascending""" + avg_packetRateFiveMinutes_ASC + + """avg(packetRateFiveMinutes) descending""" + avg_packetRateFiveMinutes_DESC + + """avg(packetRateHour) ascending""" + avg_packetRateHour_ASC + + """avg(packetRateHour) descending""" + avg_packetRateHour_DESC + + """avg(packetRateMinute) ascending""" + avg_packetRateMinute_ASC + + """avg(packetRateMinute) descending""" + avg_packetRateMinute_DESC + + """avg(packetRateTenSeconds) ascending""" + avg_packetRateTenSeconds_ASC + + """avg(packetRateTenSeconds) descending""" + avg_packetRateTenSeconds_DESC + + """avg(packetRate) ascending""" + avg_packetRate_ASC + + """avg(packetRate) descending""" + avg_packetRate_DESC + + """coloCity ascending""" + coloCity_ASC + + """coloCity descending""" + coloCity_DESC + + """coloCode ascending""" + coloCode_ASC + + """coloCode descending""" + coloCode_DESC + + """coloCountry ascending""" + coloCountry_ASC + + """coloCountry descending""" + coloCountry_DESC + + """coloGeohash ascending""" + coloGeohash_ASC + + """coloGeohash descending""" + coloGeohash_DESC + + """coloName ascending""" + coloName_ASC + + """coloName descending""" + coloName_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetimeTenSeconds ascending""" + datetimeTenSeconds_ASC + + """datetimeTenSeconds descending""" + datetimeTenSeconds_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """destinationAsnName ascending""" + destinationAsnName_ASC + + """destinationAsnName descending""" + destinationAsnName_DESC + + """destinationAsn ascending""" + destinationAsn_ASC + + """destinationAsn descending""" + destinationAsn_DESC + + """destinationCountry ascending""" + destinationCountry_ASC + + """destinationCountry descending""" + destinationCountry_DESC + + """destinationDeviceTag ascending""" + destinationDeviceTag_ASC + + """destinationDeviceTag descending""" + destinationDeviceTag_DESC + + """destinationGeohash ascending""" + destinationGeohash_ASC + + """destinationGeohash descending""" + destinationGeohash_DESC + + """destinationPort ascending""" + destinationPort_ASC + + """destinationPort descending""" + destinationPort_DESC + + """direction ascending""" + direction_ASC + + """direction descending""" + direction_DESC + + """ethertype ascending""" + ethertype_ASC + + """ethertype descending""" + ethertype_DESC + + """greChecksum ascending""" + greChecksum_ASC + + """greChecksum descending""" + greChecksum_DESC + + """greEthertype ascending""" + greEthertype_ASC + + """greEthertype descending""" + greEthertype_DESC + + """greHeaderLength ascending""" + greHeaderLength_ASC + + """greHeaderLength descending""" + greHeaderLength_DESC + + """greKey ascending""" + greKey_ASC + + """greKey descending""" + greKey_DESC + + """greSequenceNumber ascending""" + greSequenceNumber_ASC + + """greSequenceNumber descending""" + greSequenceNumber_DESC + + """greVersion ascending""" + greVersion_ASC + + """greVersion descending""" + greVersion_DESC + + """icmpChecksum ascending""" + icmpChecksum_ASC + + """icmpChecksum descending""" + icmpChecksum_DESC + + """icmpCode ascending""" + icmpCode_ASC + + """icmpCode descending""" + icmpCode_DESC + + """icmpType ascending""" + icmpType_ASC + + """icmpType descending""" + icmpType_DESC + + """ipDestinationAddress ascending""" + ipDestinationAddress_ASC + + """ipDestinationAddress descending""" + ipDestinationAddress_DESC + + """ipDestinationSubnet ascending""" + ipDestinationSubnet_ASC + + """ipDestinationSubnet descending""" + ipDestinationSubnet_DESC + + """ipFragmentOffset ascending""" + ipFragmentOffset_ASC + + """ipFragmentOffset descending""" + ipFragmentOffset_DESC + + """ipHeaderLength ascending""" + ipHeaderLength_ASC + + """ipHeaderLength descending""" + ipHeaderLength_DESC + + """ipMoreFragments ascending""" + ipMoreFragments_ASC + + """ipMoreFragments descending""" + ipMoreFragments_DESC + + """ipProtocolName ascending""" + ipProtocolName_ASC + + """ipProtocolName descending""" + ipProtocolName_DESC + + """ipProtocol ascending""" + ipProtocol_ASC + + """ipProtocol descending""" + ipProtocol_DESC + + """ipSourceAddress ascending""" + ipSourceAddress_ASC + + """ipSourceAddress descending""" + ipSourceAddress_DESC + + """ipSourceSubnet ascending""" + ipSourceSubnet_ASC + + """ipSourceSubnet descending""" + ipSourceSubnet_DESC + + """ipTotalLengthBuckets ascending""" + ipTotalLengthBuckets_ASC + + """ipTotalLengthBuckets descending""" + ipTotalLengthBuckets_DESC + + """ipTotalLength ascending""" + ipTotalLength_ASC + + """ipTotalLength descending""" + ipTotalLength_DESC + + """ipTtlBuckets ascending""" + ipTtlBuckets_ASC + + """ipTtlBuckets descending""" + ipTtlBuckets_DESC + + """ipTtl ascending""" + ipTtl_ASC + + """ipTtl descending""" + ipTtl_DESC + + """ipv4Checksum ascending""" + ipv4Checksum_ASC + + """ipv4Checksum descending""" + ipv4Checksum_DESC + + """ipv4DontFragment ascending""" + ipv4DontFragment_ASC + + """ipv4DontFragment descending""" + ipv4DontFragment_DESC + + """ipv4Dscp ascending""" + ipv4Dscp_ASC + + """ipv4Dscp descending""" + ipv4Dscp_DESC + + """ipv4Ecn ascending""" + ipv4Ecn_ASC + + """ipv4Ecn descending""" + ipv4Ecn_DESC + + """ipv4Identification ascending""" + ipv4Identification_ASC + + """ipv4Identification descending""" + ipv4Identification_DESC + + """ipv4Options ascending""" + ipv4Options_ASC + + """ipv4Options descending""" + ipv4Options_DESC + + """ipv6Dscp ascending""" + ipv6Dscp_ASC + + """ipv6Dscp descending""" + ipv6Dscp_DESC + + """ipv6Ecn ascending""" + ipv6Ecn_ASC + + """ipv6Ecn descending""" + ipv6Ecn_DESC + + """ipv6ExtensionHeaders ascending""" + ipv6ExtensionHeaders_ASC + + """ipv6ExtensionHeaders descending""" + ipv6ExtensionHeaders_DESC + + """ipv6FlowLabel ascending""" + ipv6FlowLabel_ASC + + """ipv6FlowLabel descending""" + ipv6FlowLabel_DESC + + """ipv6Identification ascending""" + ipv6Identification_ASC + + """ipv6Identification descending""" + ipv6Identification_DESC + + """leaseTag ascending""" + leaseTag_ASC + + """leaseTag descending""" + leaseTag_DESC + + """outcome ascending""" + outcome_ASC + + """outcome descending""" + outcome_DESC + + """prefixTag ascending""" + prefixTag_ASC + + """prefixTag descending""" + prefixTag_DESC + + """ruleId ascending""" + ruleId_ASC + + """ruleId descending""" + ruleId_DESC + + """rulesetId ascending""" + rulesetId_ASC + + """rulesetId descending""" + rulesetId_DESC + + """sampleInterval ascending""" + sampleInterval_ASC + + """sampleInterval descending""" + sampleInterval_DESC + + """sourceAsnName ascending""" + sourceAsnName_ASC + + """sourceAsnName descending""" + sourceAsnName_DESC + + """sourceAsn ascending""" + sourceAsn_ASC + + """sourceAsn descending""" + sourceAsn_DESC + + """sourceCountry ascending""" + sourceCountry_ASC + + """sourceCountry descending""" + sourceCountry_DESC + + """sourceDeviceTag ascending""" + sourceDeviceTag_ASC + + """sourceDeviceTag descending""" + sourceDeviceTag_DESC + + """sourceGeohash ascending""" + sourceGeohash_ASC + + """sourceGeohash descending""" + sourceGeohash_DESC + + """sourcePort ascending""" + sourcePort_ASC + + """sourcePort descending""" + sourcePort_DESC + + """sum(bits) ascending""" + sum_bits_ASC + + """sum(bits) descending""" + sum_bits_DESC + + """sum(packets) ascending""" + sum_packets_ASC + + """sum(packets) descending""" + sum_packets_DESC + + """system ascending""" + system_ASC + + """system descending""" + system_DESC + + """tcpAcknowledgementNumber ascending""" + tcpAcknowledgementNumber_ASC + + """tcpAcknowledgementNumber descending""" + tcpAcknowledgementNumber_DESC + + """tcpChecksum ascending""" + tcpChecksum_ASC + + """tcpChecksum descending""" + tcpChecksum_DESC + + """tcpDataOffset ascending""" + tcpDataOffset_ASC + + """tcpDataOffset descending""" + tcpDataOffset_DESC + + """tcpFlagsString ascending""" + tcpFlagsString_ASC + + """tcpFlagsString descending""" + tcpFlagsString_DESC + + """tcpFlags ascending""" + tcpFlags_ASC + + """tcpFlags descending""" + tcpFlags_DESC + + """tcpMss ascending""" + tcpMss_ASC + + """tcpMss descending""" + tcpMss_DESC + + """tcpOptions ascending""" + tcpOptions_ASC + + """tcpOptions descending""" + tcpOptions_DESC + + """tcpSackBlocks ascending""" + tcpSackBlocks_ASC + + """tcpSackBlocks descending""" + tcpSackBlocks_DESC + + """tcpSackPermitted ascending""" + tcpSackPermitted_ASC + + """tcpSackPermitted descending""" + tcpSackPermitted_DESC + + """tcpSequenceNumber ascending""" + tcpSequenceNumber_ASC + + """tcpSequenceNumber descending""" + tcpSequenceNumber_DESC + + """tcpTimestampEcr ascending""" + tcpTimestampEcr_ASC + + """tcpTimestampEcr descending""" + tcpTimestampEcr_DESC + + """tcpTimestampValue ascending""" + tcpTimestampValue_ASC + + """tcpTimestampValue descending""" + tcpTimestampValue_DESC + + """tcpUrgentPointer ascending""" + tcpUrgentPointer_ASC + + """tcpUrgentPointer descending""" + tcpUrgentPointer_DESC + + """tcpWindowScale ascending""" + tcpWindowScale_ASC + + """tcpWindowScale descending""" + tcpWindowScale_DESC + + """tcpWindowSize ascending""" + tcpWindowSize_ASC + + """tcpWindowSize descending""" + tcpWindowSize_DESC + + """udpChecksum ascending""" + udpChecksum_ASC + + """udpChecksum descending""" + udpChecksum_DESC + + """udpPayloadLength ascending""" + udpPayloadLength_ASC + + """udpPayloadLength descending""" + udpPayloadLength_DESC + + """verdict ascending""" + verdict_ASC + + """verdict descending""" + verdict_DESC +} + +"""""" +type AccountMagicFirewallRateLimitNetworkAnalyticsAdaptiveGroupsSum { + """Sum of bits received""" + bits: uint64! + + """Sum of packets received""" + packets: uint64! +} + +"""""" +type AccountMagicFirewallRateLimitNetworkAnalyticsAdaptiveGroupsSumConfidence { + """Confidence interval for the corresponding point estimate""" + bits: Confidence! + + """Confidence interval for the corresponding point estimate""" + packets: Confidence! +} + +"""Data to visualize traffic allowed and blocked by Magic Firewall rules""" +type AccountMagicFirewallSamplesAdaptiveGroups { + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountMagicFirewallSamplesAdaptiveGroupsConfidence! + + """List of dimensions to group by""" + dimensions: AccountMagicFirewallSamplesAdaptiveGroupsDimensions + + """The sum of values for a metric per dimension""" + sum: AccountMagicFirewallSamplesAdaptiveGroupsSum +} + +"""""" +type AccountMagicFirewallSamplesAdaptiveGroupsConfidence { + """Confidence level that was requested""" + level: float64! + + """ + The sum of values for a metric per dimension, with confidence intervals + """ + sum: AccountMagicFirewallSamplesAdaptiveGroupsSumConfidence +} + +"""""" +type AccountMagicFirewallSamplesAdaptiveGroupsDimensions { + """Date and time that the packet was received""" + datetime: Time! + + """ + Date and time that the packet was received, rounded to the start of the nearest five minutes + """ + datetimeFiveMinute: Time! @deprecated(reason: "Deprecated in favor of datetimeFiveMinutes") + + """ + Date and time that the packet was received, rounded to the start of the nearest five minutes + """ + datetimeFiveMinutes: Time! + + """Unique identifier of the rule that matched the packet, if any""" + ruleId: string! +} + +"""""" +input AccountMagicFirewallSamplesAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountMagicFirewallSamplesAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountMagicFirewallSamplesAdaptiveGroupsFilter_InputObject!] + + """""" + datetime: Time + + """""" + datetimeFiveMinute: Time + + """""" + datetimeFiveMinute_geq: Time + + """""" + datetimeFiveMinute_gt: Time + + """""" + datetimeFiveMinute_in: [Time!] + + """""" + datetimeFiveMinute_leq: Time + + """""" + datetimeFiveMinute_lt: Time + + """""" + datetimeFiveMinute_neq: Time + + """""" + datetimeFiveMinute_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + ruleId: string + + """""" + ruleId_geq: string + + """""" + ruleId_gt: string + + """""" + ruleId_in: [string!] + + """""" + ruleId_leq: string + + """""" + ruleId_like: string + + """""" + ruleId_lt: string + + """""" + ruleId_neq: string + + """""" + ruleId_notin: [string!] + + """""" + ruleId_notlike: string +} + +"""""" +enum AccountMagicFirewallSamplesAdaptiveGroupsOrderBy { + """datetimeFiveMinute ascending""" + datetimeFiveMinute_ASC + + """datetimeFiveMinute descending""" + datetimeFiveMinute_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """ruleId ascending""" + ruleId_ASC + + """ruleId descending""" + ruleId_DESC + + """sum(bits) ascending""" + sum_bits_ASC + + """sum(bits) descending""" + sum_bits_DESC + + """sum(packets) ascending""" + sum_packets_ASC + + """sum(packets) descending""" + sum_packets_DESC + + """system ascending""" + system_ASC + + """system descending""" + system_DESC +} + +"""""" +type AccountMagicFirewallSamplesAdaptiveGroupsSum { + """Sum of bits received""" + bits: uint64! + + """Sum of packets received""" + packets: uint64! +} + +"""""" +type AccountMagicFirewallSamplesAdaptiveGroupsSumConfidence { + """Confidence interval for the corresponding point estimate""" + bits: Confidence! + + """Confidence interval for the corresponding point estimate""" + packets: Confidence! +} + +"""Network analytics data for Magic IDS""" +type AccountMagicIDPSNetworkAnalyticsAdaptiveGroups { + """The average of values for a metric per dimension""" + avg: AccountMagicIDPSNetworkAnalyticsAdaptiveGroupsAvg + + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountMagicIDPSNetworkAnalyticsAdaptiveGroupsConfidence! + + """List of dimensions to group by""" + dimensions: AccountMagicIDPSNetworkAnalyticsAdaptiveGroupsDimensions + + """The sum of values for a metric per dimension""" + sum: AccountMagicIDPSNetworkAnalyticsAdaptiveGroupsSum +} + +"""""" +type AccountMagicIDPSNetworkAnalyticsAdaptiveGroupsAvg { + """ + Sum of bits received, divided by 1 second, providing a per-second bit rate when grouped by datetime + """ + bitRate: uint64! + + """ + Sum of bits received, divided by 86400 seconds, providing a per-second bit rate when grouped by date + """ + bitRateDay: uint64! + + """ + Sum of bits received, divided by 900 seconds, providing a per-second bit rate when grouped by datetimeFifteenMinutes + """ + bitRateFifteenMinutes: uint64! + + """ + Sum of bits received, divided by 300 seconds, providing a per-second bit rate when grouped by datetimeFiveMinutes + """ + bitRateFiveMinutes: uint64! + + """ + Sum of bits received, divided by 3600 seconds, providing a per-second bit rate when grouped by datetimeHour + """ + bitRateHour: uint64! + + """ + Sum of bits received, divided by 60 seconds, providing a per-second bit rate when grouped by datetimeMinute + """ + bitRateMinute: uint64! + + """ + Sum of bits received, divided by 10 seconds, providing a per-second bit rate when grouped by datetimeTenSeconds + """ + bitRateTenSeconds: uint64! + + """ + Sum of packets received, divided by 1 second, providing a per-second packet rate when grouped by datetime + """ + packetRate: uint64! + + """ + Sum of packets received, divided by 86400 seconds, providing a per-second packet rate when grouped by date + """ + packetRateDay: uint64! + + """ + Sum of packets received, divided by 900 seconds, providing a per-second packet rate when grouped by datetimeFifteenMinutes + """ + packetRateFifteenMinutes: uint64! + + """ + Sum of packets received, divided by 300 seconds, providing a per-second packet rate when grouped by datetimeFiveMinutes + """ + packetRateFiveMinutes: uint64! + + """ + Sum of packets received, divided by 3600 seconds, providing a per-second packet rate when grouped by datetimeHour + """ + packetRateHour: uint64! + + """ + Sum of packets received, divided by 60 seconds, providing a per-second packet rate when grouped by datetimeMinute + """ + packetRateMinute: uint64! + + """ + Sum of packets received, divided by 10 seconds, providing a per-second packet rate when grouped by datetimeTenSeconds + """ + packetRateTenSeconds: uint64! +} + +"""""" +type AccountMagicIDPSNetworkAnalyticsAdaptiveGroupsAvgConfidence { + """Confidence interval for the corresponding point estimate""" + bitRate: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateDay: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateFifteenMinutes: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateFiveMinutes: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateHour: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateMinute: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateTenSeconds: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRate: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateDay: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateFifteenMinutes: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateFiveMinutes: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateHour: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateMinute: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateTenSeconds: Confidence! +} + +"""""" +type AccountMagicIDPSNetworkAnalyticsAdaptiveGroupsConfidence { + """ + The average of values for a metric per dimension, with confidence intervals + """ + avg: AccountMagicIDPSNetworkAnalyticsAdaptiveGroupsAvgConfidence + + """Confidence level that was requested""" + level: float64! + + """ + The sum of values for a metric per dimension, with confidence intervals + """ + sum: AccountMagicIDPSNetworkAnalyticsAdaptiveGroupsSumConfidence +} + +"""""" +type AccountMagicIDPSNetworkAnalyticsAdaptiveGroupsDimensions { + """ + City where the Cloudflare datacenter that received the packet is located + """ + coloCity: string! + + """ + Cloudflare datacenter that received the packet (nearest IATA airport code) + """ + coloCode: string! + + """ + Country where the Cloudflare datacenter that received the packet is located (ISO 3166-1 alpha-2) + """ + coloCountry: string! + + """ + Latitude and longitude where the Cloudflare datacenter that received the packet is located (Geohash encoding) + """ + coloGeohash: string! + + """ + Cloudflare datacenter that received the packet (unique site identifier) + """ + coloName: string! + + """Date that the packet was received""" + date: Date! + + """Date and time that the packet was received""" + datetime: Time! + + """ + Date and time that the packet was received, rounded to the start of the nearest fifteen minutes + """ + datetimeFifteenMinutes: Time! + + """ + Date and time that the packet was received, rounded to the start of the nearest five minutes + """ + datetimeFiveMinutes: Time! + + """ + Date and time that the packet was received, rounded to the start of the nearest hour + """ + datetimeHour: Time! + + """ + Date and time that the packet was received, rounded to the start of the nearest minute + """ + datetimeMinute: Time! + + """ + Date and time that the packet was received, rounded to the start of the nearest ten seconds + """ + datetimeTenSeconds: Time! + + """ + ASN associated with the destination IP of the packet, or 0 if there was no mapping available + """ + destinationAsn: uint32! + + """ + Name of ASN associated with the destination IP of the packet, if available + """ + destinationAsnName: string! + + """ + Country where the destination IP of the packet is located (ISO 3166-1 alpha-2) + """ + destinationCountry: string! + + """Device tag associated with the destination IP of the packet""" + destinationDeviceTag: string! + + """ + Latitude and longitude where the destination IP of the packet is located (Geohash encoding) + """ + destinationGeohash: string! + + """Value of the Destination Port header field in the TCP or UDP packet""" + destinationPort: uint16! + + """ + Direction of the packet relative to the customer network (possible values: inbound, outbound, lateral) + """ + direction: string! + + """ + Value of the Ethertype header field in the Ethernet packet (2048 for IPv4; 34525 for IPv6) + """ + ethertype: uint16! + + """Value of the Checkusm header field in the GRE packet""" + greChecksum: uint16! + + """Value of the Ethertype header field in the GRE packet""" + greEthertype: uint16! + + """Length of the GRE packet header, in bytes""" + greHeaderLength: uint16! + + """Value of the Key header field in the GRE packet""" + greKey: uint32! + + """Value of the Sequence Number header field in the GRE packet""" + greSequenceNumber: uint32! + + """Value of the Version header field in the GRE packet""" + greVersion: uint8! + + """Value of the Checkusm header field in the ICMP packet""" + icmpChecksum: uint16! + + """Value of the Code header field in the ICMP packet""" + icmpCode: uint8! + + """Value of the Type header field in the ICMP packet""" + icmpType: uint8! + + """ + Value of the Destination Address header field in the IPv4 or IPv6 packet + """ + ipDestinationAddress: string! + + """ + Computed subnet of the Destination Address header field in the IPv4 or IPv6 packet (/24 for IPv4; /48 for IPv6) + """ + ipDestinationSubnet: string! + + """Value of the Fragment Offset header field in the IPv4 or IPv6 packet""" + ipFragmentOffset: uint16! + + """Length of the IPv4 or IPv6 packet header, in bytes""" + ipHeaderLength: uint16! + + """Value of the More Fragments header field in the IPv4 or IPv6 packet""" + ipMoreFragments: uint8! + + """Value of the Protocol header field in the IPv4 or IPv6 packet""" + ipProtocol: uint8! + + """ + Name of the protocol specified by the Protocol header field in the IPv4 or IPv6 packet + """ + ipProtocolName: string! + + """Value of the Source Address header field in the IPv4 or IPv6 packet""" + ipSourceAddress: string! + + """ + Computed subnet of the Source Address header field in the IPv4 or IPv6 packet (/24 for IPv4; /48 for IPv6) + """ + ipSourceSubnet: string! + + """Total length of the IPv4 or IPv6 packet, in bytes""" + ipTotalLength: uint16! + + """ + Total length of the IPv4 or IPv6 packet, in bytes, with the last two digits truncated + """ + ipTotalLengthBuckets: uint16! + + """ + Value of the TTL header field in the IPv4 packet or the Hop Limit header field in the IPv6 packet + """ + ipTtl: uint8! + + """ + Value of the TTL header field in the IPv4 packet or the Hop Limit header field in the IPv6 packet, with the last digit truncated + """ + ipTtlBuckets: uint8! + + """Value of the Checksum header field in the IPv4 packet""" + ipv4Checksum: uint16! + + """Value of the Don't Fragment header field in the IPv4 packet""" + ipv4DontFragment: uint8! + + """ + Value of the Differentiated Services Code Point header field in the IPv4 packet + """ + ipv4Dscp: uint8! + + """ + Value of the Explicit Congestion Notification header field in the IPv4 packet + """ + ipv4Ecn: uint8! + + """Value of the Identification header field in the IPv4 packet""" + ipv4Identification: uint16! + + """List of Options numbers included in the IPv4 packet header""" + ipv4Options: string! + + """ + Value of the Differentiated Services Code Point header field in the IPv6 packet + """ + ipv6Dscp: uint8! + + """ + Value of the Explicit Congestion Notification header field in the IPv6 packet + """ + ipv6Ecn: uint8! + + """List of Extension Header numbers included in the IPv6 packet header""" + ipv6ExtensionHeaders: string! + + """Value of the Flow Label header field in the IPv6 packet""" + ipv6FlowLabel: uint32! + + """Value of the Identification extension header field in the IPv6 packet""" + ipv6Identification: uint32! + + """The action that was taken on the packet (possible values: pass, drop)""" + outcome: string! + + """ABR sample interval""" + sampleInterval: uint32! + + """ + ASN associated with the source IP of the packet, or 0 if there was no mapping available + """ + sourceAsn: uint32! + + """Name of ASN associated with the source IP of the packet, if available""" + sourceAsnName: string! + + """ + Country where the source IP of the packet is located (ISO 3166-1 alpha-2) + """ + sourceCountry: string! + + """Device tag associated with the source IP of the packet""" + sourceDeviceTag: string! + + """ + Latitude and longitude where the source IP of the packet is located (Geohash encoding) + """ + sourceGeohash: string! + + """Value of the Source Port header field in the TCP or UDP packet""" + sourcePort: uint16! + + """Value of the Acknowledgement Number header field in the TCP packet""" + tcpAcknowledgementNumber: uint32! + + """Value of the Checkusm header field in the TCP packet""" + tcpChecksum: uint16! + + """Value of the Data Offset header field in the TCP packet""" + tcpDataOffset: uint16! + + """Value of the Flags header field in the TCP packet""" + tcpFlags: uint8! + + """ + Human-readable string representation of the Flags header field in the TCP packet + """ + tcpFlagsString: string! + + """Value of the MSS option header field in the TCP packet""" + tcpMss: uint16! + + """List of Options numbers included in the TCP packet header""" + tcpOptions: string! + + """Value of the SACK Blocks option header field in the TCP packet""" + tcpSackBlocks: string! + + """Value of the SACK Permitted option header field in the TCP packet""" + tcpSackPermitted: uint8! + + """Value of the Sequence Number header field in the TCP packet""" + tcpSequenceNumber: uint32! + + """ + Value of the Timestamp Echo Reply option header field in the TCP packet + """ + tcpTimestampEcr: uint32! + + """Value of the Timestamp option header field in the TCP packet""" + tcpTimestampValue: uint32! + + """Value of the Urgent Pointer header field in the TCP packet""" + tcpUrgentPointer: uint16! + + """Value of the Window Scale option header field in the TCP packet""" + tcpWindowScale: uint16! + + """Value of the Window Size header field in the TCP packet""" + tcpWindowSize: uint16! + + """Value of the Checkusm header field in the UDP packet""" + udpChecksum: uint16! + + """Value of the Payload Length header field in the UDP packet""" + udpPayloadLength: uint16! + + """ + The action that Cloudflare thinks should be taken on the packet (possible values: pass, drop) + """ + verdict: string! +} + +"""""" +input AccountMagicIDPSNetworkAnalyticsAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountMagicIDPSNetworkAnalyticsAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountMagicIDPSNetworkAnalyticsAdaptiveGroupsFilter_InputObject!] + + """""" + coloCity: string + + """""" + coloCity_geq: string + + """""" + coloCity_gt: string + + """""" + coloCity_in: [string!] + + """""" + coloCity_leq: string + + """""" + coloCity_like: string + + """""" + coloCity_lt: string + + """""" + coloCity_neq: string + + """""" + coloCity_notin: [string!] + + """""" + coloCity_notlike: string + + """""" + coloCode: string + + """""" + coloCode_geq: string + + """""" + coloCode_gt: string + + """""" + coloCode_in: [string!] + + """""" + coloCode_leq: string + + """""" + coloCode_like: string + + """""" + coloCode_lt: string + + """""" + coloCode_neq: string + + """""" + coloCode_notin: [string!] + + """""" + coloCode_notlike: string + + """""" + coloCountry: string + + """""" + coloCountry_geq: string + + """""" + coloCountry_gt: string + + """""" + coloCountry_in: [string!] + + """""" + coloCountry_leq: string + + """""" + coloCountry_like: string + + """""" + coloCountry_lt: string + + """""" + coloCountry_neq: string + + """""" + coloCountry_notin: [string!] + + """""" + coloCountry_notlike: string + + """""" + coloGeohash: string + + """""" + coloGeohash_geq: string + + """""" + coloGeohash_gt: string + + """""" + coloGeohash_in: [string!] + + """""" + coloGeohash_leq: string + + """""" + coloGeohash_like: string + + """""" + coloGeohash_lt: string + + """""" + coloGeohash_neq: string + + """""" + coloGeohash_notin: [string!] + + """""" + coloGeohash_notlike: string + + """""" + coloName: string + + """""" + coloName_geq: string + + """""" + coloName_gt: string + + """""" + coloName_in: [string!] + + """""" + coloName_leq: string + + """""" + coloName_like: string + + """""" + coloName_lt: string + + """""" + coloName_neq: string + + """""" + coloName_notin: [string!] + + """""" + coloName_notlike: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetimeTenSeconds: Time + + """""" + datetimeTenSeconds_geq: Time + + """""" + datetimeTenSeconds_gt: Time + + """""" + datetimeTenSeconds_in: [Time!] + + """""" + datetimeTenSeconds_leq: Time + + """""" + datetimeTenSeconds_lt: Time + + """""" + datetimeTenSeconds_neq: Time + + """""" + datetimeTenSeconds_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + destinationAsn: uint32 + + """""" + destinationAsnName: string + + """""" + destinationAsnName_geq: string + + """""" + destinationAsnName_gt: string + + """""" + destinationAsnName_in: [string!] + + """""" + destinationAsnName_leq: string + + """""" + destinationAsnName_like: string + + """""" + destinationAsnName_lt: string + + """""" + destinationAsnName_neq: string + + """""" + destinationAsnName_notin: [string!] + + """""" + destinationAsnName_notlike: string + + """""" + destinationAsn_geq: uint32 + + """""" + destinationAsn_gt: uint32 + + """""" + destinationAsn_in: [uint32!] + + """""" + destinationAsn_leq: uint32 + + """""" + destinationAsn_lt: uint32 + + """""" + destinationAsn_neq: uint32 + + """""" + destinationAsn_notin: [uint32!] + + """""" + destinationCountry: string + + """""" + destinationCountry_geq: string + + """""" + destinationCountry_gt: string + + """""" + destinationCountry_in: [string!] + + """""" + destinationCountry_leq: string + + """""" + destinationCountry_like: string + + """""" + destinationCountry_lt: string + + """""" + destinationCountry_neq: string + + """""" + destinationCountry_notin: [string!] + + """""" + destinationCountry_notlike: string + + """""" + destinationDeviceTag: string + + """""" + destinationDeviceTag_geq: string + + """""" + destinationDeviceTag_gt: string + + """""" + destinationDeviceTag_in: [string!] + + """""" + destinationDeviceTag_leq: string + + """""" + destinationDeviceTag_like: string + + """""" + destinationDeviceTag_lt: string + + """""" + destinationDeviceTag_neq: string + + """""" + destinationDeviceTag_notin: [string!] + + """""" + destinationDeviceTag_notlike: string + + """""" + destinationGeohash: string + + """""" + destinationGeohash_geq: string + + """""" + destinationGeohash_gt: string + + """""" + destinationGeohash_in: [string!] + + """""" + destinationGeohash_leq: string + + """""" + destinationGeohash_like: string + + """""" + destinationGeohash_lt: string + + """""" + destinationGeohash_neq: string + + """""" + destinationGeohash_notin: [string!] + + """""" + destinationGeohash_notlike: string + + """""" + destinationPort: uint16 + + """""" + destinationPort_geq: uint16 + + """""" + destinationPort_gt: uint16 + + """""" + destinationPort_in: [uint16!] + + """""" + destinationPort_leq: uint16 + + """""" + destinationPort_lt: uint16 + + """""" + destinationPort_neq: uint16 + + """""" + destinationPort_notin: [uint16!] + + """""" + direction: string + + """""" + direction_geq: string + + """""" + direction_gt: string + + """""" + direction_in: [string!] + + """""" + direction_leq: string + + """""" + direction_like: string + + """""" + direction_lt: string + + """""" + direction_neq: string + + """""" + direction_notin: [string!] + + """""" + direction_notlike: string + + """""" + ethertype: uint16 + + """""" + ethertype_geq: uint16 + + """""" + ethertype_gt: uint16 + + """""" + ethertype_in: [uint16!] + + """""" + ethertype_leq: uint16 + + """""" + ethertype_lt: uint16 + + """""" + ethertype_neq: uint16 + + """""" + ethertype_notin: [uint16!] + + """""" + greChecksum: uint16 + + """""" + greChecksum_geq: uint16 + + """""" + greChecksum_gt: uint16 + + """""" + greChecksum_in: [uint16!] + + """""" + greChecksum_leq: uint16 + + """""" + greChecksum_lt: uint16 + + """""" + greChecksum_neq: uint16 + + """""" + greChecksum_notin: [uint16!] + + """""" + greEthertype: uint16 + + """""" + greEthertype_geq: uint16 + + """""" + greEthertype_gt: uint16 + + """""" + greEthertype_in: [uint16!] + + """""" + greEthertype_leq: uint16 + + """""" + greEthertype_lt: uint16 + + """""" + greEthertype_neq: uint16 + + """""" + greEthertype_notin: [uint16!] + + """""" + greHeaderLength: uint16 + + """""" + greHeaderLength_geq: uint16 + + """""" + greHeaderLength_gt: uint16 + + """""" + greHeaderLength_in: [uint16!] + + """""" + greHeaderLength_leq: uint16 + + """""" + greHeaderLength_lt: uint16 + + """""" + greHeaderLength_neq: uint16 + + """""" + greHeaderLength_notin: [uint16!] + + """""" + greKey: uint32 + + """""" + greKey_geq: uint32 + + """""" + greKey_gt: uint32 + + """""" + greKey_in: [uint32!] + + """""" + greKey_leq: uint32 + + """""" + greKey_lt: uint32 + + """""" + greKey_neq: uint32 + + """""" + greKey_notin: [uint32!] + + """""" + greSequenceNumber: uint32 + + """""" + greSequenceNumber_geq: uint32 + + """""" + greSequenceNumber_gt: uint32 + + """""" + greSequenceNumber_in: [uint32!] + + """""" + greSequenceNumber_leq: uint32 + + """""" + greSequenceNumber_lt: uint32 + + """""" + greSequenceNumber_neq: uint32 + + """""" + greSequenceNumber_notin: [uint32!] + + """""" + greVersion: uint8 + + """""" + greVersion_geq: uint8 + + """""" + greVersion_gt: uint8 + + """""" + greVersion_in: bytes + + """""" + greVersion_leq: uint8 + + """""" + greVersion_lt: uint8 + + """""" + greVersion_neq: uint8 + + """""" + greVersion_notin: bytes + + """""" + icmpChecksum: uint16 + + """""" + icmpChecksum_geq: uint16 + + """""" + icmpChecksum_gt: uint16 + + """""" + icmpChecksum_in: [uint16!] + + """""" + icmpChecksum_leq: uint16 + + """""" + icmpChecksum_lt: uint16 + + """""" + icmpChecksum_neq: uint16 + + """""" + icmpChecksum_notin: [uint16!] + + """""" + icmpCode: uint8 + + """""" + icmpCode_geq: uint8 + + """""" + icmpCode_gt: uint8 + + """""" + icmpCode_in: bytes + + """""" + icmpCode_leq: uint8 + + """""" + icmpCode_lt: uint8 + + """""" + icmpCode_neq: uint8 + + """""" + icmpCode_notin: bytes + + """""" + icmpType: uint8 + + """""" + icmpType_geq: uint8 + + """""" + icmpType_gt: uint8 + + """""" + icmpType_in: bytes + + """""" + icmpType_leq: uint8 + + """""" + icmpType_lt: uint8 + + """""" + icmpType_neq: uint8 + + """""" + icmpType_notin: bytes + + """""" + ipDestinationAddress: string + + """""" + ipDestinationAddress_geq: string + + """""" + ipDestinationAddress_gt: string + + """""" + ipDestinationAddress_in: [string!] + + """""" + ipDestinationAddress_leq: string + + """""" + ipDestinationAddress_like: string + + """""" + ipDestinationAddress_lt: string + + """""" + ipDestinationAddress_neq: string + + """""" + ipDestinationAddress_notin: [string!] + + """""" + ipDestinationAddress_notlike: string + + """""" + ipDestinationSubnet: string + + """""" + ipDestinationSubnet_geq: string + + """""" + ipDestinationSubnet_gt: string + + """""" + ipDestinationSubnet_in: [string!] + + """""" + ipDestinationSubnet_leq: string + + """""" + ipDestinationSubnet_like: string + + """""" + ipDestinationSubnet_lt: string + + """""" + ipDestinationSubnet_neq: string + + """""" + ipDestinationSubnet_notin: [string!] + + """""" + ipDestinationSubnet_notlike: string + + """""" + ipFragmentOffset: uint16 + + """""" + ipFragmentOffset_geq: uint16 + + """""" + ipFragmentOffset_gt: uint16 + + """""" + ipFragmentOffset_in: [uint16!] + + """""" + ipFragmentOffset_leq: uint16 + + """""" + ipFragmentOffset_lt: uint16 + + """""" + ipFragmentOffset_neq: uint16 + + """""" + ipFragmentOffset_notin: [uint16!] + + """""" + ipHeaderLength: uint16 + + """""" + ipHeaderLength_geq: uint16 + + """""" + ipHeaderLength_gt: uint16 + + """""" + ipHeaderLength_in: [uint16!] + + """""" + ipHeaderLength_leq: uint16 + + """""" + ipHeaderLength_lt: uint16 + + """""" + ipHeaderLength_neq: uint16 + + """""" + ipHeaderLength_notin: [uint16!] + + """""" + ipMoreFragments: uint8 + + """""" + ipMoreFragments_geq: uint8 + + """""" + ipMoreFragments_gt: uint8 + + """""" + ipMoreFragments_in: bytes + + """""" + ipMoreFragments_leq: uint8 + + """""" + ipMoreFragments_lt: uint8 + + """""" + ipMoreFragments_neq: uint8 + + """""" + ipMoreFragments_notin: bytes + + """""" + ipProtocol: uint8 + + """""" + ipProtocolName: string + + """""" + ipProtocolName_geq: string + + """""" + ipProtocolName_gt: string + + """""" + ipProtocolName_in: [string!] + + """""" + ipProtocolName_leq: string + + """""" + ipProtocolName_like: string + + """""" + ipProtocolName_lt: string + + """""" + ipProtocolName_neq: string + + """""" + ipProtocolName_notin: [string!] + + """""" + ipProtocolName_notlike: string + + """""" + ipProtocol_geq: uint8 + + """""" + ipProtocol_gt: uint8 + + """""" + ipProtocol_in: bytes + + """""" + ipProtocol_leq: uint8 + + """""" + ipProtocol_lt: uint8 + + """""" + ipProtocol_neq: uint8 + + """""" + ipProtocol_notin: bytes + + """""" + ipSourceAddress: string + + """""" + ipSourceAddress_geq: string + + """""" + ipSourceAddress_gt: string + + """""" + ipSourceAddress_in: [string!] + + """""" + ipSourceAddress_leq: string + + """""" + ipSourceAddress_like: string + + """""" + ipSourceAddress_lt: string + + """""" + ipSourceAddress_neq: string + + """""" + ipSourceAddress_notin: [string!] + + """""" + ipSourceAddress_notlike: string + + """""" + ipSourceSubnet: string + + """""" + ipSourceSubnet_geq: string + + """""" + ipSourceSubnet_gt: string + + """""" + ipSourceSubnet_in: [string!] + + """""" + ipSourceSubnet_leq: string + + """""" + ipSourceSubnet_like: string + + """""" + ipSourceSubnet_lt: string + + """""" + ipSourceSubnet_neq: string + + """""" + ipSourceSubnet_notin: [string!] + + """""" + ipSourceSubnet_notlike: string + + """""" + ipTotalLength: uint16 + + """""" + ipTotalLengthBuckets: uint16 + + """""" + ipTotalLengthBuckets_geq: uint16 + + """""" + ipTotalLengthBuckets_gt: uint16 + + """""" + ipTotalLengthBuckets_in: [uint16!] + + """""" + ipTotalLengthBuckets_leq: uint16 + + """""" + ipTotalLengthBuckets_lt: uint16 + + """""" + ipTotalLengthBuckets_neq: uint16 + + """""" + ipTotalLengthBuckets_notin: [uint16!] + + """""" + ipTotalLength_geq: uint16 + + """""" + ipTotalLength_gt: uint16 + + """""" + ipTotalLength_in: [uint16!] + + """""" + ipTotalLength_leq: uint16 + + """""" + ipTotalLength_lt: uint16 + + """""" + ipTotalLength_neq: uint16 + + """""" + ipTotalLength_notin: [uint16!] + + """""" + ipTtl: uint8 + + """""" + ipTtlBuckets: uint8 + + """""" + ipTtlBuckets_geq: uint8 + + """""" + ipTtlBuckets_gt: uint8 + + """""" + ipTtlBuckets_in: bytes + + """""" + ipTtlBuckets_leq: uint8 + + """""" + ipTtlBuckets_lt: uint8 + + """""" + ipTtlBuckets_neq: uint8 + + """""" + ipTtlBuckets_notin: bytes + + """""" + ipTtl_geq: uint8 + + """""" + ipTtl_gt: uint8 + + """""" + ipTtl_in: bytes + + """""" + ipTtl_leq: uint8 + + """""" + ipTtl_lt: uint8 + + """""" + ipTtl_neq: uint8 + + """""" + ipTtl_notin: bytes + + """""" + ipv4Checksum: uint16 + + """""" + ipv4Checksum_geq: uint16 + + """""" + ipv4Checksum_gt: uint16 + + """""" + ipv4Checksum_in: [uint16!] + + """""" + ipv4Checksum_leq: uint16 + + """""" + ipv4Checksum_lt: uint16 + + """""" + ipv4Checksum_neq: uint16 + + """""" + ipv4Checksum_notin: [uint16!] + + """""" + ipv4DontFragment: uint8 + + """""" + ipv4DontFragment_geq: uint8 + + """""" + ipv4DontFragment_gt: uint8 + + """""" + ipv4DontFragment_in: bytes + + """""" + ipv4DontFragment_leq: uint8 + + """""" + ipv4DontFragment_lt: uint8 + + """""" + ipv4DontFragment_neq: uint8 + + """""" + ipv4DontFragment_notin: bytes + + """""" + ipv4Dscp: uint8 + + """""" + ipv4Dscp_geq: uint8 + + """""" + ipv4Dscp_gt: uint8 + + """""" + ipv4Dscp_in: bytes + + """""" + ipv4Dscp_leq: uint8 + + """""" + ipv4Dscp_lt: uint8 + + """""" + ipv4Dscp_neq: uint8 + + """""" + ipv4Dscp_notin: bytes + + """""" + ipv4Ecn: uint8 + + """""" + ipv4Ecn_geq: uint8 + + """""" + ipv4Ecn_gt: uint8 + + """""" + ipv4Ecn_in: bytes + + """""" + ipv4Ecn_leq: uint8 + + """""" + ipv4Ecn_lt: uint8 + + """""" + ipv4Ecn_neq: uint8 + + """""" + ipv4Ecn_notin: bytes + + """""" + ipv4Identification: uint16 + + """""" + ipv4Identification_geq: uint16 + + """""" + ipv4Identification_gt: uint16 + + """""" + ipv4Identification_in: [uint16!] + + """""" + ipv4Identification_leq: uint16 + + """""" + ipv4Identification_lt: uint16 + + """""" + ipv4Identification_neq: uint16 + + """""" + ipv4Identification_notin: [uint16!] + + """""" + ipv4Options: string + + """""" + ipv4Options_geq: string + + """""" + ipv4Options_gt: string + + """""" + ipv4Options_in: [string!] + + """""" + ipv4Options_leq: string + + """""" + ipv4Options_like: string + + """""" + ipv4Options_lt: string + + """""" + ipv4Options_neq: string + + """""" + ipv4Options_notin: [string!] + + """""" + ipv4Options_notlike: string + + """""" + ipv6Dscp: uint8 + + """""" + ipv6Dscp_geq: uint8 + + """""" + ipv6Dscp_gt: uint8 + + """""" + ipv6Dscp_in: bytes + + """""" + ipv6Dscp_leq: uint8 + + """""" + ipv6Dscp_lt: uint8 + + """""" + ipv6Dscp_neq: uint8 + + """""" + ipv6Dscp_notin: bytes + + """""" + ipv6Ecn: uint8 + + """""" + ipv6Ecn_geq: uint8 + + """""" + ipv6Ecn_gt: uint8 + + """""" + ipv6Ecn_in: bytes + + """""" + ipv6Ecn_leq: uint8 + + """""" + ipv6Ecn_lt: uint8 + + """""" + ipv6Ecn_neq: uint8 + + """""" + ipv6Ecn_notin: bytes + + """""" + ipv6ExtensionHeaders: string + + """""" + ipv6ExtensionHeaders_geq: string + + """""" + ipv6ExtensionHeaders_gt: string + + """""" + ipv6ExtensionHeaders_in: [string!] + + """""" + ipv6ExtensionHeaders_leq: string + + """""" + ipv6ExtensionHeaders_like: string + + """""" + ipv6ExtensionHeaders_lt: string + + """""" + ipv6ExtensionHeaders_neq: string + + """""" + ipv6ExtensionHeaders_notin: [string!] + + """""" + ipv6ExtensionHeaders_notlike: string + + """""" + ipv6FlowLabel: uint32 + + """""" + ipv6FlowLabel_geq: uint32 + + """""" + ipv6FlowLabel_gt: uint32 + + """""" + ipv6FlowLabel_in: [uint32!] + + """""" + ipv6FlowLabel_leq: uint32 + + """""" + ipv6FlowLabel_lt: uint32 + + """""" + ipv6FlowLabel_neq: uint32 + + """""" + ipv6FlowLabel_notin: [uint32!] + + """""" + ipv6Identification: uint32 + + """""" + ipv6Identification_geq: uint32 + + """""" + ipv6Identification_gt: uint32 + + """""" + ipv6Identification_in: [uint32!] + + """""" + ipv6Identification_leq: uint32 + + """""" + ipv6Identification_lt: uint32 + + """""" + ipv6Identification_neq: uint32 + + """""" + ipv6Identification_notin: [uint32!] + + """""" + outcome: string + + """""" + outcome_geq: string + + """""" + outcome_gt: string + + """""" + outcome_in: [string!] + + """""" + outcome_leq: string + + """""" + outcome_like: string + + """""" + outcome_lt: string + + """""" + outcome_neq: string + + """""" + outcome_notin: [string!] + + """""" + outcome_notlike: string + + """""" + sampleInterval: uint32 + + """""" + sampleInterval_geq: uint32 + + """""" + sampleInterval_gt: uint32 + + """""" + sampleInterval_in: [uint32!] + + """""" + sampleInterval_leq: uint32 + + """""" + sampleInterval_lt: uint32 + + """""" + sampleInterval_neq: uint32 + + """""" + sampleInterval_notin: [uint32!] + + """""" + sourceAsn: uint32 + + """""" + sourceAsnName: string + + """""" + sourceAsnName_geq: string + + """""" + sourceAsnName_gt: string + + """""" + sourceAsnName_in: [string!] + + """""" + sourceAsnName_leq: string + + """""" + sourceAsnName_like: string + + """""" + sourceAsnName_lt: string + + """""" + sourceAsnName_neq: string + + """""" + sourceAsnName_notin: [string!] + + """""" + sourceAsnName_notlike: string + + """""" + sourceAsn_geq: uint32 + + """""" + sourceAsn_gt: uint32 + + """""" + sourceAsn_in: [uint32!] + + """""" + sourceAsn_leq: uint32 + + """""" + sourceAsn_lt: uint32 + + """""" + sourceAsn_neq: uint32 + + """""" + sourceAsn_notin: [uint32!] + + """""" + sourceCountry: string + + """""" + sourceCountry_geq: string + + """""" + sourceCountry_gt: string + + """""" + sourceCountry_in: [string!] + + """""" + sourceCountry_leq: string + + """""" + sourceCountry_like: string + + """""" + sourceCountry_lt: string + + """""" + sourceCountry_neq: string + + """""" + sourceCountry_notin: [string!] + + """""" + sourceCountry_notlike: string + + """""" + sourceDeviceTag: string + + """""" + sourceDeviceTag_geq: string + + """""" + sourceDeviceTag_gt: string + + """""" + sourceDeviceTag_in: [string!] + + """""" + sourceDeviceTag_leq: string + + """""" + sourceDeviceTag_like: string + + """""" + sourceDeviceTag_lt: string + + """""" + sourceDeviceTag_neq: string + + """""" + sourceDeviceTag_notin: [string!] + + """""" + sourceDeviceTag_notlike: string + + """""" + sourceGeohash: string + + """""" + sourceGeohash_geq: string + + """""" + sourceGeohash_gt: string + + """""" + sourceGeohash_in: [string!] + + """""" + sourceGeohash_leq: string + + """""" + sourceGeohash_like: string + + """""" + sourceGeohash_lt: string + + """""" + sourceGeohash_neq: string + + """""" + sourceGeohash_notin: [string!] + + """""" + sourceGeohash_notlike: string + + """""" + sourcePort: uint16 + + """""" + sourcePort_geq: uint16 + + """""" + sourcePort_gt: uint16 + + """""" + sourcePort_in: [uint16!] + + """""" + sourcePort_leq: uint16 + + """""" + sourcePort_lt: uint16 + + """""" + sourcePort_neq: uint16 + + """""" + sourcePort_notin: [uint16!] + + """""" + tcpAcknowledgementNumber: uint32 + + """""" + tcpAcknowledgementNumber_geq: uint32 + + """""" + tcpAcknowledgementNumber_gt: uint32 + + """""" + tcpAcknowledgementNumber_in: [uint32!] + + """""" + tcpAcknowledgementNumber_leq: uint32 + + """""" + tcpAcknowledgementNumber_lt: uint32 + + """""" + tcpAcknowledgementNumber_neq: uint32 + + """""" + tcpAcknowledgementNumber_notin: [uint32!] + + """""" + tcpChecksum: uint16 + + """""" + tcpChecksum_geq: uint16 + + """""" + tcpChecksum_gt: uint16 + + """""" + tcpChecksum_in: [uint16!] + + """""" + tcpChecksum_leq: uint16 + + """""" + tcpChecksum_lt: uint16 + + """""" + tcpChecksum_neq: uint16 + + """""" + tcpChecksum_notin: [uint16!] + + """""" + tcpDataOffset: uint16 + + """""" + tcpDataOffset_geq: uint16 + + """""" + tcpDataOffset_gt: uint16 + + """""" + tcpDataOffset_in: [uint16!] + + """""" + tcpDataOffset_leq: uint16 + + """""" + tcpDataOffset_lt: uint16 + + """""" + tcpDataOffset_neq: uint16 + + """""" + tcpDataOffset_notin: [uint16!] + + """""" + tcpFlags: uint8 + + """""" + tcpFlagsString: string + + """""" + tcpFlagsString_geq: string + + """""" + tcpFlagsString_gt: string + + """""" + tcpFlagsString_in: [string!] + + """""" + tcpFlagsString_leq: string + + """""" + tcpFlagsString_like: string + + """""" + tcpFlagsString_lt: string + + """""" + tcpFlagsString_neq: string + + """""" + tcpFlagsString_notin: [string!] + + """""" + tcpFlagsString_notlike: string + + """""" + tcpFlags_geq: uint8 + + """""" + tcpFlags_gt: uint8 + + """""" + tcpFlags_in: bytes + + """""" + tcpFlags_leq: uint8 + + """""" + tcpFlags_lt: uint8 + + """""" + tcpFlags_neq: uint8 + + """""" + tcpFlags_notin: bytes + + """""" + tcpMss: uint16 + + """""" + tcpMss_geq: uint16 + + """""" + tcpMss_gt: uint16 + + """""" + tcpMss_in: [uint16!] + + """""" + tcpMss_leq: uint16 + + """""" + tcpMss_lt: uint16 + + """""" + tcpMss_neq: uint16 + + """""" + tcpMss_notin: [uint16!] + + """""" + tcpOptions: string + + """""" + tcpOptions_geq: string + + """""" + tcpOptions_gt: string + + """""" + tcpOptions_in: [string!] + + """""" + tcpOptions_leq: string + + """""" + tcpOptions_like: string + + """""" + tcpOptions_lt: string + + """""" + tcpOptions_neq: string + + """""" + tcpOptions_notin: [string!] + + """""" + tcpOptions_notlike: string + + """""" + tcpSackBlocks: string + + """""" + tcpSackBlocks_geq: string + + """""" + tcpSackBlocks_gt: string + + """""" + tcpSackBlocks_in: [string!] + + """""" + tcpSackBlocks_leq: string + + """""" + tcpSackBlocks_like: string + + """""" + tcpSackBlocks_lt: string + + """""" + tcpSackBlocks_neq: string + + """""" + tcpSackBlocks_notin: [string!] + + """""" + tcpSackBlocks_notlike: string + + """""" + tcpSackPermitted: uint8 + + """""" + tcpSackPermitted_geq: uint8 + + """""" + tcpSackPermitted_gt: uint8 + + """""" + tcpSackPermitted_in: bytes + + """""" + tcpSackPermitted_leq: uint8 + + """""" + tcpSackPermitted_lt: uint8 + + """""" + tcpSackPermitted_neq: uint8 + + """""" + tcpSackPermitted_notin: bytes + + """""" + tcpSequenceNumber: uint32 + + """""" + tcpSequenceNumber_geq: uint32 + + """""" + tcpSequenceNumber_gt: uint32 + + """""" + tcpSequenceNumber_in: [uint32!] + + """""" + tcpSequenceNumber_leq: uint32 + + """""" + tcpSequenceNumber_lt: uint32 + + """""" + tcpSequenceNumber_neq: uint32 + + """""" + tcpSequenceNumber_notin: [uint32!] + + """""" + tcpTimestampEcr: uint32 + + """""" + tcpTimestampEcr_geq: uint32 + + """""" + tcpTimestampEcr_gt: uint32 + + """""" + tcpTimestampEcr_in: [uint32!] + + """""" + tcpTimestampEcr_leq: uint32 + + """""" + tcpTimestampEcr_lt: uint32 + + """""" + tcpTimestampEcr_neq: uint32 + + """""" + tcpTimestampEcr_notin: [uint32!] + + """""" + tcpTimestampValue: uint32 + + """""" + tcpTimestampValue_geq: uint32 + + """""" + tcpTimestampValue_gt: uint32 + + """""" + tcpTimestampValue_in: [uint32!] + + """""" + tcpTimestampValue_leq: uint32 + + """""" + tcpTimestampValue_lt: uint32 + + """""" + tcpTimestampValue_neq: uint32 + + """""" + tcpTimestampValue_notin: [uint32!] + + """""" + tcpUrgentPointer: uint16 + + """""" + tcpUrgentPointer_geq: uint16 + + """""" + tcpUrgentPointer_gt: uint16 + + """""" + tcpUrgentPointer_in: [uint16!] + + """""" + tcpUrgentPointer_leq: uint16 + + """""" + tcpUrgentPointer_lt: uint16 + + """""" + tcpUrgentPointer_neq: uint16 + + """""" + tcpUrgentPointer_notin: [uint16!] + + """""" + tcpWindowScale: uint16 + + """""" + tcpWindowScale_geq: uint16 + + """""" + tcpWindowScale_gt: uint16 + + """""" + tcpWindowScale_in: [uint16!] + + """""" + tcpWindowScale_leq: uint16 + + """""" + tcpWindowScale_lt: uint16 + + """""" + tcpWindowScale_neq: uint16 + + """""" + tcpWindowScale_notin: [uint16!] + + """""" + tcpWindowSize: uint16 + + """""" + tcpWindowSize_geq: uint16 + + """""" + tcpWindowSize_gt: uint16 + + """""" + tcpWindowSize_in: [uint16!] + + """""" + tcpWindowSize_leq: uint16 + + """""" + tcpWindowSize_lt: uint16 + + """""" + tcpWindowSize_neq: uint16 + + """""" + tcpWindowSize_notin: [uint16!] + + """""" + udpChecksum: uint16 + + """""" + udpChecksum_geq: uint16 + + """""" + udpChecksum_gt: uint16 + + """""" + udpChecksum_in: [uint16!] + + """""" + udpChecksum_leq: uint16 + + """""" + udpChecksum_lt: uint16 + + """""" + udpChecksum_neq: uint16 + + """""" + udpChecksum_notin: [uint16!] + + """""" + udpPayloadLength: uint16 + + """""" + udpPayloadLength_geq: uint16 + + """""" + udpPayloadLength_gt: uint16 + + """""" + udpPayloadLength_in: [uint16!] + + """""" + udpPayloadLength_leq: uint16 + + """""" + udpPayloadLength_lt: uint16 + + """""" + udpPayloadLength_neq: uint16 + + """""" + udpPayloadLength_notin: [uint16!] + + """""" + verdict: string + + """""" + verdict_geq: string + + """""" + verdict_gt: string + + """""" + verdict_in: [string!] + + """""" + verdict_leq: string + + """""" + verdict_like: string + + """""" + verdict_lt: string + + """""" + verdict_neq: string + + """""" + verdict_notin: [string!] + + """""" + verdict_notlike: string +} + +"""""" +enum AccountMagicIDPSNetworkAnalyticsAdaptiveGroupsOrderBy { + """avg(bitRateDay) ascending""" + avg_bitRateDay_ASC + + """avg(bitRateDay) descending""" + avg_bitRateDay_DESC + + """avg(bitRateFifteenMinutes) ascending""" + avg_bitRateFifteenMinutes_ASC + + """avg(bitRateFifteenMinutes) descending""" + avg_bitRateFifteenMinutes_DESC + + """avg(bitRateFiveMinutes) ascending""" + avg_bitRateFiveMinutes_ASC + + """avg(bitRateFiveMinutes) descending""" + avg_bitRateFiveMinutes_DESC + + """avg(bitRateHour) ascending""" + avg_bitRateHour_ASC + + """avg(bitRateHour) descending""" + avg_bitRateHour_DESC + + """avg(bitRateMinute) ascending""" + avg_bitRateMinute_ASC + + """avg(bitRateMinute) descending""" + avg_bitRateMinute_DESC + + """avg(bitRateTenSeconds) ascending""" + avg_bitRateTenSeconds_ASC + + """avg(bitRateTenSeconds) descending""" + avg_bitRateTenSeconds_DESC + + """avg(bitRate) ascending""" + avg_bitRate_ASC + + """avg(bitRate) descending""" + avg_bitRate_DESC + + """avg(packetRateDay) ascending""" + avg_packetRateDay_ASC + + """avg(packetRateDay) descending""" + avg_packetRateDay_DESC + + """avg(packetRateFifteenMinutes) ascending""" + avg_packetRateFifteenMinutes_ASC + + """avg(packetRateFifteenMinutes) descending""" + avg_packetRateFifteenMinutes_DESC + + """avg(packetRateFiveMinutes) ascending""" + avg_packetRateFiveMinutes_ASC + + """avg(packetRateFiveMinutes) descending""" + avg_packetRateFiveMinutes_DESC + + """avg(packetRateHour) ascending""" + avg_packetRateHour_ASC + + """avg(packetRateHour) descending""" + avg_packetRateHour_DESC + + """avg(packetRateMinute) ascending""" + avg_packetRateMinute_ASC + + """avg(packetRateMinute) descending""" + avg_packetRateMinute_DESC + + """avg(packetRateTenSeconds) ascending""" + avg_packetRateTenSeconds_ASC + + """avg(packetRateTenSeconds) descending""" + avg_packetRateTenSeconds_DESC + + """avg(packetRate) ascending""" + avg_packetRate_ASC + + """avg(packetRate) descending""" + avg_packetRate_DESC + + """coloCity ascending""" + coloCity_ASC + + """coloCity descending""" + coloCity_DESC + + """coloCode ascending""" + coloCode_ASC + + """coloCode descending""" + coloCode_DESC + + """coloCountry ascending""" + coloCountry_ASC + + """coloCountry descending""" + coloCountry_DESC + + """coloGeohash ascending""" + coloGeohash_ASC + + """coloGeohash descending""" + coloGeohash_DESC + + """coloName ascending""" + coloName_ASC + + """coloName descending""" + coloName_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetimeTenSeconds ascending""" + datetimeTenSeconds_ASC + + """datetimeTenSeconds descending""" + datetimeTenSeconds_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """destinationAsnName ascending""" + destinationAsnName_ASC + + """destinationAsnName descending""" + destinationAsnName_DESC + + """destinationAsn ascending""" + destinationAsn_ASC + + """destinationAsn descending""" + destinationAsn_DESC + + """destinationCountry ascending""" + destinationCountry_ASC + + """destinationCountry descending""" + destinationCountry_DESC + + """destinationDeviceTag ascending""" + destinationDeviceTag_ASC + + """destinationDeviceTag descending""" + destinationDeviceTag_DESC + + """destinationGeohash ascending""" + destinationGeohash_ASC + + """destinationGeohash descending""" + destinationGeohash_DESC + + """destinationPort ascending""" + destinationPort_ASC + + """destinationPort descending""" + destinationPort_DESC + + """direction ascending""" + direction_ASC + + """direction descending""" + direction_DESC + + """ethertype ascending""" + ethertype_ASC + + """ethertype descending""" + ethertype_DESC + + """greChecksum ascending""" + greChecksum_ASC + + """greChecksum descending""" + greChecksum_DESC + + """greEthertype ascending""" + greEthertype_ASC + + """greEthertype descending""" + greEthertype_DESC + + """greHeaderLength ascending""" + greHeaderLength_ASC + + """greHeaderLength descending""" + greHeaderLength_DESC + + """greKey ascending""" + greKey_ASC + + """greKey descending""" + greKey_DESC + + """greSequenceNumber ascending""" + greSequenceNumber_ASC + + """greSequenceNumber descending""" + greSequenceNumber_DESC + + """greVersion ascending""" + greVersion_ASC + + """greVersion descending""" + greVersion_DESC + + """icmpChecksum ascending""" + icmpChecksum_ASC + + """icmpChecksum descending""" + icmpChecksum_DESC + + """icmpCode ascending""" + icmpCode_ASC + + """icmpCode descending""" + icmpCode_DESC + + """icmpType ascending""" + icmpType_ASC + + """icmpType descending""" + icmpType_DESC + + """ipDestinationAddress ascending""" + ipDestinationAddress_ASC + + """ipDestinationAddress descending""" + ipDestinationAddress_DESC + + """ipDestinationSubnet ascending""" + ipDestinationSubnet_ASC + + """ipDestinationSubnet descending""" + ipDestinationSubnet_DESC + + """ipFragmentOffset ascending""" + ipFragmentOffset_ASC + + """ipFragmentOffset descending""" + ipFragmentOffset_DESC + + """ipHeaderLength ascending""" + ipHeaderLength_ASC + + """ipHeaderLength descending""" + ipHeaderLength_DESC + + """ipMoreFragments ascending""" + ipMoreFragments_ASC + + """ipMoreFragments descending""" + ipMoreFragments_DESC + + """ipProtocolName ascending""" + ipProtocolName_ASC + + """ipProtocolName descending""" + ipProtocolName_DESC + + """ipProtocol ascending""" + ipProtocol_ASC + + """ipProtocol descending""" + ipProtocol_DESC + + """ipSourceAddress ascending""" + ipSourceAddress_ASC + + """ipSourceAddress descending""" + ipSourceAddress_DESC + + """ipSourceSubnet ascending""" + ipSourceSubnet_ASC + + """ipSourceSubnet descending""" + ipSourceSubnet_DESC + + """ipTotalLengthBuckets ascending""" + ipTotalLengthBuckets_ASC + + """ipTotalLengthBuckets descending""" + ipTotalLengthBuckets_DESC + + """ipTotalLength ascending""" + ipTotalLength_ASC + + """ipTotalLength descending""" + ipTotalLength_DESC + + """ipTtlBuckets ascending""" + ipTtlBuckets_ASC + + """ipTtlBuckets descending""" + ipTtlBuckets_DESC + + """ipTtl ascending""" + ipTtl_ASC + + """ipTtl descending""" + ipTtl_DESC + + """ipv4Checksum ascending""" + ipv4Checksum_ASC + + """ipv4Checksum descending""" + ipv4Checksum_DESC + + """ipv4DontFragment ascending""" + ipv4DontFragment_ASC + + """ipv4DontFragment descending""" + ipv4DontFragment_DESC + + """ipv4Dscp ascending""" + ipv4Dscp_ASC + + """ipv4Dscp descending""" + ipv4Dscp_DESC + + """ipv4Ecn ascending""" + ipv4Ecn_ASC + + """ipv4Ecn descending""" + ipv4Ecn_DESC + + """ipv4Identification ascending""" + ipv4Identification_ASC + + """ipv4Identification descending""" + ipv4Identification_DESC + + """ipv4Options ascending""" + ipv4Options_ASC + + """ipv4Options descending""" + ipv4Options_DESC + + """ipv6Dscp ascending""" + ipv6Dscp_ASC + + """ipv6Dscp descending""" + ipv6Dscp_DESC + + """ipv6Ecn ascending""" + ipv6Ecn_ASC + + """ipv6Ecn descending""" + ipv6Ecn_DESC + + """ipv6ExtensionHeaders ascending""" + ipv6ExtensionHeaders_ASC + + """ipv6ExtensionHeaders descending""" + ipv6ExtensionHeaders_DESC + + """ipv6FlowLabel ascending""" + ipv6FlowLabel_ASC + + """ipv6FlowLabel descending""" + ipv6FlowLabel_DESC + + """ipv6Identification ascending""" + ipv6Identification_ASC + + """ipv6Identification descending""" + ipv6Identification_DESC + + """outcome ascending""" + outcome_ASC + + """outcome descending""" + outcome_DESC + + """sampleInterval ascending""" + sampleInterval_ASC + + """sampleInterval descending""" + sampleInterval_DESC + + """sourceAsnName ascending""" + sourceAsnName_ASC + + """sourceAsnName descending""" + sourceAsnName_DESC + + """sourceAsn ascending""" + sourceAsn_ASC + + """sourceAsn descending""" + sourceAsn_DESC + + """sourceCountry ascending""" + sourceCountry_ASC + + """sourceCountry descending""" + sourceCountry_DESC + + """sourceDeviceTag ascending""" + sourceDeviceTag_ASC + + """sourceDeviceTag descending""" + sourceDeviceTag_DESC + + """sourceGeohash ascending""" + sourceGeohash_ASC + + """sourceGeohash descending""" + sourceGeohash_DESC + + """sourcePort ascending""" + sourcePort_ASC + + """sourcePort descending""" + sourcePort_DESC + + """sum(bits) ascending""" + sum_bits_ASC + + """sum(bits) descending""" + sum_bits_DESC + + """sum(packets) ascending""" + sum_packets_ASC + + """sum(packets) descending""" + sum_packets_DESC + + """system ascending""" + system_ASC + + """system descending""" + system_DESC + + """tcpAcknowledgementNumber ascending""" + tcpAcknowledgementNumber_ASC + + """tcpAcknowledgementNumber descending""" + tcpAcknowledgementNumber_DESC + + """tcpChecksum ascending""" + tcpChecksum_ASC + + """tcpChecksum descending""" + tcpChecksum_DESC + + """tcpDataOffset ascending""" + tcpDataOffset_ASC + + """tcpDataOffset descending""" + tcpDataOffset_DESC + + """tcpFlagsString ascending""" + tcpFlagsString_ASC + + """tcpFlagsString descending""" + tcpFlagsString_DESC + + """tcpFlags ascending""" + tcpFlags_ASC + + """tcpFlags descending""" + tcpFlags_DESC + + """tcpMss ascending""" + tcpMss_ASC + + """tcpMss descending""" + tcpMss_DESC + + """tcpOptions ascending""" + tcpOptions_ASC + + """tcpOptions descending""" + tcpOptions_DESC + + """tcpSackBlocks ascending""" + tcpSackBlocks_ASC + + """tcpSackBlocks descending""" + tcpSackBlocks_DESC + + """tcpSackPermitted ascending""" + tcpSackPermitted_ASC + + """tcpSackPermitted descending""" + tcpSackPermitted_DESC + + """tcpSequenceNumber ascending""" + tcpSequenceNumber_ASC + + """tcpSequenceNumber descending""" + tcpSequenceNumber_DESC + + """tcpTimestampEcr ascending""" + tcpTimestampEcr_ASC + + """tcpTimestampEcr descending""" + tcpTimestampEcr_DESC + + """tcpTimestampValue ascending""" + tcpTimestampValue_ASC + + """tcpTimestampValue descending""" + tcpTimestampValue_DESC + + """tcpUrgentPointer ascending""" + tcpUrgentPointer_ASC + + """tcpUrgentPointer descending""" + tcpUrgentPointer_DESC + + """tcpWindowScale ascending""" + tcpWindowScale_ASC + + """tcpWindowScale descending""" + tcpWindowScale_DESC + + """tcpWindowSize ascending""" + tcpWindowSize_ASC + + """tcpWindowSize descending""" + tcpWindowSize_DESC + + """udpChecksum ascending""" + udpChecksum_ASC + + """udpChecksum descending""" + udpChecksum_DESC + + """udpPayloadLength ascending""" + udpPayloadLength_ASC + + """udpPayloadLength descending""" + udpPayloadLength_DESC + + """verdict ascending""" + verdict_ASC + + """verdict descending""" + verdict_DESC +} + +"""""" +type AccountMagicIDPSNetworkAnalyticsAdaptiveGroupsSum { + """Sum of bits received""" + bits: uint64! + + """Sum of packets received""" + packets: uint64! +} + +"""""" +type AccountMagicIDPSNetworkAnalyticsAdaptiveGroupsSumConfidence { + """Confidence interval for the corresponding point estimate""" + bits: Confidence! + + """Confidence interval for the corresponding point estimate""" + packets: Confidence! +} + +"""Network analytics data for Magic Transit traffic""" +type AccountMagicTransitNetworkAnalyticsAdaptiveGroups { + """The average of values for a metric per dimension""" + avg: AccountMagicTransitNetworkAnalyticsAdaptiveGroupsAvg + + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountMagicTransitNetworkAnalyticsAdaptiveGroupsConfidence! + + """List of dimensions to group by""" + dimensions: AccountMagicTransitNetworkAnalyticsAdaptiveGroupsDimensions + + """The sum of values for a metric per dimension""" + sum: AccountMagicTransitNetworkAnalyticsAdaptiveGroupsSum +} + +"""""" +type AccountMagicTransitNetworkAnalyticsAdaptiveGroupsAvg { + """ + Sum of bits received, divided by 1 second, providing a per-second bit rate when grouped by datetime + """ + bitRate: uint64! + + """ + Sum of bits received, divided by 86400 seconds, providing a per-second bit rate when grouped by date + """ + bitRateDay: uint64! + + """ + Sum of bits received, divided by 900 seconds, providing a per-second bit rate when grouped by datetimeFifteenMinutes + """ + bitRateFifteenMinutes: uint64! + + """ + Sum of bits received, divided by 300 seconds, providing a per-second bit rate when grouped by datetimeFiveMinutes + """ + bitRateFiveMinutes: uint64! + + """ + Sum of bits received, divided by 3600 seconds, providing a per-second bit rate when grouped by datetimeHour + """ + bitRateHour: uint64! + + """ + Sum of bits received, divided by 60 seconds, providing a per-second bit rate when grouped by datetimeMinute + """ + bitRateMinute: uint64! + + """ + Sum of bits received, divided by 10 seconds, providing a per-second bit rate when grouped by datetimeTenSeconds + """ + bitRateTenSeconds: uint64! + + """ + Sum of packets received, divided by 1 second, providing a per-second packet rate when grouped by datetime + """ + packetRate: uint64! + + """ + Sum of packets received, divided by 86400 seconds, providing a per-second packet rate when grouped by date + """ + packetRateDay: uint64! + + """ + Sum of packets received, divided by 900 seconds, providing a per-second packet rate when grouped by datetimeFifteenMinutes + """ + packetRateFifteenMinutes: uint64! + + """ + Sum of packets received, divided by 300 seconds, providing a per-second packet rate when grouped by datetimeFiveMinutes + """ + packetRateFiveMinutes: uint64! + + """ + Sum of packets received, divided by 3600 seconds, providing a per-second packet rate when grouped by datetimeHour + """ + packetRateHour: uint64! + + """ + Sum of packets received, divided by 60 seconds, providing a per-second packet rate when grouped by datetimeMinute + """ + packetRateMinute: uint64! + + """ + Sum of packets received, divided by 10 seconds, providing a per-second packet rate when grouped by datetimeTenSeconds + """ + packetRateTenSeconds: uint64! +} + +"""""" +type AccountMagicTransitNetworkAnalyticsAdaptiveGroupsAvgConfidence { + """Confidence interval for the corresponding point estimate""" + bitRate: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateDay: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateFifteenMinutes: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateFiveMinutes: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateHour: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateMinute: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateTenSeconds: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRate: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateDay: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateFifteenMinutes: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateFiveMinutes: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateHour: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateMinute: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateTenSeconds: Confidence! +} + +"""""" +type AccountMagicTransitNetworkAnalyticsAdaptiveGroupsConfidence { + """ + The average of values for a metric per dimension, with confidence intervals + """ + avg: AccountMagicTransitNetworkAnalyticsAdaptiveGroupsAvgConfidence + + """Confidence level that was requested""" + level: float64! + + """ + The sum of values for a metric per dimension, with confidence intervals + """ + sum: AccountMagicTransitNetworkAnalyticsAdaptiveGroupsSumConfidence +} + +"""""" +type AccountMagicTransitNetworkAnalyticsAdaptiveGroupsDimensions { + """Application tag associated with the packet""" + applicationTag: string! + + """ + City where the Cloudflare datacenter that received the packet is located + """ + coloCity: string! + + """ + Cloudflare datacenter that received the packet (nearest IATA airport code) + """ + coloCode: string! + + """ + Country where the Cloudflare datacenter that received the packet is located (ISO 3166-1 alpha-2) + """ + coloCountry: string! + + """ + Latitude and longitude where the Cloudflare datacenter that received the packet is located (Geohash encoding) + """ + coloGeohash: string! + + """ + Cloudflare datacenter that received the packet (unique site identifier) + """ + coloName: string! + + """Date that the packet was received""" + date: Date! + + """Date and time that the packet was received""" + datetime: Time! + + """ + Date and time that the packet was received, rounded to the start of the nearest fifteen minutes + """ + datetimeFifteenMinutes: Time! + + """ + Date and time that the packet was received, rounded to the start of the nearest five minutes + """ + datetimeFiveMinutes: Time! + + """ + Date and time that the packet was received, rounded to the start of the nearest hour + """ + datetimeHour: Time! + + """ + Date and time that the packet was received, rounded to the start of the nearest minute + """ + datetimeMinute: Time! + + """ + Date and time that the packet was received, rounded to the start of the nearest ten seconds + """ + datetimeTenSeconds: Time! + + """ + ASN associated with the destination IP of the packet, or 0 if there was no mapping available + """ + destinationAsn: uint32! + + """ + Name of ASN associated with the destination IP of the packet, if available + """ + destinationAsnName: string! + + """ + Country where the destination IP of the packet is located (ISO 3166-1 alpha-2) + """ + destinationCountry: string! + + """ + Latitude and longitude where the destination IP of the packet is located (Geohash encoding) + """ + destinationGeohash: string! + + """Value of the Destination Port header field in the TCP or UDP packet""" + destinationPort: uint16! + + """ + Direction of the packet relative to the customer network (possible values: inbound, outbound, lateral) + """ + direction: string! + + """GRE or IPSec Egress Tunnel ID for Magic WAN and Magic Transit traffic""" + egressTunnelID: string! + + """ + GRE or IPSec Egress Tunnel name for Magic WAN and Magic Transit traffic + """ + egressTunnelName: string! + + """ + Value of the Ethertype header field in the Ethernet packet (2048 for IPv4; 34525 for IPv6) + """ + ethertype: uint16! + + """Value of the Checkusm header field in the GRE packet""" + greChecksum: uint16! + + """Value of the Ethertype header field in the GRE packet""" + greEthertype: uint16! + + """Length of the GRE packet header, in bytes""" + greHeaderLength: uint16! + + """Value of the Key header field in the GRE packet""" + greKey: uint32! + + """Value of the Sequence Number header field in the GRE packet""" + greSequenceNumber: uint32! + + """Value of the Version header field in the GRE packet""" + greVersion: uint8! + + """Value of the Checkusm header field in the ICMP packet""" + icmpChecksum: uint16! + + """Value of the Code header field in the ICMP packet""" + icmpCode: uint8! + + """Value of the Type header field in the ICMP packet""" + icmpType: uint8! + + """GRE or IPSec Ingress Tunnel ID for Magic WAN and Magic Transit traffic""" + ingressTunnelID: string! + + """ + GRE or IPSec Ingress Tunnel name for Magic WAN and Magic Transit traffic + """ + ingressTunnelName: string! + + """ + Value of the Destination Address header field in the IPv4 or IPv6 packet + """ + ipDestinationAddress: string! + + """ + Computed subnet of the Destination Address header field in the IPv4 or IPv6 packet (/24 for IPv4; /48 for IPv6) + """ + ipDestinationSubnet: string! + + """Value of the Fragment Offset header field in the IPv4 or IPv6 packet""" + ipFragmentOffset: uint16! + + """Length of the IPv4 or IPv6 packet header, in bytes""" + ipHeaderLength: uint16! + + """Value of the More Fragments header field in the IPv4 or IPv6 packet""" + ipMoreFragments: uint8! + + """Value of the Protocol header field in the IPv4 or IPv6 packet""" + ipProtocol: uint8! + + """ + Name of the protocol specified by the Protocol header field in the IPv4 or IPv6 packet + """ + ipProtocolName: string! + + """Value of the Source Address header field in the IPv4 or IPv6 packet""" + ipSourceAddress: string! + + """ + Computed subnet of the Source Address header field in the IPv4 or IPv6 packet (/24 for IPv4; /48 for IPv6) + """ + ipSourceSubnet: string! + + """Total length of the IPv4 or IPv6 packet, in bytes""" + ipTotalLength: uint16! + + """ + Total length of the IPv4 or IPv6 packet, in bytes, with the last two digits truncated + """ + ipTotalLengthBuckets: uint16! + + """ + Value of the TTL header field in the IPv4 packet or the Hop Limit header field in the IPv6 packet + """ + ipTtl: uint8! + + """ + Value of the TTL header field in the IPv4 packet or the Hop Limit header field in the IPv6 packet, with the last digit truncated + """ + ipTtlBuckets: uint8! + + """Value of the Checksum header field in the IPv4 packet""" + ipv4Checksum: uint16! + + """Value of the Don't Fragment header field in the IPv4 packet""" + ipv4DontFragment: uint8! + + """ + Value of the Differentiated Services Code Point header field in the IPv4 packet + """ + ipv4Dscp: uint8! + + """ + Value of the Explicit Congestion Notification header field in the IPv4 packet + """ + ipv4Ecn: uint8! + + """Value of the Identification header field in the IPv4 packet""" + ipv4Identification: uint16! + + """List of Options numbers included in the IPv4 packet header""" + ipv4Options: string! + + """ + Value of the Differentiated Services Code Point header field in the IPv6 packet + """ + ipv6Dscp: uint8! + + """ + Value of the Explicit Congestion Notification header field in the IPv6 packet + """ + ipv6Ecn: uint8! + + """List of Extension Header numbers included in the IPv6 packet header""" + ipv6ExtensionHeaders: string! + + """Value of the Flow Label header field in the IPv6 packet""" + ipv6FlowLabel: uint32! + + """Value of the Identification extension header field in the IPv6 packet""" + ipv6Identification: uint32! + + """IP lease tag associated with the packet""" + leaseTag: string! + + """ + Which system dropped the packet (possible values: dosd, flowtrackd, magic-firewall) + """ + mitigationSystem: string! + + """ + Offramp method for Magic WAN and Magic Transit traffic - GRE, IPSec, CNI, Warp, Cloudflared + """ + offRamp: string! + + """ + Onramp method for Magic WAN and Magic Transit traffic - GRE, IPSec, CNI, Warp, Cloudflared + """ + onRamp: string! + + """The action that was taken on the packet (possible values: pass, drop)""" + outcome: string! + + """IP prefix tag associated with the packet""" + prefixTag: string! + + """ABR sample interval""" + sampleInterval: uint32! + + """ + ASN associated with the source IP of the packet, or 0 if there was no mapping available + """ + sourceAsn: uint32! + + """Name of ASN associated with the source IP of the packet, if available""" + sourceAsnName: string! + + """ + Country where the source IP of the packet is located (ISO 3166-1 alpha-2) + """ + sourceCountry: string! + + """ + Latitude and longitude where the source IP of the packet is located (Geohash encoding) + """ + sourceGeohash: string! + + """Value of the Source Port header field in the TCP or UDP packet""" + sourcePort: uint16! + + """Value of the Acknowledgement Number header field in the TCP packet""" + tcpAcknowledgementNumber: uint32! + + """Value of the Checkusm header field in the TCP packet""" + tcpChecksum: uint16! + + """Value of the Data Offset header field in the TCP packet""" + tcpDataOffset: uint16! + + """Value of the Flags header field in the TCP packet""" + tcpFlags: uint8! + + """ + Human-readable string representation of the Flags header field in the TCP packet + """ + tcpFlagsString: string! + + """Value of the MSS option header field in the TCP packet""" + tcpMss: uint16! + + """List of Options numbers included in the TCP packet header""" + tcpOptions: string! + + """Value of the SACK Blocks option header field in the TCP packet""" + tcpSackBlocks: string! + + """Value of the SACK Permitted option header field in the TCP packet""" + tcpSackPermitted: uint8! + + """Value of the Sequence Number header field in the TCP packet""" + tcpSequenceNumber: uint32! + + """ + Value of the Timestamp Echo Reply option header field in the TCP packet + """ + tcpTimestampEcr: uint32! + + """Value of the Timestamp option header field in the TCP packet""" + tcpTimestampValue: uint32! + + """Value of the Urgent Pointer header field in the TCP packet""" + tcpUrgentPointer: uint16! + + """Value of the Window Scale option header field in the TCP packet""" + tcpWindowScale: uint16! + + """Value of the Window Size header field in the TCP packet""" + tcpWindowSize: uint16! + + """ + Custom protocol or traffic type for Magic Wan and Magic Transit traffic - Unidirectional and Bidirectional Tunnel Health Check + """ + trafficType: string! + + """Value of the Checkusm header field in the UDP packet""" + udpChecksum: uint16! + + """Value of the Payload Length header field in the UDP packet""" + udpPayloadLength: uint16! +} + +"""""" +input AccountMagicTransitNetworkAnalyticsAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountMagicTransitNetworkAnalyticsAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountMagicTransitNetworkAnalyticsAdaptiveGroupsFilter_InputObject!] + + """""" + applicationTag: string + + """""" + applicationTag_geq: string + + """""" + applicationTag_gt: string + + """""" + applicationTag_in: [string!] + + """""" + applicationTag_leq: string + + """""" + applicationTag_like: string + + """""" + applicationTag_lt: string + + """""" + applicationTag_neq: string + + """""" + applicationTag_notin: [string!] + + """""" + applicationTag_notlike: string + + """""" + coloCity: string + + """""" + coloCity_geq: string + + """""" + coloCity_gt: string + + """""" + coloCity_in: [string!] + + """""" + coloCity_leq: string + + """""" + coloCity_like: string + + """""" + coloCity_lt: string + + """""" + coloCity_neq: string + + """""" + coloCity_notin: [string!] + + """""" + coloCity_notlike: string + + """""" + coloCode: string + + """""" + coloCode_geq: string + + """""" + coloCode_gt: string + + """""" + coloCode_in: [string!] + + """""" + coloCode_leq: string + + """""" + coloCode_like: string + + """""" + coloCode_lt: string + + """""" + coloCode_neq: string + + """""" + coloCode_notin: [string!] + + """""" + coloCode_notlike: string + + """""" + coloCountry: string + + """""" + coloCountry_geq: string + + """""" + coloCountry_gt: string + + """""" + coloCountry_in: [string!] + + """""" + coloCountry_leq: string + + """""" + coloCountry_like: string + + """""" + coloCountry_lt: string + + """""" + coloCountry_neq: string + + """""" + coloCountry_notin: [string!] + + """""" + coloCountry_notlike: string + + """""" + coloGeohash: string + + """""" + coloGeohash_geq: string + + """""" + coloGeohash_gt: string + + """""" + coloGeohash_in: [string!] + + """""" + coloGeohash_leq: string + + """""" + coloGeohash_like: string + + """""" + coloGeohash_lt: string + + """""" + coloGeohash_neq: string + + """""" + coloGeohash_notin: [string!] + + """""" + coloGeohash_notlike: string + + """""" + coloName: string + + """""" + coloName_geq: string + + """""" + coloName_gt: string + + """""" + coloName_in: [string!] + + """""" + coloName_leq: string + + """""" + coloName_like: string + + """""" + coloName_lt: string + + """""" + coloName_neq: string + + """""" + coloName_notin: [string!] + + """""" + coloName_notlike: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetimeTenSeconds: Time + + """""" + datetimeTenSeconds_geq: Time + + """""" + datetimeTenSeconds_gt: Time + + """""" + datetimeTenSeconds_in: [Time!] + + """""" + datetimeTenSeconds_leq: Time + + """""" + datetimeTenSeconds_lt: Time + + """""" + datetimeTenSeconds_neq: Time + + """""" + datetimeTenSeconds_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + destinationAsn: uint32 + + """""" + destinationAsnName: string + + """""" + destinationAsnName_geq: string + + """""" + destinationAsnName_gt: string + + """""" + destinationAsnName_in: [string!] + + """""" + destinationAsnName_leq: string + + """""" + destinationAsnName_like: string + + """""" + destinationAsnName_lt: string + + """""" + destinationAsnName_neq: string + + """""" + destinationAsnName_notin: [string!] + + """""" + destinationAsnName_notlike: string + + """""" + destinationAsn_geq: uint32 + + """""" + destinationAsn_gt: uint32 + + """""" + destinationAsn_in: [uint32!] + + """""" + destinationAsn_leq: uint32 + + """""" + destinationAsn_lt: uint32 + + """""" + destinationAsn_neq: uint32 + + """""" + destinationAsn_notin: [uint32!] + + """""" + destinationCountry: string + + """""" + destinationCountry_geq: string + + """""" + destinationCountry_gt: string + + """""" + destinationCountry_in: [string!] + + """""" + destinationCountry_leq: string + + """""" + destinationCountry_like: string + + """""" + destinationCountry_lt: string + + """""" + destinationCountry_neq: string + + """""" + destinationCountry_notin: [string!] + + """""" + destinationCountry_notlike: string + + """""" + destinationGeohash: string + + """""" + destinationGeohash_geq: string + + """""" + destinationGeohash_gt: string + + """""" + destinationGeohash_in: [string!] + + """""" + destinationGeohash_leq: string + + """""" + destinationGeohash_like: string + + """""" + destinationGeohash_lt: string + + """""" + destinationGeohash_neq: string + + """""" + destinationGeohash_notin: [string!] + + """""" + destinationGeohash_notlike: string + + """""" + destinationPort: uint16 + + """""" + destinationPort_geq: uint16 + + """""" + destinationPort_gt: uint16 + + """""" + destinationPort_in: [uint16!] + + """""" + destinationPort_leq: uint16 + + """""" + destinationPort_lt: uint16 + + """""" + destinationPort_neq: uint16 + + """""" + destinationPort_notin: [uint16!] + + """""" + direction: string + + """""" + direction_geq: string + + """""" + direction_gt: string + + """""" + direction_in: [string!] + + """""" + direction_leq: string + + """""" + direction_like: string + + """""" + direction_lt: string + + """""" + direction_neq: string + + """""" + direction_notin: [string!] + + """""" + direction_notlike: string + + """""" + egressTunnelID: string + + """""" + egressTunnelID_geq: string + + """""" + egressTunnelID_gt: string + + """""" + egressTunnelID_in: [string!] + + """""" + egressTunnelID_leq: string + + """""" + egressTunnelID_like: string + + """""" + egressTunnelID_lt: string + + """""" + egressTunnelID_neq: string + + """""" + egressTunnelID_notin: [string!] + + """""" + egressTunnelID_notlike: string + + """""" + egressTunnelName: string + + """""" + egressTunnelName_geq: string + + """""" + egressTunnelName_gt: string + + """""" + egressTunnelName_in: [string!] + + """""" + egressTunnelName_leq: string + + """""" + egressTunnelName_like: string + + """""" + egressTunnelName_lt: string + + """""" + egressTunnelName_neq: string + + """""" + egressTunnelName_notin: [string!] + + """""" + egressTunnelName_notlike: string + + """""" + ethertype: uint16 + + """""" + ethertype_geq: uint16 + + """""" + ethertype_gt: uint16 + + """""" + ethertype_in: [uint16!] + + """""" + ethertype_leq: uint16 + + """""" + ethertype_lt: uint16 + + """""" + ethertype_neq: uint16 + + """""" + ethertype_notin: [uint16!] + + """""" + greChecksum: uint16 + + """""" + greChecksum_geq: uint16 + + """""" + greChecksum_gt: uint16 + + """""" + greChecksum_in: [uint16!] + + """""" + greChecksum_leq: uint16 + + """""" + greChecksum_lt: uint16 + + """""" + greChecksum_neq: uint16 + + """""" + greChecksum_notin: [uint16!] + + """""" + greEthertype: uint16 + + """""" + greEthertype_geq: uint16 + + """""" + greEthertype_gt: uint16 + + """""" + greEthertype_in: [uint16!] + + """""" + greEthertype_leq: uint16 + + """""" + greEthertype_lt: uint16 + + """""" + greEthertype_neq: uint16 + + """""" + greEthertype_notin: [uint16!] + + """""" + greHeaderLength: uint16 + + """""" + greHeaderLength_geq: uint16 + + """""" + greHeaderLength_gt: uint16 + + """""" + greHeaderLength_in: [uint16!] + + """""" + greHeaderLength_leq: uint16 + + """""" + greHeaderLength_lt: uint16 + + """""" + greHeaderLength_neq: uint16 + + """""" + greHeaderLength_notin: [uint16!] + + """""" + greKey: uint32 + + """""" + greKey_geq: uint32 + + """""" + greKey_gt: uint32 + + """""" + greKey_in: [uint32!] + + """""" + greKey_leq: uint32 + + """""" + greKey_lt: uint32 + + """""" + greKey_neq: uint32 + + """""" + greKey_notin: [uint32!] + + """""" + greSequenceNumber: uint32 + + """""" + greSequenceNumber_geq: uint32 + + """""" + greSequenceNumber_gt: uint32 + + """""" + greSequenceNumber_in: [uint32!] + + """""" + greSequenceNumber_leq: uint32 + + """""" + greSequenceNumber_lt: uint32 + + """""" + greSequenceNumber_neq: uint32 + + """""" + greSequenceNumber_notin: [uint32!] + + """""" + greVersion: uint8 + + """""" + greVersion_geq: uint8 + + """""" + greVersion_gt: uint8 + + """""" + greVersion_in: bytes + + """""" + greVersion_leq: uint8 + + """""" + greVersion_lt: uint8 + + """""" + greVersion_neq: uint8 + + """""" + greVersion_notin: bytes + + """""" + icmpChecksum: uint16 + + """""" + icmpChecksum_geq: uint16 + + """""" + icmpChecksum_gt: uint16 + + """""" + icmpChecksum_in: [uint16!] + + """""" + icmpChecksum_leq: uint16 + + """""" + icmpChecksum_lt: uint16 + + """""" + icmpChecksum_neq: uint16 + + """""" + icmpChecksum_notin: [uint16!] + + """""" + icmpCode: uint8 + + """""" + icmpCode_geq: uint8 + + """""" + icmpCode_gt: uint8 + + """""" + icmpCode_in: bytes + + """""" + icmpCode_leq: uint8 + + """""" + icmpCode_lt: uint8 + + """""" + icmpCode_neq: uint8 + + """""" + icmpCode_notin: bytes + + """""" + icmpType: uint8 + + """""" + icmpType_geq: uint8 + + """""" + icmpType_gt: uint8 + + """""" + icmpType_in: bytes + + """""" + icmpType_leq: uint8 + + """""" + icmpType_lt: uint8 + + """""" + icmpType_neq: uint8 + + """""" + icmpType_notin: bytes + + """""" + ingressTunnelID: string + + """""" + ingressTunnelID_geq: string + + """""" + ingressTunnelID_gt: string + + """""" + ingressTunnelID_in: [string!] + + """""" + ingressTunnelID_leq: string + + """""" + ingressTunnelID_like: string + + """""" + ingressTunnelID_lt: string + + """""" + ingressTunnelID_neq: string + + """""" + ingressTunnelID_notin: [string!] + + """""" + ingressTunnelID_notlike: string + + """""" + ingressTunnelName: string + + """""" + ingressTunnelName_geq: string + + """""" + ingressTunnelName_gt: string + + """""" + ingressTunnelName_in: [string!] + + """""" + ingressTunnelName_leq: string + + """""" + ingressTunnelName_like: string + + """""" + ingressTunnelName_lt: string + + """""" + ingressTunnelName_neq: string + + """""" + ingressTunnelName_notin: [string!] + + """""" + ingressTunnelName_notlike: string + + """""" + ipDestinationAddress: string + + """""" + ipDestinationAddress_geq: string + + """""" + ipDestinationAddress_gt: string + + """""" + ipDestinationAddress_in: [string!] + + """""" + ipDestinationAddress_leq: string + + """""" + ipDestinationAddress_like: string + + """""" + ipDestinationAddress_lt: string + + """""" + ipDestinationAddress_neq: string + + """""" + ipDestinationAddress_notin: [string!] + + """""" + ipDestinationAddress_notlike: string + + """""" + ipDestinationSubnet: string + + """""" + ipDestinationSubnet_geq: string + + """""" + ipDestinationSubnet_gt: string + + """""" + ipDestinationSubnet_in: [string!] + + """""" + ipDestinationSubnet_leq: string + + """""" + ipDestinationSubnet_like: string + + """""" + ipDestinationSubnet_lt: string + + """""" + ipDestinationSubnet_neq: string + + """""" + ipDestinationSubnet_notin: [string!] + + """""" + ipDestinationSubnet_notlike: string + + """""" + ipFragmentOffset: uint16 + + """""" + ipFragmentOffset_geq: uint16 + + """""" + ipFragmentOffset_gt: uint16 + + """""" + ipFragmentOffset_in: [uint16!] + + """""" + ipFragmentOffset_leq: uint16 + + """""" + ipFragmentOffset_lt: uint16 + + """""" + ipFragmentOffset_neq: uint16 + + """""" + ipFragmentOffset_notin: [uint16!] + + """""" + ipHeaderLength: uint16 + + """""" + ipHeaderLength_geq: uint16 + + """""" + ipHeaderLength_gt: uint16 + + """""" + ipHeaderLength_in: [uint16!] + + """""" + ipHeaderLength_leq: uint16 + + """""" + ipHeaderLength_lt: uint16 + + """""" + ipHeaderLength_neq: uint16 + + """""" + ipHeaderLength_notin: [uint16!] + + """""" + ipMoreFragments: uint8 + + """""" + ipMoreFragments_geq: uint8 + + """""" + ipMoreFragments_gt: uint8 + + """""" + ipMoreFragments_in: bytes + + """""" + ipMoreFragments_leq: uint8 + + """""" + ipMoreFragments_lt: uint8 + + """""" + ipMoreFragments_neq: uint8 + + """""" + ipMoreFragments_notin: bytes + + """""" + ipProtocol: uint8 + + """""" + ipProtocolName: string + + """""" + ipProtocolName_geq: string + + """""" + ipProtocolName_gt: string + + """""" + ipProtocolName_in: [string!] + + """""" + ipProtocolName_leq: string + + """""" + ipProtocolName_like: string + + """""" + ipProtocolName_lt: string + + """""" + ipProtocolName_neq: string + + """""" + ipProtocolName_notin: [string!] + + """""" + ipProtocolName_notlike: string + + """""" + ipProtocol_geq: uint8 + + """""" + ipProtocol_gt: uint8 + + """""" + ipProtocol_in: bytes + + """""" + ipProtocol_leq: uint8 + + """""" + ipProtocol_lt: uint8 + + """""" + ipProtocol_neq: uint8 + + """""" + ipProtocol_notin: bytes + + """""" + ipSourceAddress: string + + """""" + ipSourceAddress_geq: string + + """""" + ipSourceAddress_gt: string + + """""" + ipSourceAddress_in: [string!] + + """""" + ipSourceAddress_leq: string + + """""" + ipSourceAddress_like: string + + """""" + ipSourceAddress_lt: string + + """""" + ipSourceAddress_neq: string + + """""" + ipSourceAddress_notin: [string!] + + """""" + ipSourceAddress_notlike: string + + """""" + ipSourceSubnet: string + + """""" + ipSourceSubnet_geq: string + + """""" + ipSourceSubnet_gt: string + + """""" + ipSourceSubnet_in: [string!] + + """""" + ipSourceSubnet_leq: string + + """""" + ipSourceSubnet_like: string + + """""" + ipSourceSubnet_lt: string + + """""" + ipSourceSubnet_neq: string + + """""" + ipSourceSubnet_notin: [string!] + + """""" + ipSourceSubnet_notlike: string + + """""" + ipTotalLength: uint16 + + """""" + ipTotalLengthBuckets: uint16 + + """""" + ipTotalLengthBuckets_geq: uint16 + + """""" + ipTotalLengthBuckets_gt: uint16 + + """""" + ipTotalLengthBuckets_in: [uint16!] + + """""" + ipTotalLengthBuckets_leq: uint16 + + """""" + ipTotalLengthBuckets_lt: uint16 + + """""" + ipTotalLengthBuckets_neq: uint16 + + """""" + ipTotalLengthBuckets_notin: [uint16!] + + """""" + ipTotalLength_geq: uint16 + + """""" + ipTotalLength_gt: uint16 + + """""" + ipTotalLength_in: [uint16!] + + """""" + ipTotalLength_leq: uint16 + + """""" + ipTotalLength_lt: uint16 + + """""" + ipTotalLength_neq: uint16 + + """""" + ipTotalLength_notin: [uint16!] + + """""" + ipTtl: uint8 + + """""" + ipTtlBuckets: uint8 + + """""" + ipTtlBuckets_geq: uint8 + + """""" + ipTtlBuckets_gt: uint8 + + """""" + ipTtlBuckets_in: bytes + + """""" + ipTtlBuckets_leq: uint8 + + """""" + ipTtlBuckets_lt: uint8 + + """""" + ipTtlBuckets_neq: uint8 + + """""" + ipTtlBuckets_notin: bytes + + """""" + ipTtl_geq: uint8 + + """""" + ipTtl_gt: uint8 + + """""" + ipTtl_in: bytes + + """""" + ipTtl_leq: uint8 + + """""" + ipTtl_lt: uint8 + + """""" + ipTtl_neq: uint8 + + """""" + ipTtl_notin: bytes + + """""" + ipv4Checksum: uint16 + + """""" + ipv4Checksum_geq: uint16 + + """""" + ipv4Checksum_gt: uint16 + + """""" + ipv4Checksum_in: [uint16!] + + """""" + ipv4Checksum_leq: uint16 + + """""" + ipv4Checksum_lt: uint16 + + """""" + ipv4Checksum_neq: uint16 + + """""" + ipv4Checksum_notin: [uint16!] + + """""" + ipv4DontFragment: uint8 + + """""" + ipv4DontFragment_geq: uint8 + + """""" + ipv4DontFragment_gt: uint8 + + """""" + ipv4DontFragment_in: bytes + + """""" + ipv4DontFragment_leq: uint8 + + """""" + ipv4DontFragment_lt: uint8 + + """""" + ipv4DontFragment_neq: uint8 + + """""" + ipv4DontFragment_notin: bytes + + """""" + ipv4Dscp: uint8 + + """""" + ipv4Dscp_geq: uint8 + + """""" + ipv4Dscp_gt: uint8 + + """""" + ipv4Dscp_in: bytes + + """""" + ipv4Dscp_leq: uint8 + + """""" + ipv4Dscp_lt: uint8 + + """""" + ipv4Dscp_neq: uint8 + + """""" + ipv4Dscp_notin: bytes + + """""" + ipv4Ecn: uint8 + + """""" + ipv4Ecn_geq: uint8 + + """""" + ipv4Ecn_gt: uint8 + + """""" + ipv4Ecn_in: bytes + + """""" + ipv4Ecn_leq: uint8 + + """""" + ipv4Ecn_lt: uint8 + + """""" + ipv4Ecn_neq: uint8 + + """""" + ipv4Ecn_notin: bytes + + """""" + ipv4Identification: uint16 + + """""" + ipv4Identification_geq: uint16 + + """""" + ipv4Identification_gt: uint16 + + """""" + ipv4Identification_in: [uint16!] + + """""" + ipv4Identification_leq: uint16 + + """""" + ipv4Identification_lt: uint16 + + """""" + ipv4Identification_neq: uint16 + + """""" + ipv4Identification_notin: [uint16!] + + """""" + ipv4Options: string + + """""" + ipv4Options_geq: string + + """""" + ipv4Options_gt: string + + """""" + ipv4Options_in: [string!] + + """""" + ipv4Options_leq: string + + """""" + ipv4Options_like: string + + """""" + ipv4Options_lt: string + + """""" + ipv4Options_neq: string + + """""" + ipv4Options_notin: [string!] + + """""" + ipv4Options_notlike: string + + """""" + ipv6Dscp: uint8 + + """""" + ipv6Dscp_geq: uint8 + + """""" + ipv6Dscp_gt: uint8 + + """""" + ipv6Dscp_in: bytes + + """""" + ipv6Dscp_leq: uint8 + + """""" + ipv6Dscp_lt: uint8 + + """""" + ipv6Dscp_neq: uint8 + + """""" + ipv6Dscp_notin: bytes + + """""" + ipv6Ecn: uint8 + + """""" + ipv6Ecn_geq: uint8 + + """""" + ipv6Ecn_gt: uint8 + + """""" + ipv6Ecn_in: bytes + + """""" + ipv6Ecn_leq: uint8 + + """""" + ipv6Ecn_lt: uint8 + + """""" + ipv6Ecn_neq: uint8 + + """""" + ipv6Ecn_notin: bytes + + """""" + ipv6ExtensionHeaders: string + + """""" + ipv6ExtensionHeaders_geq: string + + """""" + ipv6ExtensionHeaders_gt: string + + """""" + ipv6ExtensionHeaders_in: [string!] + + """""" + ipv6ExtensionHeaders_leq: string + + """""" + ipv6ExtensionHeaders_like: string + + """""" + ipv6ExtensionHeaders_lt: string + + """""" + ipv6ExtensionHeaders_neq: string + + """""" + ipv6ExtensionHeaders_notin: [string!] + + """""" + ipv6ExtensionHeaders_notlike: string + + """""" + ipv6FlowLabel: uint32 + + """""" + ipv6FlowLabel_geq: uint32 + + """""" + ipv6FlowLabel_gt: uint32 + + """""" + ipv6FlowLabel_in: [uint32!] + + """""" + ipv6FlowLabel_leq: uint32 + + """""" + ipv6FlowLabel_lt: uint32 + + """""" + ipv6FlowLabel_neq: uint32 + + """""" + ipv6FlowLabel_notin: [uint32!] + + """""" + ipv6Identification: uint32 + + """""" + ipv6Identification_geq: uint32 + + """""" + ipv6Identification_gt: uint32 + + """""" + ipv6Identification_in: [uint32!] + + """""" + ipv6Identification_leq: uint32 + + """""" + ipv6Identification_lt: uint32 + + """""" + ipv6Identification_neq: uint32 + + """""" + ipv6Identification_notin: [uint32!] + + """""" + leaseTag: string + + """""" + leaseTag_geq: string + + """""" + leaseTag_gt: string + + """""" + leaseTag_in: [string!] + + """""" + leaseTag_leq: string + + """""" + leaseTag_like: string + + """""" + leaseTag_lt: string + + """""" + leaseTag_neq: string + + """""" + leaseTag_notin: [string!] + + """""" + leaseTag_notlike: string + + """""" + mitigationSystem: string + + """""" + mitigationSystem_geq: string + + """""" + mitigationSystem_gt: string + + """""" + mitigationSystem_in: [string!] + + """""" + mitigationSystem_leq: string + + """""" + mitigationSystem_like: string + + """""" + mitigationSystem_lt: string + + """""" + mitigationSystem_neq: string + + """""" + mitigationSystem_notin: [string!] + + """""" + mitigationSystem_notlike: string + + """""" + offRamp: string + + """""" + offRamp_geq: string + + """""" + offRamp_gt: string + + """""" + offRamp_in: [string!] + + """""" + offRamp_leq: string + + """""" + offRamp_like: string + + """""" + offRamp_lt: string + + """""" + offRamp_neq: string + + """""" + offRamp_notin: [string!] + + """""" + offRamp_notlike: string + + """""" + onRamp: string + + """""" + onRamp_geq: string + + """""" + onRamp_gt: string + + """""" + onRamp_in: [string!] + + """""" + onRamp_leq: string + + """""" + onRamp_like: string + + """""" + onRamp_lt: string + + """""" + onRamp_neq: string + + """""" + onRamp_notin: [string!] + + """""" + onRamp_notlike: string + + """""" + outcome: string + + """""" + outcome_geq: string + + """""" + outcome_gt: string + + """""" + outcome_in: [string!] + + """""" + outcome_leq: string + + """""" + outcome_like: string + + """""" + outcome_lt: string + + """""" + outcome_neq: string + + """""" + outcome_notin: [string!] + + """""" + outcome_notlike: string + + """""" + prefixTag: string + + """""" + prefixTag_geq: string + + """""" + prefixTag_gt: string + + """""" + prefixTag_in: [string!] + + """""" + prefixTag_leq: string + + """""" + prefixTag_like: string + + """""" + prefixTag_lt: string + + """""" + prefixTag_neq: string + + """""" + prefixTag_notin: [string!] + + """""" + prefixTag_notlike: string + + """""" + sampleInterval: uint32 + + """""" + sampleInterval_geq: uint32 + + """""" + sampleInterval_gt: uint32 + + """""" + sampleInterval_in: [uint32!] + + """""" + sampleInterval_leq: uint32 + + """""" + sampleInterval_lt: uint32 + + """""" + sampleInterval_neq: uint32 + + """""" + sampleInterval_notin: [uint32!] + + """""" + sourceAsn: uint32 + + """""" + sourceAsnName: string + + """""" + sourceAsnName_geq: string + + """""" + sourceAsnName_gt: string + + """""" + sourceAsnName_in: [string!] + + """""" + sourceAsnName_leq: string + + """""" + sourceAsnName_like: string + + """""" + sourceAsnName_lt: string + + """""" + sourceAsnName_neq: string + + """""" + sourceAsnName_notin: [string!] + + """""" + sourceAsnName_notlike: string + + """""" + sourceAsn_geq: uint32 + + """""" + sourceAsn_gt: uint32 + + """""" + sourceAsn_in: [uint32!] + + """""" + sourceAsn_leq: uint32 + + """""" + sourceAsn_lt: uint32 + + """""" + sourceAsn_neq: uint32 + + """""" + sourceAsn_notin: [uint32!] + + """""" + sourceCountry: string + + """""" + sourceCountry_geq: string + + """""" + sourceCountry_gt: string + + """""" + sourceCountry_in: [string!] + + """""" + sourceCountry_leq: string + + """""" + sourceCountry_like: string + + """""" + sourceCountry_lt: string + + """""" + sourceCountry_neq: string + + """""" + sourceCountry_notin: [string!] + + """""" + sourceCountry_notlike: string + + """""" + sourceGeohash: string + + """""" + sourceGeohash_geq: string + + """""" + sourceGeohash_gt: string + + """""" + sourceGeohash_in: [string!] + + """""" + sourceGeohash_leq: string + + """""" + sourceGeohash_like: string + + """""" + sourceGeohash_lt: string + + """""" + sourceGeohash_neq: string + + """""" + sourceGeohash_notin: [string!] + + """""" + sourceGeohash_notlike: string + + """""" + sourcePort: uint16 + + """""" + sourcePort_geq: uint16 + + """""" + sourcePort_gt: uint16 + + """""" + sourcePort_in: [uint16!] + + """""" + sourcePort_leq: uint16 + + """""" + sourcePort_lt: uint16 + + """""" + sourcePort_neq: uint16 + + """""" + sourcePort_notin: [uint16!] + + """""" + tcpAcknowledgementNumber: uint32 + + """""" + tcpAcknowledgementNumber_geq: uint32 + + """""" + tcpAcknowledgementNumber_gt: uint32 + + """""" + tcpAcknowledgementNumber_in: [uint32!] + + """""" + tcpAcknowledgementNumber_leq: uint32 + + """""" + tcpAcknowledgementNumber_lt: uint32 + + """""" + tcpAcknowledgementNumber_neq: uint32 + + """""" + tcpAcknowledgementNumber_notin: [uint32!] + + """""" + tcpChecksum: uint16 + + """""" + tcpChecksum_geq: uint16 + + """""" + tcpChecksum_gt: uint16 + + """""" + tcpChecksum_in: [uint16!] + + """""" + tcpChecksum_leq: uint16 + + """""" + tcpChecksum_lt: uint16 + + """""" + tcpChecksum_neq: uint16 + + """""" + tcpChecksum_notin: [uint16!] + + """""" + tcpDataOffset: uint16 + + """""" + tcpDataOffset_geq: uint16 + + """""" + tcpDataOffset_gt: uint16 + + """""" + tcpDataOffset_in: [uint16!] + + """""" + tcpDataOffset_leq: uint16 + + """""" + tcpDataOffset_lt: uint16 + + """""" + tcpDataOffset_neq: uint16 + + """""" + tcpDataOffset_notin: [uint16!] + + """""" + tcpFlags: uint8 + + """""" + tcpFlagsString: string + + """""" + tcpFlagsString_geq: string + + """""" + tcpFlagsString_gt: string + + """""" + tcpFlagsString_in: [string!] + + """""" + tcpFlagsString_leq: string + + """""" + tcpFlagsString_like: string + + """""" + tcpFlagsString_lt: string + + """""" + tcpFlagsString_neq: string + + """""" + tcpFlagsString_notin: [string!] + + """""" + tcpFlagsString_notlike: string + + """""" + tcpFlags_geq: uint8 + + """""" + tcpFlags_gt: uint8 + + """""" + tcpFlags_in: bytes + + """""" + tcpFlags_leq: uint8 + + """""" + tcpFlags_lt: uint8 + + """""" + tcpFlags_neq: uint8 + + """""" + tcpFlags_notin: bytes + + """""" + tcpMss: uint16 + + """""" + tcpMss_geq: uint16 + + """""" + tcpMss_gt: uint16 + + """""" + tcpMss_in: [uint16!] + + """""" + tcpMss_leq: uint16 + + """""" + tcpMss_lt: uint16 + + """""" + tcpMss_neq: uint16 + + """""" + tcpMss_notin: [uint16!] + + """""" + tcpOptions: string + + """""" + tcpOptions_geq: string + + """""" + tcpOptions_gt: string + + """""" + tcpOptions_in: [string!] + + """""" + tcpOptions_leq: string + + """""" + tcpOptions_like: string + + """""" + tcpOptions_lt: string + + """""" + tcpOptions_neq: string + + """""" + tcpOptions_notin: [string!] + + """""" + tcpOptions_notlike: string + + """""" + tcpSackBlocks: string + + """""" + tcpSackBlocks_geq: string + + """""" + tcpSackBlocks_gt: string + + """""" + tcpSackBlocks_in: [string!] + + """""" + tcpSackBlocks_leq: string + + """""" + tcpSackBlocks_like: string + + """""" + tcpSackBlocks_lt: string + + """""" + tcpSackBlocks_neq: string + + """""" + tcpSackBlocks_notin: [string!] + + """""" + tcpSackBlocks_notlike: string + + """""" + tcpSackPermitted: uint8 + + """""" + tcpSackPermitted_geq: uint8 + + """""" + tcpSackPermitted_gt: uint8 + + """""" + tcpSackPermitted_in: bytes + + """""" + tcpSackPermitted_leq: uint8 + + """""" + tcpSackPermitted_lt: uint8 + + """""" + tcpSackPermitted_neq: uint8 + + """""" + tcpSackPermitted_notin: bytes + + """""" + tcpSequenceNumber: uint32 + + """""" + tcpSequenceNumber_geq: uint32 + + """""" + tcpSequenceNumber_gt: uint32 + + """""" + tcpSequenceNumber_in: [uint32!] + + """""" + tcpSequenceNumber_leq: uint32 + + """""" + tcpSequenceNumber_lt: uint32 + + """""" + tcpSequenceNumber_neq: uint32 + + """""" + tcpSequenceNumber_notin: [uint32!] + + """""" + tcpTimestampEcr: uint32 + + """""" + tcpTimestampEcr_geq: uint32 + + """""" + tcpTimestampEcr_gt: uint32 + + """""" + tcpTimestampEcr_in: [uint32!] + + """""" + tcpTimestampEcr_leq: uint32 + + """""" + tcpTimestampEcr_lt: uint32 + + """""" + tcpTimestampEcr_neq: uint32 + + """""" + tcpTimestampEcr_notin: [uint32!] + + """""" + tcpTimestampValue: uint32 + + """""" + tcpTimestampValue_geq: uint32 + + """""" + tcpTimestampValue_gt: uint32 + + """""" + tcpTimestampValue_in: [uint32!] + + """""" + tcpTimestampValue_leq: uint32 + + """""" + tcpTimestampValue_lt: uint32 + + """""" + tcpTimestampValue_neq: uint32 + + """""" + tcpTimestampValue_notin: [uint32!] + + """""" + tcpUrgentPointer: uint16 + + """""" + tcpUrgentPointer_geq: uint16 + + """""" + tcpUrgentPointer_gt: uint16 + + """""" + tcpUrgentPointer_in: [uint16!] + + """""" + tcpUrgentPointer_leq: uint16 + + """""" + tcpUrgentPointer_lt: uint16 + + """""" + tcpUrgentPointer_neq: uint16 + + """""" + tcpUrgentPointer_notin: [uint16!] + + """""" + tcpWindowScale: uint16 + + """""" + tcpWindowScale_geq: uint16 + + """""" + tcpWindowScale_gt: uint16 + + """""" + tcpWindowScale_in: [uint16!] + + """""" + tcpWindowScale_leq: uint16 + + """""" + tcpWindowScale_lt: uint16 + + """""" + tcpWindowScale_neq: uint16 + + """""" + tcpWindowScale_notin: [uint16!] + + """""" + tcpWindowSize: uint16 + + """""" + tcpWindowSize_geq: uint16 + + """""" + tcpWindowSize_gt: uint16 + + """""" + tcpWindowSize_in: [uint16!] + + """""" + tcpWindowSize_leq: uint16 + + """""" + tcpWindowSize_lt: uint16 + + """""" + tcpWindowSize_neq: uint16 + + """""" + tcpWindowSize_notin: [uint16!] + + """""" + trafficType: string + + """""" + trafficType_geq: string + + """""" + trafficType_gt: string + + """""" + trafficType_in: [string!] + + """""" + trafficType_leq: string + + """""" + trafficType_like: string + + """""" + trafficType_lt: string + + """""" + trafficType_neq: string + + """""" + trafficType_notin: [string!] + + """""" + trafficType_notlike: string + + """""" + udpChecksum: uint16 + + """""" + udpChecksum_geq: uint16 + + """""" + udpChecksum_gt: uint16 + + """""" + udpChecksum_in: [uint16!] + + """""" + udpChecksum_leq: uint16 + + """""" + udpChecksum_lt: uint16 + + """""" + udpChecksum_neq: uint16 + + """""" + udpChecksum_notin: [uint16!] + + """""" + udpPayloadLength: uint16 + + """""" + udpPayloadLength_geq: uint16 + + """""" + udpPayloadLength_gt: uint16 + + """""" + udpPayloadLength_in: [uint16!] + + """""" + udpPayloadLength_leq: uint16 + + """""" + udpPayloadLength_lt: uint16 + + """""" + udpPayloadLength_neq: uint16 + + """""" + udpPayloadLength_notin: [uint16!] +} + +"""""" +enum AccountMagicTransitNetworkAnalyticsAdaptiveGroupsOrderBy { + """applicationTag ascending""" + applicationTag_ASC + + """applicationTag descending""" + applicationTag_DESC + + """avg(bitRateDay) ascending""" + avg_bitRateDay_ASC + + """avg(bitRateDay) descending""" + avg_bitRateDay_DESC + + """avg(bitRateFifteenMinutes) ascending""" + avg_bitRateFifteenMinutes_ASC + + """avg(bitRateFifteenMinutes) descending""" + avg_bitRateFifteenMinutes_DESC + + """avg(bitRateFiveMinutes) ascending""" + avg_bitRateFiveMinutes_ASC + + """avg(bitRateFiveMinutes) descending""" + avg_bitRateFiveMinutes_DESC + + """avg(bitRateHour) ascending""" + avg_bitRateHour_ASC + + """avg(bitRateHour) descending""" + avg_bitRateHour_DESC + + """avg(bitRateMinute) ascending""" + avg_bitRateMinute_ASC + + """avg(bitRateMinute) descending""" + avg_bitRateMinute_DESC + + """avg(bitRateTenSeconds) ascending""" + avg_bitRateTenSeconds_ASC + + """avg(bitRateTenSeconds) descending""" + avg_bitRateTenSeconds_DESC + + """avg(bitRate) ascending""" + avg_bitRate_ASC + + """avg(bitRate) descending""" + avg_bitRate_DESC + + """avg(packetRateDay) ascending""" + avg_packetRateDay_ASC + + """avg(packetRateDay) descending""" + avg_packetRateDay_DESC + + """avg(packetRateFifteenMinutes) ascending""" + avg_packetRateFifteenMinutes_ASC + + """avg(packetRateFifteenMinutes) descending""" + avg_packetRateFifteenMinutes_DESC + + """avg(packetRateFiveMinutes) ascending""" + avg_packetRateFiveMinutes_ASC + + """avg(packetRateFiveMinutes) descending""" + avg_packetRateFiveMinutes_DESC + + """avg(packetRateHour) ascending""" + avg_packetRateHour_ASC + + """avg(packetRateHour) descending""" + avg_packetRateHour_DESC + + """avg(packetRateMinute) ascending""" + avg_packetRateMinute_ASC + + """avg(packetRateMinute) descending""" + avg_packetRateMinute_DESC + + """avg(packetRateTenSeconds) ascending""" + avg_packetRateTenSeconds_ASC + + """avg(packetRateTenSeconds) descending""" + avg_packetRateTenSeconds_DESC + + """avg(packetRate) ascending""" + avg_packetRate_ASC + + """avg(packetRate) descending""" + avg_packetRate_DESC + + """coloCity ascending""" + coloCity_ASC + + """coloCity descending""" + coloCity_DESC + + """coloCode ascending""" + coloCode_ASC + + """coloCode descending""" + coloCode_DESC + + """coloCountry ascending""" + coloCountry_ASC + + """coloCountry descending""" + coloCountry_DESC + + """coloGeohash ascending""" + coloGeohash_ASC + + """coloGeohash descending""" + coloGeohash_DESC + + """coloName ascending""" + coloName_ASC + + """coloName descending""" + coloName_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetimeTenSeconds ascending""" + datetimeTenSeconds_ASC + + """datetimeTenSeconds descending""" + datetimeTenSeconds_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """destinationAsnName ascending""" + destinationAsnName_ASC + + """destinationAsnName descending""" + destinationAsnName_DESC + + """destinationAsn ascending""" + destinationAsn_ASC + + """destinationAsn descending""" + destinationAsn_DESC + + """destinationCountry ascending""" + destinationCountry_ASC + + """destinationCountry descending""" + destinationCountry_DESC + + """destinationGeohash ascending""" + destinationGeohash_ASC + + """destinationGeohash descending""" + destinationGeohash_DESC + + """destinationPort ascending""" + destinationPort_ASC + + """destinationPort descending""" + destinationPort_DESC + + """destinationService ascending""" + destinationService_ASC + + """destinationService descending""" + destinationService_DESC + + """direction ascending""" + direction_ASC + + """direction descending""" + direction_DESC + + """egressTunnelID ascending""" + egressTunnelID_ASC + + """egressTunnelID descending""" + egressTunnelID_DESC + + """egressTunnelName ascending""" + egressTunnelName_ASC + + """egressTunnelName descending""" + egressTunnelName_DESC + + """ethertype ascending""" + ethertype_ASC + + """ethertype descending""" + ethertype_DESC + + """greChecksum ascending""" + greChecksum_ASC + + """greChecksum descending""" + greChecksum_DESC + + """greEthertype ascending""" + greEthertype_ASC + + """greEthertype descending""" + greEthertype_DESC + + """greHeaderLength ascending""" + greHeaderLength_ASC + + """greHeaderLength descending""" + greHeaderLength_DESC + + """greKey ascending""" + greKey_ASC + + """greKey descending""" + greKey_DESC + + """greSequenceNumber ascending""" + greSequenceNumber_ASC + + """greSequenceNumber descending""" + greSequenceNumber_DESC + + """greVersion ascending""" + greVersion_ASC + + """greVersion descending""" + greVersion_DESC + + """icmpChecksum ascending""" + icmpChecksum_ASC + + """icmpChecksum descending""" + icmpChecksum_DESC + + """icmpCode ascending""" + icmpCode_ASC + + """icmpCode descending""" + icmpCode_DESC + + """icmpType ascending""" + icmpType_ASC + + """icmpType descending""" + icmpType_DESC + + """ingressTunnelID ascending""" + ingressTunnelID_ASC + + """ingressTunnelID descending""" + ingressTunnelID_DESC + + """ingressTunnelName ascending""" + ingressTunnelName_ASC + + """ingressTunnelName descending""" + ingressTunnelName_DESC + + """ipDestinationAddress ascending""" + ipDestinationAddress_ASC + + """ipDestinationAddress descending""" + ipDestinationAddress_DESC + + """ipDestinationSubnet ascending""" + ipDestinationSubnet_ASC + + """ipDestinationSubnet descending""" + ipDestinationSubnet_DESC + + """ipFragmentOffset ascending""" + ipFragmentOffset_ASC + + """ipFragmentOffset descending""" + ipFragmentOffset_DESC + + """ipHeaderLength ascending""" + ipHeaderLength_ASC + + """ipHeaderLength descending""" + ipHeaderLength_DESC + + """ipMoreFragments ascending""" + ipMoreFragments_ASC + + """ipMoreFragments descending""" + ipMoreFragments_DESC + + """ipProtocolName ascending""" + ipProtocolName_ASC + + """ipProtocolName descending""" + ipProtocolName_DESC + + """ipProtocol ascending""" + ipProtocol_ASC + + """ipProtocol descending""" + ipProtocol_DESC + + """ipSourceAddress ascending""" + ipSourceAddress_ASC + + """ipSourceAddress descending""" + ipSourceAddress_DESC + + """ipSourceSubnet ascending""" + ipSourceSubnet_ASC + + """ipSourceSubnet descending""" + ipSourceSubnet_DESC + + """ipTotalLengthBuckets ascending""" + ipTotalLengthBuckets_ASC + + """ipTotalLengthBuckets descending""" + ipTotalLengthBuckets_DESC + + """ipTotalLength ascending""" + ipTotalLength_ASC + + """ipTotalLength descending""" + ipTotalLength_DESC + + """ipTtlBuckets ascending""" + ipTtlBuckets_ASC + + """ipTtlBuckets descending""" + ipTtlBuckets_DESC + + """ipTtl ascending""" + ipTtl_ASC + + """ipTtl descending""" + ipTtl_DESC + + """ipv4Checksum ascending""" + ipv4Checksum_ASC + + """ipv4Checksum descending""" + ipv4Checksum_DESC + + """ipv4DontFragment ascending""" + ipv4DontFragment_ASC + + """ipv4DontFragment descending""" + ipv4DontFragment_DESC + + """ipv4Dscp ascending""" + ipv4Dscp_ASC + + """ipv4Dscp descending""" + ipv4Dscp_DESC + + """ipv4Ecn ascending""" + ipv4Ecn_ASC + + """ipv4Ecn descending""" + ipv4Ecn_DESC + + """ipv4Identification ascending""" + ipv4Identification_ASC + + """ipv4Identification descending""" + ipv4Identification_DESC + + """ipv4Options ascending""" + ipv4Options_ASC + + """ipv4Options descending""" + ipv4Options_DESC + + """ipv6Dscp ascending""" + ipv6Dscp_ASC + + """ipv6Dscp descending""" + ipv6Dscp_DESC + + """ipv6Ecn ascending""" + ipv6Ecn_ASC + + """ipv6Ecn descending""" + ipv6Ecn_DESC + + """ipv6ExtensionHeaders ascending""" + ipv6ExtensionHeaders_ASC + + """ipv6ExtensionHeaders descending""" + ipv6ExtensionHeaders_DESC + + """ipv6FlowLabel ascending""" + ipv6FlowLabel_ASC + + """ipv6FlowLabel descending""" + ipv6FlowLabel_DESC + + """ipv6Identification ascending""" + ipv6Identification_ASC + + """ipv6Identification descending""" + ipv6Identification_DESC + + """leaseTag ascending""" + leaseTag_ASC + + """leaseTag descending""" + leaseTag_DESC + + """mitigationSystem ascending""" + mitigationSystem_ASC + + """mitigationSystem descending""" + mitigationSystem_DESC + + """offRamp ascending""" + offRamp_ASC + + """offRamp descending""" + offRamp_DESC + + """onRamp ascending""" + onRamp_ASC + + """onRamp descending""" + onRamp_DESC + + """outcome ascending""" + outcome_ASC + + """outcome descending""" + outcome_DESC + + """prefixTag ascending""" + prefixTag_ASC + + """prefixTag descending""" + prefixTag_DESC + + """sampleInterval ascending""" + sampleInterval_ASC + + """sampleInterval descending""" + sampleInterval_DESC + + """sourceAsnName ascending""" + sourceAsnName_ASC + + """sourceAsnName descending""" + sourceAsnName_DESC + + """sourceAsn ascending""" + sourceAsn_ASC + + """sourceAsn descending""" + sourceAsn_DESC + + """sourceCountry ascending""" + sourceCountry_ASC + + """sourceCountry descending""" + sourceCountry_DESC + + """sourceGeohash ascending""" + sourceGeohash_ASC + + """sourceGeohash descending""" + sourceGeohash_DESC + + """sourcePort ascending""" + sourcePort_ASC + + """sourcePort descending""" + sourcePort_DESC + + """sourceService ascending""" + sourceService_ASC + + """sourceService descending""" + sourceService_DESC + + """sum(bits) ascending""" + sum_bits_ASC + + """sum(bits) descending""" + sum_bits_DESC + + """sum(packets) ascending""" + sum_packets_ASC + + """sum(packets) descending""" + sum_packets_DESC + + """system ascending""" + system_ASC + + """system descending""" + system_DESC + + """tcpAcknowledgementNumber ascending""" + tcpAcknowledgementNumber_ASC + + """tcpAcknowledgementNumber descending""" + tcpAcknowledgementNumber_DESC + + """tcpChecksum ascending""" + tcpChecksum_ASC + + """tcpChecksum descending""" + tcpChecksum_DESC + + """tcpDataOffset ascending""" + tcpDataOffset_ASC + + """tcpDataOffset descending""" + tcpDataOffset_DESC + + """tcpFlagsString ascending""" + tcpFlagsString_ASC + + """tcpFlagsString descending""" + tcpFlagsString_DESC + + """tcpFlags ascending""" + tcpFlags_ASC + + """tcpFlags descending""" + tcpFlags_DESC + + """tcpMss ascending""" + tcpMss_ASC + + """tcpMss descending""" + tcpMss_DESC + + """tcpOptions ascending""" + tcpOptions_ASC + + """tcpOptions descending""" + tcpOptions_DESC + + """tcpSackBlocks ascending""" + tcpSackBlocks_ASC + + """tcpSackBlocks descending""" + tcpSackBlocks_DESC + + """tcpSackPermitted ascending""" + tcpSackPermitted_ASC + + """tcpSackPermitted descending""" + tcpSackPermitted_DESC + + """tcpSequenceNumber ascending""" + tcpSequenceNumber_ASC + + """tcpSequenceNumber descending""" + tcpSequenceNumber_DESC + + """tcpTimestampEcr ascending""" + tcpTimestampEcr_ASC + + """tcpTimestampEcr descending""" + tcpTimestampEcr_DESC + + """tcpTimestampValue ascending""" + tcpTimestampValue_ASC + + """tcpTimestampValue descending""" + tcpTimestampValue_DESC + + """tcpUrgentPointer ascending""" + tcpUrgentPointer_ASC + + """tcpUrgentPointer descending""" + tcpUrgentPointer_DESC + + """tcpWindowScale ascending""" + tcpWindowScale_ASC + + """tcpWindowScale descending""" + tcpWindowScale_DESC + + """tcpWindowSize ascending""" + tcpWindowSize_ASC + + """tcpWindowSize descending""" + tcpWindowSize_DESC + + """trafficType ascending""" + trafficType_ASC + + """trafficType descending""" + trafficType_DESC + + """udpChecksum ascending""" + udpChecksum_ASC + + """udpChecksum descending""" + udpChecksum_DESC + + """udpPayloadLength ascending""" + udpPayloadLength_ASC + + """udpPayloadLength descending""" + udpPayloadLength_DESC + + """verdict ascending""" + verdict_ASC + + """verdict descending""" + verdict_DESC + + """visibility ascending""" + visibility_ASC + + """visibility descending""" + visibility_DESC +} + +"""""" +type AccountMagicTransitNetworkAnalyticsAdaptiveGroupsSum { + """Sum of bits received""" + bits: uint64! + + """Sum of packets received""" + packets: uint64! +} + +"""""" +type AccountMagicTransitNetworkAnalyticsAdaptiveGroupsSumConfidence { + """Confidence interval for the corresponding point estimate""" + bits: Confidence! + + """Confidence interval for the corresponding point estimate""" + packets: Confidence! +} + +"""Magic Transit Tunnel Health Check SLO events with adaptive sampling.""" +type AccountMagicTransitTunnelHealthCheckSLOsAdaptiveGroups { + """The average value for a metric per dimension""" + avg: AccountMagicTransitTunnelHealthCheckSLOsAdaptiveGroupsAvg + + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountMagicTransitTunnelHealthCheckSLOsAdaptiveGroupsConfidence! + + """Total number of SLO calculations""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountMagicTransitTunnelHealthCheckSLOsAdaptiveGroupsDimensions + + """The maximum value for a metric per dimension""" + max: AccountMagicTransitTunnelHealthCheckSLOsAdaptiveGroupsMax +} + +"""""" +type AccountMagicTransitTunnelHealthCheckSLOsAdaptiveGroupsAvg { + """Average calculated SLI for tunnel health checks""" + effectiveSlo: float64! + + """The average value used for sample interval""" + sampleInterval: float64! + + """Average target SLO""" + slo: float64! +} + +"""""" +type AccountMagicTransitTunnelHealthCheckSLOsAdaptiveGroupsConfidence { + """Total number of SLO calculations, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! +} + +"""""" +type AccountMagicTransitTunnelHealthCheckSLOsAdaptiveGroupsDimensions { + """The alert type of the notification policy""" + alertType: string! + + """SLO calculation event timestamp, truncated to the day""" + date: Date! + + """SLO calculation event timestamp""" + datetime: Time! + + """SLO calculation event timestamp, truncated to multiple of 15 minutes""" + datetimeFifteenMinutes: Time! + + """SLO calculation event timestamp, truncated to multiple of 5 minutes""" + datetimeFiveMinutes: Time! + + """SLO calculation event timestamp, truncated to multiple of 30 minutes""" + datetimeHalfOfHour: Time! + + """SLO calculation event timestamp, truncated to the hour""" + datetimeHour: Time! + + """SLO calculation event timestamp, truncated to the minute""" + datetimeMinute: Time! + + """The ID of the notification policy associated with the calculation""" + policyId: string! + + """The name of the site the tunnel is associated with""" + siteName: string! + + """The health status of the tunnel""" + status: string! + + """The ID of the tunnel""" + tunnelId: string! + + """The name of the tunnel""" + tunnelName: string! +} + +"""""" +input AccountMagicTransitTunnelHealthCheckSLOsAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountMagicTransitTunnelHealthCheckSLOsAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountMagicTransitTunnelHealthCheckSLOsAdaptiveGroupsFilter_InputObject!] + + """""" + alertType: string + + """""" + alertType_geq: string + + """""" + alertType_gt: string + + """""" + alertType_in: [string!] + + """""" + alertType_leq: string + + """""" + alertType_like: string + + """""" + alertType_lt: string + + """""" + alertType_neq: string + + """""" + alertType_notin: [string!] + + """""" + alertType_notlike: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHalfOfHour: Time + + """""" + datetimeHalfOfHour_geq: Time + + """""" + datetimeHalfOfHour_gt: Time + + """""" + datetimeHalfOfHour_in: [Time!] + + """""" + datetimeHalfOfHour_leq: Time + + """""" + datetimeHalfOfHour_lt: Time + + """""" + datetimeHalfOfHour_neq: Time + + """""" + datetimeHalfOfHour_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + policyId: string + + """""" + policyId_geq: string + + """""" + policyId_gt: string + + """""" + policyId_in: [string!] + + """""" + policyId_leq: string + + """""" + policyId_like: string + + """""" + policyId_lt: string + + """""" + policyId_neq: string + + """""" + policyId_notin: [string!] + + """""" + policyId_notlike: string + + """""" + siteName: string + + """""" + siteName_geq: string + + """""" + siteName_gt: string + + """""" + siteName_in: [string!] + + """""" + siteName_leq: string + + """""" + siteName_like: string + + """""" + siteName_lt: string + + """""" + siteName_neq: string + + """""" + siteName_notin: [string!] + + """""" + siteName_notlike: string + + """""" + status: string + + """""" + status_geq: string + + """""" + status_gt: string + + """""" + status_in: [string!] + + """""" + status_leq: string + + """""" + status_like: string + + """""" + status_lt: string + + """""" + status_neq: string + + """""" + status_notin: [string!] + + """""" + status_notlike: string + + """""" + tunnelId: string + + """""" + tunnelId_geq: string + + """""" + tunnelId_gt: string + + """""" + tunnelId_in: [string!] + + """""" + tunnelId_leq: string + + """""" + tunnelId_like: string + + """""" + tunnelId_lt: string + + """""" + tunnelId_neq: string + + """""" + tunnelId_notin: [string!] + + """""" + tunnelId_notlike: string + + """""" + tunnelName: string + + """""" + tunnelName_geq: string + + """""" + tunnelName_gt: string + + """""" + tunnelName_in: [string!] + + """""" + tunnelName_leq: string + + """""" + tunnelName_like: string + + """""" + tunnelName_lt: string + + """""" + tunnelName_neq: string + + """""" + tunnelName_notin: [string!] + + """""" + tunnelName_notlike: string +} + +"""""" +type AccountMagicTransitTunnelHealthCheckSLOsAdaptiveGroupsMax { + """Maximum target SLO""" + slo: float64! +} + +"""""" +enum AccountMagicTransitTunnelHealthCheckSLOsAdaptiveGroupsOrderBy { + """alertType ascending""" + alertType_ASC + + """alertType descending""" + alertType_DESC + + """avg(effectiveSlo) ascending""" + avg_effectiveSlo_ASC + + """avg(effectiveSlo) descending""" + avg_effectiveSlo_DESC + + """avg(sampleInterval) ascending""" + avg_sampleInterval_ASC + + """avg(sampleInterval) descending""" + avg_sampleInterval_DESC + + """avg(slo) ascending""" + avg_slo_ASC + + """avg(slo) descending""" + avg_slo_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHalfOfHour ascending""" + datetimeHalfOfHour_ASC + + """datetimeHalfOfHour descending""" + datetimeHalfOfHour_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """max(slo) ascending""" + max_slo_ASC + + """max(slo) descending""" + max_slo_DESC + + """policyId ascending""" + policyId_ASC + + """policyId descending""" + policyId_DESC + + """siteName ascending""" + siteName_ASC + + """siteName descending""" + siteName_DESC + + """status ascending""" + status_ASC + + """status descending""" + status_DESC + + """tunnelId ascending""" + tunnelId_ASC + + """tunnelId descending""" + tunnelId_DESC + + """tunnelName ascending""" + tunnelName_ASC + + """tunnelName descending""" + tunnelName_DESC +} + +""" +Beta. Magic Transit Health check results for customer GRE Tunnels with adaptive sampling (ABR). +""" +type AccountMagicTransitTunnelHealthChecksAdaptiveGroups { + """""" + avg: AccountMagicTransitTunnelHealthChecksAdaptiveGroupsAvg + + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountMagicTransitTunnelHealthChecksAdaptiveGroupsConfidence! + + """Total number of healthcheck results""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountMagicTransitTunnelHealthChecksAdaptiveGroupsDimensions +} + +"""""" +type AccountMagicTransitTunnelHealthChecksAdaptiveGroupsAvg { + """Average sample interval per dimension""" + sampleInterval: float64! + + """ + Combined Tunnel State aggregated from multiple results. 0 is down, 0.5 is degraded and 1 is healthy + """ + tunnelState: float32! +} + +"""""" +type AccountMagicTransitTunnelHealthChecksAdaptiveGroupsConfidence { + """Total number of healthcheck results, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! +} + +"""""" +type AccountMagicTransitTunnelHealthChecksAdaptiveGroupsDimensions { + """ + Returns 1 if the colo had traffic for this tunnel in the last 6 hours, otherwise 0 + """ + active: uint8! + + """The time the healthcheck request was sent""" + datetime: Time! + + """ + The time the healthcheck request was sent, truncated to multiple of 15 minutes + """ + datetimeFifteenMinutes: Time! + + """ + The time the healthcheck request was sent, truncated to multiple of 5 minutes + """ + datetimeFiveMinutes: Time! + + """ + The time the healthcheck request was sent, truncated to multiple of 30 minutes + """ + datetimeHalfOfHour: Time! + + """The time the healthcheck request was sent, truncated to the hour""" + datetimeHour: Time! + + """ + The time the healthcheck request was sent, truncated to the last minute + """ + datetimeMinute: Time! + + """City of the Cloudflare datacenter from where the healthcheck was run""" + edgeColoCity: string! + + """ + IATA airport code of the Cloudflare datacenter from where the healthcheck was run + """ + edgeColoCode: string! + + """ + Country of the Cloudflare datacenter from where the healthcheck was run + """ + edgeColoCountry: string! + + """ + The name of the Cloudflare datacenter from where the healthcheck was run + """ + edgeColoName: string! + + """Region of the Cloudflare datacenter from where the healthcheck was run""" + edgeColoRegion: string! + + """The name of the Cloudflare POP from where the healthcheck was run""" + edgePopName: string! + + """IP address of the remote end of the tunnel""" + remoteTunnelIPv4: string! + + """The status of the request""" + resultStatus: string! + + """Human friendly site name associated with the tunnel""" + siteName: string! + + """Human friendly tunnel name""" + tunnelName: string! +} + +"""""" +input AccountMagicTransitTunnelHealthChecksAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountMagicTransitTunnelHealthChecksAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountMagicTransitTunnelHealthChecksAdaptiveGroupsFilter_InputObject!] + + """""" + active: uint8 + + """""" + active_geq: uint8 + + """""" + active_gt: uint8 + + """""" + active_in: bytes + + """""" + active_leq: uint8 + + """""" + active_lt: uint8 + + """""" + active_neq: uint8 + + """""" + active_notin: bytes + + """""" + datetime: Time + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHalfOfHour: Time + + """""" + datetimeHalfOfHour_geq: Time + + """""" + datetimeHalfOfHour_gt: Time + + """""" + datetimeHalfOfHour_in: [Time!] + + """""" + datetimeHalfOfHour_leq: Time + + """""" + datetimeHalfOfHour_lt: Time + + """""" + datetimeHalfOfHour_neq: Time + + """""" + datetimeHalfOfHour_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + edgeColoCity: string + + """""" + edgeColoCity_geq: string + + """""" + edgeColoCity_gt: string + + """""" + edgeColoCity_in: [string!] + + """""" + edgeColoCity_leq: string + + """""" + edgeColoCity_like: string + + """""" + edgeColoCity_lt: string + + """""" + edgeColoCity_neq: string + + """""" + edgeColoCity_notin: [string!] + + """""" + edgeColoCity_notlike: string + + """""" + edgeColoCode: string + + """""" + edgeColoCode_geq: string + + """""" + edgeColoCode_gt: string + + """""" + edgeColoCode_in: [string!] + + """""" + edgeColoCode_leq: string + + """""" + edgeColoCode_like: string + + """""" + edgeColoCode_lt: string + + """""" + edgeColoCode_neq: string + + """""" + edgeColoCode_notin: [string!] + + """""" + edgeColoCode_notlike: string + + """""" + edgeColoCountry: string + + """""" + edgeColoCountry_geq: string + + """""" + edgeColoCountry_gt: string + + """""" + edgeColoCountry_in: [string!] + + """""" + edgeColoCountry_leq: string + + """""" + edgeColoCountry_like: string + + """""" + edgeColoCountry_lt: string + + """""" + edgeColoCountry_neq: string + + """""" + edgeColoCountry_notin: [string!] + + """""" + edgeColoCountry_notlike: string + + """""" + edgeColoName: string + + """""" + edgeColoName_geq: string + + """""" + edgeColoName_gt: string + + """""" + edgeColoName_in: [string!] + + """""" + edgeColoName_leq: string + + """""" + edgeColoName_like: string + + """""" + edgeColoName_lt: string + + """""" + edgeColoName_neq: string + + """""" + edgeColoName_notin: [string!] + + """""" + edgeColoName_notlike: string + + """""" + edgeColoRegion: string + + """""" + edgeColoRegion_geq: string + + """""" + edgeColoRegion_gt: string + + """""" + edgeColoRegion_in: [string!] + + """""" + edgeColoRegion_leq: string + + """""" + edgeColoRegion_like: string + + """""" + edgeColoRegion_lt: string + + """""" + edgeColoRegion_neq: string + + """""" + edgeColoRegion_notin: [string!] + + """""" + edgeColoRegion_notlike: string + + """""" + edgePopName: string + + """""" + edgePopName_geq: string + + """""" + edgePopName_gt: string + + """""" + edgePopName_in: [string!] + + """""" + edgePopName_leq: string + + """""" + edgePopName_like: string + + """""" + edgePopName_lt: string + + """""" + edgePopName_neq: string + + """""" + edgePopName_notin: [string!] + + """""" + edgePopName_notlike: string + + """""" + remoteTunnelIPv4: string + + """""" + remoteTunnelIPv4_geq: string + + """""" + remoteTunnelIPv4_gt: string + + """""" + remoteTunnelIPv4_in: [string!] + + """""" + remoteTunnelIPv4_leq: string + + """""" + remoteTunnelIPv4_like: string + + """""" + remoteTunnelIPv4_lt: string + + """""" + remoteTunnelIPv4_neq: string + + """""" + remoteTunnelIPv4_notin: [string!] + + """""" + remoteTunnelIPv4_notlike: string + + """""" + resultStatus: string + + """""" + resultStatus_geq: string + + """""" + resultStatus_gt: string + + """""" + resultStatus_in: [string!] + + """""" + resultStatus_leq: string + + """""" + resultStatus_like: string + + """""" + resultStatus_lt: string + + """""" + resultStatus_neq: string + + """""" + resultStatus_notin: [string!] + + """""" + resultStatus_notlike: string + + """""" + siteName: string + + """""" + siteName_geq: string + + """""" + siteName_gt: string + + """""" + siteName_in: [string!] + + """""" + siteName_leq: string + + """""" + siteName_like: string + + """""" + siteName_lt: string + + """""" + siteName_neq: string + + """""" + siteName_notin: [string!] + + """""" + siteName_notlike: string + + """""" + tunnelName: string + + """""" + tunnelName_geq: string + + """""" + tunnelName_gt: string + + """""" + tunnelName_in: [string!] + + """""" + tunnelName_leq: string + + """""" + tunnelName_like: string + + """""" + tunnelName_lt: string + + """""" + tunnelName_neq: string + + """""" + tunnelName_notin: [string!] + + """""" + tunnelName_notlike: string +} + +"""""" +enum AccountMagicTransitTunnelHealthChecksAdaptiveGroupsOrderBy { + """active ascending""" + active_ASC + + """active descending""" + active_DESC + + """avg(sampleInterval) ascending""" + avg_sampleInterval_ASC + + """avg(sampleInterval) descending""" + avg_sampleInterval_DESC + + """avg(tunnelState) ascending""" + avg_tunnelState_ASC + + """avg(tunnelState) descending""" + avg_tunnelState_DESC + + """coloStatus ascending""" + coloStatus_ASC + + """coloStatus descending""" + coloStatus_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHalfOfHour ascending""" + datetimeHalfOfHour_ASC + + """datetimeHalfOfHour descending""" + datetimeHalfOfHour_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """edgeColoCity ascending""" + edgeColoCity_ASC + + """edgeColoCity descending""" + edgeColoCity_DESC + + """edgeColoCode ascending""" + edgeColoCode_ASC + + """edgeColoCode descending""" + edgeColoCode_DESC + + """edgeColoCountry ascending""" + edgeColoCountry_ASC + + """edgeColoCountry descending""" + edgeColoCountry_DESC + + """edgeColoName ascending""" + edgeColoName_ASC + + """edgeColoName descending""" + edgeColoName_DESC + + """edgeColoRegion ascending""" + edgeColoRegion_ASC + + """edgeColoRegion descending""" + edgeColoRegion_DESC + + """edgePopName ascending""" + edgePopName_ASC + + """edgePopName descending""" + edgePopName_DESC + + """metalStatus ascending""" + metalStatus_ASC + + """metalStatus descending""" + metalStatus_DESC + + """remoteTunnelIPv4 ascending""" + remoteTunnelIPv4_ASC + + """remoteTunnelIPv4 descending""" + remoteTunnelIPv4_DESC + + """resultStatus ascending""" + resultStatus_ASC + + """resultStatus descending""" + resultStatus_DESC + + """siteName ascending""" + siteName_ASC + + """siteName descending""" + siteName_DESC + + """tunnelName ascending""" + tunnelName_ASC + + """tunnelName descending""" + tunnelName_DESC +} + +"""Bandwidth usage metric of a Magic Transit tunnel.""" +type AccountMagicTransitTunnelTrafficAdaptiveGroups { + """The average of values for a metric per dimension""" + avg: AccountMagicTransitTunnelTrafficAdaptiveGroupsAvg + + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountMagicTransitTunnelTrafficAdaptiveGroupsConfidence! + + """List of dimensions to group by""" + dimensions: AccountMagicTransitTunnelTrafficAdaptiveGroupsDimensions + + """The sum of values for a metric per dimension""" + sum: AccountMagicTransitTunnelTrafficAdaptiveGroupsSum +} + +"""""" +type AccountMagicTransitTunnelTrafficAdaptiveGroupsAvg { + """ + Sum of bits received, divided by 1 second, providing a per-second bit rate when grouped by datetime + """ + bitRate: uint64! + + """ + Sum of bits received, divided by 86400 seconds, providing a per-second bit rate when grouped by date + """ + bitRateDay: uint64! + + """ + Sum of bits received, divided by 900 seconds, providing a per-second bit rate when grouped by datetimeFifteenMinutes + """ + bitRateFifteenMinutes: uint64! + + """ + Sum of bits received, divided by 300 seconds, providing a per-second bit rate when grouped by datetimeFiveMinutes + """ + bitRateFiveMinutes: uint64! + + """ + Sum of bits received, divided by 3600 seconds, providing a per-second bit rate when grouped by datetimeHour + """ + bitRateHour: uint64! + + """ + Sum of bits received, divided by 60 seconds, providing a per-second bit rate when grouped by datetimeMinute + """ + bitRateMinute: uint64! + + """ + Sum of bits received, divided by 10 seconds, providing a per-second bit rate when grouped by datetimeTenSeconds + """ + bitRateTenSeconds: uint64! + + """ + Sum of packets received, divided by 1 second, providing a per-second packet rate when grouped by datetime + """ + packetRate: uint64! + + """ + Sum of packets received, divided by 86400 seconds, providing a per-second packet rate when grouped by date + """ + packetRateDay: uint64! + + """ + Sum of packets received, divided by 900 seconds, providing a per-second packet rate when grouped by datetimeFifteenMinutes + """ + packetRateFifteenMinutes: uint64! + + """ + Sum of packets received, divided by 300 seconds, providing a per-second packet rate when grouped by datetimeFiveMinutes + """ + packetRateFiveMinutes: uint64! + + """ + Sum of packets received, divided by 3600 seconds, providing a per-second packet rate when grouped by datetimeHour + """ + packetRateHour: uint64! + + """ + Sum of packets received, divided by 60 seconds, providing a per-second packet rate when grouped by datetimeMinute + """ + packetRateMinute: uint64! + + """ + Sum of packets received, divided by 10 seconds, providing a per-second packet rate when grouped by datetimeTenSeconds + """ + packetRateTenSeconds: uint64! +} + +"""""" +type AccountMagicTransitTunnelTrafficAdaptiveGroupsAvgConfidence { + """Confidence interval for the corresponding point estimate""" + bitRate: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateDay: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateFifteenMinutes: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateFiveMinutes: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateHour: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateMinute: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateTenSeconds: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRate: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateDay: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateFifteenMinutes: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateFiveMinutes: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateHour: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateMinute: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateTenSeconds: Confidence! +} + +"""""" +type AccountMagicTransitTunnelTrafficAdaptiveGroupsConfidence { + """ + The average of values for a metric per dimension, with confidence intervals + """ + avg: AccountMagicTransitTunnelTrafficAdaptiveGroupsAvgConfidence + + """Confidence level that was requested""" + level: float64! + + """ + The sum of values for a metric per dimension, with confidence intervals + """ + sum: AccountMagicTransitTunnelTrafficAdaptiveGroupsSumConfidence +} + +"""""" +type AccountMagicTransitTunnelTrafficAdaptiveGroupsDimensions { + """Date that the packet was received""" + date: Date! + + """Date and time that the packet was received""" + datetime: Time! + + """ + Date and time that the packet was received, rounded to the start of the nearest fifteen minutes + """ + datetimeFifteenMinutes: Time! + + """ + Date and time that the packet was received, rounded to the start of the nearest five minutes + """ + datetimeFiveMinutes: Time! + + """ + Date and time that the packet was received, rounded to the start of the nearest hour + """ + datetimeHour: Time! + + """ + Date and time that the packet was received, rounded to the start of the nearest minute + """ + datetimeMinute: Time! + + """ + Direction of the packet relative to the customer network (possible values: inbound, outbound, lateral) + """ + direction: string! + + """ + City where the Cloudflare datacenter that received the packet is located + """ + edgeColoCity: string! + + """ + Cloudflare datacenter that received the packet (nearest IATA airport code) + """ + edgeColoCode: string! + + """ + Country where the Cloudflare datacenter that received the packet is located (ISO 3166-1 alpha-2) + """ + edgeColoCountry: string! + + """ + Latitude and longitude where the Cloudflare datacenter that received the packet is located (Geohash encoding) + """ + edgeColoGeohash: string! + + """ + Cloudflare datacenter that received the packet (unique site identifier) + """ + edgeColoName: string! + + """Cloudflare PoP that received the packet (unique site identifier)""" + edgePopName: string! + + """ + GRE, IPSec or CNI Egress Tunnel ID for Magic WAN and Magic Transit traffic + """ + egressTunnelID: string! + + """ + GRE, IPSec or CNIec Egress Tunnel name for Magic WAN and Magic Transit traffic + """ + egressTunnelName: string! + + """ + GRE, IPSec or CNI Ingress Tunnel ID for Magic WAN and Magic Transit traffic + """ + ingressTunnelID: string! + + """ + GRE, IPSec or CNI Ingress Tunnel name for Magic WAN and Magic Transit traffic + """ + ingressTunnelName: string! + + """ + Offramp method for Magic WAN and Magic Transit traffic - GRE, IPSec, CNI, Warp, Cloudflared + """ + offRamp: string! + + """ + Onramp method for Magic WAN and Magic Transit traffic - GRE, IPSec, CNI, Warp, Cloudflared + """ + onRamp: string! + + """Tunnel device name""" + tunnelName: string! +} + +"""""" +input AccountMagicTransitTunnelTrafficAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountMagicTransitTunnelTrafficAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountMagicTransitTunnelTrafficAdaptiveGroupsFilter_InputObject!] + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + direction: string + + """""" + direction_geq: string + + """""" + direction_gt: string + + """""" + direction_in: [string!] + + """""" + direction_leq: string + + """""" + direction_like: string + + """""" + direction_lt: string + + """""" + direction_neq: string + + """""" + direction_notin: [string!] + + """""" + direction_notlike: string + + """""" + edgeColoCity: string + + """""" + edgeColoCity_geq: string + + """""" + edgeColoCity_gt: string + + """""" + edgeColoCity_in: [string!] + + """""" + edgeColoCity_leq: string + + """""" + edgeColoCity_like: string + + """""" + edgeColoCity_lt: string + + """""" + edgeColoCity_neq: string + + """""" + edgeColoCity_notin: [string!] + + """""" + edgeColoCity_notlike: string + + """""" + edgeColoCode: string + + """""" + edgeColoCode_geq: string + + """""" + edgeColoCode_gt: string + + """""" + edgeColoCode_in: [string!] + + """""" + edgeColoCode_leq: string + + """""" + edgeColoCode_like: string + + """""" + edgeColoCode_lt: string + + """""" + edgeColoCode_neq: string + + """""" + edgeColoCode_notin: [string!] + + """""" + edgeColoCode_notlike: string + + """""" + edgeColoCountry: string + + """""" + edgeColoCountry_geq: string + + """""" + edgeColoCountry_gt: string + + """""" + edgeColoCountry_in: [string!] + + """""" + edgeColoCountry_leq: string + + """""" + edgeColoCountry_like: string + + """""" + edgeColoCountry_lt: string + + """""" + edgeColoCountry_neq: string + + """""" + edgeColoCountry_notin: [string!] + + """""" + edgeColoCountry_notlike: string + + """""" + edgeColoGeohash: string + + """""" + edgeColoGeohash_geq: string + + """""" + edgeColoGeohash_gt: string + + """""" + edgeColoGeohash_in: [string!] + + """""" + edgeColoGeohash_leq: string + + """""" + edgeColoGeohash_like: string + + """""" + edgeColoGeohash_lt: string + + """""" + edgeColoGeohash_neq: string + + """""" + edgeColoGeohash_notin: [string!] + + """""" + edgeColoGeohash_notlike: string + + """""" + edgeColoName: string + + """""" + edgeColoName_geq: string + + """""" + edgeColoName_gt: string + + """""" + edgeColoName_in: [string!] + + """""" + edgeColoName_leq: string + + """""" + edgeColoName_like: string + + """""" + edgeColoName_lt: string + + """""" + edgeColoName_neq: string + + """""" + edgeColoName_notin: [string!] + + """""" + edgeColoName_notlike: string + + """""" + edgePopName: string + + """""" + edgePopName_geq: string + + """""" + edgePopName_gt: string + + """""" + edgePopName_in: [string!] + + """""" + edgePopName_leq: string + + """""" + edgePopName_like: string + + """""" + edgePopName_lt: string + + """""" + edgePopName_neq: string + + """""" + edgePopName_notin: [string!] + + """""" + edgePopName_notlike: string + + """""" + egressTunnelID: string + + """""" + egressTunnelID_geq: string + + """""" + egressTunnelID_gt: string + + """""" + egressTunnelID_in: [string!] + + """""" + egressTunnelID_leq: string + + """""" + egressTunnelID_like: string + + """""" + egressTunnelID_lt: string + + """""" + egressTunnelID_neq: string + + """""" + egressTunnelID_notin: [string!] + + """""" + egressTunnelID_notlike: string + + """""" + egressTunnelName: string + + """""" + egressTunnelName_geq: string + + """""" + egressTunnelName_gt: string + + """""" + egressTunnelName_in: [string!] + + """""" + egressTunnelName_leq: string + + """""" + egressTunnelName_like: string + + """""" + egressTunnelName_lt: string + + """""" + egressTunnelName_neq: string + + """""" + egressTunnelName_notin: [string!] + + """""" + egressTunnelName_notlike: string + + """""" + ingressTunnelID: string + + """""" + ingressTunnelID_geq: string + + """""" + ingressTunnelID_gt: string + + """""" + ingressTunnelID_in: [string!] + + """""" + ingressTunnelID_leq: string + + """""" + ingressTunnelID_like: string + + """""" + ingressTunnelID_lt: string + + """""" + ingressTunnelID_neq: string + + """""" + ingressTunnelID_notin: [string!] + + """""" + ingressTunnelID_notlike: string + + """""" + ingressTunnelName: string + + """""" + ingressTunnelName_geq: string + + """""" + ingressTunnelName_gt: string + + """""" + ingressTunnelName_in: [string!] + + """""" + ingressTunnelName_leq: string + + """""" + ingressTunnelName_like: string + + """""" + ingressTunnelName_lt: string + + """""" + ingressTunnelName_neq: string + + """""" + ingressTunnelName_notin: [string!] + + """""" + ingressTunnelName_notlike: string + + """""" + offRamp: string + + """""" + offRamp_geq: string + + """""" + offRamp_gt: string + + """""" + offRamp_in: [string!] + + """""" + offRamp_leq: string + + """""" + offRamp_like: string + + """""" + offRamp_lt: string + + """""" + offRamp_neq: string + + """""" + offRamp_notin: [string!] + + """""" + offRamp_notlike: string + + """""" + onRamp: string + + """""" + onRamp_geq: string + + """""" + onRamp_gt: string + + """""" + onRamp_in: [string!] + + """""" + onRamp_leq: string + + """""" + onRamp_like: string + + """""" + onRamp_lt: string + + """""" + onRamp_neq: string + + """""" + onRamp_notin: [string!] + + """""" + onRamp_notlike: string + + """""" + tunnelName: string + + """""" + tunnelName_geq: string + + """""" + tunnelName_gt: string + + """""" + tunnelName_in: [string!] + + """""" + tunnelName_leq: string + + """""" + tunnelName_like: string + + """""" + tunnelName_lt: string + + """""" + tunnelName_neq: string + + """""" + tunnelName_notin: [string!] + + """""" + tunnelName_notlike: string +} + +"""""" +enum AccountMagicTransitTunnelTrafficAdaptiveGroupsOrderBy { + """avg(bitRateDay) ascending""" + avg_bitRateDay_ASC + + """avg(bitRateDay) descending""" + avg_bitRateDay_DESC + + """avg(bitRateFifteenMinutes) ascending""" + avg_bitRateFifteenMinutes_ASC + + """avg(bitRateFifteenMinutes) descending""" + avg_bitRateFifteenMinutes_DESC + + """avg(bitRateFiveMinutes) ascending""" + avg_bitRateFiveMinutes_ASC + + """avg(bitRateFiveMinutes) descending""" + avg_bitRateFiveMinutes_DESC + + """avg(bitRateHour) ascending""" + avg_bitRateHour_ASC + + """avg(bitRateHour) descending""" + avg_bitRateHour_DESC + + """avg(bitRateMinute) ascending""" + avg_bitRateMinute_ASC + + """avg(bitRateMinute) descending""" + avg_bitRateMinute_DESC + + """avg(bitRateTenSeconds) ascending""" + avg_bitRateTenSeconds_ASC + + """avg(bitRateTenSeconds) descending""" + avg_bitRateTenSeconds_DESC + + """avg(bitRate) ascending""" + avg_bitRate_ASC + + """avg(bitRate) descending""" + avg_bitRate_DESC + + """avg(packetRateDay) ascending""" + avg_packetRateDay_ASC + + """avg(packetRateDay) descending""" + avg_packetRateDay_DESC + + """avg(packetRateFifteenMinutes) ascending""" + avg_packetRateFifteenMinutes_ASC + + """avg(packetRateFifteenMinutes) descending""" + avg_packetRateFifteenMinutes_DESC + + """avg(packetRateFiveMinutes) ascending""" + avg_packetRateFiveMinutes_ASC + + """avg(packetRateFiveMinutes) descending""" + avg_packetRateFiveMinutes_DESC + + """avg(packetRateHour) ascending""" + avg_packetRateHour_ASC + + """avg(packetRateHour) descending""" + avg_packetRateHour_DESC + + """avg(packetRateMinute) ascending""" + avg_packetRateMinute_ASC + + """avg(packetRateMinute) descending""" + avg_packetRateMinute_DESC + + """avg(packetRateTenSeconds) ascending""" + avg_packetRateTenSeconds_ASC + + """avg(packetRateTenSeconds) descending""" + avg_packetRateTenSeconds_DESC + + """avg(packetRate) ascending""" + avg_packetRate_ASC + + """avg(packetRate) descending""" + avg_packetRate_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """direction ascending""" + direction_ASC + + """direction descending""" + direction_DESC + + """edgeColoCity ascending""" + edgeColoCity_ASC + + """edgeColoCity descending""" + edgeColoCity_DESC + + """edgeColoCode ascending""" + edgeColoCode_ASC + + """edgeColoCode descending""" + edgeColoCode_DESC + + """edgeColoCountry ascending""" + edgeColoCountry_ASC + + """edgeColoCountry descending""" + edgeColoCountry_DESC + + """edgeColoGeohash ascending""" + edgeColoGeohash_ASC + + """edgeColoGeohash descending""" + edgeColoGeohash_DESC + + """edgeColoName ascending""" + edgeColoName_ASC + + """edgeColoName descending""" + edgeColoName_DESC + + """edgePopName ascending""" + edgePopName_ASC + + """edgePopName descending""" + edgePopName_DESC + + """egressTunnelID ascending""" + egressTunnelID_ASC + + """egressTunnelID descending""" + egressTunnelID_DESC + + """egressTunnelName ascending""" + egressTunnelName_ASC + + """egressTunnelName descending""" + egressTunnelName_DESC + + """ingressTunnelID ascending""" + ingressTunnelID_ASC + + """ingressTunnelID descending""" + ingressTunnelID_DESC + + """ingressTunnelName ascending""" + ingressTunnelName_ASC + + """ingressTunnelName descending""" + ingressTunnelName_DESC + + """offRamp ascending""" + offRamp_ASC + + """offRamp descending""" + offRamp_DESC + + """onRamp ascending""" + onRamp_ASC + + """onRamp descending""" + onRamp_DESC + + """sum(bits) ascending""" + sum_bits_ASC + + """sum(bits) descending""" + sum_bits_DESC + + """sum(packets) ascending""" + sum_packets_ASC + + """sum(packets) descending""" + sum_packets_DESC + + """system ascending""" + system_ASC + + """system descending""" + system_DESC + + """tunnelName ascending""" + tunnelName_ASC + + """tunnelName descending""" + tunnelName_DESC + + """visibility ascending""" + visibility_ASC + + """visibility descending""" + visibility_DESC +} + +"""""" +type AccountMagicTransitTunnelTrafficAdaptiveGroupsSum { + """Sum of bits received""" + bits: uint64! + + """Sum of packets received""" + packets: uint64! +} + +"""""" +type AccountMagicTransitTunnelTrafficAdaptiveGroupsSumConfidence { + """Confidence interval for the corresponding point estimate""" + bits: Confidence! + + """Confidence interval for the corresponding point estimate""" + packets: Confidence! +} + +"""Magic WAN Connector Metrics (deprecated)""" +type AccountMagicWANConnectorMetricsAdaptiveGroups { + """""" + avg: AccountMagicWANConnectorMetricsAdaptiveGroupsAvg + + """List of dimensions to group by""" + dimensions: AccountMagicWANConnectorMetricsAdaptiveGroupsDimensions + + """""" + max: AccountMagicWANConnectorMetricsAdaptiveGroupsMax +} + +"""""" +type AccountMagicWANConnectorMetricsAdaptiveGroupsAvg { + """Average CPU load percentage""" + cpuLoadPercentage: float64! + + """Average CPU temperature""" + cpuTemperature: float64! + + """Average Disk usage percentage""" + diskUsagePercentage: float64! + + """Average Memory usage percentage""" + memoryUsagePercentage: float64! + + """Rx Bitrate over 5 minutes""" + rxBitrateFiveMinute: uint64! + + """Rx Bitrate over 1 minute""" + rxBitrateMinute: uint64! + + """Rx Packet rate over 5 minutes""" + rxPacketrateFiveMinute: uint64! + + """Rx Packet rate over 1 minute""" + rxPacketrateMinute: uint64! + + """Tx Bitrate over 5 minutes""" + txBitrateFiveMinute: uint64! + + """Tx Bitrate over 1 minute""" + txBitrateMinute: uint64! + + """Tx Packet rate over 5 minutes""" + txPacketrateFiveMinute: uint64! + + """Tx Packet rate over 1 minute""" + txPacketrateMinute: uint64! +} + +"""""" +type AccountMagicWANConnectorMetricsAdaptiveGroupsDimensions { + """The date and time the event was recorded""" + datetime: Time! + + """ + The date and time the event occurred at the edge truncated to a multiple of 5 minutes + """ + datetimeFiveMinutes: Time! + + """ + The date and time the event occurred at the edge truncated to the minute + """ + datetimeMinute: Time! + + """Customer connector identifier""" + mconnConnectorID: string! + + """Name of connector interface""" + mconnInterfaceName: string! + + """Interface type LAN, WAN or IPSEC""" + mconnInterfaceType: string! + + """Customer site identifier""" + mconnSiteID: string! +} + +"""""" +input AccountMagicWANConnectorMetricsAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountMagicWANConnectorMetricsAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountMagicWANConnectorMetricsAdaptiveGroupsFilter_InputObject!] + + """""" + datetime: Time + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + mconnConnectorID: string + + """""" + mconnConnectorID_geq: string + + """""" + mconnConnectorID_gt: string + + """""" + mconnConnectorID_in: [string!] + + """""" + mconnConnectorID_leq: string + + """""" + mconnConnectorID_like: string + + """""" + mconnConnectorID_lt: string + + """""" + mconnConnectorID_neq: string + + """""" + mconnConnectorID_notin: [string!] + + """""" + mconnConnectorID_notlike: string + + """""" + mconnInterfaceName: string + + """""" + mconnInterfaceName_geq: string + + """""" + mconnInterfaceName_gt: string + + """""" + mconnInterfaceName_in: [string!] + + """""" + mconnInterfaceName_leq: string + + """""" + mconnInterfaceName_like: string + + """""" + mconnInterfaceName_lt: string + + """""" + mconnInterfaceName_neq: string + + """""" + mconnInterfaceName_notin: [string!] + + """""" + mconnInterfaceName_notlike: string + + """""" + mconnInterfaceType: string + + """""" + mconnInterfaceType_geq: string + + """""" + mconnInterfaceType_gt: string + + """""" + mconnInterfaceType_in: [string!] + + """""" + mconnInterfaceType_leq: string + + """""" + mconnInterfaceType_like: string + + """""" + mconnInterfaceType_lt: string + + """""" + mconnInterfaceType_neq: string + + """""" + mconnInterfaceType_notin: [string!] + + """""" + mconnInterfaceType_notlike: string + + """""" + mconnSiteID: string + + """""" + mconnSiteID_geq: string + + """""" + mconnSiteID_gt: string + + """""" + mconnSiteID_in: [string!] + + """""" + mconnSiteID_leq: string + + """""" + mconnSiteID_like: string + + """""" + mconnSiteID_lt: string + + """""" + mconnSiteID_neq: string + + """""" + mconnSiteID_notin: [string!] + + """""" + mconnSiteID_notlike: string +} + +"""""" +type AccountMagicWANConnectorMetricsAdaptiveGroupsMax { + """current connector ha state""" + haState: uint32! + + """Number of interfaces of a given Type""" + interfaceCount: uint32! +} + +"""""" +enum AccountMagicWANConnectorMetricsAdaptiveGroupsOrderBy { + """avg(cpuLoadPercentage) ascending""" + avg_cpuLoadPercentage_ASC + + """avg(cpuLoadPercentage) descending""" + avg_cpuLoadPercentage_DESC + + """avg(cpuTemperature) ascending""" + avg_cpuTemperature_ASC + + """avg(cpuTemperature) descending""" + avg_cpuTemperature_DESC + + """avg(diskUsagePercentage) ascending""" + avg_diskUsagePercentage_ASC + + """avg(diskUsagePercentage) descending""" + avg_diskUsagePercentage_DESC + + """avg(memoryUsagePercentage) ascending""" + avg_memoryUsagePercentage_ASC + + """avg(memoryUsagePercentage) descending""" + avg_memoryUsagePercentage_DESC + + """avg(rxBitrateFiveMinute) ascending""" + avg_rxBitrateFiveMinute_ASC + + """avg(rxBitrateFiveMinute) descending""" + avg_rxBitrateFiveMinute_DESC + + """avg(rxBitrateMinute) ascending""" + avg_rxBitrateMinute_ASC + + """avg(rxBitrateMinute) descending""" + avg_rxBitrateMinute_DESC + + """avg(rxPacketrateFiveMinute) ascending""" + avg_rxPacketrateFiveMinute_ASC + + """avg(rxPacketrateFiveMinute) descending""" + avg_rxPacketrateFiveMinute_DESC + + """avg(rxPacketrateMinute) ascending""" + avg_rxPacketrateMinute_ASC + + """avg(rxPacketrateMinute) descending""" + avg_rxPacketrateMinute_DESC + + """avg(txBitrateFiveMinute) ascending""" + avg_txBitrateFiveMinute_ASC + + """avg(txBitrateFiveMinute) descending""" + avg_txBitrateFiveMinute_DESC + + """avg(txBitrateMinute) ascending""" + avg_txBitrateMinute_ASC + + """avg(txBitrateMinute) descending""" + avg_txBitrateMinute_DESC + + """avg(txPacketrateFiveMinute) ascending""" + avg_txPacketrateFiveMinute_ASC + + """avg(txPacketrateFiveMinute) descending""" + avg_txPacketrateFiveMinute_DESC + + """avg(txPacketrateMinute) ascending""" + avg_txPacketrateMinute_ASC + + """avg(txPacketrateMinute) descending""" + avg_txPacketrateMinute_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """max(haState) ascending""" + max_haState_ASC + + """max(haState) descending""" + max_haState_DESC + + """max(interfaceCount) ascending""" + max_interfaceCount_ASC + + """max(interfaceCount) descending""" + max_interfaceCount_DESC + + """mconnConnectorID ascending""" + mconnConnectorID_ASC + + """mconnConnectorID descending""" + mconnConnectorID_DESC + + """mconnInterfaceName ascending""" + mconnInterfaceName_ASC + + """mconnInterfaceName descending""" + mconnInterfaceName_DESC + + """mconnInterfaceType ascending""" + mconnInterfaceType_ASC + + """mconnInterfaceType descending""" + mconnInterfaceType_DESC + + """mconnSiteID ascending""" + mconnSiteID_ASC + + """mconnSiteID descending""" + mconnSiteID_DESC +} + +"""Aggregated Magic WAN Connector events with adaptive sampling""" +type AccountMconnTelemetryEventsAdaptiveGroups { + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountMconnTelemetryEventsAdaptiveGroupsConfidence! + + """Recorded Event count""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountMconnTelemetryEventsAdaptiveGroupsDimensions +} + +"""""" +type AccountMconnTelemetryEventsAdaptiveGroupsConfidence { + """Recorded Event count, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! +} + +"""""" +type AccountMconnTelemetryEventsAdaptiveGroupsDimensions { + """Connector identifier""" + connectorId: string! + + """Timestamp bucketed by 15 minutes""" + datetimeFifteenMinutes: Time! + + """Timestamp bucketed by 5 minutes""" + datetimeFiveMinutes: Time! + + """Timestamp bucketed by hour""" + datetimeHour: Time! + + """Timestamp bucketed by minute""" + datetimeMinute: Time! + + """Timestamp bucketed by 6 hours""" + datetimeSixHours: Time! + + """Event kind""" + kind: string! +} + +"""""" +input AccountMconnTelemetryEventsAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountMconnTelemetryEventsAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountMconnTelemetryEventsAdaptiveGroupsFilter_InputObject!] + + """""" + connectorId: string + + """""" + connectorId_geq: string + + """""" + connectorId_gt: string + + """""" + connectorId_in: [string!] + + """""" + connectorId_leq: string + + """""" + connectorId_like: string + + """""" + connectorId_lt: string + + """""" + connectorId_neq: string + + """""" + connectorId_notin: [string!] + + """""" + connectorId_notlike: string + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetimeSixHours: Time + + """""" + datetimeSixHours_geq: Time + + """""" + datetimeSixHours_gt: Time + + """""" + datetimeSixHours_in: [Time!] + + """""" + datetimeSixHours_leq: Time + + """""" + datetimeSixHours_lt: Time + + """""" + datetimeSixHours_neq: Time + + """""" + datetimeSixHours_notin: [Time!] + + """""" + kind: string + + """""" + kind_geq: string + + """""" + kind_gt: string + + """""" + kind_in: [string!] + + """""" + kind_leq: string + + """""" + kind_like: string + + """""" + kind_lt: string + + """""" + kind_neq: string + + """""" + kind_notin: [string!] + + """""" + kind_notlike: string +} + +"""""" +enum AccountMconnTelemetryEventsAdaptiveGroupsOrderBy { + """connectorId ascending""" + connectorId_ASC + + """connectorId descending""" + connectorId_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetimeSixHours ascending""" + datetimeSixHours_ASC + + """datetimeSixHours descending""" + datetimeSixHours_DESC + + """kind ascending""" + kind_ASC + + """kind descending""" + kind_DESC +} + +"""Aggregated Magic WAN Connector events with adaptive sampling""" +type AccountMconnTelemetryEventsStagingAdaptiveGroups { + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountMconnTelemetryEventsStagingAdaptiveGroupsConfidence! + + """Recorded Event count""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountMconnTelemetryEventsStagingAdaptiveGroupsDimensions +} + +"""""" +type AccountMconnTelemetryEventsStagingAdaptiveGroupsConfidence { + """Recorded Event count, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! +} + +"""""" +type AccountMconnTelemetryEventsStagingAdaptiveGroupsDimensions { + """Connector identifier""" + connectorId: string! + + """Timestamp bucketed by 15 minutes""" + datetimeFifteenMinutes: Time! + + """Timestamp bucketed by 5 minutes""" + datetimeFiveMinutes: Time! + + """Timestamp bucketed by hour""" + datetimeHour: Time! + + """Timestamp bucketed by minute""" + datetimeMinute: Time! + + """Timestamp bucketed by 6 hours""" + datetimeSixHours: Time! + + """Event kind""" + kind: string! +} + +"""""" +input AccountMconnTelemetryEventsStagingAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountMconnTelemetryEventsStagingAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountMconnTelemetryEventsStagingAdaptiveGroupsFilter_InputObject!] + + """""" + connectorId: string + + """""" + connectorId_geq: string + + """""" + connectorId_gt: string + + """""" + connectorId_in: [string!] + + """""" + connectorId_leq: string + + """""" + connectorId_like: string + + """""" + connectorId_lt: string + + """""" + connectorId_neq: string + + """""" + connectorId_notin: [string!] + + """""" + connectorId_notlike: string + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetimeSixHours: Time + + """""" + datetimeSixHours_geq: Time + + """""" + datetimeSixHours_gt: Time + + """""" + datetimeSixHours_in: [Time!] + + """""" + datetimeSixHours_leq: Time + + """""" + datetimeSixHours_lt: Time + + """""" + datetimeSixHours_neq: Time + + """""" + datetimeSixHours_notin: [Time!] + + """""" + kind: string + + """""" + kind_geq: string + + """""" + kind_gt: string + + """""" + kind_in: [string!] + + """""" + kind_leq: string + + """""" + kind_like: string + + """""" + kind_lt: string + + """""" + kind_neq: string + + """""" + kind_notin: [string!] + + """""" + kind_notlike: string +} + +"""""" +enum AccountMconnTelemetryEventsStagingAdaptiveGroupsOrderBy { + """connectorId ascending""" + connectorId_ASC + + """connectorId descending""" + connectorId_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetimeSixHours ascending""" + datetimeSixHours_ASC + + """datetimeSixHours descending""" + datetimeSixHours_DESC + + """kind ascending""" + kind_ASC + + """kind descending""" + kind_DESC +} + +""" +Aggregated Magic WAN Connector snapshots of DHCP leases with adaptive sampling +""" +type AccountMconnTelemetrySnapshotDhcpLeasesAdaptiveGroups { + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountMconnTelemetrySnapshotDhcpLeasesAdaptiveGroupsConfidence! + + """Snapshot DHCP lease count""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountMconnTelemetrySnapshotDhcpLeasesAdaptiveGroupsDimensions + + """""" + max: AccountMconnTelemetrySnapshotDhcpLeasesAdaptiveGroupsMax +} + +"""""" +type AccountMconnTelemetrySnapshotDhcpLeasesAdaptiveGroupsConfidence { + """Snapshot DHCP lease count, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! +} + +"""""" +type AccountMconnTelemetrySnapshotDhcpLeasesAdaptiveGroupsDimensions { + """Client ID of the device the IP Address was leased to""" + clientId: string! + + """Connector identifier""" + connectorId: string! + + """Timestamp bucketed by 15 minutes""" + datetimeFifteenMinutes: Time! + + """Timestamp bucketed by 5 minutes""" + datetimeFiveMinutes: Time! + + """Timestamp bucketed by hour""" + datetimeHour: Time! + + """Timestamp bucketed by minute""" + datetimeMinute: Time! + + """Timestamp bucketed by 6 hours""" + datetimeSixHours: Time! + + """Hostname of the device the IP Address was leased to""" + hostname: string! + + """Name of the network interface""" + interfaceName: string! + + """IP Address that was leased""" + ipAddress: string! + + """MAC Address of the device the IP Address was leased to""" + macAddress: string! +} + +"""""" +input AccountMconnTelemetrySnapshotDhcpLeasesAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountMconnTelemetrySnapshotDhcpLeasesAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountMconnTelemetrySnapshotDhcpLeasesAdaptiveGroupsFilter_InputObject!] + + """""" + clientId: string + + """""" + clientId_geq: string + + """""" + clientId_gt: string + + """""" + clientId_in: [string!] + + """""" + clientId_leq: string + + """""" + clientId_like: string + + """""" + clientId_lt: string + + """""" + clientId_neq: string + + """""" + clientId_notin: [string!] + + """""" + clientId_notlike: string + + """""" + connectorId: string + + """""" + connectorId_geq: string + + """""" + connectorId_gt: string + + """""" + connectorId_in: [string!] + + """""" + connectorId_leq: string + + """""" + connectorId_like: string + + """""" + connectorId_lt: string + + """""" + connectorId_neq: string + + """""" + connectorId_notin: [string!] + + """""" + connectorId_notlike: string + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetimeSixHours: Time + + """""" + datetimeSixHours_geq: Time + + """""" + datetimeSixHours_gt: Time + + """""" + datetimeSixHours_in: [Time!] + + """""" + datetimeSixHours_leq: Time + + """""" + datetimeSixHours_lt: Time + + """""" + datetimeSixHours_neq: Time + + """""" + datetimeSixHours_notin: [Time!] + + """""" + hostname: string + + """""" + hostname_geq: string + + """""" + hostname_gt: string + + """""" + hostname_in: [string!] + + """""" + hostname_leq: string + + """""" + hostname_like: string + + """""" + hostname_lt: string + + """""" + hostname_neq: string + + """""" + hostname_notin: [string!] + + """""" + hostname_notlike: string + + """""" + interfaceName: string + + """""" + interfaceName_geq: string + + """""" + interfaceName_gt: string + + """""" + interfaceName_in: [string!] + + """""" + interfaceName_leq: string + + """""" + interfaceName_like: string + + """""" + interfaceName_lt: string + + """""" + interfaceName_neq: string + + """""" + interfaceName_notin: [string!] + + """""" + interfaceName_notlike: string + + """""" + ipAddress: string + + """""" + ipAddress_geq: string + + """""" + ipAddress_gt: string + + """""" + ipAddress_in: [string!] + + """""" + ipAddress_leq: string + + """""" + ipAddress_like: string + + """""" + ipAddress_lt: string + + """""" + ipAddress_neq: string + + """""" + ipAddress_notin: [string!] + + """""" + ipAddress_notlike: string + + """""" + macAddress: string + + """""" + macAddress_geq: string + + """""" + macAddress_gt: string + + """""" + macAddress_in: [string!] + + """""" + macAddress_leq: string + + """""" + macAddress_like: string + + """""" + macAddress_lt: string + + """""" + macAddress_neq: string + + """""" + macAddress_notin: [string!] + + """""" + macAddress_notlike: string +} + +"""""" +type AccountMconnTelemetrySnapshotDhcpLeasesAdaptiveGroupsMax { + """Expiry time of the DHCP lease (seconds since the Unix epoch)""" + expiryTime: float64! +} + +"""""" +enum AccountMconnTelemetrySnapshotDhcpLeasesAdaptiveGroupsOrderBy { + """clientId ascending""" + clientId_ASC + + """clientId descending""" + clientId_DESC + + """connectorId ascending""" + connectorId_ASC + + """connectorId descending""" + connectorId_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetimeSixHours ascending""" + datetimeSixHours_ASC + + """datetimeSixHours descending""" + datetimeSixHours_DESC + + """hostname ascending""" + hostname_ASC + + """hostname descending""" + hostname_DESC + + """interfaceName ascending""" + interfaceName_ASC + + """interfaceName descending""" + interfaceName_DESC + + """ipAddress ascending""" + ipAddress_ASC + + """ipAddress descending""" + ipAddress_DESC + + """macAddress ascending""" + macAddress_ASC + + """macAddress descending""" + macAddress_DESC + + """max(expiryTime) ascending""" + max_expiryTime_ASC + + """max(expiryTime) descending""" + max_expiryTime_DESC +} + +""" +Aggregated Magic WAN Connector snapshots of DHCP leases with adaptive sampling +""" +type AccountMconnTelemetrySnapshotDhcpLeasesStagingAdaptiveGroups { + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountMconnTelemetrySnapshotDhcpLeasesStagingAdaptiveGroupsConfidence! + + """Snapshot DHCP lease count""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountMconnTelemetrySnapshotDhcpLeasesStagingAdaptiveGroupsDimensions + + """""" + max: AccountMconnTelemetrySnapshotDhcpLeasesStagingAdaptiveGroupsMax +} + +"""""" +type AccountMconnTelemetrySnapshotDhcpLeasesStagingAdaptiveGroupsConfidence { + """Snapshot DHCP lease count, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! +} + +"""""" +type AccountMconnTelemetrySnapshotDhcpLeasesStagingAdaptiveGroupsDimensions { + """Client ID of the device the IP Address was leased to""" + clientId: string! + + """Connector identifier""" + connectorId: string! + + """Timestamp bucketed by 15 minutes""" + datetimeFifteenMinutes: Time! + + """Timestamp bucketed by 5 minutes""" + datetimeFiveMinutes: Time! + + """Timestamp bucketed by hour""" + datetimeHour: Time! + + """Timestamp bucketed by minute""" + datetimeMinute: Time! + + """Timestamp bucketed by 6 hours""" + datetimeSixHours: Time! + + """Hostname of the device the IP Address was leased to""" + hostname: string! + + """Name of the network interface""" + interfaceName: string! + + """IP Address that was leased""" + ipAddress: string! + + """MAC Address of the device the IP Address was leased to""" + macAddress: string! +} + +"""""" +input AccountMconnTelemetrySnapshotDhcpLeasesStagingAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountMconnTelemetrySnapshotDhcpLeasesStagingAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountMconnTelemetrySnapshotDhcpLeasesStagingAdaptiveGroupsFilter_InputObject!] + + """""" + clientId: string + + """""" + clientId_geq: string + + """""" + clientId_gt: string + + """""" + clientId_in: [string!] + + """""" + clientId_leq: string + + """""" + clientId_like: string + + """""" + clientId_lt: string + + """""" + clientId_neq: string + + """""" + clientId_notin: [string!] + + """""" + clientId_notlike: string + + """""" + connectorId: string + + """""" + connectorId_geq: string + + """""" + connectorId_gt: string + + """""" + connectorId_in: [string!] + + """""" + connectorId_leq: string + + """""" + connectorId_like: string + + """""" + connectorId_lt: string + + """""" + connectorId_neq: string + + """""" + connectorId_notin: [string!] + + """""" + connectorId_notlike: string + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetimeSixHours: Time + + """""" + datetimeSixHours_geq: Time + + """""" + datetimeSixHours_gt: Time + + """""" + datetimeSixHours_in: [Time!] + + """""" + datetimeSixHours_leq: Time + + """""" + datetimeSixHours_lt: Time + + """""" + datetimeSixHours_neq: Time + + """""" + datetimeSixHours_notin: [Time!] + + """""" + hostname: string + + """""" + hostname_geq: string + + """""" + hostname_gt: string + + """""" + hostname_in: [string!] + + """""" + hostname_leq: string + + """""" + hostname_like: string + + """""" + hostname_lt: string + + """""" + hostname_neq: string + + """""" + hostname_notin: [string!] + + """""" + hostname_notlike: string + + """""" + interfaceName: string + + """""" + interfaceName_geq: string + + """""" + interfaceName_gt: string + + """""" + interfaceName_in: [string!] + + """""" + interfaceName_leq: string + + """""" + interfaceName_like: string + + """""" + interfaceName_lt: string + + """""" + interfaceName_neq: string + + """""" + interfaceName_notin: [string!] + + """""" + interfaceName_notlike: string + + """""" + ipAddress: string + + """""" + ipAddress_geq: string + + """""" + ipAddress_gt: string + + """""" + ipAddress_in: [string!] + + """""" + ipAddress_leq: string + + """""" + ipAddress_like: string + + """""" + ipAddress_lt: string + + """""" + ipAddress_neq: string + + """""" + ipAddress_notin: [string!] + + """""" + ipAddress_notlike: string + + """""" + macAddress: string + + """""" + macAddress_geq: string + + """""" + macAddress_gt: string + + """""" + macAddress_in: [string!] + + """""" + macAddress_leq: string + + """""" + macAddress_like: string + + """""" + macAddress_lt: string + + """""" + macAddress_neq: string + + """""" + macAddress_notin: [string!] + + """""" + macAddress_notlike: string +} + +"""""" +type AccountMconnTelemetrySnapshotDhcpLeasesStagingAdaptiveGroupsMax { + """Expiry time of the DHCP lease (seconds since the Unix epoch)""" + expiryTime: float64! +} + +"""""" +enum AccountMconnTelemetrySnapshotDhcpLeasesStagingAdaptiveGroupsOrderBy { + """clientId ascending""" + clientId_ASC + + """clientId descending""" + clientId_DESC + + """connectorId ascending""" + connectorId_ASC + + """connectorId descending""" + connectorId_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetimeSixHours ascending""" + datetimeSixHours_ASC + + """datetimeSixHours descending""" + datetimeSixHours_DESC + + """hostname ascending""" + hostname_ASC + + """hostname descending""" + hostname_DESC + + """interfaceName ascending""" + interfaceName_ASC + + """interfaceName descending""" + interfaceName_DESC + + """ipAddress ascending""" + ipAddress_ASC + + """ipAddress descending""" + ipAddress_DESC + + """macAddress ascending""" + macAddress_ASC + + """macAddress descending""" + macAddress_DESC + + """max(expiryTime) ascending""" + max_expiryTime_ASC + + """max(expiryTime) descending""" + max_expiryTime_DESC +} + +"""Aggregated Magic WAN Connector disk snapshots with adaptive sampling""" +type AccountMconnTelemetrySnapshotDisksAdaptiveGroups { + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountMconnTelemetrySnapshotDisksAdaptiveGroupsConfidence! + + """Snapshot Disk count""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountMconnTelemetrySnapshotDisksAdaptiveGroupsDimensions + + """""" + max: AccountMconnTelemetrySnapshotDisksAdaptiveGroupsMax + + """""" + sum: AccountMconnTelemetrySnapshotDisksAdaptiveGroupsSum +} + +"""""" +type AccountMconnTelemetrySnapshotDisksAdaptiveGroupsConfidence { + """Snapshot Disk count, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! +} + +"""""" +type AccountMconnTelemetrySnapshotDisksAdaptiveGroupsDimensions { + """Connector identifier""" + connectorId: string! + + """Timestamp bucketed by 15 minutes""" + datetimeFifteenMinutes: Time! + + """Timestamp bucketed by 5 minutes""" + datetimeFiveMinutes: Time! + + """Timestamp bucketed by hour""" + datetimeHour: Time! + + """Timestamp bucketed by minute""" + datetimeMinute: Time! + + """Timestamp bucketed by 6 hours""" + datetimeSixHours: Time! + + """Device name""" + name: string! +} + +"""""" +input AccountMconnTelemetrySnapshotDisksAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountMconnTelemetrySnapshotDisksAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountMconnTelemetrySnapshotDisksAdaptiveGroupsFilter_InputObject!] + + """""" + connectorId: string + + """""" + connectorId_geq: string + + """""" + connectorId_gt: string + + """""" + connectorId_in: [string!] + + """""" + connectorId_leq: string + + """""" + connectorId_like: string + + """""" + connectorId_lt: string + + """""" + connectorId_neq: string + + """""" + connectorId_notin: [string!] + + """""" + connectorId_notlike: string + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetimeSixHours: Time + + """""" + datetimeSixHours_geq: Time + + """""" + datetimeSixHours_gt: Time + + """""" + datetimeSixHours_in: [Time!] + + """""" + datetimeSixHours_leq: Time + + """""" + datetimeSixHours_lt: Time + + """""" + datetimeSixHours_neq: Time + + """""" + datetimeSixHours_notin: [Time!] + + """""" + name: string + + """""" + name_geq: string + + """""" + name_gt: string + + """""" + name_in: [string!] + + """""" + name_leq: string + + """""" + name_like: string + + """""" + name_lt: string + + """""" + name_neq: string + + """""" + name_notin: [string!] + + """""" + name_notlike: string +} + +"""""" +type AccountMconnTelemetrySnapshotDisksAdaptiveGroupsMax { + """I/Os currently in progress""" + inProgress: float64! + + """Device major number""" + major: float64! + + """Device minor number""" + minor: float64! +} + +"""""" +enum AccountMconnTelemetrySnapshotDisksAdaptiveGroupsOrderBy { + """connectorId ascending""" + connectorId_ASC + + """connectorId descending""" + connectorId_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetimeSixHours ascending""" + datetimeSixHours_ASC + + """datetimeSixHours descending""" + datetimeSixHours_DESC + + """max(inProgress) ascending""" + max_inProgress_ASC + + """max(inProgress) descending""" + max_inProgress_DESC + + """max(major) ascending""" + max_major_ASC + + """max(major) descending""" + max_major_DESC + + """max(minor) ascending""" + max_minor_ASC + + """max(minor) descending""" + max_minor_DESC + + """name ascending""" + name_ASC + + """name descending""" + name_DESC + + """sum(discardsMerged) ascending""" + sum_discardsMerged_ASC + + """sum(discardsMerged) descending""" + sum_discardsMerged_DESC + + """sum(discards) ascending""" + sum_discards_ASC + + """sum(discards) descending""" + sum_discards_DESC + + """sum(flushes) ascending""" + sum_flushes_ASC + + """sum(flushes) descending""" + sum_flushes_DESC + + """sum(merged) ascending""" + sum_merged_ASC + + """sum(merged) descending""" + sum_merged_DESC + + """sum(reads) ascending""" + sum_reads_ASC + + """sum(reads) descending""" + sum_reads_DESC + + """sum(sectorsDiscarded) ascending""" + sum_sectorsDiscarded_ASC + + """sum(sectorsDiscarded) descending""" + sum_sectorsDiscarded_DESC + + """sum(sectorsRead) ascending""" + sum_sectorsRead_ASC + + """sum(sectorsRead) descending""" + sum_sectorsRead_DESC + + """sum(sectorsWritten) ascending""" + sum_sectorsWritten_ASC + + """sum(sectorsWritten) descending""" + sum_sectorsWritten_DESC + + """sum(writesMerged) ascending""" + sum_writesMerged_ASC + + """sum(writesMerged) descending""" + sum_writesMerged_DESC + + """sum(writes) ascending""" + sum_writes_ASC + + """sum(writes) descending""" + sum_writes_DESC +} + +"""""" +type AccountMconnTelemetrySnapshotDisksAdaptiveGroupsSum { + """Discards completed successfully (delta)""" + discards: float64! + + """Discards merged (delta)""" + discardsMerged: float64! + + """Flushes completed successfully (delta)""" + flushes: float64! + + """Reads merged (delta)""" + merged: float64! + + """Reads completed successfully (delta)""" + reads: float64! + + """Sectors discarded (delta)""" + sectorsDiscarded: float64! + + """Sectors read successfully (delta)""" + sectorsRead: float64! + + """Sectors written successfully (delta)""" + sectorsWritten: float64! + + """Writes completed (delta)""" + writes: float64! + + """Writes merged (delta)""" + writesMerged: float64! +} + +"""Aggregated Magic WAN Connector disk snapshots with adaptive sampling""" +type AccountMconnTelemetrySnapshotDisksStagingAdaptiveGroups { + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountMconnTelemetrySnapshotDisksStagingAdaptiveGroupsConfidence! + + """Snapshot Disk count""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountMconnTelemetrySnapshotDisksStagingAdaptiveGroupsDimensions + + """""" + max: AccountMconnTelemetrySnapshotDisksStagingAdaptiveGroupsMax + + """""" + sum: AccountMconnTelemetrySnapshotDisksStagingAdaptiveGroupsSum +} + +"""""" +type AccountMconnTelemetrySnapshotDisksStagingAdaptiveGroupsConfidence { + """Snapshot Disk count, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! +} + +"""""" +type AccountMconnTelemetrySnapshotDisksStagingAdaptiveGroupsDimensions { + """Connector identifier""" + connectorId: string! + + """Timestamp bucketed by 15 minutes""" + datetimeFifteenMinutes: Time! + + """Timestamp bucketed by 5 minutes""" + datetimeFiveMinutes: Time! + + """Timestamp bucketed by hour""" + datetimeHour: Time! + + """Timestamp bucketed by minute""" + datetimeMinute: Time! + + """Timestamp bucketed by 6 hours""" + datetimeSixHours: Time! + + """Device name""" + name: string! +} + +"""""" +input AccountMconnTelemetrySnapshotDisksStagingAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountMconnTelemetrySnapshotDisksStagingAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountMconnTelemetrySnapshotDisksStagingAdaptiveGroupsFilter_InputObject!] + + """""" + connectorId: string + + """""" + connectorId_geq: string + + """""" + connectorId_gt: string + + """""" + connectorId_in: [string!] + + """""" + connectorId_leq: string + + """""" + connectorId_like: string + + """""" + connectorId_lt: string + + """""" + connectorId_neq: string + + """""" + connectorId_notin: [string!] + + """""" + connectorId_notlike: string + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetimeSixHours: Time + + """""" + datetimeSixHours_geq: Time + + """""" + datetimeSixHours_gt: Time + + """""" + datetimeSixHours_in: [Time!] + + """""" + datetimeSixHours_leq: Time + + """""" + datetimeSixHours_lt: Time + + """""" + datetimeSixHours_neq: Time + + """""" + datetimeSixHours_notin: [Time!] + + """""" + name: string + + """""" + name_geq: string + + """""" + name_gt: string + + """""" + name_in: [string!] + + """""" + name_leq: string + + """""" + name_like: string + + """""" + name_lt: string + + """""" + name_neq: string + + """""" + name_notin: [string!] + + """""" + name_notlike: string +} + +"""""" +type AccountMconnTelemetrySnapshotDisksStagingAdaptiveGroupsMax { + """I/Os currently in progress""" + inProgress: float64! + + """Device major number""" + major: float64! + + """Device minor number""" + minor: float64! +} + +"""""" +enum AccountMconnTelemetrySnapshotDisksStagingAdaptiveGroupsOrderBy { + """connectorId ascending""" + connectorId_ASC + + """connectorId descending""" + connectorId_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetimeSixHours ascending""" + datetimeSixHours_ASC + + """datetimeSixHours descending""" + datetimeSixHours_DESC + + """max(inProgress) ascending""" + max_inProgress_ASC + + """max(inProgress) descending""" + max_inProgress_DESC + + """max(major) ascending""" + max_major_ASC + + """max(major) descending""" + max_major_DESC + + """max(minor) ascending""" + max_minor_ASC + + """max(minor) descending""" + max_minor_DESC + + """name ascending""" + name_ASC + + """name descending""" + name_DESC + + """sum(discardsMerged) ascending""" + sum_discardsMerged_ASC + + """sum(discardsMerged) descending""" + sum_discardsMerged_DESC + + """sum(discards) ascending""" + sum_discards_ASC + + """sum(discards) descending""" + sum_discards_DESC + + """sum(flushes) ascending""" + sum_flushes_ASC + + """sum(flushes) descending""" + sum_flushes_DESC + + """sum(merged) ascending""" + sum_merged_ASC + + """sum(merged) descending""" + sum_merged_DESC + + """sum(reads) ascending""" + sum_reads_ASC + + """sum(reads) descending""" + sum_reads_DESC + + """sum(sectorsDiscarded) ascending""" + sum_sectorsDiscarded_ASC + + """sum(sectorsDiscarded) descending""" + sum_sectorsDiscarded_DESC + + """sum(sectorsRead) ascending""" + sum_sectorsRead_ASC + + """sum(sectorsRead) descending""" + sum_sectorsRead_DESC + + """sum(sectorsWritten) ascending""" + sum_sectorsWritten_ASC + + """sum(sectorsWritten) descending""" + sum_sectorsWritten_DESC + + """sum(writesMerged) ascending""" + sum_writesMerged_ASC + + """sum(writesMerged) descending""" + sum_writesMerged_DESC + + """sum(writes) ascending""" + sum_writes_ASC + + """sum(writes) descending""" + sum_writes_DESC +} + +"""""" +type AccountMconnTelemetrySnapshotDisksStagingAdaptiveGroupsSum { + """Discards completed successfully (delta)""" + discards: float64! + + """Discards merged (delta)""" + discardsMerged: float64! + + """Flushes completed successfully (delta)""" + flushes: float64! + + """Reads merged (delta)""" + merged: float64! + + """Reads completed successfully (delta)""" + reads: float64! + + """Sectors discarded (delta)""" + sectorsDiscarded: float64! + + """Sectors read successfully (delta)""" + sectorsRead: float64! + + """Sectors written successfully (delta)""" + sectorsWritten: float64! + + """Writes completed (delta)""" + writes: float64! + + """Writes merged (delta)""" + writesMerged: float64! +} + +""" +Aggregated Magic WAN Connector interface address snapshots with adaptive sampling +""" +type AccountMconnTelemetrySnapshotInterfaceAddressesAdaptiveGroups { + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountMconnTelemetrySnapshotInterfaceAddressesAdaptiveGroupsConfidence! + + """Snapshot Interface Address count""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountMconnTelemetrySnapshotInterfaceAddressesAdaptiveGroupsDimensions +} + +"""""" +type AccountMconnTelemetrySnapshotInterfaceAddressesAdaptiveGroupsConfidence { + """Snapshot Interface Address count, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! +} + +"""""" +type AccountMconnTelemetrySnapshotInterfaceAddressesAdaptiveGroupsDimensions { + """Connector identifier""" + connectorId: string! + + """Timestamp bucketed by 15 minutes""" + datetimeFifteenMinutes: Time! + + """Timestamp bucketed by 5 minutes""" + datetimeFiveMinutes: Time! + + """Timestamp bucketed by hour""" + datetimeHour: Time! + + """Timestamp bucketed by minute""" + datetimeMinute: Time! + + """Timestamp bucketed by 6 hours""" + datetimeSixHours: Time! + + """Name of the network interface""" + interfaceName: string! + + """IP address of the network interface""" + ipAddress: string! +} + +"""""" +input AccountMconnTelemetrySnapshotInterfaceAddressesAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountMconnTelemetrySnapshotInterfaceAddressesAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountMconnTelemetrySnapshotInterfaceAddressesAdaptiveGroupsFilter_InputObject!] + + """""" + connectorId: string + + """""" + connectorId_geq: string + + """""" + connectorId_gt: string + + """""" + connectorId_in: [string!] + + """""" + connectorId_leq: string + + """""" + connectorId_like: string + + """""" + connectorId_lt: string + + """""" + connectorId_neq: string + + """""" + connectorId_notin: [string!] + + """""" + connectorId_notlike: string + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetimeSixHours: Time + + """""" + datetimeSixHours_geq: Time + + """""" + datetimeSixHours_gt: Time + + """""" + datetimeSixHours_in: [Time!] + + """""" + datetimeSixHours_leq: Time + + """""" + datetimeSixHours_lt: Time + + """""" + datetimeSixHours_neq: Time + + """""" + datetimeSixHours_notin: [Time!] + + """""" + interfaceName: string + + """""" + interfaceName_geq: string + + """""" + interfaceName_gt: string + + """""" + interfaceName_in: [string!] + + """""" + interfaceName_leq: string + + """""" + interfaceName_like: string + + """""" + interfaceName_lt: string + + """""" + interfaceName_neq: string + + """""" + interfaceName_notin: [string!] + + """""" + interfaceName_notlike: string + + """""" + ipAddress: string + + """""" + ipAddress_geq: string + + """""" + ipAddress_gt: string + + """""" + ipAddress_in: [string!] + + """""" + ipAddress_leq: string + + """""" + ipAddress_like: string + + """""" + ipAddress_lt: string + + """""" + ipAddress_neq: string + + """""" + ipAddress_notin: [string!] + + """""" + ipAddress_notlike: string +} + +"""""" +enum AccountMconnTelemetrySnapshotInterfaceAddressesAdaptiveGroupsOrderBy { + """connectorId ascending""" + connectorId_ASC + + """connectorId descending""" + connectorId_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetimeSixHours ascending""" + datetimeSixHours_ASC + + """datetimeSixHours descending""" + datetimeSixHours_DESC + + """interfaceName ascending""" + interfaceName_ASC + + """interfaceName descending""" + interfaceName_DESC + + """ipAddress ascending""" + ipAddress_ASC + + """ipAddress descending""" + ipAddress_DESC +} + +""" +Aggregated Magic WAN Connector interface address snapshots with adaptive sampling +""" +type AccountMconnTelemetrySnapshotInterfaceAddressesStagingAdaptiveGroups { + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountMconnTelemetrySnapshotInterfaceAddressesStagingAdaptiveGroupsConfidence! + + """Snapshot Interface Address count""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountMconnTelemetrySnapshotInterfaceAddressesStagingAdaptiveGroupsDimensions +} + +"""""" +type AccountMconnTelemetrySnapshotInterfaceAddressesStagingAdaptiveGroupsConfidence { + """Snapshot Interface Address count, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! +} + +"""""" +type AccountMconnTelemetrySnapshotInterfaceAddressesStagingAdaptiveGroupsDimensions { + """Connector identifier""" + connectorId: string! + + """Timestamp bucketed by 15 minutes""" + datetimeFifteenMinutes: Time! + + """Timestamp bucketed by 5 minutes""" + datetimeFiveMinutes: Time! + + """Timestamp bucketed by hour""" + datetimeHour: Time! + + """Timestamp bucketed by minute""" + datetimeMinute: Time! + + """Timestamp bucketed by 6 hours""" + datetimeSixHours: Time! + + """Name of the network interface""" + interfaceName: string! + + """IP address of the network interface""" + ipAddress: string! +} + +"""""" +input AccountMconnTelemetrySnapshotInterfaceAddressesStagingAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountMconnTelemetrySnapshotInterfaceAddressesStagingAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountMconnTelemetrySnapshotInterfaceAddressesStagingAdaptiveGroupsFilter_InputObject!] + + """""" + connectorId: string + + """""" + connectorId_geq: string + + """""" + connectorId_gt: string + + """""" + connectorId_in: [string!] + + """""" + connectorId_leq: string + + """""" + connectorId_like: string + + """""" + connectorId_lt: string + + """""" + connectorId_neq: string + + """""" + connectorId_notin: [string!] + + """""" + connectorId_notlike: string + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetimeSixHours: Time + + """""" + datetimeSixHours_geq: Time + + """""" + datetimeSixHours_gt: Time + + """""" + datetimeSixHours_in: [Time!] + + """""" + datetimeSixHours_leq: Time + + """""" + datetimeSixHours_lt: Time + + """""" + datetimeSixHours_neq: Time + + """""" + datetimeSixHours_notin: [Time!] + + """""" + interfaceName: string + + """""" + interfaceName_geq: string + + """""" + interfaceName_gt: string + + """""" + interfaceName_in: [string!] + + """""" + interfaceName_leq: string + + """""" + interfaceName_like: string + + """""" + interfaceName_lt: string + + """""" + interfaceName_neq: string + + """""" + interfaceName_notin: [string!] + + """""" + interfaceName_notlike: string + + """""" + ipAddress: string + + """""" + ipAddress_geq: string + + """""" + ipAddress_gt: string + + """""" + ipAddress_in: [string!] + + """""" + ipAddress_leq: string + + """""" + ipAddress_like: string + + """""" + ipAddress_lt: string + + """""" + ipAddress_neq: string + + """""" + ipAddress_notin: [string!] + + """""" + ipAddress_notlike: string +} + +"""""" +enum AccountMconnTelemetrySnapshotInterfaceAddressesStagingAdaptiveGroupsOrderBy { + """connectorId ascending""" + connectorId_ASC + + """connectorId descending""" + connectorId_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetimeSixHours ascending""" + datetimeSixHours_ASC + + """datetimeSixHours descending""" + datetimeSixHours_DESC + + """interfaceName ascending""" + interfaceName_ASC + + """interfaceName descending""" + interfaceName_DESC + + """ipAddress ascending""" + ipAddress_ASC + + """ipAddress descending""" + ipAddress_DESC +} + +""" +Aggregated Magic WAN Connector interface snapshots with adaptive sampling +""" +type AccountMconnTelemetrySnapshotInterfacesAdaptiveGroups { + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountMconnTelemetrySnapshotInterfacesAdaptiveGroupsConfidence! + + """Snapshot Interface count""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountMconnTelemetrySnapshotInterfacesAdaptiveGroupsDimensions + + """""" + max: AccountMconnTelemetrySnapshotInterfacesAdaptiveGroupsMax +} + +"""""" +type AccountMconnTelemetrySnapshotInterfacesAdaptiveGroupsConfidence { + """Snapshot Interface count, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! +} + +"""""" +type AccountMconnTelemetrySnapshotInterfacesAdaptiveGroupsDimensions { + """Connector identifier""" + connectorId: string! + + """Timestamp bucketed by 15 minutes""" + datetimeFifteenMinutes: Time! + + """Timestamp bucketed by 5 minutes""" + datetimeFiveMinutes: Time! + + """Timestamp bucketed by hour""" + datetimeHour: Time! + + """Timestamp bucketed by minute""" + datetimeMinute: Time! + + """Timestamp bucketed by 6 hours""" + datetimeSixHours: Time! + + """Name of the network interface""" + name: string! + + """UP/DOWN state of the network interface""" + operstate: string! +} + +"""""" +input AccountMconnTelemetrySnapshotInterfacesAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountMconnTelemetrySnapshotInterfacesAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountMconnTelemetrySnapshotInterfacesAdaptiveGroupsFilter_InputObject!] + + """""" + connectorId: string + + """""" + connectorId_geq: string + + """""" + connectorId_gt: string + + """""" + connectorId_in: [string!] + + """""" + connectorId_leq: string + + """""" + connectorId_like: string + + """""" + connectorId_lt: string + + """""" + connectorId_neq: string + + """""" + connectorId_notin: [string!] + + """""" + connectorId_notlike: string + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetimeSixHours: Time + + """""" + datetimeSixHours_geq: Time + + """""" + datetimeSixHours_gt: Time + + """""" + datetimeSixHours_in: [Time!] + + """""" + datetimeSixHours_leq: Time + + """""" + datetimeSixHours_lt: Time + + """""" + datetimeSixHours_neq: Time + + """""" + datetimeSixHours_notin: [Time!] + + """""" + name: string + + """""" + name_geq: string + + """""" + name_gt: string + + """""" + name_in: [string!] + + """""" + name_leq: string + + """""" + name_like: string + + """""" + name_lt: string + + """""" + name_neq: string + + """""" + name_notin: [string!] + + """""" + name_notlike: string + + """""" + operstate: string + + """""" + operstate_geq: string + + """""" + operstate_gt: string + + """""" + operstate_in: [string!] + + """""" + operstate_leq: string + + """""" + operstate_like: string + + """""" + operstate_lt: string + + """""" + operstate_neq: string + + """""" + operstate_notin: [string!] + + """""" + operstate_notlike: string +} + +"""""" +type AccountMconnTelemetrySnapshotInterfacesAdaptiveGroupsMax { + """Speed of the network interface (bits per second)""" + speed: float64! +} + +"""""" +enum AccountMconnTelemetrySnapshotInterfacesAdaptiveGroupsOrderBy { + """connectorId ascending""" + connectorId_ASC + + """connectorId descending""" + connectorId_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetimeSixHours ascending""" + datetimeSixHours_ASC + + """datetimeSixHours descending""" + datetimeSixHours_DESC + + """max(speed) ascending""" + max_speed_ASC + + """max(speed) descending""" + max_speed_DESC + + """name ascending""" + name_ASC + + """name descending""" + name_DESC + + """operstate ascending""" + operstate_ASC + + """operstate descending""" + operstate_DESC +} + +""" +Aggregated Magic WAN Connector interface snapshots with adaptive sampling +""" +type AccountMconnTelemetrySnapshotInterfacesStagingAdaptiveGroups { + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountMconnTelemetrySnapshotInterfacesStagingAdaptiveGroupsConfidence! + + """Snapshot Interface count""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountMconnTelemetrySnapshotInterfacesStagingAdaptiveGroupsDimensions + + """""" + max: AccountMconnTelemetrySnapshotInterfacesStagingAdaptiveGroupsMax +} + +"""""" +type AccountMconnTelemetrySnapshotInterfacesStagingAdaptiveGroupsConfidence { + """Snapshot Interface count, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! +} + +"""""" +type AccountMconnTelemetrySnapshotInterfacesStagingAdaptiveGroupsDimensions { + """Connector identifier""" + connectorId: string! + + """Timestamp bucketed by 15 minutes""" + datetimeFifteenMinutes: Time! + + """Timestamp bucketed by 5 minutes""" + datetimeFiveMinutes: Time! + + """Timestamp bucketed by hour""" + datetimeHour: Time! + + """Timestamp bucketed by minute""" + datetimeMinute: Time! + + """Timestamp bucketed by 6 hours""" + datetimeSixHours: Time! + + """Name of the network interface""" + name: string! + + """UP/DOWN state of the network interface""" + operstate: string! +} + +"""""" +input AccountMconnTelemetrySnapshotInterfacesStagingAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountMconnTelemetrySnapshotInterfacesStagingAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountMconnTelemetrySnapshotInterfacesStagingAdaptiveGroupsFilter_InputObject!] + + """""" + connectorId: string + + """""" + connectorId_geq: string + + """""" + connectorId_gt: string + + """""" + connectorId_in: [string!] + + """""" + connectorId_leq: string + + """""" + connectorId_like: string + + """""" + connectorId_lt: string + + """""" + connectorId_neq: string + + """""" + connectorId_notin: [string!] + + """""" + connectorId_notlike: string + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetimeSixHours: Time + + """""" + datetimeSixHours_geq: Time + + """""" + datetimeSixHours_gt: Time + + """""" + datetimeSixHours_in: [Time!] + + """""" + datetimeSixHours_leq: Time + + """""" + datetimeSixHours_lt: Time + + """""" + datetimeSixHours_neq: Time + + """""" + datetimeSixHours_notin: [Time!] + + """""" + name: string + + """""" + name_geq: string + + """""" + name_gt: string + + """""" + name_in: [string!] + + """""" + name_leq: string + + """""" + name_like: string + + """""" + name_lt: string + + """""" + name_neq: string + + """""" + name_notin: [string!] + + """""" + name_notlike: string + + """""" + operstate: string + + """""" + operstate_geq: string + + """""" + operstate_gt: string + + """""" + operstate_in: [string!] + + """""" + operstate_leq: string + + """""" + operstate_like: string + + """""" + operstate_lt: string + + """""" + operstate_neq: string + + """""" + operstate_notin: [string!] + + """""" + operstate_notlike: string +} + +"""""" +type AccountMconnTelemetrySnapshotInterfacesStagingAdaptiveGroupsMax { + """Speed of the network interface (bits per second)""" + speed: float64! +} + +"""""" +enum AccountMconnTelemetrySnapshotInterfacesStagingAdaptiveGroupsOrderBy { + """connectorId ascending""" + connectorId_ASC + + """connectorId descending""" + connectorId_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetimeSixHours ascending""" + datetimeSixHours_ASC + + """datetimeSixHours descending""" + datetimeSixHours_DESC + + """max(speed) ascending""" + max_speed_ASC + + """max(speed) descending""" + max_speed_DESC + + """name ascending""" + name_ASC + + """name descending""" + name_DESC + + """operstate ascending""" + operstate_ASC + + """operstate descending""" + operstate_DESC +} + +"""Aggregated Magic WAN Connector mount snapshots with adaptive sampling""" +type AccountMconnTelemetrySnapshotMountsAdaptiveGroups { + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountMconnTelemetrySnapshotMountsAdaptiveGroupsConfidence! + + """Snapshot Mount count""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountMconnTelemetrySnapshotMountsAdaptiveGroupsDimensions + + """""" + max: AccountMconnTelemetrySnapshotMountsAdaptiveGroupsMax +} + +"""""" +type AccountMconnTelemetrySnapshotMountsAdaptiveGroupsConfidence { + """Snapshot Mount count, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! +} + +"""""" +type AccountMconnTelemetrySnapshotMountsAdaptiveGroupsDimensions { + """Connector identifier""" + connectorId: string! + + """Timestamp bucketed by 15 minutes""" + datetimeFifteenMinutes: Time! + + """Timestamp bucketed by 5 minutes""" + datetimeFiveMinutes: Time! + + """Timestamp bucketed by hour""" + datetimeHour: Time! + + """Timestamp bucketed by minute""" + datetimeMinute: Time! + + """Timestamp bucketed by 6 hours""" + datetimeSixHours: Time! + + """File system on disk (EXT4, NTFS, etc.)""" + fileSystem: string! + + """Kind of disk (HDD, SSD, etc.)""" + kind: string! + + """Path where disk is mounted""" + mountPoint: string! + + """Name of the disk mount""" + name: string! +} + +"""""" +input AccountMconnTelemetrySnapshotMountsAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountMconnTelemetrySnapshotMountsAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountMconnTelemetrySnapshotMountsAdaptiveGroupsFilter_InputObject!] + + """""" + connectorId: string + + """""" + connectorId_geq: string + + """""" + connectorId_gt: string + + """""" + connectorId_in: [string!] + + """""" + connectorId_leq: string + + """""" + connectorId_like: string + + """""" + connectorId_lt: string + + """""" + connectorId_neq: string + + """""" + connectorId_notin: [string!] + + """""" + connectorId_notlike: string + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetimeSixHours: Time + + """""" + datetimeSixHours_geq: Time + + """""" + datetimeSixHours_gt: Time + + """""" + datetimeSixHours_in: [Time!] + + """""" + datetimeSixHours_leq: Time + + """""" + datetimeSixHours_lt: Time + + """""" + datetimeSixHours_neq: Time + + """""" + datetimeSixHours_notin: [Time!] + + """""" + fileSystem: string + + """""" + fileSystem_geq: string + + """""" + fileSystem_gt: string + + """""" + fileSystem_in: [string!] + + """""" + fileSystem_leq: string + + """""" + fileSystem_like: string + + """""" + fileSystem_lt: string + + """""" + fileSystem_neq: string + + """""" + fileSystem_notin: [string!] + + """""" + fileSystem_notlike: string + + """""" + kind: string + + """""" + kind_geq: string + + """""" + kind_gt: string + + """""" + kind_in: [string!] + + """""" + kind_leq: string + + """""" + kind_like: string + + """""" + kind_lt: string + + """""" + kind_neq: string + + """""" + kind_notin: [string!] + + """""" + kind_notlike: string + + """""" + mountPoint: string + + """""" + mountPoint_geq: string + + """""" + mountPoint_gt: string + + """""" + mountPoint_in: [string!] + + """""" + mountPoint_leq: string + + """""" + mountPoint_like: string + + """""" + mountPoint_lt: string + + """""" + mountPoint_neq: string + + """""" + mountPoint_notin: [string!] + + """""" + mountPoint_notlike: string + + """""" + name: string + + """""" + name_geq: string + + """""" + name_gt: string + + """""" + name_in: [string!] + + """""" + name_leq: string + + """""" + name_like: string + + """""" + name_lt: string + + """""" + name_neq: string + + """""" + name_notin: [string!] + + """""" + name_notlike: string +} + +"""""" +type AccountMconnTelemetrySnapshotMountsAdaptiveGroupsMax { + """Available disk size (bytes)""" + availableBytes: float64! + + """Determines whether the disk is read-only""" + isReadOnly: float64! + + """Determines whether the disk is removable""" + isRemovable: float64! + + """Total disk size (bytes)""" + totalBytes: float64! +} + +"""""" +enum AccountMconnTelemetrySnapshotMountsAdaptiveGroupsOrderBy { + """connectorId ascending""" + connectorId_ASC + + """connectorId descending""" + connectorId_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetimeSixHours ascending""" + datetimeSixHours_ASC + + """datetimeSixHours descending""" + datetimeSixHours_DESC + + """fileSystem ascending""" + fileSystem_ASC + + """fileSystem descending""" + fileSystem_DESC + + """kind ascending""" + kind_ASC + + """kind descending""" + kind_DESC + + """max(availableBytes) ascending""" + max_availableBytes_ASC + + """max(availableBytes) descending""" + max_availableBytes_DESC + + """max(isReadOnly) ascending""" + max_isReadOnly_ASC + + """max(isReadOnly) descending""" + max_isReadOnly_DESC + + """max(isRemovable) ascending""" + max_isRemovable_ASC + + """max(isRemovable) descending""" + max_isRemovable_DESC + + """max(totalBytes) ascending""" + max_totalBytes_ASC + + """max(totalBytes) descending""" + max_totalBytes_DESC + + """mountPoint ascending""" + mountPoint_ASC + + """mountPoint descending""" + mountPoint_DESC + + """name ascending""" + name_ASC + + """name descending""" + name_DESC +} + +"""Aggregated Magic WAN Connector mount snapshots with adaptive sampling""" +type AccountMconnTelemetrySnapshotMountsStagingAdaptiveGroups { + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountMconnTelemetrySnapshotMountsStagingAdaptiveGroupsConfidence! + + """Snapshot Mount count""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountMconnTelemetrySnapshotMountsStagingAdaptiveGroupsDimensions + + """""" + max: AccountMconnTelemetrySnapshotMountsStagingAdaptiveGroupsMax +} + +"""""" +type AccountMconnTelemetrySnapshotMountsStagingAdaptiveGroupsConfidence { + """Snapshot Mount count, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! +} + +"""""" +type AccountMconnTelemetrySnapshotMountsStagingAdaptiveGroupsDimensions { + """Connector identifier""" + connectorId: string! + + """Timestamp bucketed by 15 minutes""" + datetimeFifteenMinutes: Time! + + """Timestamp bucketed by 5 minutes""" + datetimeFiveMinutes: Time! + + """Timestamp bucketed by hour""" + datetimeHour: Time! + + """Timestamp bucketed by minute""" + datetimeMinute: Time! + + """Timestamp bucketed by 6 hours""" + datetimeSixHours: Time! + + """File system on disk (EXT4, NTFS, etc.)""" + fileSystem: string! + + """Kind of disk (HDD, SSD, etc.)""" + kind: string! + + """Path where disk is mounted""" + mountPoint: string! + + """Name of the disk mount""" + name: string! +} + +"""""" +input AccountMconnTelemetrySnapshotMountsStagingAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountMconnTelemetrySnapshotMountsStagingAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountMconnTelemetrySnapshotMountsStagingAdaptiveGroupsFilter_InputObject!] + + """""" + connectorId: string + + """""" + connectorId_geq: string + + """""" + connectorId_gt: string + + """""" + connectorId_in: [string!] + + """""" + connectorId_leq: string + + """""" + connectorId_like: string + + """""" + connectorId_lt: string + + """""" + connectorId_neq: string + + """""" + connectorId_notin: [string!] + + """""" + connectorId_notlike: string + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetimeSixHours: Time + + """""" + datetimeSixHours_geq: Time + + """""" + datetimeSixHours_gt: Time + + """""" + datetimeSixHours_in: [Time!] + + """""" + datetimeSixHours_leq: Time + + """""" + datetimeSixHours_lt: Time + + """""" + datetimeSixHours_neq: Time + + """""" + datetimeSixHours_notin: [Time!] + + """""" + fileSystem: string + + """""" + fileSystem_geq: string + + """""" + fileSystem_gt: string + + """""" + fileSystem_in: [string!] + + """""" + fileSystem_leq: string + + """""" + fileSystem_like: string + + """""" + fileSystem_lt: string + + """""" + fileSystem_neq: string + + """""" + fileSystem_notin: [string!] + + """""" + fileSystem_notlike: string + + """""" + kind: string + + """""" + kind_geq: string + + """""" + kind_gt: string + + """""" + kind_in: [string!] + + """""" + kind_leq: string + + """""" + kind_like: string + + """""" + kind_lt: string + + """""" + kind_neq: string + + """""" + kind_notin: [string!] + + """""" + kind_notlike: string + + """""" + mountPoint: string + + """""" + mountPoint_geq: string + + """""" + mountPoint_gt: string + + """""" + mountPoint_in: [string!] + + """""" + mountPoint_leq: string + + """""" + mountPoint_like: string + + """""" + mountPoint_lt: string + + """""" + mountPoint_neq: string + + """""" + mountPoint_notin: [string!] + + """""" + mountPoint_notlike: string + + """""" + name: string + + """""" + name_geq: string + + """""" + name_gt: string + + """""" + name_in: [string!] + + """""" + name_leq: string + + """""" + name_like: string + + """""" + name_lt: string + + """""" + name_neq: string + + """""" + name_notin: [string!] + + """""" + name_notlike: string +} + +"""""" +type AccountMconnTelemetrySnapshotMountsStagingAdaptiveGroupsMax { + """Available disk size (bytes)""" + availableBytes: float64! + + """Determines whether the disk is read-only""" + isReadOnly: float64! + + """Determines whether the disk is removable""" + isRemovable: float64! + + """Total disk size (bytes)""" + totalBytes: float64! +} + +"""""" +enum AccountMconnTelemetrySnapshotMountsStagingAdaptiveGroupsOrderBy { + """connectorId ascending""" + connectorId_ASC + + """connectorId descending""" + connectorId_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetimeSixHours ascending""" + datetimeSixHours_ASC + + """datetimeSixHours descending""" + datetimeSixHours_DESC + + """fileSystem ascending""" + fileSystem_ASC + + """fileSystem descending""" + fileSystem_DESC + + """kind ascending""" + kind_ASC + + """kind descending""" + kind_DESC + + """max(availableBytes) ascending""" + max_availableBytes_ASC + + """max(availableBytes) descending""" + max_availableBytes_DESC + + """max(isReadOnly) ascending""" + max_isReadOnly_ASC + + """max(isReadOnly) descending""" + max_isReadOnly_DESC + + """max(isRemovable) ascending""" + max_isRemovable_ASC + + """max(isRemovable) descending""" + max_isRemovable_DESC + + """max(totalBytes) ascending""" + max_totalBytes_ASC + + """max(totalBytes) descending""" + max_totalBytes_DESC + + """mountPoint ascending""" + mountPoint_ASC + + """mountPoint descending""" + mountPoint_DESC + + """name ascending""" + name_ASC + + """name descending""" + name_DESC +} + +"""Aggregated Magic WAN Connector netdev snapshots with adaptive sampling""" +type AccountMconnTelemetrySnapshotNetdevsAdaptiveGroups { + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountMconnTelemetrySnapshotNetdevsAdaptiveGroupsConfidence! + + """Snapshot Netdev count""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountMconnTelemetrySnapshotNetdevsAdaptiveGroupsDimensions + + """""" + sum: AccountMconnTelemetrySnapshotNetdevsAdaptiveGroupsSum +} + +"""""" +type AccountMconnTelemetrySnapshotNetdevsAdaptiveGroupsConfidence { + """Snapshot Netdev count, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! +} + +"""""" +type AccountMconnTelemetrySnapshotNetdevsAdaptiveGroupsDimensions { + """Connector identifier""" + connectorId: string! + + """Timestamp bucketed by 15 minutes""" + datetimeFifteenMinutes: Time! + + """Timestamp bucketed by 5 minutes""" + datetimeFiveMinutes: Time! + + """Timestamp bucketed by hour""" + datetimeHour: Time! + + """Timestamp bucketed by minute""" + datetimeMinute: Time! + + """Timestamp bucketed by 6 hours""" + datetimeSixHours: Time! + + """Name of the network device""" + name: string! +} + +"""""" +input AccountMconnTelemetrySnapshotNetdevsAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountMconnTelemetrySnapshotNetdevsAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountMconnTelemetrySnapshotNetdevsAdaptiveGroupsFilter_InputObject!] + + """""" + connectorId: string + + """""" + connectorId_geq: string + + """""" + connectorId_gt: string + + """""" + connectorId_in: [string!] + + """""" + connectorId_leq: string + + """""" + connectorId_like: string + + """""" + connectorId_lt: string + + """""" + connectorId_neq: string + + """""" + connectorId_notin: [string!] + + """""" + connectorId_notlike: string + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetimeSixHours: Time + + """""" + datetimeSixHours_geq: Time + + """""" + datetimeSixHours_gt: Time + + """""" + datetimeSixHours_in: [Time!] + + """""" + datetimeSixHours_leq: Time + + """""" + datetimeSixHours_lt: Time + + """""" + datetimeSixHours_neq: Time + + """""" + datetimeSixHours_notin: [Time!] + + """""" + name: string + + """""" + name_geq: string + + """""" + name_gt: string + + """""" + name_in: [string!] + + """""" + name_leq: string + + """""" + name_like: string + + """""" + name_lt: string + + """""" + name_neq: string + + """""" + name_notin: [string!] + + """""" + name_notlike: string +} + +"""""" +enum AccountMconnTelemetrySnapshotNetdevsAdaptiveGroupsOrderBy { + """connectorId ascending""" + connectorId_ASC + + """connectorId descending""" + connectorId_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetimeSixHours ascending""" + datetimeSixHours_ASC + + """datetimeSixHours descending""" + datetimeSixHours_DESC + + """name ascending""" + name_ASC + + """name descending""" + name_DESC + + """sum(recvBytes) ascending""" + sum_recvBytes_ASC + + """sum(recvBytes) descending""" + sum_recvBytes_DESC + + """sum(recvCompressed) ascending""" + sum_recvCompressed_ASC + + """sum(recvCompressed) descending""" + sum_recvCompressed_DESC + + """sum(recvDrop) ascending""" + sum_recvDrop_ASC + + """sum(recvDrop) descending""" + sum_recvDrop_DESC + + """sum(recvErrs) ascending""" + sum_recvErrs_ASC + + """sum(recvErrs) descending""" + sum_recvErrs_DESC + + """sum(recvFifo) ascending""" + sum_recvFifo_ASC + + """sum(recvFifo) descending""" + sum_recvFifo_DESC + + """sum(recvFrame) ascending""" + sum_recvFrame_ASC + + """sum(recvFrame) descending""" + sum_recvFrame_DESC + + """sum(recvMulticast) ascending""" + sum_recvMulticast_ASC + + """sum(recvMulticast) descending""" + sum_recvMulticast_DESC + + """sum(recvPackets) ascending""" + sum_recvPackets_ASC + + """sum(recvPackets) descending""" + sum_recvPackets_DESC + + """sum(sentBytes) ascending""" + sum_sentBytes_ASC + + """sum(sentBytes) descending""" + sum_sentBytes_DESC + + """sum(sentCarrier) ascending""" + sum_sentCarrier_ASC + + """sum(sentCarrier) descending""" + sum_sentCarrier_DESC + + """sum(sentColls) ascending""" + sum_sentColls_ASC + + """sum(sentColls) descending""" + sum_sentColls_DESC + + """sum(sentCompressed) ascending""" + sum_sentCompressed_ASC + + """sum(sentCompressed) descending""" + sum_sentCompressed_DESC + + """sum(sentDrop) ascending""" + sum_sentDrop_ASC + + """sum(sentDrop) descending""" + sum_sentDrop_DESC + + """sum(sentErrs) ascending""" + sum_sentErrs_ASC + + """sum(sentErrs) descending""" + sum_sentErrs_DESC + + """sum(sentFifo) ascending""" + sum_sentFifo_ASC + + """sum(sentFifo) descending""" + sum_sentFifo_DESC + + """sum(sentPackets) ascending""" + sum_sentPackets_ASC + + """sum(sentPackets) descending""" + sum_sentPackets_DESC +} + +"""""" +type AccountMconnTelemetrySnapshotNetdevsAdaptiveGroupsSum { + """Total bytes received (delta)""" + recvBytes: float64! + + """Compressed packets received (delta)""" + recvCompressed: float64! + + """Packets dropped (delta)""" + recvDrop: float64! + + """Bad packets received (delta)""" + recvErrs: float64! + + """FIFO overruns (delta)""" + recvFifo: float64! + + """Frame alignment errors (delta)""" + recvFrame: float64! + + """Multicast packets received (delta)""" + recvMulticast: float64! + + """Total packets received (delta)""" + recvPackets: float64! + + """Total bytes transmitted (delta)""" + sentBytes: float64! + + """Number of packets not sent due to carrier errors (delta)""" + sentCarrier: float64! + + """Number of collisions (delta)""" + sentColls: float64! + + """Number of compressed packets transmitted (delta)""" + sentCompressed: float64! + + """Number of packets dropped during transmission (delta)""" + sentDrop: float64! + + """Number of transmission errors (delta)""" + sentErrs: float64! + + """FIFO overruns (delta)""" + sentFifo: float64! + + """Total packets transmitted (delta)""" + sentPackets: float64! +} + +"""Aggregated Magic WAN Connector netdev snapshots with adaptive sampling""" +type AccountMconnTelemetrySnapshotNetdevsStagingAdaptiveGroups { + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountMconnTelemetrySnapshotNetdevsStagingAdaptiveGroupsConfidence! + + """Snapshot Netdev count""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountMconnTelemetrySnapshotNetdevsStagingAdaptiveGroupsDimensions + + """""" + sum: AccountMconnTelemetrySnapshotNetdevsStagingAdaptiveGroupsSum +} + +"""""" +type AccountMconnTelemetrySnapshotNetdevsStagingAdaptiveGroupsConfidence { + """Snapshot Netdev count, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! +} + +"""""" +type AccountMconnTelemetrySnapshotNetdevsStagingAdaptiveGroupsDimensions { + """Connector identifier""" + connectorId: string! + + """Timestamp bucketed by 15 minutes""" + datetimeFifteenMinutes: Time! + + """Timestamp bucketed by 5 minutes""" + datetimeFiveMinutes: Time! + + """Timestamp bucketed by hour""" + datetimeHour: Time! + + """Timestamp bucketed by minute""" + datetimeMinute: Time! + + """Timestamp bucketed by 6 hours""" + datetimeSixHours: Time! + + """Name of the network device""" + name: string! +} + +"""""" +input AccountMconnTelemetrySnapshotNetdevsStagingAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountMconnTelemetrySnapshotNetdevsStagingAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountMconnTelemetrySnapshotNetdevsStagingAdaptiveGroupsFilter_InputObject!] + + """""" + connectorId: string + + """""" + connectorId_geq: string + + """""" + connectorId_gt: string + + """""" + connectorId_in: [string!] + + """""" + connectorId_leq: string + + """""" + connectorId_like: string + + """""" + connectorId_lt: string + + """""" + connectorId_neq: string + + """""" + connectorId_notin: [string!] + + """""" + connectorId_notlike: string + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetimeSixHours: Time + + """""" + datetimeSixHours_geq: Time + + """""" + datetimeSixHours_gt: Time + + """""" + datetimeSixHours_in: [Time!] + + """""" + datetimeSixHours_leq: Time + + """""" + datetimeSixHours_lt: Time + + """""" + datetimeSixHours_neq: Time + + """""" + datetimeSixHours_notin: [Time!] + + """""" + name: string + + """""" + name_geq: string + + """""" + name_gt: string + + """""" + name_in: [string!] + + """""" + name_leq: string + + """""" + name_like: string + + """""" + name_lt: string + + """""" + name_neq: string + + """""" + name_notin: [string!] + + """""" + name_notlike: string +} + +"""""" +enum AccountMconnTelemetrySnapshotNetdevsStagingAdaptiveGroupsOrderBy { + """connectorId ascending""" + connectorId_ASC + + """connectorId descending""" + connectorId_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetimeSixHours ascending""" + datetimeSixHours_ASC + + """datetimeSixHours descending""" + datetimeSixHours_DESC + + """name ascending""" + name_ASC + + """name descending""" + name_DESC + + """sum(recvBytes) ascending""" + sum_recvBytes_ASC + + """sum(recvBytes) descending""" + sum_recvBytes_DESC + + """sum(recvCompressed) ascending""" + sum_recvCompressed_ASC + + """sum(recvCompressed) descending""" + sum_recvCompressed_DESC + + """sum(recvDrop) ascending""" + sum_recvDrop_ASC + + """sum(recvDrop) descending""" + sum_recvDrop_DESC + + """sum(recvErrs) ascending""" + sum_recvErrs_ASC + + """sum(recvErrs) descending""" + sum_recvErrs_DESC + + """sum(recvFifo) ascending""" + sum_recvFifo_ASC + + """sum(recvFifo) descending""" + sum_recvFifo_DESC + + """sum(recvFrame) ascending""" + sum_recvFrame_ASC + + """sum(recvFrame) descending""" + sum_recvFrame_DESC + + """sum(recvMulticast) ascending""" + sum_recvMulticast_ASC + + """sum(recvMulticast) descending""" + sum_recvMulticast_DESC + + """sum(recvPackets) ascending""" + sum_recvPackets_ASC + + """sum(recvPackets) descending""" + sum_recvPackets_DESC + + """sum(sentBytes) ascending""" + sum_sentBytes_ASC + + """sum(sentBytes) descending""" + sum_sentBytes_DESC + + """sum(sentCarrier) ascending""" + sum_sentCarrier_ASC + + """sum(sentCarrier) descending""" + sum_sentCarrier_DESC + + """sum(sentColls) ascending""" + sum_sentColls_ASC + + """sum(sentColls) descending""" + sum_sentColls_DESC + + """sum(sentCompressed) ascending""" + sum_sentCompressed_ASC + + """sum(sentCompressed) descending""" + sum_sentCompressed_DESC + + """sum(sentDrop) ascending""" + sum_sentDrop_ASC + + """sum(sentDrop) descending""" + sum_sentDrop_DESC + + """sum(sentErrs) ascending""" + sum_sentErrs_ASC + + """sum(sentErrs) descending""" + sum_sentErrs_DESC + + """sum(sentFifo) ascending""" + sum_sentFifo_ASC + + """sum(sentFifo) descending""" + sum_sentFifo_DESC + + """sum(sentPackets) ascending""" + sum_sentPackets_ASC + + """sum(sentPackets) descending""" + sum_sentPackets_DESC +} + +"""""" +type AccountMconnTelemetrySnapshotNetdevsStagingAdaptiveGroupsSum { + """Total bytes received (delta)""" + recvBytes: float64! + + """Compressed packets received (delta)""" + recvCompressed: float64! + + """Packets dropped (delta)""" + recvDrop: float64! + + """Bad packets received (delta)""" + recvErrs: float64! + + """FIFO overruns (delta)""" + recvFifo: float64! + + """Frame alignment errors (delta)""" + recvFrame: float64! + + """Multicast packets received (delta)""" + recvMulticast: float64! + + """Total packets received (delta)""" + recvPackets: float64! + + """Total bytes transmitted (delta)""" + sentBytes: float64! + + """Number of packets not sent due to carrier errors (delta)""" + sentCarrier: float64! + + """Number of collisions (delta)""" + sentColls: float64! + + """Number of compressed packets transmitted (delta)""" + sentCompressed: float64! + + """Number of packets dropped during transmission (delta)""" + sentDrop: float64! + + """Number of transmission errors (delta)""" + sentErrs: float64! + + """FIFO overruns (delta)""" + sentFifo: float64! + + """Total packets transmitted (delta)""" + sentPackets: float64! +} + +""" +Aggregated Magic WAN Connector thermal snapshots with adaptive sampling +""" +type AccountMconnTelemetrySnapshotThermalsAdaptiveGroups { + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountMconnTelemetrySnapshotThermalsAdaptiveGroupsConfidence! + + """Snapshot Thermal count""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountMconnTelemetrySnapshotThermalsAdaptiveGroupsDimensions + + """""" + max: AccountMconnTelemetrySnapshotThermalsAdaptiveGroupsMax +} + +"""""" +type AccountMconnTelemetrySnapshotThermalsAdaptiveGroupsConfidence { + """Snapshot Thermal count, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! +} + +"""""" +type AccountMconnTelemetrySnapshotThermalsAdaptiveGroupsDimensions { + """Connector identifier""" + connectorId: string! + + """Timestamp bucketed by 15 minutes""" + datetimeFifteenMinutes: Time! + + """Timestamp bucketed by 5 minutes""" + datetimeFiveMinutes: Time! + + """Timestamp bucketed by hour""" + datetimeHour: Time! + + """Timestamp bucketed by minute""" + datetimeMinute: Time! + + """Timestamp bucketed by 6 hours""" + datetimeSixHours: Time! + + """Sensor identifier for the component""" + label: string! +} + +"""""" +input AccountMconnTelemetrySnapshotThermalsAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountMconnTelemetrySnapshotThermalsAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountMconnTelemetrySnapshotThermalsAdaptiveGroupsFilter_InputObject!] + + """""" + connectorId: string + + """""" + connectorId_geq: string + + """""" + connectorId_gt: string + + """""" + connectorId_in: [string!] + + """""" + connectorId_leq: string + + """""" + connectorId_like: string + + """""" + connectorId_lt: string + + """""" + connectorId_neq: string + + """""" + connectorId_notin: [string!] + + """""" + connectorId_notlike: string + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetimeSixHours: Time + + """""" + datetimeSixHours_geq: Time + + """""" + datetimeSixHours_gt: Time + + """""" + datetimeSixHours_in: [Time!] + + """""" + datetimeSixHours_leq: Time + + """""" + datetimeSixHours_lt: Time + + """""" + datetimeSixHours_neq: Time + + """""" + datetimeSixHours_notin: [Time!] + + """""" + label: string + + """""" + label_geq: string + + """""" + label_gt: string + + """""" + label_in: [string!] + + """""" + label_leq: string + + """""" + label_like: string + + """""" + label_lt: string + + """""" + label_neq: string + + """""" + label_notin: [string!] + + """""" + label_notlike: string +} + +"""""" +type AccountMconnTelemetrySnapshotThermalsAdaptiveGroupsMax { + """Critical failure temperature of the component (degrees Celsius)""" + criticalCelcius: float64! + + """Current temperature of the component (degrees Celsius)""" + currentCelcius: float64! + + """Maximum temperature of the component (degrees Celsius)""" + maxCelcius: float64! +} + +"""""" +enum AccountMconnTelemetrySnapshotThermalsAdaptiveGroupsOrderBy { + """connectorId ascending""" + connectorId_ASC + + """connectorId descending""" + connectorId_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetimeSixHours ascending""" + datetimeSixHours_ASC + + """datetimeSixHours descending""" + datetimeSixHours_DESC + + """label ascending""" + label_ASC + + """label descending""" + label_DESC + + """max(criticalCelcius) ascending""" + max_criticalCelcius_ASC + + """max(criticalCelcius) descending""" + max_criticalCelcius_DESC + + """max(currentCelcius) ascending""" + max_currentCelcius_ASC + + """max(currentCelcius) descending""" + max_currentCelcius_DESC + + """max(maxCelcius) ascending""" + max_maxCelcius_ASC + + """max(maxCelcius) descending""" + max_maxCelcius_DESC +} + +""" +Aggregated Magic WAN Connector thermal snapshots with adaptive sampling +""" +type AccountMconnTelemetrySnapshotThermalsStagingAdaptiveGroups { + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountMconnTelemetrySnapshotThermalsStagingAdaptiveGroupsConfidence! + + """Snapshot Thermal count""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountMconnTelemetrySnapshotThermalsStagingAdaptiveGroupsDimensions + + """""" + max: AccountMconnTelemetrySnapshotThermalsStagingAdaptiveGroupsMax +} + +"""""" +type AccountMconnTelemetrySnapshotThermalsStagingAdaptiveGroupsConfidence { + """Snapshot Thermal count, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! +} + +"""""" +type AccountMconnTelemetrySnapshotThermalsStagingAdaptiveGroupsDimensions { + """Connector identifier""" + connectorId: string! + + """Timestamp bucketed by 15 minutes""" + datetimeFifteenMinutes: Time! + + """Timestamp bucketed by 5 minutes""" + datetimeFiveMinutes: Time! + + """Timestamp bucketed by hour""" + datetimeHour: Time! + + """Timestamp bucketed by minute""" + datetimeMinute: Time! + + """Timestamp bucketed by 6 hours""" + datetimeSixHours: Time! + + """Sensor identifier for the component""" + label: string! +} + +"""""" +input AccountMconnTelemetrySnapshotThermalsStagingAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountMconnTelemetrySnapshotThermalsStagingAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountMconnTelemetrySnapshotThermalsStagingAdaptiveGroupsFilter_InputObject!] + + """""" + connectorId: string + + """""" + connectorId_geq: string + + """""" + connectorId_gt: string + + """""" + connectorId_in: [string!] + + """""" + connectorId_leq: string + + """""" + connectorId_like: string + + """""" + connectorId_lt: string + + """""" + connectorId_neq: string + + """""" + connectorId_notin: [string!] + + """""" + connectorId_notlike: string + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetimeSixHours: Time + + """""" + datetimeSixHours_geq: Time + + """""" + datetimeSixHours_gt: Time + + """""" + datetimeSixHours_in: [Time!] + + """""" + datetimeSixHours_leq: Time + + """""" + datetimeSixHours_lt: Time + + """""" + datetimeSixHours_neq: Time + + """""" + datetimeSixHours_notin: [Time!] + + """""" + label: string + + """""" + label_geq: string + + """""" + label_gt: string + + """""" + label_in: [string!] + + """""" + label_leq: string + + """""" + label_like: string + + """""" + label_lt: string + + """""" + label_neq: string + + """""" + label_notin: [string!] + + """""" + label_notlike: string +} + +"""""" +type AccountMconnTelemetrySnapshotThermalsStagingAdaptiveGroupsMax { + """Critical failure temperature of the component (degrees Celsius)""" + criticalCelcius: float64! + + """Current temperature of the component (degrees Celsius)""" + currentCelcius: float64! + + """Maximum temperature of the component (degrees Celsius)""" + maxCelcius: float64! +} + +"""""" +enum AccountMconnTelemetrySnapshotThermalsStagingAdaptiveGroupsOrderBy { + """connectorId ascending""" + connectorId_ASC + + """connectorId descending""" + connectorId_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetimeSixHours ascending""" + datetimeSixHours_ASC + + """datetimeSixHours descending""" + datetimeSixHours_DESC + + """label ascending""" + label_ASC + + """label descending""" + label_DESC + + """max(criticalCelcius) ascending""" + max_criticalCelcius_ASC + + """max(criticalCelcius) descending""" + max_criticalCelcius_DESC + + """max(currentCelcius) ascending""" + max_currentCelcius_ASC + + """max(currentCelcius) descending""" + max_currentCelcius_DESC + + """max(maxCelcius) ascending""" + max_maxCelcius_ASC + + """max(maxCelcius) descending""" + max_maxCelcius_DESC +} + +"""Aggregated Magic WAN Connector tunnel snapshots with adaptive sampling""" +type AccountMconnTelemetrySnapshotTunnelsAdaptiveGroups { + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountMconnTelemetrySnapshotTunnelsAdaptiveGroupsConfidence! + + """Snapshot Tunnels count""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountMconnTelemetrySnapshotTunnelsAdaptiveGroupsDimensions + + """""" + max: AccountMconnTelemetrySnapshotTunnelsAdaptiveGroupsMax +} + +"""""" +type AccountMconnTelemetrySnapshotTunnelsAdaptiveGroupsConfidence { + """Snapshot Tunnels count, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! +} + +"""""" +type AccountMconnTelemetrySnapshotTunnelsAdaptiveGroupsDimensions { + """Connector identifier""" + connectorId: string! + + """Timestamp bucketed by 15 minutes""" + datetimeFifteenMinutes: Time! + + """Timestamp bucketed by 5 minutes""" + datetimeFiveMinutes: Time! + + """Timestamp bucketed by hour""" + datetimeHour: Time! + + """Timestamp bucketed by minute""" + datetimeMinute: Time! + + """Timestamp bucketed by 6 hours""" + datetimeSixHours: Time! + + """The tunnel interface name (i.e. xfrm1, xfrm3.99, etc.)""" + interfaceName: string! + + """Tunnel identifier""" + tunnelId: string! +} + +"""""" +input AccountMconnTelemetrySnapshotTunnelsAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountMconnTelemetrySnapshotTunnelsAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountMconnTelemetrySnapshotTunnelsAdaptiveGroupsFilter_InputObject!] + + """""" + connectorId: string + + """""" + connectorId_geq: string + + """""" + connectorId_gt: string + + """""" + connectorId_in: [string!] + + """""" + connectorId_leq: string + + """""" + connectorId_like: string + + """""" + connectorId_lt: string + + """""" + connectorId_neq: string + + """""" + connectorId_notin: [string!] + + """""" + connectorId_notlike: string + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetimeSixHours: Time + + """""" + datetimeSixHours_geq: Time + + """""" + datetimeSixHours_gt: Time + + """""" + datetimeSixHours_in: [Time!] + + """""" + datetimeSixHours_leq: Time + + """""" + datetimeSixHours_lt: Time + + """""" + datetimeSixHours_neq: Time + + """""" + datetimeSixHours_notin: [Time!] + + """""" + interfaceName: string + + """""" + interfaceName_geq: string + + """""" + interfaceName_gt: string + + """""" + interfaceName_in: [string!] + + """""" + interfaceName_leq: string + + """""" + interfaceName_like: string + + """""" + interfaceName_lt: string + + """""" + interfaceName_neq: string + + """""" + interfaceName_notin: [string!] + + """""" + interfaceName_notlike: string + + """""" + tunnelId: string + + """""" + tunnelId_geq: string + + """""" + tunnelId_gt: string + + """""" + tunnelId_in: [string!] + + """""" + tunnelId_leq: string + + """""" + tunnelId_like: string + + """""" + tunnelId_lt: string + + """""" + tunnelId_neq: string + + """""" + tunnelId_notin: [string!] + + """""" + tunnelId_notlike: string +} + +"""""" +type AccountMconnTelemetrySnapshotTunnelsAdaptiveGroupsMax { + """ + Numeric value associated with tunnel state (0 = unknown, 1 = healthy, 2 = degraded, 3 = down) + """ + healthValue: float64! +} + +"""""" +enum AccountMconnTelemetrySnapshotTunnelsAdaptiveGroupsOrderBy { + """connectorId ascending""" + connectorId_ASC + + """connectorId descending""" + connectorId_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetimeSixHours ascending""" + datetimeSixHours_ASC + + """datetimeSixHours descending""" + datetimeSixHours_DESC + + """interfaceName ascending""" + interfaceName_ASC + + """interfaceName descending""" + interfaceName_DESC + + """max(healthValue) ascending""" + max_healthValue_ASC + + """max(healthValue) descending""" + max_healthValue_DESC + + """tunnelId ascending""" + tunnelId_ASC + + """tunnelId descending""" + tunnelId_DESC +} + +"""Aggregated Magic WAN Connector tunnel snapshots with adaptive sampling""" +type AccountMconnTelemetrySnapshotTunnelsStagingAdaptiveGroups { + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountMconnTelemetrySnapshotTunnelsStagingAdaptiveGroupsConfidence! + + """Snapshot Tunnels count""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountMconnTelemetrySnapshotTunnelsStagingAdaptiveGroupsDimensions + + """""" + max: AccountMconnTelemetrySnapshotTunnelsStagingAdaptiveGroupsMax +} + +"""""" +type AccountMconnTelemetrySnapshotTunnelsStagingAdaptiveGroupsConfidence { + """Snapshot Tunnels count, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! +} + +"""""" +type AccountMconnTelemetrySnapshotTunnelsStagingAdaptiveGroupsDimensions { + """Connector identifier""" + connectorId: string! + + """Timestamp bucketed by 15 minutes""" + datetimeFifteenMinutes: Time! + + """Timestamp bucketed by 5 minutes""" + datetimeFiveMinutes: Time! + + """Timestamp bucketed by hour""" + datetimeHour: Time! + + """Timestamp bucketed by minute""" + datetimeMinute: Time! + + """Timestamp bucketed by 6 hours""" + datetimeSixHours: Time! + + """The tunnel interface name (i.e. xfrm1, xfrm3.99, etc.)""" + interfaceName: string! + + """Tunnel identifier""" + tunnelId: string! +} + +"""""" +input AccountMconnTelemetrySnapshotTunnelsStagingAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountMconnTelemetrySnapshotTunnelsStagingAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountMconnTelemetrySnapshotTunnelsStagingAdaptiveGroupsFilter_InputObject!] + + """""" + connectorId: string + + """""" + connectorId_geq: string + + """""" + connectorId_gt: string + + """""" + connectorId_in: [string!] + + """""" + connectorId_leq: string + + """""" + connectorId_like: string + + """""" + connectorId_lt: string + + """""" + connectorId_neq: string + + """""" + connectorId_notin: [string!] + + """""" + connectorId_notlike: string + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetimeSixHours: Time + + """""" + datetimeSixHours_geq: Time + + """""" + datetimeSixHours_gt: Time + + """""" + datetimeSixHours_in: [Time!] + + """""" + datetimeSixHours_leq: Time + + """""" + datetimeSixHours_lt: Time + + """""" + datetimeSixHours_neq: Time + + """""" + datetimeSixHours_notin: [Time!] + + """""" + interfaceName: string + + """""" + interfaceName_geq: string + + """""" + interfaceName_gt: string + + """""" + interfaceName_in: [string!] + + """""" + interfaceName_leq: string + + """""" + interfaceName_like: string + + """""" + interfaceName_lt: string + + """""" + interfaceName_neq: string + + """""" + interfaceName_notin: [string!] + + """""" + interfaceName_notlike: string + + """""" + tunnelId: string + + """""" + tunnelId_geq: string + + """""" + tunnelId_gt: string + + """""" + tunnelId_in: [string!] + + """""" + tunnelId_leq: string + + """""" + tunnelId_like: string + + """""" + tunnelId_lt: string + + """""" + tunnelId_neq: string + + """""" + tunnelId_notin: [string!] + + """""" + tunnelId_notlike: string +} + +"""""" +type AccountMconnTelemetrySnapshotTunnelsStagingAdaptiveGroupsMax { + """ + Numeric value associated with tunnel state (0 = unknown, 1 = healthy, 2 = degraded, 3 = down) + """ + healthValue: float64! +} + +"""""" +enum AccountMconnTelemetrySnapshotTunnelsStagingAdaptiveGroupsOrderBy { + """connectorId ascending""" + connectorId_ASC + + """connectorId descending""" + connectorId_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetimeSixHours ascending""" + datetimeSixHours_ASC + + """datetimeSixHours descending""" + datetimeSixHours_DESC + + """interfaceName ascending""" + interfaceName_ASC + + """interfaceName descending""" + interfaceName_DESC + + """max(healthValue) ascending""" + max_healthValue_ASC + + """max(healthValue) descending""" + max_healthValue_DESC + + """tunnelId ascending""" + tunnelId_ASC + + """tunnelId descending""" + tunnelId_DESC +} + +"""Aggregated Magic WAN Connector system snapshots with adaptive sampling""" +type AccountMconnTelemetrySnapshotsAdaptiveGroups { + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountMconnTelemetrySnapshotsAdaptiveGroupsConfidence! + + """Snapshot count""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountMconnTelemetrySnapshotsAdaptiveGroupsDimensions + + """""" + max: AccountMconnTelemetrySnapshotsAdaptiveGroupsMax +} + +"""""" +type AccountMconnTelemetrySnapshotsAdaptiveGroupsConfidence { + """Snapshot count, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! +} + +"""""" +type AccountMconnTelemetrySnapshotsAdaptiveGroupsDimensions { + """Connector identifier""" + connectorId: string! + + """Timestamp bucketed by 15 minutes""" + datetimeFifteenMinutes: Time! + + """Timestamp bucketed by 5 minutes""" + datetimeFiveMinutes: Time! + + """Timestamp bucketed by hour""" + datetimeHour: Time! + + """Timestamp bucketed by minute""" + datetimeMinute: Time! + + """Timestamp bucketed by 6 hours""" + datetimeSixHours: Time! + + """Version""" + version: string! +} + +"""""" +input AccountMconnTelemetrySnapshotsAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountMconnTelemetrySnapshotsAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountMconnTelemetrySnapshotsAdaptiveGroupsFilter_InputObject!] + + """""" + connectorId: string + + """""" + connectorId_geq: string + + """""" + connectorId_gt: string + + """""" + connectorId_in: [string!] + + """""" + connectorId_leq: string + + """""" + connectorId_like: string + + """""" + connectorId_lt: string + + """""" + connectorId_neq: string + + """""" + connectorId_notin: [string!] + + """""" + connectorId_notlike: string + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetimeSixHours: Time + + """""" + datetimeSixHours_geq: Time + + """""" + datetimeSixHours_gt: Time + + """""" + datetimeSixHours_in: [Time!] + + """""" + datetimeSixHours_leq: Time + + """""" + datetimeSixHours_lt: Time + + """""" + datetimeSixHours_neq: Time + + """""" + datetimeSixHours_notin: [Time!] + + """""" + version: string + + """""" + version_geq: string + + """""" + version_gt: string + + """""" + version_in: [string!] + + """""" + version_leq: string + + """""" + version_like: string + + """""" + version_lt: string + + """""" + version_neq: string + + """""" + version_notin: [string!] + + """""" + version_notlike: string +} + +"""""" +type AccountMconnTelemetrySnapshotsAdaptiveGroupsMax { + """Count of processors/cores""" + cpuCount: float64! + + """ + Numeric value associated with high availability state (0 = disabled, 1 = active, 2 = standby, 3 = stopped, 4 = fault) + """ + haValue: float64! + + """Boot time (seconds since Unix epoch)""" + kernelBtime: float64! + + """Number of processes in runnable state""" + kernelProcessesRunning: float64! + + """The fifteen-minute load average""" + loadAverage15m: float64! + + """The one-minute load average""" + loadAverage1m: float64! + + """The five-minute load average""" + loadAverage5m: float64! + + """Memory that has been used more recently""" + memoryActiveBytes: float64! + + """Estimate of how much memory is available for starting new applications""" + memoryAvailableBytes: float64! + + """Relatively temporary storage for raw disk blocks""" + memoryBuffersBytes: float64! + + """In-memory cache for files read from the disk""" + memoryCachedBytes: float64! + + """The sum of LowFree and HighFree""" + memoryFreeBytes: float64! + + """Memory which has been less recently used""" + memoryInactiveBytes: float64! + + """Total usable RAM""" + memoryTotalBytes: float64! +} + +"""""" +enum AccountMconnTelemetrySnapshotsAdaptiveGroupsOrderBy { + """connectorId ascending""" + connectorId_ASC + + """connectorId descending""" + connectorId_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetimeSixHours ascending""" + datetimeSixHours_ASC + + """datetimeSixHours descending""" + datetimeSixHours_DESC + + """max(cpuCount) ascending""" + max_cpuCount_ASC + + """max(cpuCount) descending""" + max_cpuCount_DESC + + """max(haValue) ascending""" + max_haValue_ASC + + """max(haValue) descending""" + max_haValue_DESC + + """max(kernelBtime) ascending""" + max_kernelBtime_ASC + + """max(kernelBtime) descending""" + max_kernelBtime_DESC + + """max(kernelProcessesRunning) ascending""" + max_kernelProcessesRunning_ASC + + """max(kernelProcessesRunning) descending""" + max_kernelProcessesRunning_DESC + + """max(loadAverage15m) ascending""" + max_loadAverage15m_ASC + + """max(loadAverage15m) descending""" + max_loadAverage15m_DESC + + """max(loadAverage1m) ascending""" + max_loadAverage1m_ASC + + """max(loadAverage1m) descending""" + max_loadAverage1m_DESC + + """max(loadAverage5m) ascending""" + max_loadAverage5m_ASC + + """max(loadAverage5m) descending""" + max_loadAverage5m_DESC + + """max(memoryActiveBytes) ascending""" + max_memoryActiveBytes_ASC + + """max(memoryActiveBytes) descending""" + max_memoryActiveBytes_DESC + + """max(memoryAvailableBytes) ascending""" + max_memoryAvailableBytes_ASC + + """max(memoryAvailableBytes) descending""" + max_memoryAvailableBytes_DESC + + """max(memoryBuffersBytes) ascending""" + max_memoryBuffersBytes_ASC + + """max(memoryBuffersBytes) descending""" + max_memoryBuffersBytes_DESC + + """max(memoryCachedBytes) ascending""" + max_memoryCachedBytes_ASC + + """max(memoryCachedBytes) descending""" + max_memoryCachedBytes_DESC + + """max(memoryFreeBytes) ascending""" + max_memoryFreeBytes_ASC + + """max(memoryFreeBytes) descending""" + max_memoryFreeBytes_DESC + + """max(memoryInactiveBytes) ascending""" + max_memoryInactiveBytes_ASC + + """max(memoryInactiveBytes) descending""" + max_memoryInactiveBytes_DESC + + """max(memoryTotalBytes) ascending""" + max_memoryTotalBytes_ASC + + """max(memoryTotalBytes) descending""" + max_memoryTotalBytes_DESC + + """version ascending""" + version_ASC + + """version descending""" + version_DESC +} + +"""Aggregated Magic WAN Connector system snapshots with adaptive sampling""" +type AccountMconnTelemetrySnapshotsStagingAdaptiveGroups { + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountMconnTelemetrySnapshotsStagingAdaptiveGroupsConfidence! + + """Snapshot count""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountMconnTelemetrySnapshotsStagingAdaptiveGroupsDimensions + + """""" + max: AccountMconnTelemetrySnapshotsStagingAdaptiveGroupsMax +} + +"""""" +type AccountMconnTelemetrySnapshotsStagingAdaptiveGroupsConfidence { + """Snapshot count, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! +} + +"""""" +type AccountMconnTelemetrySnapshotsStagingAdaptiveGroupsDimensions { + """Connector identifier""" + connectorId: string! + + """Timestamp bucketed by 15 minutes""" + datetimeFifteenMinutes: Time! + + """Timestamp bucketed by 5 minutes""" + datetimeFiveMinutes: Time! + + """Timestamp bucketed by hour""" + datetimeHour: Time! + + """Timestamp bucketed by minute""" + datetimeMinute: Time! + + """Timestamp bucketed by 6 hours""" + datetimeSixHours: Time! + + """Version""" + version: string! +} + +"""""" +input AccountMconnTelemetrySnapshotsStagingAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountMconnTelemetrySnapshotsStagingAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountMconnTelemetrySnapshotsStagingAdaptiveGroupsFilter_InputObject!] + + """""" + connectorId: string + + """""" + connectorId_geq: string + + """""" + connectorId_gt: string + + """""" + connectorId_in: [string!] + + """""" + connectorId_leq: string + + """""" + connectorId_like: string + + """""" + connectorId_lt: string + + """""" + connectorId_neq: string + + """""" + connectorId_notin: [string!] + + """""" + connectorId_notlike: string + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetimeSixHours: Time + + """""" + datetimeSixHours_geq: Time + + """""" + datetimeSixHours_gt: Time + + """""" + datetimeSixHours_in: [Time!] + + """""" + datetimeSixHours_leq: Time + + """""" + datetimeSixHours_lt: Time + + """""" + datetimeSixHours_neq: Time + + """""" + datetimeSixHours_notin: [Time!] + + """""" + version: string + + """""" + version_geq: string + + """""" + version_gt: string + + """""" + version_in: [string!] + + """""" + version_leq: string + + """""" + version_like: string + + """""" + version_lt: string + + """""" + version_neq: string + + """""" + version_notin: [string!] + + """""" + version_notlike: string +} + +"""""" +type AccountMconnTelemetrySnapshotsStagingAdaptiveGroupsMax { + """Count of processors/cores""" + cpuCount: float64! + + """ + Numeric value associated with high availability state (0 = disabled, 1 = active, 2 = standby, 3 = stopped, 4 = fault) + """ + haValue: float64! + + """Boot time (seconds since Unix epoch)""" + kernelBtime: float64! + + """Number of processes in runnable state""" + kernelProcessesRunning: float64! + + """The fifteen-minute load average""" + loadAverage15m: float64! + + """The one-minute load average""" + loadAverage1m: float64! + + """The five-minute load average""" + loadAverage5m: float64! + + """Memory that has been used more recently""" + memoryActiveBytes: float64! + + """Estimate of how much memory is available for starting new applications""" + memoryAvailableBytes: float64! + + """Relatively temporary storage for raw disk blocks""" + memoryBuffersBytes: float64! + + """In-memory cache for files read from the disk""" + memoryCachedBytes: float64! + + """The sum of LowFree and HighFree""" + memoryFreeBytes: float64! + + """Memory which has been less recently used""" + memoryInactiveBytes: float64! + + """Total usable RAM""" + memoryTotalBytes: float64! +} + +"""""" +enum AccountMconnTelemetrySnapshotsStagingAdaptiveGroupsOrderBy { + """connectorId ascending""" + connectorId_ASC + + """connectorId descending""" + connectorId_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetimeSixHours ascending""" + datetimeSixHours_ASC + + """datetimeSixHours descending""" + datetimeSixHours_DESC + + """max(cpuCount) ascending""" + max_cpuCount_ASC + + """max(cpuCount) descending""" + max_cpuCount_DESC + + """max(haValue) ascending""" + max_haValue_ASC + + """max(haValue) descending""" + max_haValue_DESC + + """max(kernelBtime) ascending""" + max_kernelBtime_ASC + + """max(kernelBtime) descending""" + max_kernelBtime_DESC + + """max(kernelProcessesRunning) ascending""" + max_kernelProcessesRunning_ASC + + """max(kernelProcessesRunning) descending""" + max_kernelProcessesRunning_DESC + + """max(loadAverage15m) ascending""" + max_loadAverage15m_ASC + + """max(loadAverage15m) descending""" + max_loadAverage15m_DESC + + """max(loadAverage1m) ascending""" + max_loadAverage1m_ASC + + """max(loadAverage1m) descending""" + max_loadAverage1m_DESC + + """max(loadAverage5m) ascending""" + max_loadAverage5m_ASC + + """max(loadAverage5m) descending""" + max_loadAverage5m_DESC + + """max(memoryActiveBytes) ascending""" + max_memoryActiveBytes_ASC + + """max(memoryActiveBytes) descending""" + max_memoryActiveBytes_DESC + + """max(memoryAvailableBytes) ascending""" + max_memoryAvailableBytes_ASC + + """max(memoryAvailableBytes) descending""" + max_memoryAvailableBytes_DESC + + """max(memoryBuffersBytes) ascending""" + max_memoryBuffersBytes_ASC + + """max(memoryBuffersBytes) descending""" + max_memoryBuffersBytes_DESC + + """max(memoryCachedBytes) ascending""" + max_memoryCachedBytes_ASC + + """max(memoryCachedBytes) descending""" + max_memoryCachedBytes_DESC + + """max(memoryFreeBytes) ascending""" + max_memoryFreeBytes_ASC + + """max(memoryFreeBytes) descending""" + max_memoryFreeBytes_DESC + + """max(memoryInactiveBytes) ascending""" + max_memoryInactiveBytes_ASC + + """max(memoryInactiveBytes) descending""" + max_memoryInactiveBytes_DESC + + """max(memoryTotalBytes) ascending""" + max_memoryTotalBytes_ASC + + """max(memoryTotalBytes) descending""" + max_memoryTotalBytes_DESC + + """version ascending""" + version_ASC + + """version descending""" + version_DESC +} + +"""Media unique transfromations per day""" +type AccountMediaUniqueTransformations { + """The date uniques are calculated for""" + date: Date! + + """Number of unique media transformations per day in sliding window""" + transformations: uint64! +} + +"""Media unique transformations accumulated since start of month""" +type AccountMediaUniqueTransformationsAccumulatedSinceStartOfMonth { + """The date uniques are calculated for""" + date: Date! + + """ + Accumulated number of unique media transformations since start of month per day in sliding window + """ + transformations: uint64! +} + +"""""" +input AccountMediaUniqueTransformationsAccumulatedSinceStartOfMonthFilter_InputObject { + """""" + AND: [AccountMediaUniqueTransformationsAccumulatedSinceStartOfMonthFilter_InputObject!] + + """""" + OR: [AccountMediaUniqueTransformationsAccumulatedSinceStartOfMonthFilter_InputObject!] + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] +} + +"""""" +enum AccountMediaUniqueTransformationsAccumulatedSinceStartOfMonthOrderBy { + """date ascending""" + date_ASC + + """date descending""" + date_DESC +} + +"""""" +input AccountMediaUniqueTransformationsFilter_InputObject { + """""" + AND: [AccountMediaUniqueTransformationsFilter_InputObject!] + + """""" + OR: [AccountMediaUniqueTransformationsFilter_InputObject!] + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] +} + +"""""" +enum AccountMediaUniqueTransformationsOrderBy { + """date ascending""" + date_ASC + + """date descending""" + date_DESC +} + +"""AWS VPC Flow data collected through Magic Network Monitoring""" +type AccountMnmAWSVPCFlowDataAdaptiveGroups { + """The average of values for a metric per dimension""" + avg: AccountMnmAWSVPCFlowDataAdaptiveGroupsAvg + + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountMnmAWSVPCFlowDataAdaptiveGroupsConfidence! + + """List of dimensions to group by""" + dimensions: AccountMnmAWSVPCFlowDataAdaptiveGroupsDimensions + + """The sum of values for a metric per dimension""" + sum: AccountMnmAWSVPCFlowDataAdaptiveGroupsSum +} + +"""""" +type AccountMnmAWSVPCFlowDataAdaptiveGroupsAvg { + """ + Sum of bits received, divided by 1 second, providing a per-second bit rate when grouped by datetime + """ + bitRate: float64! + + """ + Sum of bits received, divided by 86400 seconds, providing a per-second bit rate when grouped by date + """ + bitRateDay: float64! + + """ + Sum of bits received, divided by 900 seconds, providing a per-second bit rate when grouped by datetimeFifteenMinutes + """ + bitRateFifteenMinutes: float64! + + """ + Sum of bits received, divided by 300 seconds, providing a per-second bit rate when grouped by datetimeFiveMinutes + """ + bitRateFiveMinutes: float64! + + """ + Sum of bits received, divided by 3600 seconds, providing a per-second bit rate when grouped by datetimeHour + """ + bitRateHour: float64! + + """ + Sum of bits received, divided by 60 seconds, providing a per-second bit rate when grouped by datetimeMinute + """ + bitRateMinute: float64! + + """ + Sum of bits received, divided by 10 seconds, providing a per-second bit rate when grouped by datetimeTenSeconds + """ + bitRateTenSeconds: float64! + + """ + Sum of egress bits received, divided by 1 second, providing a per-second egress bit rate when grouped by datetime + """ + egressBitRate: float64! + + """ + Sum of egress bits received, divided by 86400 seconds, providing a per-second egress bit rate when grouped by date + """ + egressBitRateDay: float64! + + """ + Sum of egress bits received, divided by 900 seconds, providing a per-second egress bit rate when grouped by datetimeFifteenMinutes + """ + egressBitRateFifteenMinutes: float64! + + """ + Sum of egress bits received, divided by 300 seconds, providing a per-second egress bit rate when grouped by datetimeFiveMinutes + """ + egressBitRateFiveMinutes: float64! + + """ + Sum of egress bits received, divided by 3600 seconds, providing a per-second egress bit rate when grouped by datetimeHour + """ + egressBitRateHour: float64! + + """ + Sum of egress bits received, divided by 60 seconds, providing a per-second egress bit rate when grouped by datetimeMinute + """ + egressBitRateMinute: float64! + + """ + Sum of egress bits received, divided by 10 seconds, providing a per-second egress bit rate when grouped by datetimeTenSeconds + """ + egressBitRateTenSeconds: float64! + + """ + Sum of egress packets received, divided by 1 second, providing a per-second egress packet rate when grouped by datetime + """ + egressPacketRate: float64! + + """ + Sum of egress packets received, divided by 86400 seconds, providing a per-second egress packet rate when grouped by date + """ + egressPacketRateDay: float64! + + """ + Sum of egress packets received, divided by 900 seconds, providing a per-second egress packet rate when grouped by datetimeFifteenMinutes + """ + egressPacketRateFifteenMinutes: float64! + + """ + Sum of egress packets received, divided by 300 seconds, providing a per-second egress packet rate when grouped by datetimeFiveMinutes + """ + egressPacketRateFiveMinutes: float64! + + """ + Sum of egress packets received, divided by 3600 seconds, providing a per-second egress packet rate when grouped by datetimeHour + """ + egressPacketRateHour: float64! + + """ + Sum of egress packets received, divided by 60 seconds, providing a per-second egress packet rate when grouped by datetimeMinute + """ + egressPacketRateMinute: float64! + + """ + Sum of egress packets received, divided by 10 seconds, providing a per-second egress packet rate when grouped by datetimeTenSeconds + """ + egressPacketRateTenSeconds: float64! + + """ + Sum of packets received, divided by 1 second, providing a per-second packet rate when grouped by datetime + """ + packetRate: float64! + + """ + Sum of packets received, divided by 86400 seconds, providing a per-second packet rate when grouped by date + """ + packetRateDay: float64! + + """ + Sum of packets received, divided by 900 seconds, providing a per-second packet rate when grouped by datetimeFifteenMinutes + """ + packetRateFifteenMinutes: float64! + + """ + Sum of packets received, divided by 300 seconds, providing a per-second packet rate when grouped by datetimeFiveMinutes + """ + packetRateFiveMinutes: float64! + + """ + Sum of packets received, divided by 3600 seconds, providing a per-second packet rate when grouped by datetimeHour + """ + packetRateHour: float64! + + """ + Sum of packets received, divided by 60 seconds, providing a per-second packet rate when grouped by datetimeMinute + """ + packetRateMinute: float64! + + """ + Sum of packets received, divided by 10 seconds, providing a per-second packet rate when grouped by datetimeTenSeconds + """ + packetRateTenSeconds: float64! + + """Average sample interval applied to the data""" + sampleInterval: float64! +} + +"""""" +type AccountMnmAWSVPCFlowDataAdaptiveGroupsAvgConfidence { + """Confidence interval for the corresponding point estimate""" + bitRate: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateDay: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateFifteenMinutes: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateFiveMinutes: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateHour: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateMinute: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateTenSeconds: Confidence! + + """Confidence interval for the corresponding point estimate""" + egressBitRate: Confidence! + + """Confidence interval for the corresponding point estimate""" + egressBitRateDay: Confidence! + + """Confidence interval for the corresponding point estimate""" + egressBitRateFifteenMinutes: Confidence! + + """Confidence interval for the corresponding point estimate""" + egressBitRateFiveMinutes: Confidence! + + """Confidence interval for the corresponding point estimate""" + egressBitRateHour: Confidence! + + """Confidence interval for the corresponding point estimate""" + egressBitRateMinute: Confidence! + + """Confidence interval for the corresponding point estimate""" + egressBitRateTenSeconds: Confidence! + + """Confidence interval for the corresponding point estimate""" + egressPacketRate: Confidence! + + """Confidence interval for the corresponding point estimate""" + egressPacketRateDay: Confidence! + + """Confidence interval for the corresponding point estimate""" + egressPacketRateFifteenMinutes: Confidence! + + """Confidence interval for the corresponding point estimate""" + egressPacketRateFiveMinutes: Confidence! + + """Confidence interval for the corresponding point estimate""" + egressPacketRateHour: Confidence! + + """Confidence interval for the corresponding point estimate""" + egressPacketRateMinute: Confidence! + + """Confidence interval for the corresponding point estimate""" + egressPacketRateTenSeconds: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRate: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateDay: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateFifteenMinutes: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateFiveMinutes: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateHour: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateMinute: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateTenSeconds: Confidence! +} + +"""""" +type AccountMnmAWSVPCFlowDataAdaptiveGroupsConfidence { + """ + The average of values for a metric per dimension, with confidence intervals + """ + avg: AccountMnmAWSVPCFlowDataAdaptiveGroupsAvgConfidence + + """Confidence level that was requested""" + level: float64! + + """ + The sum of values for a metric per dimension, with confidence intervals + """ + sum: AccountMnmAWSVPCFlowDataAdaptiveGroupsSumConfidence +} + +"""""" +type AccountMnmAWSVPCFlowDataAdaptiveGroupsDimensions { + """ + The AWS account ID of the owner of the source network interface for which traffic is recorded. + """ + accountID: string! + + """The action that is associated with the traffic: ACCEPT, REJECT.""" + action: string! + + """ + The ID of the Availability Zone that contains the network interface for which traffic is recorded. + """ + azID: string! + + """Date that the packet was received""" + date: Date! + + """Date and time that the packet was received""" + datetime: Time! + + """ + Date and time that the packet was received, rounded to the start of the nearest fifteen minutes + """ + datetimeFifteenMinutes: Time! + + """ + Date and time that the packet was received, rounded to the start of the nearest five minutes + """ + datetimeFiveMinutes: Time! + + """ + Date and time that the packet was received, rounded to the start of the nearest hour + """ + datetimeHour: Time! + + """ + Date and time that the packet was received, rounded to the start of the nearest minute + """ + datetimeMinute: Time! + + """ + Date and time that the packet was received, rounded to the start of the nearest ten seconds + """ + datetimeTenSeconds: Time! + + """IP to which the data was sent""" + destinationAddress: string! + + """Value of the Destination Port header field in the packet""" + destinationPort: uint16! + + """ + AWS Resource Name (ARN) of the ECS cluster if the traffic is from a running ECS task. + """ + ecsClusterArn: string! + + """Name of the ECS cluster if the traffic is from a running ECS task.""" + ecsClusterName: string! + + """ + Docker runtime ID of the container if the traffic is from a running ECS task. + """ + ecsContainerID: string! + + """ + ARN of the ECS container instance if the traffic is from a running ECS task on an EC2 instance. + """ + ecsContainerInstanceArn: string! + + """ + ID of the ECS container instance if the traffic is from a running ECS task on an EC2 instance. + """ + ecsContainerInstanceID: string! + + """ + Docker runtime ID of the second container if the traffic is from a running ECS task. + """ + ecsSecondContainerID: string! + + """ + Name of the ECS service if the traffic is from a running ECS task and the ECS task is started by an ECS service. + """ + ecsServiceName: string! + + """ARN of the ECS task if the traffic is from a running ECS task.""" + ecsTaskArn: string! + + """ + ARN of the ECS task definition if the traffic is from a running ECS task. + """ + ecsTaskDefinitionArn: string! + + """ID of the ECS task if the traffic is from a running ECS task.""" + ecsTaskID: string! + + """ + The time, in Unix seconds, when the last packet of the flow was received within the aggregation interval. + """ + end: uint64! + + """ + Value of the Ethertype header field in the Ethernet packet (2048 for IPv4; 34525 for IPv6) + """ + ethertype: uint16! + + """Identification of the AWS firehose stream exporting flows""" + firehoseStream: string! + + """ + The direction of the flow with respect to the interface where traffic is captured. + """ + flowDirection: string! + + """ + The ID of the instance that's associated with the network interface for which the traffic is recorded. + """ + instanceID: string! + + """The ID of the network interface for which the traffic is recorded.""" + interfaceID: string! + + """The logging status of the flow log: OK, NODATA, SKIPDATA.""" + logStatus: string! + + """The packet-level (original) destination IP address for the traffic.""" + pktDestinationAddress: string! + + """ + The name of the subset of IP address ranges for the pktDstaddr field, if the destination IP address is for an AWS service. + """ + pktDstAwsService: string! + + """The packet-level (original) source IP address of the traffic.""" + pktSourceAddress: string! + + """ + The name of the subset of IP address ranges for the pktSrcaddr field, if the source IP address is for an AWS service. + """ + pktSrcAwsService: string! + + """Layer 4 protocol""" + protocol: uint16! + + """Human-readable string representation of the protocol""" + protocolString: string! + + """ + The Region that contains the network interface for which traffic is recorded. + """ + region: string! + + """Reason why traffic was rejected.""" + rejectReason: string! + + """List of flow matching rules""" + ruleIDs: [string!]! + + """IP from which the data was sent""" + sourceAddress: string! + + """Value of the Source Port header field in the packet""" + sourcePort: uint16! + + """ + The time, in Unix seconds, when the first packet of the flow was received within the aggregation interval. + """ + start: uint64! + + """ + The ID of the sublocation that contains the network interface for which traffic is recorded. + """ + sublocationID: string! + + """The type of sublocation that's returned in the sublocationID field.""" + sublocationType: string! + + """ + The ID of the subnet that contains the network interface for which the traffic is recorded. + """ + subnetID: string! + + """Value of the Flags header field in the TCP packet""" + tcpFlags: uint16! + + """ + Human-readable string representation of the Flags header field in the TCP packet + """ + tcpFlagsString: string! + + """The path that egress traffic takes to the destination.""" + trafficPath: uint32! + + """Version of the record schema""" + version: int64! + + """The VPC Flow Logs version.""" + vpcFlowVersion: uint32! + + """ + The ID of the VPC that contains the network interface for which the traffic is recorded. + """ + vpcID: string! +} + +"""""" +input AccountMnmAWSVPCFlowDataAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountMnmAWSVPCFlowDataAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountMnmAWSVPCFlowDataAdaptiveGroupsFilter_InputObject!] + + """""" + accountID: string + + """""" + accountID_geq: string + + """""" + accountID_gt: string + + """""" + accountID_in: [string!] + + """""" + accountID_leq: string + + """""" + accountID_like: string + + """""" + accountID_lt: string + + """""" + accountID_neq: string + + """""" + accountID_notin: [string!] + + """""" + accountID_notlike: string + + """""" + action: string + + """""" + action_geq: string + + """""" + action_gt: string + + """""" + action_in: [string!] + + """""" + action_leq: string + + """""" + action_like: string + + """""" + action_lt: string + + """""" + action_neq: string + + """""" + action_notin: [string!] + + """""" + action_notlike: string + + """""" + azID: string + + """""" + azID_geq: string + + """""" + azID_gt: string + + """""" + azID_in: [string!] + + """""" + azID_leq: string + + """""" + azID_like: string + + """""" + azID_lt: string + + """""" + azID_neq: string + + """""" + azID_notin: [string!] + + """""" + azID_notlike: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetimeTenSeconds: Time + + """""" + datetimeTenSeconds_geq: Time + + """""" + datetimeTenSeconds_gt: Time + + """""" + datetimeTenSeconds_in: [Time!] + + """""" + datetimeTenSeconds_leq: Time + + """""" + datetimeTenSeconds_lt: Time + + """""" + datetimeTenSeconds_neq: Time + + """""" + datetimeTenSeconds_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + destinationAddress: string + + """""" + destinationAddress_geq: string + + """""" + destinationAddress_gt: string + + """""" + destinationAddress_in: [string!] + + """""" + destinationAddress_leq: string + + """""" + destinationAddress_like: string + + """""" + destinationAddress_lt: string + + """""" + destinationAddress_neq: string + + """""" + destinationAddress_notin: [string!] + + """""" + destinationAddress_notlike: string + + """""" + destinationPort: uint16 + + """""" + destinationPort_geq: uint16 + + """""" + destinationPort_gt: uint16 + + """""" + destinationPort_in: [uint16!] + + """""" + destinationPort_leq: uint16 + + """""" + destinationPort_lt: uint16 + + """""" + destinationPort_neq: uint16 + + """""" + destinationPort_notin: [uint16!] + + """""" + ecsClusterArn: string + + """""" + ecsClusterArn_geq: string + + """""" + ecsClusterArn_gt: string + + """""" + ecsClusterArn_in: [string!] + + """""" + ecsClusterArn_leq: string + + """""" + ecsClusterArn_like: string + + """""" + ecsClusterArn_lt: string + + """""" + ecsClusterArn_neq: string + + """""" + ecsClusterArn_notin: [string!] + + """""" + ecsClusterArn_notlike: string + + """""" + ecsClusterName: string + + """""" + ecsClusterName_geq: string + + """""" + ecsClusterName_gt: string + + """""" + ecsClusterName_in: [string!] + + """""" + ecsClusterName_leq: string + + """""" + ecsClusterName_like: string + + """""" + ecsClusterName_lt: string + + """""" + ecsClusterName_neq: string + + """""" + ecsClusterName_notin: [string!] + + """""" + ecsClusterName_notlike: string + + """""" + ecsContainerID: string + + """""" + ecsContainerID_geq: string + + """""" + ecsContainerID_gt: string + + """""" + ecsContainerID_in: [string!] + + """""" + ecsContainerID_leq: string + + """""" + ecsContainerID_like: string + + """""" + ecsContainerID_lt: string + + """""" + ecsContainerID_neq: string + + """""" + ecsContainerID_notin: [string!] + + """""" + ecsContainerID_notlike: string + + """""" + ecsContainerInstanceArn: string + + """""" + ecsContainerInstanceArn_geq: string + + """""" + ecsContainerInstanceArn_gt: string + + """""" + ecsContainerInstanceArn_in: [string!] + + """""" + ecsContainerInstanceArn_leq: string + + """""" + ecsContainerInstanceArn_like: string + + """""" + ecsContainerInstanceArn_lt: string + + """""" + ecsContainerInstanceArn_neq: string + + """""" + ecsContainerInstanceArn_notin: [string!] + + """""" + ecsContainerInstanceArn_notlike: string + + """""" + ecsContainerInstanceID: string + + """""" + ecsContainerInstanceID_geq: string + + """""" + ecsContainerInstanceID_gt: string + + """""" + ecsContainerInstanceID_in: [string!] + + """""" + ecsContainerInstanceID_leq: string + + """""" + ecsContainerInstanceID_like: string + + """""" + ecsContainerInstanceID_lt: string + + """""" + ecsContainerInstanceID_neq: string + + """""" + ecsContainerInstanceID_notin: [string!] + + """""" + ecsContainerInstanceID_notlike: string + + """""" + ecsSecondContainerID: string + + """""" + ecsSecondContainerID_geq: string + + """""" + ecsSecondContainerID_gt: string + + """""" + ecsSecondContainerID_in: [string!] + + """""" + ecsSecondContainerID_leq: string + + """""" + ecsSecondContainerID_like: string + + """""" + ecsSecondContainerID_lt: string + + """""" + ecsSecondContainerID_neq: string + + """""" + ecsSecondContainerID_notin: [string!] + + """""" + ecsSecondContainerID_notlike: string + + """""" + ecsServiceName: string + + """""" + ecsServiceName_geq: string + + """""" + ecsServiceName_gt: string + + """""" + ecsServiceName_in: [string!] + + """""" + ecsServiceName_leq: string + + """""" + ecsServiceName_like: string + + """""" + ecsServiceName_lt: string + + """""" + ecsServiceName_neq: string + + """""" + ecsServiceName_notin: [string!] + + """""" + ecsServiceName_notlike: string + + """""" + ecsTaskArn: string + + """""" + ecsTaskArn_geq: string + + """""" + ecsTaskArn_gt: string + + """""" + ecsTaskArn_in: [string!] + + """""" + ecsTaskArn_leq: string + + """""" + ecsTaskArn_like: string + + """""" + ecsTaskArn_lt: string + + """""" + ecsTaskArn_neq: string + + """""" + ecsTaskArn_notin: [string!] + + """""" + ecsTaskArn_notlike: string + + """""" + ecsTaskDefinitionArn: string + + """""" + ecsTaskDefinitionArn_geq: string + + """""" + ecsTaskDefinitionArn_gt: string + + """""" + ecsTaskDefinitionArn_in: [string!] + + """""" + ecsTaskDefinitionArn_leq: string + + """""" + ecsTaskDefinitionArn_like: string + + """""" + ecsTaskDefinitionArn_lt: string + + """""" + ecsTaskDefinitionArn_neq: string + + """""" + ecsTaskDefinitionArn_notin: [string!] + + """""" + ecsTaskDefinitionArn_notlike: string + + """""" + ecsTaskID: string + + """""" + ecsTaskID_geq: string + + """""" + ecsTaskID_gt: string + + """""" + ecsTaskID_in: [string!] + + """""" + ecsTaskID_leq: string + + """""" + ecsTaskID_like: string + + """""" + ecsTaskID_lt: string + + """""" + ecsTaskID_neq: string + + """""" + ecsTaskID_notin: [string!] + + """""" + ecsTaskID_notlike: string + + """""" + end: uint64 + + """""" + end_geq: uint64 + + """""" + end_gt: uint64 + + """""" + end_in: [uint64!] + + """""" + end_leq: uint64 + + """""" + end_lt: uint64 + + """""" + end_neq: uint64 + + """""" + end_notin: [uint64!] + + """""" + ethertype: uint16 + + """""" + ethertype_geq: uint16 + + """""" + ethertype_gt: uint16 + + """""" + ethertype_in: [uint16!] + + """""" + ethertype_leq: uint16 + + """""" + ethertype_lt: uint16 + + """""" + ethertype_neq: uint16 + + """""" + ethertype_notin: [uint16!] + + """""" + firehoseStream: string + + """""" + firehoseStream_geq: string + + """""" + firehoseStream_gt: string + + """""" + firehoseStream_in: [string!] + + """""" + firehoseStream_leq: string + + """""" + firehoseStream_like: string + + """""" + firehoseStream_lt: string + + """""" + firehoseStream_neq: string + + """""" + firehoseStream_notin: [string!] + + """""" + firehoseStream_notlike: string + + """""" + flowDirection: string + + """""" + flowDirection_geq: string + + """""" + flowDirection_gt: string + + """""" + flowDirection_in: [string!] + + """""" + flowDirection_leq: string + + """""" + flowDirection_like: string + + """""" + flowDirection_lt: string + + """""" + flowDirection_neq: string + + """""" + flowDirection_notin: [string!] + + """""" + flowDirection_notlike: string + + """""" + instanceID: string + + """""" + instanceID_geq: string + + """""" + instanceID_gt: string + + """""" + instanceID_in: [string!] + + """""" + instanceID_leq: string + + """""" + instanceID_like: string + + """""" + instanceID_lt: string + + """""" + instanceID_neq: string + + """""" + instanceID_notin: [string!] + + """""" + instanceID_notlike: string + + """""" + interfaceID: string + + """""" + interfaceID_geq: string + + """""" + interfaceID_gt: string + + """""" + interfaceID_in: [string!] + + """""" + interfaceID_leq: string + + """""" + interfaceID_like: string + + """""" + interfaceID_lt: string + + """""" + interfaceID_neq: string + + """""" + interfaceID_notin: [string!] + + """""" + interfaceID_notlike: string + + """""" + logStatus: string + + """""" + logStatus_geq: string + + """""" + logStatus_gt: string + + """""" + logStatus_in: [string!] + + """""" + logStatus_leq: string + + """""" + logStatus_like: string + + """""" + logStatus_lt: string + + """""" + logStatus_neq: string + + """""" + logStatus_notin: [string!] + + """""" + logStatus_notlike: string + + """""" + pktDestinationAddress: string + + """""" + pktDestinationAddress_geq: string + + """""" + pktDestinationAddress_gt: string + + """""" + pktDestinationAddress_in: [string!] + + """""" + pktDestinationAddress_leq: string + + """""" + pktDestinationAddress_like: string + + """""" + pktDestinationAddress_lt: string + + """""" + pktDestinationAddress_neq: string + + """""" + pktDestinationAddress_notin: [string!] + + """""" + pktDestinationAddress_notlike: string + + """""" + pktDstAwsService: string + + """""" + pktDstAwsService_geq: string + + """""" + pktDstAwsService_gt: string + + """""" + pktDstAwsService_in: [string!] + + """""" + pktDstAwsService_leq: string + + """""" + pktDstAwsService_like: string + + """""" + pktDstAwsService_lt: string + + """""" + pktDstAwsService_neq: string + + """""" + pktDstAwsService_notin: [string!] + + """""" + pktDstAwsService_notlike: string + + """""" + pktSourceAddress: string + + """""" + pktSourceAddress_geq: string + + """""" + pktSourceAddress_gt: string + + """""" + pktSourceAddress_in: [string!] + + """""" + pktSourceAddress_leq: string + + """""" + pktSourceAddress_like: string + + """""" + pktSourceAddress_lt: string + + """""" + pktSourceAddress_neq: string + + """""" + pktSourceAddress_notin: [string!] + + """""" + pktSourceAddress_notlike: string + + """""" + pktSrcAwsService: string + + """""" + pktSrcAwsService_geq: string + + """""" + pktSrcAwsService_gt: string + + """""" + pktSrcAwsService_in: [string!] + + """""" + pktSrcAwsService_leq: string + + """""" + pktSrcAwsService_like: string + + """""" + pktSrcAwsService_lt: string + + """""" + pktSrcAwsService_neq: string + + """""" + pktSrcAwsService_notin: [string!] + + """""" + pktSrcAwsService_notlike: string + + """""" + protocol: uint16 + + """""" + protocolString: string + + """""" + protocolString_geq: string + + """""" + protocolString_gt: string + + """""" + protocolString_in: [string!] + + """""" + protocolString_leq: string + + """""" + protocolString_like: string + + """""" + protocolString_lt: string + + """""" + protocolString_neq: string + + """""" + protocolString_notin: [string!] + + """""" + protocolString_notlike: string + + """""" + protocol_geq: uint16 + + """""" + protocol_gt: uint16 + + """""" + protocol_in: [uint16!] + + """""" + protocol_leq: uint16 + + """""" + protocol_lt: uint16 + + """""" + protocol_neq: uint16 + + """""" + protocol_notin: [uint16!] + + """""" + region: string + + """""" + region_geq: string + + """""" + region_gt: string + + """""" + region_in: [string!] + + """""" + region_leq: string + + """""" + region_like: string + + """""" + region_lt: string + + """""" + region_neq: string + + """""" + region_notin: [string!] + + """""" + region_notlike: string + + """""" + rejectReason: string + + """""" + rejectReason_geq: string + + """""" + rejectReason_gt: string + + """""" + rejectReason_in: [string!] + + """""" + rejectReason_leq: string + + """""" + rejectReason_like: string + + """""" + rejectReason_lt: string + + """""" + rejectReason_neq: string + + """""" + rejectReason_notin: [string!] + + """""" + rejectReason_notlike: string + + """""" + ruleIDs_has: string + + """""" + ruleIDs_hasall: [string!] + + """""" + ruleIDs_hasany: [string!] + + """""" + ruleIDs_isempty: bool + + """""" + ruleIDs_nothas: string + + """""" + sourceAddress: string + + """""" + sourceAddress_geq: string + + """""" + sourceAddress_gt: string + + """""" + sourceAddress_in: [string!] + + """""" + sourceAddress_leq: string + + """""" + sourceAddress_like: string + + """""" + sourceAddress_lt: string + + """""" + sourceAddress_neq: string + + """""" + sourceAddress_notin: [string!] + + """""" + sourceAddress_notlike: string + + """""" + sourcePort: uint16 + + """""" + sourcePort_geq: uint16 + + """""" + sourcePort_gt: uint16 + + """""" + sourcePort_in: [uint16!] + + """""" + sourcePort_leq: uint16 + + """""" + sourcePort_lt: uint16 + + """""" + sourcePort_neq: uint16 + + """""" + sourcePort_notin: [uint16!] + + """""" + start: uint64 + + """""" + start_geq: uint64 + + """""" + start_gt: uint64 + + """""" + start_in: [uint64!] + + """""" + start_leq: uint64 + + """""" + start_lt: uint64 + + """""" + start_neq: uint64 + + """""" + start_notin: [uint64!] + + """""" + sublocationID: string + + """""" + sublocationID_geq: string + + """""" + sublocationID_gt: string + + """""" + sublocationID_in: [string!] + + """""" + sublocationID_leq: string + + """""" + sublocationID_like: string + + """""" + sublocationID_lt: string + + """""" + sublocationID_neq: string + + """""" + sublocationID_notin: [string!] + + """""" + sublocationID_notlike: string + + """""" + sublocationType: string + + """""" + sublocationType_geq: string + + """""" + sublocationType_gt: string + + """""" + sublocationType_in: [string!] + + """""" + sublocationType_leq: string + + """""" + sublocationType_like: string + + """""" + sublocationType_lt: string + + """""" + sublocationType_neq: string + + """""" + sublocationType_notin: [string!] + + """""" + sublocationType_notlike: string + + """""" + subnetID: string + + """""" + subnetID_geq: string + + """""" + subnetID_gt: string + + """""" + subnetID_in: [string!] + + """""" + subnetID_leq: string + + """""" + subnetID_like: string + + """""" + subnetID_lt: string + + """""" + subnetID_neq: string + + """""" + subnetID_notin: [string!] + + """""" + subnetID_notlike: string + + """""" + tcpFlags: uint16 + + """""" + tcpFlagsString: string + + """""" + tcpFlagsString_geq: string + + """""" + tcpFlagsString_gt: string + + """""" + tcpFlagsString_in: [string!] + + """""" + tcpFlagsString_leq: string + + """""" + tcpFlagsString_like: string + + """""" + tcpFlagsString_lt: string + + """""" + tcpFlagsString_neq: string + + """""" + tcpFlagsString_notin: [string!] + + """""" + tcpFlagsString_notlike: string + + """""" + tcpFlags_geq: uint16 + + """""" + tcpFlags_gt: uint16 + + """""" + tcpFlags_in: [uint16!] + + """""" + tcpFlags_leq: uint16 + + """""" + tcpFlags_lt: uint16 + + """""" + tcpFlags_neq: uint16 + + """""" + tcpFlags_notin: [uint16!] + + """""" + trafficPath: uint32 + + """""" + trafficPath_geq: uint32 + + """""" + trafficPath_gt: uint32 + + """""" + trafficPath_in: [uint32!] + + """""" + trafficPath_leq: uint32 + + """""" + trafficPath_lt: uint32 + + """""" + trafficPath_neq: uint32 + + """""" + trafficPath_notin: [uint32!] + + """""" + version: int64 + + """""" + version_geq: int64 + + """""" + version_gt: int64 + + """""" + version_in: [int64!] + + """""" + version_leq: int64 + + """""" + version_lt: int64 + + """""" + version_neq: int64 + + """""" + version_notin: [int64!] + + """""" + vpcFlowVersion: uint32 + + """""" + vpcFlowVersion_geq: uint32 + + """""" + vpcFlowVersion_gt: uint32 + + """""" + vpcFlowVersion_in: [uint32!] + + """""" + vpcFlowVersion_leq: uint32 + + """""" + vpcFlowVersion_lt: uint32 + + """""" + vpcFlowVersion_neq: uint32 + + """""" + vpcFlowVersion_notin: [uint32!] + + """""" + vpcID: string + + """""" + vpcID_geq: string + + """""" + vpcID_gt: string + + """""" + vpcID_in: [string!] + + """""" + vpcID_leq: string + + """""" + vpcID_like: string + + """""" + vpcID_lt: string + + """""" + vpcID_neq: string + + """""" + vpcID_notin: [string!] + + """""" + vpcID_notlike: string +} + +"""""" +enum AccountMnmAWSVPCFlowDataAdaptiveGroupsOrderBy { + """accountID ascending""" + accountID_ASC + + """accountID descending""" + accountID_DESC + + """action ascending""" + action_ASC + + """action descending""" + action_DESC + + """avg(bitRateDay) ascending""" + avg_bitRateDay_ASC + + """avg(bitRateDay) descending""" + avg_bitRateDay_DESC + + """avg(bitRateFifteenMinutes) ascending""" + avg_bitRateFifteenMinutes_ASC + + """avg(bitRateFifteenMinutes) descending""" + avg_bitRateFifteenMinutes_DESC + + """avg(bitRateFiveMinutes) ascending""" + avg_bitRateFiveMinutes_ASC + + """avg(bitRateFiveMinutes) descending""" + avg_bitRateFiveMinutes_DESC + + """avg(bitRateHour) ascending""" + avg_bitRateHour_ASC + + """avg(bitRateHour) descending""" + avg_bitRateHour_DESC + + """avg(bitRateMinute) ascending""" + avg_bitRateMinute_ASC + + """avg(bitRateMinute) descending""" + avg_bitRateMinute_DESC + + """avg(bitRateTenSeconds) ascending""" + avg_bitRateTenSeconds_ASC + + """avg(bitRateTenSeconds) descending""" + avg_bitRateTenSeconds_DESC + + """avg(bitRate) ascending""" + avg_bitRate_ASC + + """avg(bitRate) descending""" + avg_bitRate_DESC + + """avg(egressBitRateDay) ascending""" + avg_egressBitRateDay_ASC + + """avg(egressBitRateDay) descending""" + avg_egressBitRateDay_DESC + + """avg(egressBitRateFifteenMinutes) ascending""" + avg_egressBitRateFifteenMinutes_ASC + + """avg(egressBitRateFifteenMinutes) descending""" + avg_egressBitRateFifteenMinutes_DESC + + """avg(egressBitRateFiveMinutes) ascending""" + avg_egressBitRateFiveMinutes_ASC + + """avg(egressBitRateFiveMinutes) descending""" + avg_egressBitRateFiveMinutes_DESC + + """avg(egressBitRateHour) ascending""" + avg_egressBitRateHour_ASC + + """avg(egressBitRateHour) descending""" + avg_egressBitRateHour_DESC + + """avg(egressBitRateMinute) ascending""" + avg_egressBitRateMinute_ASC + + """avg(egressBitRateMinute) descending""" + avg_egressBitRateMinute_DESC + + """avg(egressBitRateTenSeconds) ascending""" + avg_egressBitRateTenSeconds_ASC + + """avg(egressBitRateTenSeconds) descending""" + avg_egressBitRateTenSeconds_DESC + + """avg(egressBitRate) ascending""" + avg_egressBitRate_ASC + + """avg(egressBitRate) descending""" + avg_egressBitRate_DESC + + """avg(egressPacketRateDay) ascending""" + avg_egressPacketRateDay_ASC + + """avg(egressPacketRateDay) descending""" + avg_egressPacketRateDay_DESC + + """avg(egressPacketRateFifteenMinutes) ascending""" + avg_egressPacketRateFifteenMinutes_ASC + + """avg(egressPacketRateFifteenMinutes) descending""" + avg_egressPacketRateFifteenMinutes_DESC + + """avg(egressPacketRateFiveMinutes) ascending""" + avg_egressPacketRateFiveMinutes_ASC + + """avg(egressPacketRateFiveMinutes) descending""" + avg_egressPacketRateFiveMinutes_DESC + + """avg(egressPacketRateHour) ascending""" + avg_egressPacketRateHour_ASC + + """avg(egressPacketRateHour) descending""" + avg_egressPacketRateHour_DESC + + """avg(egressPacketRateMinute) ascending""" + avg_egressPacketRateMinute_ASC + + """avg(egressPacketRateMinute) descending""" + avg_egressPacketRateMinute_DESC + + """avg(egressPacketRateTenSeconds) ascending""" + avg_egressPacketRateTenSeconds_ASC + + """avg(egressPacketRateTenSeconds) descending""" + avg_egressPacketRateTenSeconds_DESC + + """avg(egressPacketRate) ascending""" + avg_egressPacketRate_ASC + + """avg(egressPacketRate) descending""" + avg_egressPacketRate_DESC + + """avg(packetRateDay) ascending""" + avg_packetRateDay_ASC + + """avg(packetRateDay) descending""" + avg_packetRateDay_DESC + + """avg(packetRateFifteenMinutes) ascending""" + avg_packetRateFifteenMinutes_ASC + + """avg(packetRateFifteenMinutes) descending""" + avg_packetRateFifteenMinutes_DESC + + """avg(packetRateFiveMinutes) ascending""" + avg_packetRateFiveMinutes_ASC + + """avg(packetRateFiveMinutes) descending""" + avg_packetRateFiveMinutes_DESC + + """avg(packetRateHour) ascending""" + avg_packetRateHour_ASC + + """avg(packetRateHour) descending""" + avg_packetRateHour_DESC + + """avg(packetRateMinute) ascending""" + avg_packetRateMinute_ASC + + """avg(packetRateMinute) descending""" + avg_packetRateMinute_DESC + + """avg(packetRateTenSeconds) ascending""" + avg_packetRateTenSeconds_ASC + + """avg(packetRateTenSeconds) descending""" + avg_packetRateTenSeconds_DESC + + """avg(packetRate) ascending""" + avg_packetRate_ASC + + """avg(packetRate) descending""" + avg_packetRate_DESC + + """avg(sampleInterval) ascending""" + avg_sampleInterval_ASC + + """avg(sampleInterval) descending""" + avg_sampleInterval_DESC + + """azID ascending""" + azID_ASC + + """azID descending""" + azID_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetimeTenSeconds ascending""" + datetimeTenSeconds_ASC + + """datetimeTenSeconds descending""" + datetimeTenSeconds_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """destinationAddress ascending""" + destinationAddress_ASC + + """destinationAddress descending""" + destinationAddress_DESC + + """destinationPort ascending""" + destinationPort_ASC + + """destinationPort descending""" + destinationPort_DESC + + """ecsClusterArn ascending""" + ecsClusterArn_ASC + + """ecsClusterArn descending""" + ecsClusterArn_DESC + + """ecsClusterName ascending""" + ecsClusterName_ASC + + """ecsClusterName descending""" + ecsClusterName_DESC + + """ecsContainerID ascending""" + ecsContainerID_ASC + + """ecsContainerID descending""" + ecsContainerID_DESC + + """ecsContainerInstanceArn ascending""" + ecsContainerInstanceArn_ASC + + """ecsContainerInstanceArn descending""" + ecsContainerInstanceArn_DESC + + """ecsContainerInstanceID ascending""" + ecsContainerInstanceID_ASC + + """ecsContainerInstanceID descending""" + ecsContainerInstanceID_DESC + + """ecsSecondContainerID ascending""" + ecsSecondContainerID_ASC + + """ecsSecondContainerID descending""" + ecsSecondContainerID_DESC + + """ecsServiceName ascending""" + ecsServiceName_ASC + + """ecsServiceName descending""" + ecsServiceName_DESC + + """ecsTaskArn ascending""" + ecsTaskArn_ASC + + """ecsTaskArn descending""" + ecsTaskArn_DESC + + """ecsTaskDefinitionArn ascending""" + ecsTaskDefinitionArn_ASC + + """ecsTaskDefinitionArn descending""" + ecsTaskDefinitionArn_DESC + + """ecsTaskID ascending""" + ecsTaskID_ASC + + """ecsTaskID descending""" + ecsTaskID_DESC + + """end ascending""" + end_ASC + + """end descending""" + end_DESC + + """ethertype ascending""" + ethertype_ASC + + """ethertype descending""" + ethertype_DESC + + """firehoseStream ascending""" + firehoseStream_ASC + + """firehoseStream descending""" + firehoseStream_DESC + + """flowDirection ascending""" + flowDirection_ASC + + """flowDirection descending""" + flowDirection_DESC + + """instanceID ascending""" + instanceID_ASC + + """instanceID descending""" + instanceID_DESC + + """interfaceID ascending""" + interfaceID_ASC + + """interfaceID descending""" + interfaceID_DESC + + """logStatus ascending""" + logStatus_ASC + + """logStatus descending""" + logStatus_DESC + + """pktDestinationAddress ascending""" + pktDestinationAddress_ASC + + """pktDestinationAddress descending""" + pktDestinationAddress_DESC + + """pktDstAwsService ascending""" + pktDstAwsService_ASC + + """pktDstAwsService descending""" + pktDstAwsService_DESC + + """pktSourceAddress ascending""" + pktSourceAddress_ASC + + """pktSourceAddress descending""" + pktSourceAddress_DESC + + """pktSrcAwsService ascending""" + pktSrcAwsService_ASC + + """pktSrcAwsService descending""" + pktSrcAwsService_DESC + + """protocolString ascending""" + protocolString_ASC + + """protocolString descending""" + protocolString_DESC + + """protocol ascending""" + protocol_ASC + + """protocol descending""" + protocol_DESC + + """region ascending""" + region_ASC + + """region descending""" + region_DESC + + """rejectReason ascending""" + rejectReason_ASC + + """rejectReason descending""" + rejectReason_DESC + + """ruleIDs ascending""" + ruleIDs_ASC + + """ruleIDs descending""" + ruleIDs_DESC + + """sourceAddress ascending""" + sourceAddress_ASC + + """sourceAddress descending""" + sourceAddress_DESC + + """sourcePort ascending""" + sourcePort_ASC + + """sourcePort descending""" + sourcePort_DESC + + """start ascending""" + start_ASC + + """start descending""" + start_DESC + + """sublocationID ascending""" + sublocationID_ASC + + """sublocationID descending""" + sublocationID_DESC + + """sublocationType ascending""" + sublocationType_ASC + + """sublocationType descending""" + sublocationType_DESC + + """subnetID ascending""" + subnetID_ASC + + """subnetID descending""" + subnetID_DESC + + """sum(bits) ascending""" + sum_bits_ASC + + """sum(bits) descending""" + sum_bits_DESC + + """sum(egressBits) ascending""" + sum_egressBits_ASC + + """sum(egressBits) descending""" + sum_egressBits_DESC + + """sum(egressPackets) ascending""" + sum_egressPackets_ASC + + """sum(egressPackets) descending""" + sum_egressPackets_DESC + + """sum(packets) ascending""" + sum_packets_ASC + + """sum(packets) descending""" + sum_packets_DESC + + """tcpFlagsString ascending""" + tcpFlagsString_ASC + + """tcpFlagsString descending""" + tcpFlagsString_DESC + + """tcpFlags ascending""" + tcpFlags_ASC + + """tcpFlags descending""" + tcpFlags_DESC + + """trafficPath ascending""" + trafficPath_ASC + + """trafficPath descending""" + trafficPath_DESC + + """version ascending""" + version_ASC + + """version descending""" + version_DESC + + """vpcFlowVersion ascending""" + vpcFlowVersion_ASC + + """vpcFlowVersion descending""" + vpcFlowVersion_DESC + + """vpcID ascending""" + vpcID_ASC + + """vpcID descending""" + vpcID_DESC +} + +"""""" +type AccountMnmAWSVPCFlowDataAdaptiveGroupsSum { + """Sum of bits""" + bits: uint64! + + """Sum of egress bits""" + egressBits: uint64! + + """Sum of egress packets""" + egressPackets: uint64! + + """Sum of packets""" + packets: uint64! +} + +"""""" +type AccountMnmAWSVPCFlowDataAdaptiveGroupsSumConfidence { + """Confidence interval for the corresponding point estimate""" + bits: Confidence! + + """Confidence interval for the corresponding point estimate""" + egressBits: Confidence! + + """Confidence interval for the corresponding point estimate""" + egressPackets: Confidence! + + """Confidence interval for the corresponding point estimate""" + packets: Confidence! +} + +"""Flow data collected through Magic Network Monitoring""" +type AccountMnmFlowDataAdaptiveGroups { + """The average of values for a metric per dimension""" + avg: AccountMnmFlowDataAdaptiveGroupsAvg + + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountMnmFlowDataAdaptiveGroupsConfidence! + + """List of dimensions to group by""" + dimensions: AccountMnmFlowDataAdaptiveGroupsDimensions + + """The sum of values for a metric per dimension""" + sum: AccountMnmFlowDataAdaptiveGroupsSum +} + +"""""" +type AccountMnmFlowDataAdaptiveGroupsAvg { + """ + Sum of bits received, divided by 1 second, providing a per-second bit rate when grouped by datetime + """ + bitRate: float64! + + """ + Sum of bits received, divided by 86400 seconds, providing a per-second bit rate when grouped by date + """ + bitRateDay: float64! + + """ + Sum of bits received, divided by 900 seconds, providing a per-second bit rate when grouped by datetimeFifteenMinutes + """ + bitRateFifteenMinutes: float64! + + """ + Sum of bits received, divided by 300 seconds, providing a per-second bit rate when grouped by datetimeFiveMinutes + """ + bitRateFiveMinutes: float64! + + """ + Sum of bits received, divided by 3600 seconds, providing a per-second bit rate when grouped by datetimeHour + """ + bitRateHour: float64! + + """ + Sum of bits received, divided by 60 seconds, providing a per-second bit rate when grouped by datetimeMinute + """ + bitRateMinute: float64! + + """ + Sum of bits received, divided by 10 seconds, providing a per-second bit rate when grouped by datetimeTenSeconds + """ + bitRateTenSeconds: float64! + + """ + Sum of egress bits received, divided by 1 second, providing a per-second egress bit rate when grouped by datetime + """ + egressBitRate: float64! + + """ + Sum of egress bits received, divided by 86400 seconds, providing a per-second egress bit rate when grouped by date + """ + egressBitRateDay: float64! + + """ + Sum of egress bits received, divided by 900 seconds, providing a per-second egress bit rate when grouped by datetimeFifteenMinutes + """ + egressBitRateFifteenMinutes: float64! + + """ + Sum of egress bits received, divided by 300 seconds, providing a per-second egress bit rate when grouped by datetimeFiveMinutes + """ + egressBitRateFiveMinutes: float64! + + """ + Sum of egress bits received, divided by 3600 seconds, providing a per-second egress bit rate when grouped by datetimeHour + """ + egressBitRateHour: float64! + + """ + Sum of egress bits received, divided by 60 seconds, providing a per-second egress bit rate when grouped by datetimeMinute + """ + egressBitRateMinute: float64! + + """ + Sum of egress bits received, divided by 10 seconds, providing a per-second egress bit rate when grouped by datetimeTenSeconds + """ + egressBitRateTenSeconds: float64! + + """ + Sum of egress packets received, divided by 1 second, providing a per-second egress packet rate when grouped by datetime + """ + egressPacketRate: float64! + + """ + Sum of egress packets received, divided by 86400 seconds, providing a per-second egress packet rate when grouped by date + """ + egressPacketRateDay: float64! + + """ + Sum of egress packets received, divided by 900 seconds, providing a per-second egress packet rate when grouped by datetimeFifteenMinutes + """ + egressPacketRateFifteenMinutes: float64! + + """ + Sum of egress packets received, divided by 300 seconds, providing a per-second egress packet rate when grouped by datetimeFiveMinutes + """ + egressPacketRateFiveMinutes: float64! + + """ + Sum of egress packets received, divided by 3600 seconds, providing a per-second egress packet rate when grouped by datetimeHour + """ + egressPacketRateHour: float64! + + """ + Sum of egress packets received, divided by 60 seconds, providing a per-second egress packet rate when grouped by datetimeMinute + """ + egressPacketRateMinute: float64! + + """ + Sum of egress packets received, divided by 10 seconds, providing a per-second egress packet rate when grouped by datetimeTenSeconds + """ + egressPacketRateTenSeconds: float64! + + """ + Sum of packets received, divided by 1 second, providing a per-second packet rate when grouped by datetime + """ + packetRate: float64! + + """ + Sum of packets received, divided by 86400 seconds, providing a per-second packet rate when grouped by date + """ + packetRateDay: float64! + + """ + Sum of packets received, divided by 900 seconds, providing a per-second packet rate when grouped by datetimeFifteenMinutes + """ + packetRateFifteenMinutes: float64! + + """ + Sum of packets received, divided by 300 seconds, providing a per-second packet rate when grouped by datetimeFiveMinutes + """ + packetRateFiveMinutes: float64! + + """ + Sum of packets received, divided by 3600 seconds, providing a per-second packet rate when grouped by datetimeHour + """ + packetRateHour: float64! + + """ + Sum of packets received, divided by 60 seconds, providing a per-second packet rate when grouped by datetimeMinute + """ + packetRateMinute: float64! + + """ + Sum of packets received, divided by 10 seconds, providing a per-second packet rate when grouped by datetimeTenSeconds + """ + packetRateTenSeconds: float64! + + """Average sample interval applied to the data""" + sampleInterval: float64! +} + +"""""" +type AccountMnmFlowDataAdaptiveGroupsAvgConfidence { + """Confidence interval for the corresponding point estimate""" + bitRate: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateDay: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateFifteenMinutes: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateFiveMinutes: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateHour: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateMinute: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateTenSeconds: Confidence! + + """Confidence interval for the corresponding point estimate""" + egressBitRate: Confidence! + + """Confidence interval for the corresponding point estimate""" + egressBitRateDay: Confidence! + + """Confidence interval for the corresponding point estimate""" + egressBitRateFifteenMinutes: Confidence! + + """Confidence interval for the corresponding point estimate""" + egressBitRateFiveMinutes: Confidence! + + """Confidence interval for the corresponding point estimate""" + egressBitRateHour: Confidence! + + """Confidence interval for the corresponding point estimate""" + egressBitRateMinute: Confidence! + + """Confidence interval for the corresponding point estimate""" + egressBitRateTenSeconds: Confidence! + + """Confidence interval for the corresponding point estimate""" + egressPacketRate: Confidence! + + """Confidence interval for the corresponding point estimate""" + egressPacketRateDay: Confidence! + + """Confidence interval for the corresponding point estimate""" + egressPacketRateFifteenMinutes: Confidence! + + """Confidence interval for the corresponding point estimate""" + egressPacketRateFiveMinutes: Confidence! + + """Confidence interval for the corresponding point estimate""" + egressPacketRateHour: Confidence! + + """Confidence interval for the corresponding point estimate""" + egressPacketRateMinute: Confidence! + + """Confidence interval for the corresponding point estimate""" + egressPacketRateTenSeconds: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRate: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateDay: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateFifteenMinutes: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateFiveMinutes: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateHour: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateMinute: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateTenSeconds: Confidence! +} + +"""""" +type AccountMnmFlowDataAdaptiveGroupsConfidence { + """ + The average of values for a metric per dimension, with confidence intervals + """ + avg: AccountMnmFlowDataAdaptiveGroupsAvgConfidence + + """Confidence level that was requested""" + level: float64! + + """ + The sum of values for a metric per dimension, with confidence intervals + """ + sum: AccountMnmFlowDataAdaptiveGroupsSumConfidence +} + +"""""" +type AccountMnmFlowDataAdaptiveGroupsDimensions { + """Date that the packet was received""" + date: Date! + + """Date and time that the packet was received""" + datetime: Time! + + """ + Date and time that the packet was received, rounded to the start of the nearest fifteen minutes + """ + datetimeFifteenMinutes: Time! + + """ + Date and time that the packet was received, rounded to the start of the nearest five minutes + """ + datetimeFiveMinutes: Time! + + """ + Date and time that the packet was received, rounded to the start of the nearest hour + """ + datetimeHour: Time! + + """ + Date and time that the packet was received, rounded to the start of the nearest minute + """ + datetimeMinute: Time! + + """ + Date and time that the packet was received, rounded to the start of the nearest ten seconds + """ + datetimeTenSeconds: Time! + + """ + Autonomous System to which the data is directed. Corresponds to DstAS field in the packet + """ + destinationAS: uint32! + + """IP to which the data was sent""" + destinationAddress: string! + + """Value of the Destination Port header field in the packet""" + destinationPort: uint16! + + """Device ID of the warp client exporting MNM flows""" + deviceID: string! + + """ + Value of the Ethertype header field in the Ethernet packet (2048 for IPv4; 34525 for IPv6) + """ + ethertype: uint16! + + """Defines the IP Type Of Service (TOS)""" + ipToS: uint64! + + """Defines the IP Type Of Service (TOS) for encapsulated traffic""" + ipToSEncap: uint64! + + """Layer 4 protocol""" + protocol: uint16! + + """Human-readable string representation of the protocol""" + protocolString: string! + + """IP of the router that sampled the flows""" + routerAddress: string! + + """List of flow matching rules""" + ruleIDs: [string!]! + + """ + Autonomous System from which the data was sent. Corresponds to SrcAS field in the packet + """ + sourceAS: uint32! + + """IP from which the data was sent""" + sourceAddress: string! + + """Value of the Source Port header field in the packet""" + sourcePort: uint16! + + """Value of the Flags header field in the TCP packet""" + tcpFlags: uint16! + + """ + Human-readable string representation of the Flags header field in the TCP packet + """ + tcpFlagsString: string! + + """Version of the record schema""" + version: int64! +} + +"""""" +input AccountMnmFlowDataAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountMnmFlowDataAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountMnmFlowDataAdaptiveGroupsFilter_InputObject!] + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetimeTenSeconds: Time + + """""" + datetimeTenSeconds_geq: Time + + """""" + datetimeTenSeconds_gt: Time + + """""" + datetimeTenSeconds_in: [Time!] + + """""" + datetimeTenSeconds_leq: Time + + """""" + datetimeTenSeconds_lt: Time + + """""" + datetimeTenSeconds_neq: Time + + """""" + datetimeTenSeconds_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + destinationAS: uint32 + + """""" + destinationAS_geq: uint32 + + """""" + destinationAS_gt: uint32 + + """""" + destinationAS_in: [uint32!] + + """""" + destinationAS_leq: uint32 + + """""" + destinationAS_lt: uint32 + + """""" + destinationAS_neq: uint32 + + """""" + destinationAS_notin: [uint32!] + + """""" + destinationAddress: string + + """""" + destinationAddress_geq: string + + """""" + destinationAddress_gt: string + + """""" + destinationAddress_in: [string!] + + """""" + destinationAddress_leq: string + + """""" + destinationAddress_like: string + + """""" + destinationAddress_lt: string + + """""" + destinationAddress_neq: string + + """""" + destinationAddress_notin: [string!] + + """""" + destinationAddress_notlike: string + + """""" + destinationPort: uint16 + + """""" + destinationPort_geq: uint16 + + """""" + destinationPort_gt: uint16 + + """""" + destinationPort_in: [uint16!] + + """""" + destinationPort_leq: uint16 + + """""" + destinationPort_lt: uint16 + + """""" + destinationPort_neq: uint16 + + """""" + destinationPort_notin: [uint16!] + + """""" + deviceID: string + + """""" + deviceID_geq: string + + """""" + deviceID_gt: string + + """""" + deviceID_in: [string!] + + """""" + deviceID_leq: string + + """""" + deviceID_like: string + + """""" + deviceID_lt: string + + """""" + deviceID_neq: string + + """""" + deviceID_notin: [string!] + + """""" + deviceID_notlike: string + + """""" + ethertype: uint16 + + """""" + ethertype_geq: uint16 + + """""" + ethertype_gt: uint16 + + """""" + ethertype_in: [uint16!] + + """""" + ethertype_leq: uint16 + + """""" + ethertype_lt: uint16 + + """""" + ethertype_neq: uint16 + + """""" + ethertype_notin: [uint16!] + + """""" + ipToS: uint64 + + """""" + ipToSEncap: uint64 + + """""" + ipToSEncap_geq: uint64 + + """""" + ipToSEncap_gt: uint64 + + """""" + ipToSEncap_in: [uint64!] + + """""" + ipToSEncap_leq: uint64 + + """""" + ipToSEncap_lt: uint64 + + """""" + ipToSEncap_neq: uint64 + + """""" + ipToSEncap_notin: [uint64!] + + """""" + ipToS_geq: uint64 + + """""" + ipToS_gt: uint64 + + """""" + ipToS_in: [uint64!] + + """""" + ipToS_leq: uint64 + + """""" + ipToS_lt: uint64 + + """""" + ipToS_neq: uint64 + + """""" + ipToS_notin: [uint64!] + + """""" + protocol: uint16 + + """""" + protocolString: string + + """""" + protocolString_geq: string + + """""" + protocolString_gt: string + + """""" + protocolString_in: [string!] + + """""" + protocolString_leq: string + + """""" + protocolString_like: string + + """""" + protocolString_lt: string + + """""" + protocolString_neq: string + + """""" + protocolString_notin: [string!] + + """""" + protocolString_notlike: string + + """""" + protocol_geq: uint16 + + """""" + protocol_gt: uint16 + + """""" + protocol_in: [uint16!] + + """""" + protocol_leq: uint16 + + """""" + protocol_lt: uint16 + + """""" + protocol_neq: uint16 + + """""" + protocol_notin: [uint16!] + + """""" + routerAddress: string + + """""" + routerAddress_geq: string + + """""" + routerAddress_gt: string + + """""" + routerAddress_in: [string!] + + """""" + routerAddress_leq: string + + """""" + routerAddress_like: string + + """""" + routerAddress_lt: string + + """""" + routerAddress_neq: string + + """""" + routerAddress_notin: [string!] + + """""" + routerAddress_notlike: string + + """""" + ruleIDs_has: string + + """""" + ruleIDs_hasall: [string!] + + """""" + ruleIDs_hasany: [string!] + + """""" + ruleIDs_isempty: bool + + """""" + ruleIDs_nothas: string + + """""" + sourceAS: uint32 + + """""" + sourceAS_geq: uint32 + + """""" + sourceAS_gt: uint32 + + """""" + sourceAS_in: [uint32!] + + """""" + sourceAS_leq: uint32 + + """""" + sourceAS_lt: uint32 + + """""" + sourceAS_neq: uint32 + + """""" + sourceAS_notin: [uint32!] + + """""" + sourceAddress: string + + """""" + sourceAddress_geq: string + + """""" + sourceAddress_gt: string + + """""" + sourceAddress_in: [string!] + + """""" + sourceAddress_leq: string + + """""" + sourceAddress_like: string + + """""" + sourceAddress_lt: string + + """""" + sourceAddress_neq: string + + """""" + sourceAddress_notin: [string!] + + """""" + sourceAddress_notlike: string + + """""" + sourcePort: uint16 + + """""" + sourcePort_geq: uint16 + + """""" + sourcePort_gt: uint16 + + """""" + sourcePort_in: [uint16!] + + """""" + sourcePort_leq: uint16 + + """""" + sourcePort_lt: uint16 + + """""" + sourcePort_neq: uint16 + + """""" + sourcePort_notin: [uint16!] + + """""" + tcpFlags: uint16 + + """""" + tcpFlagsString: string + + """""" + tcpFlagsString_geq: string + + """""" + tcpFlagsString_gt: string + + """""" + tcpFlagsString_in: [string!] + + """""" + tcpFlagsString_leq: string + + """""" + tcpFlagsString_like: string + + """""" + tcpFlagsString_lt: string + + """""" + tcpFlagsString_neq: string + + """""" + tcpFlagsString_notin: [string!] + + """""" + tcpFlagsString_notlike: string + + """""" + tcpFlags_geq: uint16 + + """""" + tcpFlags_gt: uint16 + + """""" + tcpFlags_in: [uint16!] + + """""" + tcpFlags_leq: uint16 + + """""" + tcpFlags_lt: uint16 + + """""" + tcpFlags_neq: uint16 + + """""" + tcpFlags_notin: [uint16!] + + """""" + version: int64 + + """""" + version_geq: int64 + + """""" + version_gt: int64 + + """""" + version_in: [int64!] + + """""" + version_leq: int64 + + """""" + version_lt: int64 + + """""" + version_neq: int64 + + """""" + version_notin: [int64!] +} + +"""""" +enum AccountMnmFlowDataAdaptiveGroupsOrderBy { + """avg(bitRateDay) ascending""" + avg_bitRateDay_ASC + + """avg(bitRateDay) descending""" + avg_bitRateDay_DESC + + """avg(bitRateFifteenMinutes) ascending""" + avg_bitRateFifteenMinutes_ASC + + """avg(bitRateFifteenMinutes) descending""" + avg_bitRateFifteenMinutes_DESC + + """avg(bitRateFiveMinutes) ascending""" + avg_bitRateFiveMinutes_ASC + + """avg(bitRateFiveMinutes) descending""" + avg_bitRateFiveMinutes_DESC + + """avg(bitRateHour) ascending""" + avg_bitRateHour_ASC + + """avg(bitRateHour) descending""" + avg_bitRateHour_DESC + + """avg(bitRateMinute) ascending""" + avg_bitRateMinute_ASC + + """avg(bitRateMinute) descending""" + avg_bitRateMinute_DESC + + """avg(bitRateTenSeconds) ascending""" + avg_bitRateTenSeconds_ASC + + """avg(bitRateTenSeconds) descending""" + avg_bitRateTenSeconds_DESC + + """avg(bitRate) ascending""" + avg_bitRate_ASC + + """avg(bitRate) descending""" + avg_bitRate_DESC + + """avg(egressBitRateDay) ascending""" + avg_egressBitRateDay_ASC + + """avg(egressBitRateDay) descending""" + avg_egressBitRateDay_DESC + + """avg(egressBitRateFifteenMinutes) ascending""" + avg_egressBitRateFifteenMinutes_ASC + + """avg(egressBitRateFifteenMinutes) descending""" + avg_egressBitRateFifteenMinutes_DESC + + """avg(egressBitRateFiveMinutes) ascending""" + avg_egressBitRateFiveMinutes_ASC + + """avg(egressBitRateFiveMinutes) descending""" + avg_egressBitRateFiveMinutes_DESC + + """avg(egressBitRateHour) ascending""" + avg_egressBitRateHour_ASC + + """avg(egressBitRateHour) descending""" + avg_egressBitRateHour_DESC + + """avg(egressBitRateMinute) ascending""" + avg_egressBitRateMinute_ASC + + """avg(egressBitRateMinute) descending""" + avg_egressBitRateMinute_DESC + + """avg(egressBitRateTenSeconds) ascending""" + avg_egressBitRateTenSeconds_ASC + + """avg(egressBitRateTenSeconds) descending""" + avg_egressBitRateTenSeconds_DESC + + """avg(egressBitRate) ascending""" + avg_egressBitRate_ASC + + """avg(egressBitRate) descending""" + avg_egressBitRate_DESC + + """avg(egressPacketRateDay) ascending""" + avg_egressPacketRateDay_ASC + + """avg(egressPacketRateDay) descending""" + avg_egressPacketRateDay_DESC + + """avg(egressPacketRateFifteenMinutes) ascending""" + avg_egressPacketRateFifteenMinutes_ASC + + """avg(egressPacketRateFifteenMinutes) descending""" + avg_egressPacketRateFifteenMinutes_DESC + + """avg(egressPacketRateFiveMinutes) ascending""" + avg_egressPacketRateFiveMinutes_ASC + + """avg(egressPacketRateFiveMinutes) descending""" + avg_egressPacketRateFiveMinutes_DESC + + """avg(egressPacketRateHour) ascending""" + avg_egressPacketRateHour_ASC + + """avg(egressPacketRateHour) descending""" + avg_egressPacketRateHour_DESC + + """avg(egressPacketRateMinute) ascending""" + avg_egressPacketRateMinute_ASC + + """avg(egressPacketRateMinute) descending""" + avg_egressPacketRateMinute_DESC + + """avg(egressPacketRateTenSeconds) ascending""" + avg_egressPacketRateTenSeconds_ASC + + """avg(egressPacketRateTenSeconds) descending""" + avg_egressPacketRateTenSeconds_DESC + + """avg(egressPacketRate) ascending""" + avg_egressPacketRate_ASC + + """avg(egressPacketRate) descending""" + avg_egressPacketRate_DESC + + """avg(packetRateDay) ascending""" + avg_packetRateDay_ASC + + """avg(packetRateDay) descending""" + avg_packetRateDay_DESC + + """avg(packetRateFifteenMinutes) ascending""" + avg_packetRateFifteenMinutes_ASC + + """avg(packetRateFifteenMinutes) descending""" + avg_packetRateFifteenMinutes_DESC + + """avg(packetRateFiveMinutes) ascending""" + avg_packetRateFiveMinutes_ASC + + """avg(packetRateFiveMinutes) descending""" + avg_packetRateFiveMinutes_DESC + + """avg(packetRateHour) ascending""" + avg_packetRateHour_ASC + + """avg(packetRateHour) descending""" + avg_packetRateHour_DESC + + """avg(packetRateMinute) ascending""" + avg_packetRateMinute_ASC + + """avg(packetRateMinute) descending""" + avg_packetRateMinute_DESC + + """avg(packetRateTenSeconds) ascending""" + avg_packetRateTenSeconds_ASC + + """avg(packetRateTenSeconds) descending""" + avg_packetRateTenSeconds_DESC + + """avg(packetRate) ascending""" + avg_packetRate_ASC + + """avg(packetRate) descending""" + avg_packetRate_DESC + + """avg(sampleInterval) ascending""" + avg_sampleInterval_ASC + + """avg(sampleInterval) descending""" + avg_sampleInterval_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetimeTenSeconds ascending""" + datetimeTenSeconds_ASC + + """datetimeTenSeconds descending""" + datetimeTenSeconds_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """destinationAS ascending""" + destinationAS_ASC + + """destinationAS descending""" + destinationAS_DESC + + """destinationAddress ascending""" + destinationAddress_ASC + + """destinationAddress descending""" + destinationAddress_DESC + + """destinationPort ascending""" + destinationPort_ASC + + """destinationPort descending""" + destinationPort_DESC + + """deviceID ascending""" + deviceID_ASC + + """deviceID descending""" + deviceID_DESC + + """ethertype ascending""" + ethertype_ASC + + """ethertype descending""" + ethertype_DESC + + """ipToSEncap ascending""" + ipToSEncap_ASC + + """ipToSEncap descending""" + ipToSEncap_DESC + + """ipToS ascending""" + ipToS_ASC + + """ipToS descending""" + ipToS_DESC + + """protocolString ascending""" + protocolString_ASC + + """protocolString descending""" + protocolString_DESC + + """protocol ascending""" + protocol_ASC + + """protocol descending""" + protocol_DESC + + """routerAddress ascending""" + routerAddress_ASC + + """routerAddress descending""" + routerAddress_DESC + + """ruleIDs ascending""" + ruleIDs_ASC + + """ruleIDs descending""" + ruleIDs_DESC + + """sourceAS ascending""" + sourceAS_ASC + + """sourceAS descending""" + sourceAS_DESC + + """sourceAddress ascending""" + sourceAddress_ASC + + """sourceAddress descending""" + sourceAddress_DESC + + """sourcePort ascending""" + sourcePort_ASC + + """sourcePort descending""" + sourcePort_DESC + + """sum(bits) ascending""" + sum_bits_ASC + + """sum(bits) descending""" + sum_bits_DESC + + """sum(egressBits) ascending""" + sum_egressBits_ASC + + """sum(egressBits) descending""" + sum_egressBits_DESC + + """sum(egressPackets) ascending""" + sum_egressPackets_ASC + + """sum(egressPackets) descending""" + sum_egressPackets_DESC + + """sum(packets) ascending""" + sum_packets_ASC + + """sum(packets) descending""" + sum_packets_DESC + + """tcpFlagsString ascending""" + tcpFlagsString_ASC + + """tcpFlagsString descending""" + tcpFlagsString_DESC + + """tcpFlags ascending""" + tcpFlags_ASC + + """tcpFlags descending""" + tcpFlags_DESC + + """version ascending""" + version_ASC + + """version descending""" + version_DESC +} + +"""""" +type AccountMnmFlowDataAdaptiveGroupsSum { + """Sum of bits""" + bits: uint64! + + """Sum of egress bits""" + egressBits: uint64! + + """Sum of egress packets""" + egressPackets: uint64! + + """Sum of packets""" + packets: uint64! +} + +"""""" +type AccountMnmFlowDataAdaptiveGroupsSumConfidence { + """Confidence interval for the corresponding point estimate""" + bits: Confidence! + + """Confidence interval for the corresponding point estimate""" + egressBits: Confidence! + + """Confidence interval for the corresponding point estimate""" + egressPackets: Confidence! + + """Confidence interval for the corresponding point estimate""" + packets: Confidence! +} + +"""Data to visualize network error logs""" +type AccountNelReportsAdaptiveGroups { + """""" + avg: AccountNelReportsAdaptiveGroupsAvg + + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountNelReportsAdaptiveGroupsConfidence! + + """The number of NEL Reports""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountNelReportsAdaptiveGroupsDimensions +} + +"""""" +type AccountNelReportsAdaptiveGroupsAvg { + """Average sample interval""" + sampleInterval: uint64! +} + +"""""" +type AccountNelReportsAdaptiveGroupsConfidence { + """The number of NEL Reports, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! +} + +"""""" +type AccountNelReportsAdaptiveGroupsDimensions { + """Client ASN""" + clientIPASN: uint32! + + """Client ASN Description""" + clientIPASNDescription: string! + + """Client Country""" + clientIPCountry: string! + + """2 letter client country code using ISO 3166-1 alpha-2 syntax""" + clientIPCountryCode: string! + + """IP Version the client used to connect""" + clientIPVersion: uint8! + + """Request date from browser""" + date: Date! + + """Request datetime from browser""" + datetime: Time! + + """Request datetime from browser, truncated to multiple of 15 minutes""" + datetimeFifteenMinutes: Time! + + """Request datetime from browser, truncated to multiple of 5 minutes""" + datetimeFiveMinutes: Time! + + """Request datetime from browser, truncated to multiple of 30 minutes""" + datetimeHalfOfHour: Time! + + """Request datetime from browser, truncated to the hour""" + datetimeHour: Time! + + """Request datetime from browser, truncated to the minute""" + datetimeMinute: Time! + + """IATA airport code of colo the client connected to""" + lastKnownGoodColoCode: string! + + """The phase of connection the error occurred in""" + phase: string! + + """HTTP Protocol used when the error occured""" + protocol: string! + + """The type of error in the phase""" + type: string! +} + +"""""" +input AccountNelReportsAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountNelReportsAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountNelReportsAdaptiveGroupsFilter_InputObject!] + + """""" + clientIPASN: uint32 + + """""" + clientIPASNDescription: string + + """""" + clientIPASNDescription_geq: string + + """""" + clientIPASNDescription_gt: string + + """""" + clientIPASNDescription_in: [string!] + + """""" + clientIPASNDescription_leq: string + + """""" + clientIPASNDescription_like: string + + """""" + clientIPASNDescription_lt: string + + """""" + clientIPASNDescription_neq: string + + """""" + clientIPASNDescription_notin: [string!] + + """""" + clientIPASNDescription_notlike: string + + """""" + clientIPASN_geq: uint32 + + """""" + clientIPASN_gt: uint32 + + """""" + clientIPASN_in: [uint32!] + + """""" + clientIPASN_leq: uint32 + + """""" + clientIPASN_lt: uint32 + + """""" + clientIPASN_neq: uint32 + + """""" + clientIPASN_notin: [uint32!] + + """""" + clientIPCountry: string + + """""" + clientIPCountryCode: string + + """""" + clientIPCountryCode_geq: string + + """""" + clientIPCountryCode_gt: string + + """""" + clientIPCountryCode_in: [string!] + + """""" + clientIPCountryCode_leq: string + + """""" + clientIPCountryCode_like: string + + """""" + clientIPCountryCode_lt: string + + """""" + clientIPCountryCode_neq: string + + """""" + clientIPCountryCode_notin: [string!] + + """""" + clientIPCountryCode_notlike: string + + """""" + clientIPCountry_geq: string + + """""" + clientIPCountry_gt: string + + """""" + clientIPCountry_in: [string!] + + """""" + clientIPCountry_leq: string + + """""" + clientIPCountry_like: string + + """""" + clientIPCountry_lt: string + + """""" + clientIPCountry_neq: string + + """""" + clientIPCountry_notin: [string!] + + """""" + clientIPCountry_notlike: string + + """""" + clientIPVersion: uint8 + + """""" + clientIPVersion_geq: uint8 + + """""" + clientIPVersion_gt: uint8 + + """""" + clientIPVersion_in: bytes + + """""" + clientIPVersion_leq: uint8 + + """""" + clientIPVersion_lt: uint8 + + """""" + clientIPVersion_neq: uint8 + + """""" + clientIPVersion_notin: bytes + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHalfOfHour: Time + + """""" + datetimeHalfOfHour_geq: Time + + """""" + datetimeHalfOfHour_gt: Time + + """""" + datetimeHalfOfHour_in: [Time!] + + """""" + datetimeHalfOfHour_leq: Time + + """""" + datetimeHalfOfHour_lt: Time + + """""" + datetimeHalfOfHour_neq: Time + + """""" + datetimeHalfOfHour_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + lastKnownGoodColoCode: string + + """""" + lastKnownGoodColoCode_geq: string + + """""" + lastKnownGoodColoCode_gt: string + + """""" + lastKnownGoodColoCode_in: [string!] + + """""" + lastKnownGoodColoCode_leq: string + + """""" + lastKnownGoodColoCode_like: string + + """""" + lastKnownGoodColoCode_lt: string + + """""" + lastKnownGoodColoCode_neq: string + + """""" + lastKnownGoodColoCode_notin: [string!] + + """""" + lastKnownGoodColoCode_notlike: string + + """""" + phase: string + + """""" + phase_geq: string + + """""" + phase_gt: string + + """""" + phase_in: [string!] + + """""" + phase_leq: string + + """""" + phase_like: string + + """""" + phase_lt: string + + """""" + phase_neq: string + + """""" + phase_notin: [string!] + + """""" + phase_notlike: string + + """""" + protocol: string + + """""" + protocol_geq: string + + """""" + protocol_gt: string + + """""" + protocol_in: [string!] + + """""" + protocol_leq: string + + """""" + protocol_like: string + + """""" + protocol_lt: string + + """""" + protocol_neq: string + + """""" + protocol_notin: [string!] + + """""" + protocol_notlike: string + + """""" + type: string + + """""" + type_geq: string + + """""" + type_gt: string + + """""" + type_in: [string!] + + """""" + type_leq: string + + """""" + type_like: string + + """""" + type_lt: string + + """""" + type_neq: string + + """""" + type_notin: [string!] + + """""" + type_notlike: string +} + +"""""" +enum AccountNelReportsAdaptiveGroupsOrderBy { + """avg(sampleInterval) ascending""" + avg_sampleInterval_ASC + + """avg(sampleInterval) descending""" + avg_sampleInterval_DESC + + """clientIPASNDescription ascending""" + clientIPASNDescription_ASC + + """clientIPASNDescription descending""" + clientIPASNDescription_DESC + + """clientIPASN ascending""" + clientIPASN_ASC + + """clientIPASN descending""" + clientIPASN_DESC + + """clientIPCountryCode ascending""" + clientIPCountryCode_ASC + + """clientIPCountryCode descending""" + clientIPCountryCode_DESC + + """clientIPCountry ascending""" + clientIPCountry_ASC + + """clientIPCountry descending""" + clientIPCountry_DESC + + """clientIPVersion ascending""" + clientIPVersion_ASC + + """clientIPVersion descending""" + clientIPVersion_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHalfOfHour ascending""" + datetimeHalfOfHour_ASC + + """datetimeHalfOfHour descending""" + datetimeHalfOfHour_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """lastKnownGoodColoCode ascending""" + lastKnownGoodColoCode_ASC + + """lastKnownGoodColoCode descending""" + lastKnownGoodColoCode_DESC + + """phase ascending""" + phase_ASC + + """phase descending""" + phase_DESC + + """protocol ascending""" + protocol_ASC + + """protocol descending""" + protocol_DESC + + """type ascending""" + type_ASC + + """type descending""" + type_DESC +} + +"""oHTTP request metrics with adaptive sampling""" +type AccountOhttpMetricsAdaptive { + """Bytes returned to client""" + bytesToClient: uint64! + + """Total bytes received from the client""" + bytesToGateway: uint64! + + """The airport code of the Cloudflare datacenter that served this request""" + colo: string! + + """The date and time the event was recorded""" + datetime: Time! + + """The status code returned by the gateway""" + gatewayStatusCode: uint32! + + """The status code returned by the relay""" + relayStatusCode: uint32! +} + +"""""" +input AccountOhttpMetricsAdaptiveFilter_InputObject { + """""" + AND: [AccountOhttpMetricsAdaptiveFilter_InputObject!] + + """""" + OR: [AccountOhttpMetricsAdaptiveFilter_InputObject!] + + """""" + bytesToClient: uint64 + + """""" + bytesToClient_geq: uint64 + + """""" + bytesToClient_gt: uint64 + + """""" + bytesToClient_in: [uint64!] + + """""" + bytesToClient_leq: uint64 + + """""" + bytesToClient_lt: uint64 + + """""" + bytesToClient_neq: uint64 + + """""" + bytesToClient_notin: [uint64!] + + """""" + bytesToGateway: uint64 + + """""" + bytesToGateway_geq: uint64 + + """""" + bytesToGateway_gt: uint64 + + """""" + bytesToGateway_in: [uint64!] + + """""" + bytesToGateway_leq: uint64 + + """""" + bytesToGateway_lt: uint64 + + """""" + bytesToGateway_neq: uint64 + + """""" + bytesToGateway_notin: [uint64!] + + """""" + colo: string + + """""" + colo_geq: string + + """""" + colo_gt: string + + """""" + colo_in: [string!] + + """""" + colo_leq: string + + """""" + colo_like: string + + """""" + colo_lt: string + + """""" + colo_neq: string + + """""" + colo_notin: [string!] + + """""" + colo_notlike: string + + """""" + datetime: Time + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + gatewayStatusCode: uint32 + + """""" + gatewayStatusCode_geq: uint32 + + """""" + gatewayStatusCode_gt: uint32 + + """""" + gatewayStatusCode_in: [uint32!] + + """""" + gatewayStatusCode_leq: uint32 + + """""" + gatewayStatusCode_lt: uint32 + + """""" + gatewayStatusCode_neq: uint32 + + """""" + gatewayStatusCode_notin: [uint32!] + + """""" + relayStatusCode: uint32 + + """""" + relayStatusCode_geq: uint32 + + """""" + relayStatusCode_gt: uint32 + + """""" + relayStatusCode_in: [uint32!] + + """""" + relayStatusCode_leq: uint32 + + """""" + relayStatusCode_lt: uint32 + + """""" + relayStatusCode_neq: uint32 + + """""" + relayStatusCode_notin: [uint32!] +} + +"""Aggregated oHTTP request metrics with adaptive sampling""" +type AccountOhttpMetricsAdaptiveGroups { + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountOhttpMetricsAdaptiveGroupsConfidence! + + """Number of HTTP requests""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountOhttpMetricsAdaptiveGroupsDimensions + + """The sum of values for a metric per dimension""" + sum: AccountOhttpMetricsAdaptiveGroupsSum +} + +"""""" +type AccountOhttpMetricsAdaptiveGroupsConfidence { + """Number of HTTP requests, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! + + """ + The sum of values for a metric per dimension, with confidence intervals + """ + sum: AccountOhttpMetricsAdaptiveGroupsSumConfidence +} + +"""""" +type AccountOhttpMetricsAdaptiveGroupsDimensions { + """The airport code of the Cloudflare datacenter that served this request""" + colo: string! + + """Ohttp requests metrics date""" + date: Date! + + """Ohttp requests metrics timestamp, truncated to fifteen minutes""" + datetimeFifteenMinutes: Time! + + """Ohttp requests metrics timestamp, truncated to five minutes""" + datetimeFiveMinutes: Time! + + """Ohttp requests metrics timestamp, truncated to the hour""" + datetimeHour: Time! + + """Ohttp requests metrics timestamp, truncated to the minute""" + datetimeMinute: Time! + + """The appId that generated traffic""" + endpoint: string! + + """Status code returned by the gateway""" + gatewayStatusCode: string! + + """Status code returned by the relay""" + relayStatusCode: int64! +} + +"""""" +input AccountOhttpMetricsAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountOhttpMetricsAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountOhttpMetricsAdaptiveGroupsFilter_InputObject!] + + """""" + colo: string + + """""" + colo_geq: string + + """""" + colo_gt: string + + """""" + colo_in: [string!] + + """""" + colo_leq: string + + """""" + colo_like: string + + """""" + colo_lt: string + + """""" + colo_neq: string + + """""" + colo_notin: [string!] + + """""" + colo_notlike: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + endpoint: string + + """""" + endpoint_geq: string + + """""" + endpoint_gt: string + + """""" + endpoint_in: [string!] + + """""" + endpoint_leq: string + + """""" + endpoint_like: string + + """""" + endpoint_lt: string + + """""" + endpoint_neq: string + + """""" + endpoint_notin: [string!] + + """""" + endpoint_notlike: string + + """""" + gatewayStatusCode: string + + """""" + gatewayStatusCode_geq: string + + """""" + gatewayStatusCode_gt: string + + """""" + gatewayStatusCode_in: [string!] + + """""" + gatewayStatusCode_leq: string + + """""" + gatewayStatusCode_like: string + + """""" + gatewayStatusCode_lt: string + + """""" + gatewayStatusCode_neq: string + + """""" + gatewayStatusCode_notin: [string!] + + """""" + gatewayStatusCode_notlike: string + + """""" + relayStatusCode: int64 + + """""" + relayStatusCode_geq: int64 + + """""" + relayStatusCode_gt: int64 + + """""" + relayStatusCode_in: [int64!] + + """""" + relayStatusCode_leq: int64 + + """""" + relayStatusCode_lt: int64 + + """""" + relayStatusCode_neq: int64 + + """""" + relayStatusCode_notin: [int64!] +} + +"""""" +enum AccountOhttpMetricsAdaptiveGroupsOrderBy { + """colo ascending""" + colo_ASC + + """colo descending""" + colo_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """endpoint ascending""" + endpoint_ASC + + """endpoint descending""" + endpoint_DESC + + """gatewayStatusCode ascending""" + gatewayStatusCode_ASC + + """gatewayStatusCode descending""" + gatewayStatusCode_DESC + + """relayStatusCode ascending""" + relayStatusCode_ASC + + """relayStatusCode descending""" + relayStatusCode_DESC + + """sum(bytesToClient) ascending""" + sum_bytesToClient_ASC + + """sum(bytesToClient) descending""" + sum_bytesToClient_DESC + + """sum(bytesToGateway) ascending""" + sum_bytesToGateway_ASC + + """sum(bytesToGateway) descending""" + sum_bytesToGateway_DESC + + """sum(clientRequestErrors) ascending""" + sum_clientRequestErrors_ASC + + """sum(clientRequestErrors) descending""" + sum_clientRequestErrors_DESC + + """sum(gatewayResponseErrors) ascending""" + sum_gatewayResponseErrors_ASC + + """sum(gatewayResponseErrors) descending""" + sum_gatewayResponseErrors_DESC +} + +"""""" +type AccountOhttpMetricsAdaptiveGroupsSum { + """ + The total bytes sent from gateway to client, observed over the queried time period + """ + bytesToClient: int64! + + """ + The total bytes from client to gateway, observed over the queried time period + """ + bytesToGateway: int64! + + """ + The total number of client request errors, observed over the queried time period + """ + clientRequestErrors: int64! + + """ + The total number of gateway response errors, observed over the queried time period + """ + gatewayResponseErrors: int64! +} + +"""""" +type AccountOhttpMetricsAdaptiveGroupsSumConfidence { + """Confidence interval for the corresponding point estimate""" + bytesToClient: Confidence! + + """Confidence interval for the corresponding point estimate""" + bytesToGateway: Confidence! + + """Confidence interval for the corresponding point estimate""" + clientRequestErrors: Confidence! + + """Confidence interval for the corresponding point estimate""" + gatewayResponseErrors: Confidence! +} + +"""""" +enum AccountOhttpMetricsAdaptiveOrderBy { + """bytesToClient ascending""" + bytesToClient_ASC + + """bytesToClient descending""" + bytesToClient_DESC + + """bytesToGateway ascending""" + bytesToGateway_ASC + + """bytesToGateway descending""" + bytesToGateway_DESC + + """colo ascending""" + colo_ASC + + """colo descending""" + colo_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """gatewayStatusCode ascending""" + gatewayStatusCode_ASC + + """gatewayStatusCode descending""" + gatewayStatusCode_DESC + + """relayStatusCode ascending""" + relayStatusCode_ASC + + """relayStatusCode descending""" + relayStatusCode_DESC +} + +"""Pages Functions invocations with adaptive sampling""" +type AccountPagesFunctionsInvocationsAdaptiveGroups { + """""" + avg: AccountPagesFunctionsInvocationsAdaptiveGroupsAvg + + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountPagesFunctionsInvocationsAdaptiveGroupsConfidence! + + """List of dimensions to group by""" + dimensions: AccountPagesFunctionsInvocationsAdaptiveGroupsDimensions + + """Quantiles of a metric per dimension""" + quantiles: AccountPagesFunctionsInvocationsAdaptiveGroupsQuantiles + + """The sum of values for a metric per dimension""" + sum: AccountPagesFunctionsInvocationsAdaptiveGroupsSum +} + +"""""" +type AccountPagesFunctionsInvocationsAdaptiveGroupsAvg { + """Average sample interval""" + sampleInterval: float64! +} + +"""""" +type AccountPagesFunctionsInvocationsAdaptiveGroupsConfidence { + """Confidence level that was requested""" + level: float64! + + """ + The sum of values for a metric per dimension, with confidence intervals + """ + sum: AccountPagesFunctionsInvocationsAdaptiveGroupsSumConfidence +} + +"""""" +type AccountPagesFunctionsInvocationsAdaptiveGroupsDimensions { + """Request datetime, truncated to start of a day""" + date: Date! + + """Request datetime""" + datetime: Time! + + """Request datetime, truncated to start of an hour""" + datetimeHour: Time! + + """Request datetime, truncated to start of an minute""" + datetimeMinute: Time! + + """Request datetime, truncated to start of six hour window""" + datetimeSixHours: Time! + + """The name of the script""" + scriptName: string! + + """Status of the worker invocation""" + status: string! + + """Usage model of the worker invocation""" + usageModel: string! +} + +"""""" +input AccountPagesFunctionsInvocationsAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountPagesFunctionsInvocationsAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountPagesFunctionsInvocationsAdaptiveGroupsFilter_InputObject!] + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetimeSixHours: Time + + """""" + datetimeSixHours_geq: Time + + """""" + datetimeSixHours_gt: Time + + """""" + datetimeSixHours_in: [Time!] + + """""" + datetimeSixHours_leq: Time + + """""" + datetimeSixHours_lt: Time + + """""" + datetimeSixHours_neq: Time + + """""" + datetimeSixHours_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + scriptName: string + + """""" + scriptName_geq: string + + """""" + scriptName_gt: string + + """""" + scriptName_in: [string!] + + """""" + scriptName_leq: string + + """""" + scriptName_like: string + + """""" + scriptName_lt: string + + """""" + scriptName_neq: string + + """""" + scriptName_notin: [string!] + + """""" + scriptName_notlike: string + + """""" + status: string + + """""" + status_geq: string + + """""" + status_gt: string + + """""" + status_in: [string!] + + """""" + status_leq: string + + """""" + status_like: string + + """""" + status_lt: string + + """""" + status_neq: string + + """""" + status_notin: [string!] + + """""" + status_notlike: string + + """""" + usageModel: string + + """""" + usageModel_geq: string + + """""" + usageModel_gt: string + + """""" + usageModel_in: [string!] + + """""" + usageModel_leq: string + + """""" + usageModel_like: string + + """""" + usageModel_lt: string + + """""" + usageModel_neq: string + + """""" + usageModel_notin: [string!] + + """""" + usageModel_notlike: string +} + +"""""" +enum AccountPagesFunctionsInvocationsAdaptiveGroupsOrderBy { + """avg(sampleInterval) ascending""" + avg_sampleInterval_ASC + + """avg(sampleInterval) descending""" + avg_sampleInterval_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetimeSixHours ascending""" + datetimeSixHours_ASC + + """datetimeSixHours descending""" + datetimeSixHours_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """quantiles(cpuTimeP50) ascending""" + quantiles_cpuTimeP50_ASC + + """quantiles(cpuTimeP50) descending""" + quantiles_cpuTimeP50_DESC + + """quantiles(cpuTimeP75) ascending""" + quantiles_cpuTimeP75_ASC + + """quantiles(cpuTimeP75) descending""" + quantiles_cpuTimeP75_DESC + + """quantiles(cpuTimeP999) ascending""" + quantiles_cpuTimeP999_ASC + + """quantiles(cpuTimeP999) descending""" + quantiles_cpuTimeP999_DESC + + """quantiles(cpuTimeP99) ascending""" + quantiles_cpuTimeP99_ASC + + """quantiles(cpuTimeP99) descending""" + quantiles_cpuTimeP99_DESC + + """quantiles(durationP50) ascending""" + quantiles_durationP50_ASC + + """quantiles(durationP50) descending""" + quantiles_durationP50_DESC + + """quantiles(durationP75) ascending""" + quantiles_durationP75_ASC + + """quantiles(durationP75) descending""" + quantiles_durationP75_DESC + + """quantiles(durationP999) ascending""" + quantiles_durationP999_ASC + + """quantiles(durationP999) descending""" + quantiles_durationP999_DESC + + """quantiles(durationP99) ascending""" + quantiles_durationP99_ASC + + """quantiles(durationP99) descending""" + quantiles_durationP99_DESC + + """scriptName ascending""" + scriptName_ASC + + """scriptName descending""" + scriptName_DESC + + """stableId ascending""" + stableId_ASC + + """stableId descending""" + stableId_DESC + + """status ascending""" + status_ASC + + """status descending""" + status_DESC + + """sum(clientDisconnects) ascending""" + sum_clientDisconnects_ASC + + """sum(clientDisconnects) descending""" + sum_clientDisconnects_DESC + + """sum(duration) ascending""" + sum_duration_ASC + + """sum(duration) descending""" + sum_duration_DESC + + """sum(errors) ascending""" + sum_errors_ASC + + """sum(errors) descending""" + sum_errors_DESC + + """sum(requests) ascending""" + sum_requests_ASC + + """sum(requests) descending""" + sum_requests_DESC + + """sum(responseBodySize) ascending""" + sum_responseBodySize_ASC + + """sum(responseBodySize) descending""" + sum_responseBodySize_DESC + + """sum(subrequests) ascending""" + sum_subrequests_ASC + + """sum(subrequests) descending""" + sum_subrequests_DESC + + """sum(wallTime) ascending""" + sum_wallTime_ASC + + """sum(wallTime) descending""" + sum_wallTime_DESC + + """usageModel ascending""" + usageModel_ASC + + """usageModel descending""" + usageModel_DESC +} + +"""""" +type AccountPagesFunctionsInvocationsAdaptiveGroupsQuantiles { + """CPU time 50th percentile - microseconds""" + cpuTimeP50: float32! + + """CPU time 75th percentile - microseconds""" + cpuTimeP75: float32! + + """CPU time 99th percentile - microseconds""" + cpuTimeP99: float32! + + """CPU time 99.9th percentile - microseconds""" + cpuTimeP999: float32! + + """Duration 50th percentile - GB*s""" + durationP50: float32! + + """Duration 75th percentile - GB*s""" + durationP75: float32! + + """Duration 99th percentile - GB*s""" + durationP99: float32! + + """Duration 99.9th percentile - GB*s""" + durationP999: float32! +} + +"""""" +type AccountPagesFunctionsInvocationsAdaptiveGroupsSum { + """Sum of client disconnects""" + clientDisconnects: uint64! + + """Sum of Duration - GB*s""" + duration: float64! + + """Sum of Errors""" + errors: uint64! + + """Sum of Requests""" + requests: uint64! + + """Sum of Response Body Sizes""" + responseBodySize: uint64! + + """Sum of Subrequests""" + subrequests: uint64! + + """Sum of Wall Time""" + wallTime: uint64! +} + +"""""" +type AccountPagesFunctionsInvocationsAdaptiveGroupsSumConfidence { + """Confidence interval for the corresponding point estimate""" + clientDisconnects: Confidence! + + """Confidence interval for the corresponding point estimate""" + duration: Confidence! + + """Confidence interval for the corresponding point estimate""" + errors: Confidence! + + """Confidence interval for the corresponding point estimate""" + requests: Confidence! + + """Confidence interval for the corresponding point estimate""" + responseBodySize: Confidence! + + """Confidence interval for the corresponding point estimate""" + subrequests: Confidence! + + """Confidence interval for the corresponding point estimate""" + wallTime: Confidence! +} + +"""Beta. Data delivered via Workers Pipelines""" +type AccountPipelinesDeliveryAdaptiveGroups { + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountPipelinesDeliveryAdaptiveGroupsConfidence! + + """Number of delivery events""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountPipelinesDeliveryAdaptiveGroupsDimensions + + """The sum of values for a metric per dimension""" + sum: AccountPipelinesDeliveryAdaptiveGroupsSum +} + +"""""" +type AccountPipelinesDeliveryAdaptiveGroupsConfidence { + """Number of delivery events, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! + + """ + The sum of values for a metric per dimension, with confidence intervals + """ + sum: AccountPipelinesDeliveryAdaptiveGroupsSumConfidence +} + +"""""" +type AccountPipelinesDeliveryAdaptiveGroupsDimensions { + """Delivery operation timestamp, truncated to start of a day""" + date: Date! + + """Delivery operation timestamp""" + datetime: Time! + + """Delivery operation timestamp, truncated to start of an hour""" + datetimeHour: Time! + + """Delivery operation timestamp, truncated to start of an minute""" + datetimeMinute: Time! + + """The pipeline ID""" + pipelineId: string! +} + +"""""" +input AccountPipelinesDeliveryAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountPipelinesDeliveryAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountPipelinesDeliveryAdaptiveGroupsFilter_InputObject!] + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + pipelineId: string + + """""" + pipelineId_geq: string + + """""" + pipelineId_gt: string + + """""" + pipelineId_in: [string!] + + """""" + pipelineId_leq: string + + """""" + pipelineId_like: string + + """""" + pipelineId_lt: string + + """""" + pipelineId_neq: string + + """""" + pipelineId_notin: [string!] + + """""" + pipelineId_notlike: string +} + +"""""" +enum AccountPipelinesDeliveryAdaptiveGroupsOrderBy { + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """pipelineId ascending""" + pipelineId_ASC + + """pipelineId descending""" + pipelineId_DESC + + """sum(deliveredBytes) ascending""" + sum_deliveredBytes_ASC + + """sum(deliveredBytes) descending""" + sum_deliveredBytes_DESC +} + +"""""" +type AccountPipelinesDeliveryAdaptiveGroupsSum { + """Total amount of bytes delivered""" + deliveredBytes: uint64! +} + +"""""" +type AccountPipelinesDeliveryAdaptiveGroupsSumConfidence { + """Confidence interval for the corresponding point estimate""" + deliveredBytes: Confidence! +} + +"""Beta. Data ingested via Workers Pipelines""" +type AccountPipelinesIngestionAdaptiveGroups { + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountPipelinesIngestionAdaptiveGroupsConfidence! + + """Number of ingestion events""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountPipelinesIngestionAdaptiveGroupsDimensions + + """The sum of values for a metric per dimension""" + sum: AccountPipelinesIngestionAdaptiveGroupsSum +} + +"""""" +type AccountPipelinesIngestionAdaptiveGroupsConfidence { + """Number of ingestion events, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! + + """ + The sum of values for a metric per dimension, with confidence intervals + """ + sum: AccountPipelinesIngestionAdaptiveGroupsSumConfidence +} + +"""""" +type AccountPipelinesIngestionAdaptiveGroupsDimensions { + """Ingestion operation timestamp, truncated to start of a day""" + date: Date! + + """Ingestion operation timestamp""" + datetime: Time! + + """Ingestion operation timestamp, truncated to start of an hour""" + datetimeHour: Time! + + """Ingestion operation timestamp, truncated to start of an minute""" + datetimeMinute: Time! + + """The pipeline ID""" + pipelineId: string! +} + +"""""" +input AccountPipelinesIngestionAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountPipelinesIngestionAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountPipelinesIngestionAdaptiveGroupsFilter_InputObject!] + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + pipelineId: string + + """""" + pipelineId_geq: string + + """""" + pipelineId_gt: string + + """""" + pipelineId_in: [string!] + + """""" + pipelineId_leq: string + + """""" + pipelineId_like: string + + """""" + pipelineId_lt: string + + """""" + pipelineId_neq: string + + """""" + pipelineId_notin: [string!] + + """""" + pipelineId_notlike: string +} + +"""""" +enum AccountPipelinesIngestionAdaptiveGroupsOrderBy { + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """pipelineId ascending""" + pipelineId_ASC + + """pipelineId descending""" + pipelineId_DESC + + """sum(ingestedBytes) ascending""" + sum_ingestedBytes_ASC + + """sum(ingestedBytes) descending""" + sum_ingestedBytes_DESC + + """sum(ingestedRecords) ascending""" + sum_ingestedRecords_ASC + + """sum(ingestedRecords) descending""" + sum_ingestedRecords_DESC +} + +"""""" +type AccountPipelinesIngestionAdaptiveGroupsSum { + """Total amount of bytes ingested""" + ingestedBytes: uint64! + + """Total number of records ingested""" + ingestedRecords: uint64! +} + +"""""" +type AccountPipelinesIngestionAdaptiveGroupsSumConfidence { + """Confidence interval for the corresponding point estimate""" + ingestedBytes: Confidence! + + """Confidence interval for the corresponding point estimate""" + ingestedRecords: Confidence! +} + +"""Aggregated Pipelines source metrics with adaptive sampling""" +type AccountPipelinesOperatorAdaptiveGroups { + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountPipelinesOperatorAdaptiveGroupsConfidence! + + """List of dimensions to group by""" + dimensions: AccountPipelinesOperatorAdaptiveGroupsDimensions + + """The sum of values for a metric per dimension""" + sum: AccountPipelinesOperatorAdaptiveGroupsSum +} + +"""""" +type AccountPipelinesOperatorAdaptiveGroupsConfidence { + """Confidence level that was requested""" + level: float64! + + """ + The sum of values for a metric per dimension, with confidence intervals + """ + sum: AccountPipelinesOperatorAdaptiveGroupsSumConfidence +} + +"""""" +type AccountPipelinesOperatorAdaptiveGroupsDimensions { + """Delivery operation timestamp, truncated to start of a day""" + date: Date! + + """Delivery operation timestamp""" + datetime: Time! + + """Delivery operation timestamp, truncated to start of an hour""" + datetimeHour: Time! + + """Delivery operation timestamp, truncated to start of a minute""" + datetimeMinute: Time! + + """The pipeline ID""" + pipelineId: string! + + """The Stream ID""" + streamId: string! +} + +"""""" +input AccountPipelinesOperatorAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountPipelinesOperatorAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountPipelinesOperatorAdaptiveGroupsFilter_InputObject!] + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + pipelineId: string + + """""" + pipelineId_geq: string + + """""" + pipelineId_gt: string + + """""" + pipelineId_in: [string!] + + """""" + pipelineId_leq: string + + """""" + pipelineId_like: string + + """""" + pipelineId_lt: string + + """""" + pipelineId_neq: string + + """""" + pipelineId_notin: [string!] + + """""" + pipelineId_notlike: string + + """""" + streamId: string + + """""" + streamId_geq: string + + """""" + streamId_gt: string + + """""" + streamId_in: [string!] + + """""" + streamId_leq: string + + """""" + streamId_like: string + + """""" + streamId_lt: string + + """""" + streamId_neq: string + + """""" + streamId_notin: [string!] + + """""" + streamId_notlike: string +} + +"""""" +enum AccountPipelinesOperatorAdaptiveGroupsOrderBy { + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """pipelineId ascending""" + pipelineId_ASC + + """pipelineId descending""" + pipelineId_DESC + + """streamId ascending""" + streamId_ASC + + """streamId descending""" + streamId_DESC + + """sum(bytesIn) ascending""" + sum_bytesIn_ASC + + """sum(bytesIn) descending""" + sum_bytesIn_DESC + + """sum(decodeErrors) ascending""" + sum_decodeErrors_ASC + + """sum(decodeErrors) descending""" + sum_decodeErrors_DESC + + """sum(recordsIn) ascending""" + sum_recordsIn_ASC + + """sum(recordsIn) descending""" + sum_recordsIn_DESC +} + +"""""" +type AccountPipelinesOperatorAdaptiveGroupsSum { + """Total number of bytes ingested""" + bytesIn: int64! + + """Number of messages that could not be deserialized in the stream schema""" + decodeErrors: int64! + + """Total number of records ingestesd""" + recordsIn: int64! +} + +"""""" +type AccountPipelinesOperatorAdaptiveGroupsSumConfidence { + """Confidence interval for the corresponding point estimate""" + bytesIn: Confidence! + + """Confidence interval for the corresponding point estimate""" + decodeErrors: Confidence! + + """Confidence interval for the corresponding point estimate""" + recordsIn: Confidence! +} + +"""Aggregated Pipelines source metrics with adaptive sampling""" +type AccountPipelinesOperatorStagingAdaptiveGroups { + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountPipelinesOperatorStagingAdaptiveGroupsConfidence! + + """List of dimensions to group by""" + dimensions: AccountPipelinesOperatorStagingAdaptiveGroupsDimensions + + """The sum of values for a metric per dimension""" + sum: AccountPipelinesOperatorStagingAdaptiveGroupsSum +} + +"""""" +type AccountPipelinesOperatorStagingAdaptiveGroupsConfidence { + """Confidence level that was requested""" + level: float64! + + """ + The sum of values for a metric per dimension, with confidence intervals + """ + sum: AccountPipelinesOperatorStagingAdaptiveGroupsSumConfidence +} + +"""""" +type AccountPipelinesOperatorStagingAdaptiveGroupsDimensions { + """Delivery operation timestamp, truncated to start of a day""" + date: Date! + + """Delivery operation timestamp""" + datetime: Time! + + """Delivery operation timestamp, truncated to start of an hour""" + datetimeHour: Time! + + """Delivery operation timestamp, truncated to start of a minute""" + datetimeMinute: Time! + + """The pipeline ID""" + pipelineId: string! + + """The Stream ID""" + streamId: string! +} + +"""""" +input AccountPipelinesOperatorStagingAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountPipelinesOperatorStagingAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountPipelinesOperatorStagingAdaptiveGroupsFilter_InputObject!] + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + pipelineId: string + + """""" + pipelineId_geq: string + + """""" + pipelineId_gt: string + + """""" + pipelineId_in: [string!] + + """""" + pipelineId_leq: string + + """""" + pipelineId_like: string + + """""" + pipelineId_lt: string + + """""" + pipelineId_neq: string + + """""" + pipelineId_notin: [string!] + + """""" + pipelineId_notlike: string + + """""" + streamId: string + + """""" + streamId_geq: string + + """""" + streamId_gt: string + + """""" + streamId_in: [string!] + + """""" + streamId_leq: string + + """""" + streamId_like: string + + """""" + streamId_lt: string + + """""" + streamId_neq: string + + """""" + streamId_notin: [string!] + + """""" + streamId_notlike: string +} + +"""""" +enum AccountPipelinesOperatorStagingAdaptiveGroupsOrderBy { + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """pipelineId ascending""" + pipelineId_ASC + + """pipelineId descending""" + pipelineId_DESC + + """streamId ascending""" + streamId_ASC + + """streamId descending""" + streamId_DESC + + """sum(bytesIn) ascending""" + sum_bytesIn_ASC + + """sum(bytesIn) descending""" + sum_bytesIn_DESC + + """sum(decodeErrors) ascending""" + sum_decodeErrors_ASC + + """sum(decodeErrors) descending""" + sum_decodeErrors_DESC + + """sum(messagesIn) ascending""" + sum_messagesIn_ASC + + """sum(messagesIn) descending""" + sum_messagesIn_DESC +} + +"""""" +type AccountPipelinesOperatorStagingAdaptiveGroupsSum { + """Total number of bytes ingested""" + bytesIn: int64! + + """Number of messages that could not be deserialized in the stream schema""" + decodeErrors: int64! + + """Total number of messages ingested""" + messagesIn: int64! +} + +"""""" +type AccountPipelinesOperatorStagingAdaptiveGroupsSumConfidence { + """Confidence interval for the corresponding point estimate""" + bytesIn: Confidence! + + """Confidence interval for the corresponding point estimate""" + decodeErrors: Confidence! + + """Confidence interval for the corresponding point estimate""" + messagesIn: Confidence! +} + +"""Aggregated Pipelines sink metrics with adaptive sampling""" +type AccountPipelinesSinkAdaptiveGroups { + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountPipelinesSinkAdaptiveGroupsConfidence! + + """List of dimensions to group by""" + dimensions: AccountPipelinesSinkAdaptiveGroupsDimensions + + """The sum of values for a metric per dimension""" + sum: AccountPipelinesSinkAdaptiveGroupsSum +} + +"""""" +type AccountPipelinesSinkAdaptiveGroupsConfidence { + """Confidence level that was requested""" + level: float64! + + """ + The sum of values for a metric per dimension, with confidence intervals + """ + sum: AccountPipelinesSinkAdaptiveGroupsSumConfidence +} + +"""""" +type AccountPipelinesSinkAdaptiveGroupsDimensions { + """Delivery operation timestamp, truncated to start of a day""" + date: Date! + + """Delivery operation timestamp""" + datetime: Time! + + """Delivery operation timestamp, truncated to start of an hour""" + datetimeHour: Time! + + """Delivery operation timestamp, truncated to start of a minute""" + datetimeMinute: Time! + + """The pipeline ID""" + pipelineId: string! + + """The Sink ID""" + sinkId: string! +} + +"""""" +input AccountPipelinesSinkAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountPipelinesSinkAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountPipelinesSinkAdaptiveGroupsFilter_InputObject!] + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + pipelineId: string + + """""" + pipelineId_geq: string + + """""" + pipelineId_gt: string + + """""" + pipelineId_in: [string!] + + """""" + pipelineId_leq: string + + """""" + pipelineId_like: string + + """""" + pipelineId_lt: string + + """""" + pipelineId_neq: string + + """""" + pipelineId_notin: [string!] + + """""" + pipelineId_notlike: string + + """""" + sinkId: string + + """""" + sinkId_geq: string + + """""" + sinkId_gt: string + + """""" + sinkId_in: [string!] + + """""" + sinkId_leq: string + + """""" + sinkId_like: string + + """""" + sinkId_lt: string + + """""" + sinkId_neq: string + + """""" + sinkId_notin: [string!] + + """""" + sinkId_notlike: string +} + +"""""" +enum AccountPipelinesSinkAdaptiveGroupsOrderBy { + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """pipelineId ascending""" + pipelineId_ASC + + """pipelineId descending""" + pipelineId_DESC + + """sinkId ascending""" + sinkId_ASC + + """sinkId descending""" + sinkId_DESC + + """sum(bytesWritten) ascending""" + sum_bytesWritten_ASC + + """sum(bytesWritten) descending""" + sum_bytesWritten_DESC + + """sum(filesWritten) ascending""" + sum_filesWritten_ASC + + """sum(filesWritten) descending""" + sum_filesWritten_DESC + + """sum(recordsWritten) ascending""" + sum_recordsWritten_ASC + + """sum(recordsWritten) descending""" + sum_recordsWritten_DESC + + """sum(rowGroupsWritten) ascending""" + sum_rowGroupsWritten_ASC + + """sum(rowGroupsWritten) descending""" + sum_rowGroupsWritten_DESC + + """sum(uncompressedBytesWritten) ascending""" + sum_uncompressedBytesWritten_ASC + + """sum(uncompressedBytesWritten) descending""" + sum_uncompressedBytesWritten_DESC +} + +"""""" +type AccountPipelinesSinkAdaptiveGroupsSum { + """Total number of bytes written to the sink, after compression""" + bytesWritten: int64! + + """Number of files written""" + filesWritten: int64! + + """Total number of records written to the sink""" + recordsWritten: int64! + + """Number of Parquet Row Groups written""" + rowGroupsWritten: int64! + + """Total number of bytes written before compression""" + uncompressedBytesWritten: int64! +} + +"""""" +type AccountPipelinesSinkAdaptiveGroupsSumConfidence { + """Confidence interval for the corresponding point estimate""" + bytesWritten: Confidence! + + """Confidence interval for the corresponding point estimate""" + filesWritten: Confidence! + + """Confidence interval for the corresponding point estimate""" + recordsWritten: Confidence! + + """Confidence interval for the corresponding point estimate""" + rowGroupsWritten: Confidence! + + """Confidence interval for the corresponding point estimate""" + uncompressedBytesWritten: Confidence! +} + +"""Aggregated Pipelines sink metrics with adaptive sampling""" +type AccountPipelinesSinkStagingAdaptiveGroups { + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountPipelinesSinkStagingAdaptiveGroupsConfidence! + + """List of dimensions to group by""" + dimensions: AccountPipelinesSinkStagingAdaptiveGroupsDimensions + + """The sum of values for a metric per dimension""" + sum: AccountPipelinesSinkStagingAdaptiveGroupsSum +} + +"""""" +type AccountPipelinesSinkStagingAdaptiveGroupsConfidence { + """Confidence level that was requested""" + level: float64! + + """ + The sum of values for a metric per dimension, with confidence intervals + """ + sum: AccountPipelinesSinkStagingAdaptiveGroupsSumConfidence +} + +"""""" +type AccountPipelinesSinkStagingAdaptiveGroupsDimensions { + """Delivery operation timestamp, truncated to start of a day""" + date: Date! + + """Delivery operation timestamp""" + datetime: Time! + + """Delivery operation timestamp, truncated to start of an hour""" + datetimeHour: Time! + + """Delivery operation timestamp, truncated to start of a minute""" + datetimeMinute: Time! + + """The pipeline ID""" + pipelineId: string! + + """The Stream ID""" + streamId: string! +} + +"""""" +input AccountPipelinesSinkStagingAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountPipelinesSinkStagingAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountPipelinesSinkStagingAdaptiveGroupsFilter_InputObject!] + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + pipelineId: string + + """""" + pipelineId_geq: string + + """""" + pipelineId_gt: string + + """""" + pipelineId_in: [string!] + + """""" + pipelineId_leq: string + + """""" + pipelineId_like: string + + """""" + pipelineId_lt: string + + """""" + pipelineId_neq: string + + """""" + pipelineId_notin: [string!] + + """""" + pipelineId_notlike: string + + """""" + streamId: string + + """""" + streamId_geq: string + + """""" + streamId_gt: string + + """""" + streamId_in: [string!] + + """""" + streamId_leq: string + + """""" + streamId_like: string + + """""" + streamId_lt: string + + """""" + streamId_neq: string + + """""" + streamId_notin: [string!] + + """""" + streamId_notlike: string +} + +"""""" +enum AccountPipelinesSinkStagingAdaptiveGroupsOrderBy { + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """pipelineId ascending""" + pipelineId_ASC + + """pipelineId descending""" + pipelineId_DESC + + """streamId ascending""" + streamId_ASC + + """streamId descending""" + streamId_DESC + + """sum(bytesWritten) ascending""" + sum_bytesWritten_ASC + + """sum(bytesWritten) descending""" + sum_bytesWritten_DESC + + """sum(filesWritten) ascending""" + sum_filesWritten_ASC + + """sum(filesWritten) descending""" + sum_filesWritten_DESC + + """sum(recordsWritten) ascending""" + sum_recordsWritten_ASC + + """sum(recordsWritten) descending""" + sum_recordsWritten_DESC + + """sum(rowGroupsWritten) ascending""" + sum_rowGroupsWritten_ASC + + """sum(rowGroupsWritten) descending""" + sum_rowGroupsWritten_DESC + + """sum(uncompressedBytesWritten) ascending""" + sum_uncompressedBytesWritten_ASC + + """sum(uncompressedBytesWritten) descending""" + sum_uncompressedBytesWritten_DESC +} + +"""""" +type AccountPipelinesSinkStagingAdaptiveGroupsSum { + """Total number of bytes written to the sink, after compression""" + bytesWritten: int64! + + """Number of files written""" + filesWritten: int64! + + """Total number of records written to the sink""" + recordsWritten: int64! + + """Number of Parquet Row Groups written""" + rowGroupsWritten: int64! + + """Total number of bytes written before compression""" + uncompressedBytesWritten: int64! +} + +"""""" +type AccountPipelinesSinkStagingAdaptiveGroupsSumConfidence { + """Confidence interval for the corresponding point estimate""" + bytesWritten: Confidence! + + """Confidence interval for the corresponding point estimate""" + filesWritten: Confidence! + + """Confidence interval for the corresponding point estimate""" + recordsWritten: Confidence! + + """Confidence interval for the corresponding point estimate""" + rowGroupsWritten: Confidence! + + """Confidence interval for the corresponding point estimate""" + uncompressedBytesWritten: Confidence! +} + +"""Network analytics data for Programmable Flow Protection""" +type AccountProgrammableFlowProtectionNetworkAnalyticsAdaptiveGroups { + """The average of values for a metric per dimension""" + avg: AccountProgrammableFlowProtectionNetworkAnalyticsAdaptiveGroupsAvg + + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountProgrammableFlowProtectionNetworkAnalyticsAdaptiveGroupsConfidence! + + """List of dimensions to group by""" + dimensions: AccountProgrammableFlowProtectionNetworkAnalyticsAdaptiveGroupsDimensions + + """The sum of values for a metric per dimension""" + sum: AccountProgrammableFlowProtectionNetworkAnalyticsAdaptiveGroupsSum +} + +"""""" +type AccountProgrammableFlowProtectionNetworkAnalyticsAdaptiveGroupsAvg { + """ + Sum of bits received, divided by 1 second, providing a per-second bit rate when grouped by datetime + """ + bitRate: uint64! + + """ + Sum of bits received, divided by 86400 seconds, providing a per-second bit rate when grouped by date + """ + bitRateDay: uint64! + + """ + Sum of bits received, divided by 900 seconds, providing a per-second bit rate when grouped by datetimeFifteenMinutes + """ + bitRateFifteenMinutes: uint64! + + """ + Sum of bits received, divided by 300 seconds, providing a per-second bit rate when grouped by datetimeFiveMinutes + """ + bitRateFiveMinutes: uint64! + + """ + Sum of bits received, divided by 3600 seconds, providing a per-second bit rate when grouped by datetimeHour + """ + bitRateHour: uint64! + + """ + Sum of bits received, divided by 60 seconds, providing a per-second bit rate when grouped by datetimeMinute + """ + bitRateMinute: uint64! + + """ + Sum of bits received, divided by 10 seconds, providing a per-second bit rate when grouped by datetimeTenSeconds + """ + bitRateTenSeconds: uint64! + + """ + Sum of packets received, divided by 1 second, providing a per-second packet rate when grouped by datetime + """ + packetRate: uint64! + + """ + Sum of packets received, divided by 86400 seconds, providing a per-second packet rate when grouped by date + """ + packetRateDay: uint64! + + """ + Sum of packets received, divided by 900 seconds, providing a per-second packet rate when grouped by datetimeFifteenMinutes + """ + packetRateFifteenMinutes: uint64! + + """ + Sum of packets received, divided by 300 seconds, providing a per-second packet rate when grouped by datetimeFiveMinutes + """ + packetRateFiveMinutes: uint64! + + """ + Sum of packets received, divided by 3600 seconds, providing a per-second packet rate when grouped by datetimeHour + """ + packetRateHour: uint64! + + """ + Sum of packets received, divided by 60 seconds, providing a per-second packet rate when grouped by datetimeMinute + """ + packetRateMinute: uint64! + + """ + Sum of packets received, divided by 10 seconds, providing a per-second packet rate when grouped by datetimeTenSeconds + """ + packetRateTenSeconds: uint64! +} + +"""""" +type AccountProgrammableFlowProtectionNetworkAnalyticsAdaptiveGroupsAvgConfidence { + """Confidence interval for the corresponding point estimate""" + bitRate: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateDay: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateFifteenMinutes: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateFiveMinutes: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateHour: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateMinute: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateTenSeconds: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRate: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateDay: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateFifteenMinutes: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateFiveMinutes: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateHour: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateMinute: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateTenSeconds: Confidence! +} + +"""""" +type AccountProgrammableFlowProtectionNetworkAnalyticsAdaptiveGroupsConfidence { + """ + The average of values for a metric per dimension, with confidence intervals + """ + avg: AccountProgrammableFlowProtectionNetworkAnalyticsAdaptiveGroupsAvgConfidence + + """Confidence level that was requested""" + level: float64! + + """ + The sum of values for a metric per dimension, with confidence intervals + """ + sum: AccountProgrammableFlowProtectionNetworkAnalyticsAdaptiveGroupsSumConfidence +} + +"""""" +type AccountProgrammableFlowProtectionNetworkAnalyticsAdaptiveGroupsDimensions { + """Application tag associated with the packet""" + applicationTag: string! + + """ + City where the Cloudflare datacenter that received the packet is located + """ + coloCity: string! + + """ + Cloudflare datacenter that received the packet (nearest IATA airport code) + """ + coloCode: string! + + """ + Country where the Cloudflare datacenter that received the packet is located (ISO 3166-1 alpha-2) + """ + coloCountry: string! + + """ + Latitude and longitude where the Cloudflare datacenter that received the packet is located (Geohash encoding) + """ + coloGeohash: string! + + """ + Cloudflare datacenter that received the packet (unique site identifier) + """ + coloName: string! + + """Date that the packet was received""" + date: Date! + + """Date and time that the packet was received""" + datetime: Time! + + """ + Date and time that the packet was received, rounded to the start of the nearest fifteen minutes + """ + datetimeFifteenMinutes: Time! + + """ + Date and time that the packet was received, rounded to the start of the nearest five minutes + """ + datetimeFiveMinutes: Time! + + """ + Date and time that the packet was received, rounded to the start of the nearest hour + """ + datetimeHour: Time! + + """ + Date and time that the packet was received, rounded to the start of the nearest minute + """ + datetimeMinute: Time! + + """ + Date and time that the packet was received, rounded to the start of the nearest ten seconds + """ + datetimeTenSeconds: Time! + + """ + ASN associated with the destination IP of the packet, or 0 if there was no mapping available + """ + destinationAsn: uint32! + + """ + Name of ASN associated with the destination IP of the packet, if available + """ + destinationAsnName: string! + + """ + Country where the destination IP of the packet is located (ISO 3166-1 alpha-2) + """ + destinationCountry: string! + + """ + Latitude and longitude where the destination IP of the packet is located (Geohash encoding) + """ + destinationGeohash: string! + + """Value of the Destination Port header field in the TCP or UDP packet""" + destinationPort: uint16! + + """ + Direction of the packet relative to the customer network (possible values: inbound, outbound, lateral) + """ + direction: string! + + """ + Value of the Ethertype header field in the Ethernet packet (2048 for IPv4; 34525 for IPv6) + """ + ethertype: uint16! + + """Value of the Checkusm header field in the GRE packet""" + greChecksum: uint16! + + """Value of the Ethertype header field in the GRE packet""" + greEthertype: uint16! + + """Length of the GRE packet header, in bytes""" + greHeaderLength: uint16! + + """Value of the Key header field in the GRE packet""" + greKey: uint32! + + """Value of the Sequence Number header field in the GRE packet""" + greSequenceNumber: uint32! + + """Value of the Version header field in the GRE packet""" + greVersion: uint8! + + """Value of the Checkusm header field in the ICMP packet""" + icmpChecksum: uint16! + + """Value of the Code header field in the ICMP packet""" + icmpCode: uint8! + + """Value of the Type header field in the ICMP packet""" + icmpType: uint8! + + """ + Value of the Destination Address header field in the IPv4 or IPv6 packet + """ + ipDestinationAddress: string! + + """ + Computed subnet of the Destination Address header field in the IPv4 or IPv6 packet (/24 for IPv4; /48 for IPv6) + """ + ipDestinationSubnet: string! + + """Value of the Fragment Offset header field in the IPv4 or IPv6 packet""" + ipFragmentOffset: uint16! + + """Length of the IPv4 or IPv6 packet header, in bytes""" + ipHeaderLength: uint16! + + """Value of the More Fragments header field in the IPv4 or IPv6 packet""" + ipMoreFragments: uint8! + + """Value of the Protocol header field in the IPv4 or IPv6 packet""" + ipProtocol: uint8! + + """ + Name of the protocol specified by the Protocol header field in the IPv4 or IPv6 packet + """ + ipProtocolName: string! + + """Value of the Source Address header field in the IPv4 or IPv6 packet""" + ipSourceAddress: string! + + """ + Computed subnet of the Source Address header field in the IPv4 or IPv6 packet (/24 for IPv4; /48 for IPv6) + """ + ipSourceSubnet: string! + + """Total length of the IPv4 or IPv6 packet, in bytes""" + ipTotalLength: uint16! + + """ + Total length of the IPv4 or IPv6 packet, in bytes, with the last two digits truncated + """ + ipTotalLengthBuckets: uint16! + + """ + Value of the TTL header field in the IPv4 packet or the Hop Limit header field in the IPv6 packet + """ + ipTtl: uint8! + + """ + Value of the TTL header field in the IPv4 packet or the Hop Limit header field in the IPv6 packet, with the last digit truncated + """ + ipTtlBuckets: uint8! + + """Value of the Checksum header field in the IPv4 packet""" + ipv4Checksum: uint16! + + """Value of the Don't Fragment header field in the IPv4 packet""" + ipv4DontFragment: uint8! + + """ + Value of the Differentiated Services Code Point header field in the IPv4 packet + """ + ipv4Dscp: uint8! + + """ + Value of the Explicit Congestion Notification header field in the IPv4 packet + """ + ipv4Ecn: uint8! + + """Value of the Identification header field in the IPv4 packet""" + ipv4Identification: uint16! + + """List of Options numbers included in the IPv4 packet header""" + ipv4Options: string! + + """ + Value of the Differentiated Services Code Point header field in the IPv6 packet + """ + ipv6Dscp: uint8! + + """ + Value of the Explicit Congestion Notification header field in the IPv6 packet + """ + ipv6Ecn: uint8! + + """List of Extension Header numbers included in the IPv6 packet header""" + ipv6ExtensionHeaders: string! + + """Value of the Flow Label header field in the IPv6 packet""" + ipv6FlowLabel: uint32! + + """Value of the Identification extension header field in the IPv6 packet""" + ipv6Identification: uint32! + + """IP lease tag associated with the packet""" + leaseTag: string! + + """Reason for applying a mitigation to the packet, if any""" + mitigationReason: string! + + """ + Whether the packet matched a local or global mitigation, if any (possible values: local, global) + """ + mitigationScope: string! + + """The action that was taken on the packet (possible values: pass, drop)""" + outcome: string! + + """IP prefix tag associated with the packet""" + prefixTag: string! + + """ABR sample interval""" + sampleInterval: uint32! + + """ + ASN associated with the source IP of the packet, or 0 if there was no mapping available + """ + sourceAsn: uint32! + + """Name of ASN associated with the source IP of the packet, if available""" + sourceAsnName: string! + + """ + Country where the source IP of the packet is located (ISO 3166-1 alpha-2) + """ + sourceCountry: string! + + """ + Latitude and longitude where the source IP of the packet is located (Geohash encoding) + """ + sourceGeohash: string! + + """Value of the Source Port header field in the TCP or UDP packet""" + sourcePort: uint16! + + """Value of the Acknowledgement Number header field in the TCP packet""" + tcpAcknowledgementNumber: uint32! + + """Value of the Checkusm header field in the TCP packet""" + tcpChecksum: uint16! + + """Value of the Data Offset header field in the TCP packet""" + tcpDataOffset: uint16! + + """Value of the Flags header field in the TCP packet""" + tcpFlags: uint8! + + """ + Human-readable string representation of the Flags header field in the TCP packet + """ + tcpFlagsString: string! + + """Value of the MSS option header field in the TCP packet""" + tcpMss: uint16! + + """List of Options numbers included in the TCP packet header""" + tcpOptions: string! + + """Value of the SACK Blocks option header field in the TCP packet""" + tcpSackBlocks: string! + + """Value of the SACK Permitted option header field in the TCP packet""" + tcpSackPermitted: uint8! + + """Value of the Sequence Number header field in the TCP packet""" + tcpSequenceNumber: uint32! + + """ + Value of the Timestamp Echo Reply option header field in the TCP packet + """ + tcpTimestampEcr: uint32! + + """Value of the Timestamp option header field in the TCP packet""" + tcpTimestampValue: uint32! + + """Value of the Urgent Pointer header field in the TCP packet""" + tcpUrgentPointer: uint16! + + """Value of the Window Scale option header field in the TCP packet""" + tcpWindowScale: uint16! + + """Value of the Window Size header field in the TCP packet""" + tcpWindowSize: uint16! + + """Value of the Checkusm header field in the UDP packet""" + udpChecksum: uint16! + + """Value of the Payload Length header field in the UDP packet""" + udpPayloadLength: uint16! + + """ + The action that Cloudflare thinks should be taken on the packet (possible values: pass, drop) + """ + verdict: string! +} + +"""""" +input AccountProgrammableFlowProtectionNetworkAnalyticsAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountProgrammableFlowProtectionNetworkAnalyticsAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountProgrammableFlowProtectionNetworkAnalyticsAdaptiveGroupsFilter_InputObject!] + + """""" + applicationTag: string + + """""" + applicationTag_geq: string + + """""" + applicationTag_gt: string + + """""" + applicationTag_in: [string!] + + """""" + applicationTag_leq: string + + """""" + applicationTag_like: string + + """""" + applicationTag_lt: string + + """""" + applicationTag_neq: string + + """""" + applicationTag_notin: [string!] + + """""" + applicationTag_notlike: string + + """""" + coloCity: string + + """""" + coloCity_geq: string + + """""" + coloCity_gt: string + + """""" + coloCity_in: [string!] + + """""" + coloCity_leq: string + + """""" + coloCity_like: string + + """""" + coloCity_lt: string + + """""" + coloCity_neq: string + + """""" + coloCity_notin: [string!] + + """""" + coloCity_notlike: string + + """""" + coloCode: string + + """""" + coloCode_geq: string + + """""" + coloCode_gt: string + + """""" + coloCode_in: [string!] + + """""" + coloCode_leq: string + + """""" + coloCode_like: string + + """""" + coloCode_lt: string + + """""" + coloCode_neq: string + + """""" + coloCode_notin: [string!] + + """""" + coloCode_notlike: string + + """""" + coloCountry: string + + """""" + coloCountry_geq: string + + """""" + coloCountry_gt: string + + """""" + coloCountry_in: [string!] + + """""" + coloCountry_leq: string + + """""" + coloCountry_like: string + + """""" + coloCountry_lt: string + + """""" + coloCountry_neq: string + + """""" + coloCountry_notin: [string!] + + """""" + coloCountry_notlike: string + + """""" + coloGeohash: string + + """""" + coloGeohash_geq: string + + """""" + coloGeohash_gt: string + + """""" + coloGeohash_in: [string!] + + """""" + coloGeohash_leq: string + + """""" + coloGeohash_like: string + + """""" + coloGeohash_lt: string + + """""" + coloGeohash_neq: string + + """""" + coloGeohash_notin: [string!] + + """""" + coloGeohash_notlike: string + + """""" + coloName: string + + """""" + coloName_geq: string + + """""" + coloName_gt: string + + """""" + coloName_in: [string!] + + """""" + coloName_leq: string + + """""" + coloName_like: string + + """""" + coloName_lt: string + + """""" + coloName_neq: string + + """""" + coloName_notin: [string!] + + """""" + coloName_notlike: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetimeTenSeconds: Time + + """""" + datetimeTenSeconds_geq: Time + + """""" + datetimeTenSeconds_gt: Time + + """""" + datetimeTenSeconds_in: [Time!] + + """""" + datetimeTenSeconds_leq: Time + + """""" + datetimeTenSeconds_lt: Time + + """""" + datetimeTenSeconds_neq: Time + + """""" + datetimeTenSeconds_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + destinationAsn: uint32 + + """""" + destinationAsnName: string + + """""" + destinationAsnName_geq: string + + """""" + destinationAsnName_gt: string + + """""" + destinationAsnName_in: [string!] + + """""" + destinationAsnName_leq: string + + """""" + destinationAsnName_like: string + + """""" + destinationAsnName_lt: string + + """""" + destinationAsnName_neq: string + + """""" + destinationAsnName_notin: [string!] + + """""" + destinationAsnName_notlike: string + + """""" + destinationAsn_geq: uint32 + + """""" + destinationAsn_gt: uint32 + + """""" + destinationAsn_in: [uint32!] + + """""" + destinationAsn_leq: uint32 + + """""" + destinationAsn_lt: uint32 + + """""" + destinationAsn_neq: uint32 + + """""" + destinationAsn_notin: [uint32!] + + """""" + destinationCountry: string + + """""" + destinationCountry_geq: string + + """""" + destinationCountry_gt: string + + """""" + destinationCountry_in: [string!] + + """""" + destinationCountry_leq: string + + """""" + destinationCountry_like: string + + """""" + destinationCountry_lt: string + + """""" + destinationCountry_neq: string + + """""" + destinationCountry_notin: [string!] + + """""" + destinationCountry_notlike: string + + """""" + destinationGeohash: string + + """""" + destinationGeohash_geq: string + + """""" + destinationGeohash_gt: string + + """""" + destinationGeohash_in: [string!] + + """""" + destinationGeohash_leq: string + + """""" + destinationGeohash_like: string + + """""" + destinationGeohash_lt: string + + """""" + destinationGeohash_neq: string + + """""" + destinationGeohash_notin: [string!] + + """""" + destinationGeohash_notlike: string + + """""" + destinationPort: uint16 + + """""" + destinationPort_geq: uint16 + + """""" + destinationPort_gt: uint16 + + """""" + destinationPort_in: [uint16!] + + """""" + destinationPort_leq: uint16 + + """""" + destinationPort_lt: uint16 + + """""" + destinationPort_neq: uint16 + + """""" + destinationPort_notin: [uint16!] + + """""" + direction: string + + """""" + direction_geq: string + + """""" + direction_gt: string + + """""" + direction_in: [string!] + + """""" + direction_leq: string + + """""" + direction_like: string + + """""" + direction_lt: string + + """""" + direction_neq: string + + """""" + direction_notin: [string!] + + """""" + direction_notlike: string + + """""" + ethertype: uint16 + + """""" + ethertype_geq: uint16 + + """""" + ethertype_gt: uint16 + + """""" + ethertype_in: [uint16!] + + """""" + ethertype_leq: uint16 + + """""" + ethertype_lt: uint16 + + """""" + ethertype_neq: uint16 + + """""" + ethertype_notin: [uint16!] + + """""" + greChecksum: uint16 + + """""" + greChecksum_geq: uint16 + + """""" + greChecksum_gt: uint16 + + """""" + greChecksum_in: [uint16!] + + """""" + greChecksum_leq: uint16 + + """""" + greChecksum_lt: uint16 + + """""" + greChecksum_neq: uint16 + + """""" + greChecksum_notin: [uint16!] + + """""" + greEthertype: uint16 + + """""" + greEthertype_geq: uint16 + + """""" + greEthertype_gt: uint16 + + """""" + greEthertype_in: [uint16!] + + """""" + greEthertype_leq: uint16 + + """""" + greEthertype_lt: uint16 + + """""" + greEthertype_neq: uint16 + + """""" + greEthertype_notin: [uint16!] + + """""" + greHeaderLength: uint16 + + """""" + greHeaderLength_geq: uint16 + + """""" + greHeaderLength_gt: uint16 + + """""" + greHeaderLength_in: [uint16!] + + """""" + greHeaderLength_leq: uint16 + + """""" + greHeaderLength_lt: uint16 + + """""" + greHeaderLength_neq: uint16 + + """""" + greHeaderLength_notin: [uint16!] + + """""" + greKey: uint32 + + """""" + greKey_geq: uint32 + + """""" + greKey_gt: uint32 + + """""" + greKey_in: [uint32!] + + """""" + greKey_leq: uint32 + + """""" + greKey_lt: uint32 + + """""" + greKey_neq: uint32 + + """""" + greKey_notin: [uint32!] + + """""" + greSequenceNumber: uint32 + + """""" + greSequenceNumber_geq: uint32 + + """""" + greSequenceNumber_gt: uint32 + + """""" + greSequenceNumber_in: [uint32!] + + """""" + greSequenceNumber_leq: uint32 + + """""" + greSequenceNumber_lt: uint32 + + """""" + greSequenceNumber_neq: uint32 + + """""" + greSequenceNumber_notin: [uint32!] + + """""" + greVersion: uint8 + + """""" + greVersion_geq: uint8 + + """""" + greVersion_gt: uint8 + + """""" + greVersion_in: bytes + + """""" + greVersion_leq: uint8 + + """""" + greVersion_lt: uint8 + + """""" + greVersion_neq: uint8 + + """""" + greVersion_notin: bytes + + """""" + icmpChecksum: uint16 + + """""" + icmpChecksum_geq: uint16 + + """""" + icmpChecksum_gt: uint16 + + """""" + icmpChecksum_in: [uint16!] + + """""" + icmpChecksum_leq: uint16 + + """""" + icmpChecksum_lt: uint16 + + """""" + icmpChecksum_neq: uint16 + + """""" + icmpChecksum_notin: [uint16!] + + """""" + icmpCode: uint8 + + """""" + icmpCode_geq: uint8 + + """""" + icmpCode_gt: uint8 + + """""" + icmpCode_in: bytes + + """""" + icmpCode_leq: uint8 + + """""" + icmpCode_lt: uint8 + + """""" + icmpCode_neq: uint8 + + """""" + icmpCode_notin: bytes + + """""" + icmpType: uint8 + + """""" + icmpType_geq: uint8 + + """""" + icmpType_gt: uint8 + + """""" + icmpType_in: bytes + + """""" + icmpType_leq: uint8 + + """""" + icmpType_lt: uint8 + + """""" + icmpType_neq: uint8 + + """""" + icmpType_notin: bytes + + """""" + ipDestinationAddress: string + + """""" + ipDestinationAddress_geq: string + + """""" + ipDestinationAddress_gt: string + + """""" + ipDestinationAddress_in: [string!] + + """""" + ipDestinationAddress_leq: string + + """""" + ipDestinationAddress_like: string + + """""" + ipDestinationAddress_lt: string + + """""" + ipDestinationAddress_neq: string + + """""" + ipDestinationAddress_notin: [string!] + + """""" + ipDestinationAddress_notlike: string + + """""" + ipDestinationSubnet: string + + """""" + ipDestinationSubnet_geq: string + + """""" + ipDestinationSubnet_gt: string + + """""" + ipDestinationSubnet_in: [string!] + + """""" + ipDestinationSubnet_leq: string + + """""" + ipDestinationSubnet_like: string + + """""" + ipDestinationSubnet_lt: string + + """""" + ipDestinationSubnet_neq: string + + """""" + ipDestinationSubnet_notin: [string!] + + """""" + ipDestinationSubnet_notlike: string + + """""" + ipFragmentOffset: uint16 + + """""" + ipFragmentOffset_geq: uint16 + + """""" + ipFragmentOffset_gt: uint16 + + """""" + ipFragmentOffset_in: [uint16!] + + """""" + ipFragmentOffset_leq: uint16 + + """""" + ipFragmentOffset_lt: uint16 + + """""" + ipFragmentOffset_neq: uint16 + + """""" + ipFragmentOffset_notin: [uint16!] + + """""" + ipHeaderLength: uint16 + + """""" + ipHeaderLength_geq: uint16 + + """""" + ipHeaderLength_gt: uint16 + + """""" + ipHeaderLength_in: [uint16!] + + """""" + ipHeaderLength_leq: uint16 + + """""" + ipHeaderLength_lt: uint16 + + """""" + ipHeaderLength_neq: uint16 + + """""" + ipHeaderLength_notin: [uint16!] + + """""" + ipMoreFragments: uint8 + + """""" + ipMoreFragments_geq: uint8 + + """""" + ipMoreFragments_gt: uint8 + + """""" + ipMoreFragments_in: bytes + + """""" + ipMoreFragments_leq: uint8 + + """""" + ipMoreFragments_lt: uint8 + + """""" + ipMoreFragments_neq: uint8 + + """""" + ipMoreFragments_notin: bytes + + """""" + ipProtocol: uint8 + + """""" + ipProtocolName: string + + """""" + ipProtocolName_geq: string + + """""" + ipProtocolName_gt: string + + """""" + ipProtocolName_in: [string!] + + """""" + ipProtocolName_leq: string + + """""" + ipProtocolName_like: string + + """""" + ipProtocolName_lt: string + + """""" + ipProtocolName_neq: string + + """""" + ipProtocolName_notin: [string!] + + """""" + ipProtocolName_notlike: string + + """""" + ipProtocol_geq: uint8 + + """""" + ipProtocol_gt: uint8 + + """""" + ipProtocol_in: bytes + + """""" + ipProtocol_leq: uint8 + + """""" + ipProtocol_lt: uint8 + + """""" + ipProtocol_neq: uint8 + + """""" + ipProtocol_notin: bytes + + """""" + ipSourceAddress: string + + """""" + ipSourceAddress_geq: string + + """""" + ipSourceAddress_gt: string + + """""" + ipSourceAddress_in: [string!] + + """""" + ipSourceAddress_leq: string + + """""" + ipSourceAddress_like: string + + """""" + ipSourceAddress_lt: string + + """""" + ipSourceAddress_neq: string + + """""" + ipSourceAddress_notin: [string!] + + """""" + ipSourceAddress_notlike: string + + """""" + ipSourceSubnet: string + + """""" + ipSourceSubnet_geq: string + + """""" + ipSourceSubnet_gt: string + + """""" + ipSourceSubnet_in: [string!] + + """""" + ipSourceSubnet_leq: string + + """""" + ipSourceSubnet_like: string + + """""" + ipSourceSubnet_lt: string + + """""" + ipSourceSubnet_neq: string + + """""" + ipSourceSubnet_notin: [string!] + + """""" + ipSourceSubnet_notlike: string + + """""" + ipTotalLength: uint16 + + """""" + ipTotalLengthBuckets: uint16 + + """""" + ipTotalLengthBuckets_geq: uint16 + + """""" + ipTotalLengthBuckets_gt: uint16 + + """""" + ipTotalLengthBuckets_in: [uint16!] + + """""" + ipTotalLengthBuckets_leq: uint16 + + """""" + ipTotalLengthBuckets_lt: uint16 + + """""" + ipTotalLengthBuckets_neq: uint16 + + """""" + ipTotalLengthBuckets_notin: [uint16!] + + """""" + ipTotalLength_geq: uint16 + + """""" + ipTotalLength_gt: uint16 + + """""" + ipTotalLength_in: [uint16!] + + """""" + ipTotalLength_leq: uint16 + + """""" + ipTotalLength_lt: uint16 + + """""" + ipTotalLength_neq: uint16 + + """""" + ipTotalLength_notin: [uint16!] + + """""" + ipTtl: uint8 + + """""" + ipTtlBuckets: uint8 + + """""" + ipTtlBuckets_geq: uint8 + + """""" + ipTtlBuckets_gt: uint8 + + """""" + ipTtlBuckets_in: bytes + + """""" + ipTtlBuckets_leq: uint8 + + """""" + ipTtlBuckets_lt: uint8 + + """""" + ipTtlBuckets_neq: uint8 + + """""" + ipTtlBuckets_notin: bytes + + """""" + ipTtl_geq: uint8 + + """""" + ipTtl_gt: uint8 + + """""" + ipTtl_in: bytes + + """""" + ipTtl_leq: uint8 + + """""" + ipTtl_lt: uint8 + + """""" + ipTtl_neq: uint8 + + """""" + ipTtl_notin: bytes + + """""" + ipv4Checksum: uint16 + + """""" + ipv4Checksum_geq: uint16 + + """""" + ipv4Checksum_gt: uint16 + + """""" + ipv4Checksum_in: [uint16!] + + """""" + ipv4Checksum_leq: uint16 + + """""" + ipv4Checksum_lt: uint16 + + """""" + ipv4Checksum_neq: uint16 + + """""" + ipv4Checksum_notin: [uint16!] + + """""" + ipv4DontFragment: uint8 + + """""" + ipv4DontFragment_geq: uint8 + + """""" + ipv4DontFragment_gt: uint8 + + """""" + ipv4DontFragment_in: bytes + + """""" + ipv4DontFragment_leq: uint8 + + """""" + ipv4DontFragment_lt: uint8 + + """""" + ipv4DontFragment_neq: uint8 + + """""" + ipv4DontFragment_notin: bytes + + """""" + ipv4Dscp: uint8 + + """""" + ipv4Dscp_geq: uint8 + + """""" + ipv4Dscp_gt: uint8 + + """""" + ipv4Dscp_in: bytes + + """""" + ipv4Dscp_leq: uint8 + + """""" + ipv4Dscp_lt: uint8 + + """""" + ipv4Dscp_neq: uint8 + + """""" + ipv4Dscp_notin: bytes + + """""" + ipv4Ecn: uint8 + + """""" + ipv4Ecn_geq: uint8 + + """""" + ipv4Ecn_gt: uint8 + + """""" + ipv4Ecn_in: bytes + + """""" + ipv4Ecn_leq: uint8 + + """""" + ipv4Ecn_lt: uint8 + + """""" + ipv4Ecn_neq: uint8 + + """""" + ipv4Ecn_notin: bytes + + """""" + ipv4Identification: uint16 + + """""" + ipv4Identification_geq: uint16 + + """""" + ipv4Identification_gt: uint16 + + """""" + ipv4Identification_in: [uint16!] + + """""" + ipv4Identification_leq: uint16 + + """""" + ipv4Identification_lt: uint16 + + """""" + ipv4Identification_neq: uint16 + + """""" + ipv4Identification_notin: [uint16!] + + """""" + ipv4Options: string + + """""" + ipv4Options_geq: string + + """""" + ipv4Options_gt: string + + """""" + ipv4Options_in: [string!] + + """""" + ipv4Options_leq: string + + """""" + ipv4Options_like: string + + """""" + ipv4Options_lt: string + + """""" + ipv4Options_neq: string + + """""" + ipv4Options_notin: [string!] + + """""" + ipv4Options_notlike: string + + """""" + ipv6Dscp: uint8 + + """""" + ipv6Dscp_geq: uint8 + + """""" + ipv6Dscp_gt: uint8 + + """""" + ipv6Dscp_in: bytes + + """""" + ipv6Dscp_leq: uint8 + + """""" + ipv6Dscp_lt: uint8 + + """""" + ipv6Dscp_neq: uint8 + + """""" + ipv6Dscp_notin: bytes + + """""" + ipv6Ecn: uint8 + + """""" + ipv6Ecn_geq: uint8 + + """""" + ipv6Ecn_gt: uint8 + + """""" + ipv6Ecn_in: bytes + + """""" + ipv6Ecn_leq: uint8 + + """""" + ipv6Ecn_lt: uint8 + + """""" + ipv6Ecn_neq: uint8 + + """""" + ipv6Ecn_notin: bytes + + """""" + ipv6ExtensionHeaders: string + + """""" + ipv6ExtensionHeaders_geq: string + + """""" + ipv6ExtensionHeaders_gt: string + + """""" + ipv6ExtensionHeaders_in: [string!] + + """""" + ipv6ExtensionHeaders_leq: string + + """""" + ipv6ExtensionHeaders_like: string + + """""" + ipv6ExtensionHeaders_lt: string + + """""" + ipv6ExtensionHeaders_neq: string + + """""" + ipv6ExtensionHeaders_notin: [string!] + + """""" + ipv6ExtensionHeaders_notlike: string + + """""" + ipv6FlowLabel: uint32 + + """""" + ipv6FlowLabel_geq: uint32 + + """""" + ipv6FlowLabel_gt: uint32 + + """""" + ipv6FlowLabel_in: [uint32!] + + """""" + ipv6FlowLabel_leq: uint32 + + """""" + ipv6FlowLabel_lt: uint32 + + """""" + ipv6FlowLabel_neq: uint32 + + """""" + ipv6FlowLabel_notin: [uint32!] + + """""" + ipv6Identification: uint32 + + """""" + ipv6Identification_geq: uint32 + + """""" + ipv6Identification_gt: uint32 + + """""" + ipv6Identification_in: [uint32!] + + """""" + ipv6Identification_leq: uint32 + + """""" + ipv6Identification_lt: uint32 + + """""" + ipv6Identification_neq: uint32 + + """""" + ipv6Identification_notin: [uint32!] + + """""" + leaseTag: string + + """""" + leaseTag_geq: string + + """""" + leaseTag_gt: string + + """""" + leaseTag_in: [string!] + + """""" + leaseTag_leq: string + + """""" + leaseTag_like: string + + """""" + leaseTag_lt: string + + """""" + leaseTag_neq: string + + """""" + leaseTag_notin: [string!] + + """""" + leaseTag_notlike: string + + """""" + mitigationReason: string + + """""" + mitigationReason_geq: string + + """""" + mitigationReason_gt: string + + """""" + mitigationReason_in: [string!] + + """""" + mitigationReason_leq: string + + """""" + mitigationReason_like: string + + """""" + mitigationReason_lt: string + + """""" + mitigationReason_neq: string + + """""" + mitigationReason_notin: [string!] + + """""" + mitigationReason_notlike: string + + """""" + mitigationScope: string + + """""" + mitigationScope_geq: string + + """""" + mitigationScope_gt: string + + """""" + mitigationScope_in: [string!] + + """""" + mitigationScope_leq: string + + """""" + mitigationScope_like: string + + """""" + mitigationScope_lt: string + + """""" + mitigationScope_neq: string + + """""" + mitigationScope_notin: [string!] + + """""" + mitigationScope_notlike: string + + """""" + outcome: string + + """""" + outcome_geq: string + + """""" + outcome_gt: string + + """""" + outcome_in: [string!] + + """""" + outcome_leq: string + + """""" + outcome_like: string + + """""" + outcome_lt: string + + """""" + outcome_neq: string + + """""" + outcome_notin: [string!] + + """""" + outcome_notlike: string + + """""" + prefixTag: string + + """""" + prefixTag_geq: string + + """""" + prefixTag_gt: string + + """""" + prefixTag_in: [string!] + + """""" + prefixTag_leq: string + + """""" + prefixTag_like: string + + """""" + prefixTag_lt: string + + """""" + prefixTag_neq: string + + """""" + prefixTag_notin: [string!] + + """""" + prefixTag_notlike: string + + """""" + sampleInterval: uint32 + + """""" + sampleInterval_geq: uint32 + + """""" + sampleInterval_gt: uint32 + + """""" + sampleInterval_in: [uint32!] + + """""" + sampleInterval_leq: uint32 + + """""" + sampleInterval_lt: uint32 + + """""" + sampleInterval_neq: uint32 + + """""" + sampleInterval_notin: [uint32!] + + """""" + sourceAsn: uint32 + + """""" + sourceAsnName: string + + """""" + sourceAsnName_geq: string + + """""" + sourceAsnName_gt: string + + """""" + sourceAsnName_in: [string!] + + """""" + sourceAsnName_leq: string + + """""" + sourceAsnName_like: string + + """""" + sourceAsnName_lt: string + + """""" + sourceAsnName_neq: string + + """""" + sourceAsnName_notin: [string!] + + """""" + sourceAsnName_notlike: string + + """""" + sourceAsn_geq: uint32 + + """""" + sourceAsn_gt: uint32 + + """""" + sourceAsn_in: [uint32!] + + """""" + sourceAsn_leq: uint32 + + """""" + sourceAsn_lt: uint32 + + """""" + sourceAsn_neq: uint32 + + """""" + sourceAsn_notin: [uint32!] + + """""" + sourceCountry: string + + """""" + sourceCountry_geq: string + + """""" + sourceCountry_gt: string + + """""" + sourceCountry_in: [string!] + + """""" + sourceCountry_leq: string + + """""" + sourceCountry_like: string + + """""" + sourceCountry_lt: string + + """""" + sourceCountry_neq: string + + """""" + sourceCountry_notin: [string!] + + """""" + sourceCountry_notlike: string + + """""" + sourceGeohash: string + + """""" + sourceGeohash_geq: string + + """""" + sourceGeohash_gt: string + + """""" + sourceGeohash_in: [string!] + + """""" + sourceGeohash_leq: string + + """""" + sourceGeohash_like: string + + """""" + sourceGeohash_lt: string + + """""" + sourceGeohash_neq: string + + """""" + sourceGeohash_notin: [string!] + + """""" + sourceGeohash_notlike: string + + """""" + sourcePort: uint16 + + """""" + sourcePort_geq: uint16 + + """""" + sourcePort_gt: uint16 + + """""" + sourcePort_in: [uint16!] + + """""" + sourcePort_leq: uint16 + + """""" + sourcePort_lt: uint16 + + """""" + sourcePort_neq: uint16 + + """""" + sourcePort_notin: [uint16!] + + """""" + tcpAcknowledgementNumber: uint32 + + """""" + tcpAcknowledgementNumber_geq: uint32 + + """""" + tcpAcknowledgementNumber_gt: uint32 + + """""" + tcpAcknowledgementNumber_in: [uint32!] + + """""" + tcpAcknowledgementNumber_leq: uint32 + + """""" + tcpAcknowledgementNumber_lt: uint32 + + """""" + tcpAcknowledgementNumber_neq: uint32 + + """""" + tcpAcknowledgementNumber_notin: [uint32!] + + """""" + tcpChecksum: uint16 + + """""" + tcpChecksum_geq: uint16 + + """""" + tcpChecksum_gt: uint16 + + """""" + tcpChecksum_in: [uint16!] + + """""" + tcpChecksum_leq: uint16 + + """""" + tcpChecksum_lt: uint16 + + """""" + tcpChecksum_neq: uint16 + + """""" + tcpChecksum_notin: [uint16!] + + """""" + tcpDataOffset: uint16 + + """""" + tcpDataOffset_geq: uint16 + + """""" + tcpDataOffset_gt: uint16 + + """""" + tcpDataOffset_in: [uint16!] + + """""" + tcpDataOffset_leq: uint16 + + """""" + tcpDataOffset_lt: uint16 + + """""" + tcpDataOffset_neq: uint16 + + """""" + tcpDataOffset_notin: [uint16!] + + """""" + tcpFlags: uint8 + + """""" + tcpFlagsString: string + + """""" + tcpFlagsString_geq: string + + """""" + tcpFlagsString_gt: string + + """""" + tcpFlagsString_in: [string!] + + """""" + tcpFlagsString_leq: string + + """""" + tcpFlagsString_like: string + + """""" + tcpFlagsString_lt: string + + """""" + tcpFlagsString_neq: string + + """""" + tcpFlagsString_notin: [string!] + + """""" + tcpFlagsString_notlike: string + + """""" + tcpFlags_geq: uint8 + + """""" + tcpFlags_gt: uint8 + + """""" + tcpFlags_in: bytes + + """""" + tcpFlags_leq: uint8 + + """""" + tcpFlags_lt: uint8 + + """""" + tcpFlags_neq: uint8 + + """""" + tcpFlags_notin: bytes + + """""" + tcpMss: uint16 + + """""" + tcpMss_geq: uint16 + + """""" + tcpMss_gt: uint16 + + """""" + tcpMss_in: [uint16!] + + """""" + tcpMss_leq: uint16 + + """""" + tcpMss_lt: uint16 + + """""" + tcpMss_neq: uint16 + + """""" + tcpMss_notin: [uint16!] + + """""" + tcpOptions: string + + """""" + tcpOptions_geq: string + + """""" + tcpOptions_gt: string + + """""" + tcpOptions_in: [string!] + + """""" + tcpOptions_leq: string + + """""" + tcpOptions_like: string + + """""" + tcpOptions_lt: string + + """""" + tcpOptions_neq: string + + """""" + tcpOptions_notin: [string!] + + """""" + tcpOptions_notlike: string + + """""" + tcpSackBlocks: string + + """""" + tcpSackBlocks_geq: string + + """""" + tcpSackBlocks_gt: string + + """""" + tcpSackBlocks_in: [string!] + + """""" + tcpSackBlocks_leq: string + + """""" + tcpSackBlocks_like: string + + """""" + tcpSackBlocks_lt: string + + """""" + tcpSackBlocks_neq: string + + """""" + tcpSackBlocks_notin: [string!] + + """""" + tcpSackBlocks_notlike: string + + """""" + tcpSackPermitted: uint8 + + """""" + tcpSackPermitted_geq: uint8 + + """""" + tcpSackPermitted_gt: uint8 + + """""" + tcpSackPermitted_in: bytes + + """""" + tcpSackPermitted_leq: uint8 + + """""" + tcpSackPermitted_lt: uint8 + + """""" + tcpSackPermitted_neq: uint8 + + """""" + tcpSackPermitted_notin: bytes + + """""" + tcpSequenceNumber: uint32 + + """""" + tcpSequenceNumber_geq: uint32 + + """""" + tcpSequenceNumber_gt: uint32 + + """""" + tcpSequenceNumber_in: [uint32!] + + """""" + tcpSequenceNumber_leq: uint32 + + """""" + tcpSequenceNumber_lt: uint32 + + """""" + tcpSequenceNumber_neq: uint32 + + """""" + tcpSequenceNumber_notin: [uint32!] + + """""" + tcpTimestampEcr: uint32 + + """""" + tcpTimestampEcr_geq: uint32 + + """""" + tcpTimestampEcr_gt: uint32 + + """""" + tcpTimestampEcr_in: [uint32!] + + """""" + tcpTimestampEcr_leq: uint32 + + """""" + tcpTimestampEcr_lt: uint32 + + """""" + tcpTimestampEcr_neq: uint32 + + """""" + tcpTimestampEcr_notin: [uint32!] + + """""" + tcpTimestampValue: uint32 + + """""" + tcpTimestampValue_geq: uint32 + + """""" + tcpTimestampValue_gt: uint32 + + """""" + tcpTimestampValue_in: [uint32!] + + """""" + tcpTimestampValue_leq: uint32 + + """""" + tcpTimestampValue_lt: uint32 + + """""" + tcpTimestampValue_neq: uint32 + + """""" + tcpTimestampValue_notin: [uint32!] + + """""" + tcpUrgentPointer: uint16 + + """""" + tcpUrgentPointer_geq: uint16 + + """""" + tcpUrgentPointer_gt: uint16 + + """""" + tcpUrgentPointer_in: [uint16!] + + """""" + tcpUrgentPointer_leq: uint16 + + """""" + tcpUrgentPointer_lt: uint16 + + """""" + tcpUrgentPointer_neq: uint16 + + """""" + tcpUrgentPointer_notin: [uint16!] + + """""" + tcpWindowScale: uint16 + + """""" + tcpWindowScale_geq: uint16 + + """""" + tcpWindowScale_gt: uint16 + + """""" + tcpWindowScale_in: [uint16!] + + """""" + tcpWindowScale_leq: uint16 + + """""" + tcpWindowScale_lt: uint16 + + """""" + tcpWindowScale_neq: uint16 + + """""" + tcpWindowScale_notin: [uint16!] + + """""" + tcpWindowSize: uint16 + + """""" + tcpWindowSize_geq: uint16 + + """""" + tcpWindowSize_gt: uint16 + + """""" + tcpWindowSize_in: [uint16!] + + """""" + tcpWindowSize_leq: uint16 + + """""" + tcpWindowSize_lt: uint16 + + """""" + tcpWindowSize_neq: uint16 + + """""" + tcpWindowSize_notin: [uint16!] + + """""" + udpChecksum: uint16 + + """""" + udpChecksum_geq: uint16 + + """""" + udpChecksum_gt: uint16 + + """""" + udpChecksum_in: [uint16!] + + """""" + udpChecksum_leq: uint16 + + """""" + udpChecksum_lt: uint16 + + """""" + udpChecksum_neq: uint16 + + """""" + udpChecksum_notin: [uint16!] + + """""" + udpPayloadLength: uint16 + + """""" + udpPayloadLength_geq: uint16 + + """""" + udpPayloadLength_gt: uint16 + + """""" + udpPayloadLength_in: [uint16!] + + """""" + udpPayloadLength_leq: uint16 + + """""" + udpPayloadLength_lt: uint16 + + """""" + udpPayloadLength_neq: uint16 + + """""" + udpPayloadLength_notin: [uint16!] + + """""" + verdict: string + + """""" + verdict_geq: string + + """""" + verdict_gt: string + + """""" + verdict_in: [string!] + + """""" + verdict_leq: string + + """""" + verdict_like: string + + """""" + verdict_lt: string + + """""" + verdict_neq: string + + """""" + verdict_notin: [string!] + + """""" + verdict_notlike: string +} + +"""""" +enum AccountProgrammableFlowProtectionNetworkAnalyticsAdaptiveGroupsOrderBy { + """applicationTag ascending""" + applicationTag_ASC + + """applicationTag descending""" + applicationTag_DESC + + """avg(bitRateDay) ascending""" + avg_bitRateDay_ASC + + """avg(bitRateDay) descending""" + avg_bitRateDay_DESC + + """avg(bitRateFifteenMinutes) ascending""" + avg_bitRateFifteenMinutes_ASC + + """avg(bitRateFifteenMinutes) descending""" + avg_bitRateFifteenMinutes_DESC + + """avg(bitRateFiveMinutes) ascending""" + avg_bitRateFiveMinutes_ASC + + """avg(bitRateFiveMinutes) descending""" + avg_bitRateFiveMinutes_DESC + + """avg(bitRateHour) ascending""" + avg_bitRateHour_ASC + + """avg(bitRateHour) descending""" + avg_bitRateHour_DESC + + """avg(bitRateMinute) ascending""" + avg_bitRateMinute_ASC + + """avg(bitRateMinute) descending""" + avg_bitRateMinute_DESC + + """avg(bitRateTenSeconds) ascending""" + avg_bitRateTenSeconds_ASC + + """avg(bitRateTenSeconds) descending""" + avg_bitRateTenSeconds_DESC + + """avg(bitRate) ascending""" + avg_bitRate_ASC + + """avg(bitRate) descending""" + avg_bitRate_DESC + + """avg(packetRateDay) ascending""" + avg_packetRateDay_ASC + + """avg(packetRateDay) descending""" + avg_packetRateDay_DESC + + """avg(packetRateFifteenMinutes) ascending""" + avg_packetRateFifteenMinutes_ASC + + """avg(packetRateFifteenMinutes) descending""" + avg_packetRateFifteenMinutes_DESC + + """avg(packetRateFiveMinutes) ascending""" + avg_packetRateFiveMinutes_ASC + + """avg(packetRateFiveMinutes) descending""" + avg_packetRateFiveMinutes_DESC + + """avg(packetRateHour) ascending""" + avg_packetRateHour_ASC + + """avg(packetRateHour) descending""" + avg_packetRateHour_DESC + + """avg(packetRateMinute) ascending""" + avg_packetRateMinute_ASC + + """avg(packetRateMinute) descending""" + avg_packetRateMinute_DESC + + """avg(packetRateTenSeconds) ascending""" + avg_packetRateTenSeconds_ASC + + """avg(packetRateTenSeconds) descending""" + avg_packetRateTenSeconds_DESC + + """avg(packetRate) ascending""" + avg_packetRate_ASC + + """avg(packetRate) descending""" + avg_packetRate_DESC + + """coloCity ascending""" + coloCity_ASC + + """coloCity descending""" + coloCity_DESC + + """coloCode ascending""" + coloCode_ASC + + """coloCode descending""" + coloCode_DESC + + """coloCountry ascending""" + coloCountry_ASC + + """coloCountry descending""" + coloCountry_DESC + + """coloGeohash ascending""" + coloGeohash_ASC + + """coloGeohash descending""" + coloGeohash_DESC + + """coloName ascending""" + coloName_ASC + + """coloName descending""" + coloName_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetimeTenSeconds ascending""" + datetimeTenSeconds_ASC + + """datetimeTenSeconds descending""" + datetimeTenSeconds_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """destinationAsnName ascending""" + destinationAsnName_ASC + + """destinationAsnName descending""" + destinationAsnName_DESC + + """destinationAsn ascending""" + destinationAsn_ASC + + """destinationAsn descending""" + destinationAsn_DESC + + """destinationCountry ascending""" + destinationCountry_ASC + + """destinationCountry descending""" + destinationCountry_DESC + + """destinationGeohash ascending""" + destinationGeohash_ASC + + """destinationGeohash descending""" + destinationGeohash_DESC + + """destinationPort ascending""" + destinationPort_ASC + + """destinationPort descending""" + destinationPort_DESC + + """direction ascending""" + direction_ASC + + """direction descending""" + direction_DESC + + """ethertype ascending""" + ethertype_ASC + + """ethertype descending""" + ethertype_DESC + + """greChecksum ascending""" + greChecksum_ASC + + """greChecksum descending""" + greChecksum_DESC + + """greEthertype ascending""" + greEthertype_ASC + + """greEthertype descending""" + greEthertype_DESC + + """greHeaderLength ascending""" + greHeaderLength_ASC + + """greHeaderLength descending""" + greHeaderLength_DESC + + """greKey ascending""" + greKey_ASC + + """greKey descending""" + greKey_DESC + + """greSequenceNumber ascending""" + greSequenceNumber_ASC + + """greSequenceNumber descending""" + greSequenceNumber_DESC + + """greVersion ascending""" + greVersion_ASC + + """greVersion descending""" + greVersion_DESC + + """icmpChecksum ascending""" + icmpChecksum_ASC + + """icmpChecksum descending""" + icmpChecksum_DESC + + """icmpCode ascending""" + icmpCode_ASC + + """icmpCode descending""" + icmpCode_DESC + + """icmpType ascending""" + icmpType_ASC + + """icmpType descending""" + icmpType_DESC + + """ipDestinationAddress ascending""" + ipDestinationAddress_ASC + + """ipDestinationAddress descending""" + ipDestinationAddress_DESC + + """ipDestinationSubnet ascending""" + ipDestinationSubnet_ASC + + """ipDestinationSubnet descending""" + ipDestinationSubnet_DESC + + """ipFragmentOffset ascending""" + ipFragmentOffset_ASC + + """ipFragmentOffset descending""" + ipFragmentOffset_DESC + + """ipHeaderLength ascending""" + ipHeaderLength_ASC + + """ipHeaderLength descending""" + ipHeaderLength_DESC + + """ipMoreFragments ascending""" + ipMoreFragments_ASC + + """ipMoreFragments descending""" + ipMoreFragments_DESC + + """ipProtocolName ascending""" + ipProtocolName_ASC + + """ipProtocolName descending""" + ipProtocolName_DESC + + """ipProtocol ascending""" + ipProtocol_ASC + + """ipProtocol descending""" + ipProtocol_DESC + + """ipSourceAddress ascending""" + ipSourceAddress_ASC + + """ipSourceAddress descending""" + ipSourceAddress_DESC + + """ipSourceSubnet ascending""" + ipSourceSubnet_ASC + + """ipSourceSubnet descending""" + ipSourceSubnet_DESC + + """ipTotalLengthBuckets ascending""" + ipTotalLengthBuckets_ASC + + """ipTotalLengthBuckets descending""" + ipTotalLengthBuckets_DESC + + """ipTotalLength ascending""" + ipTotalLength_ASC + + """ipTotalLength descending""" + ipTotalLength_DESC + + """ipTtlBuckets ascending""" + ipTtlBuckets_ASC + + """ipTtlBuckets descending""" + ipTtlBuckets_DESC + + """ipTtl ascending""" + ipTtl_ASC + + """ipTtl descending""" + ipTtl_DESC + + """ipv4Checksum ascending""" + ipv4Checksum_ASC + + """ipv4Checksum descending""" + ipv4Checksum_DESC + + """ipv4DontFragment ascending""" + ipv4DontFragment_ASC + + """ipv4DontFragment descending""" + ipv4DontFragment_DESC + + """ipv4Dscp ascending""" + ipv4Dscp_ASC + + """ipv4Dscp descending""" + ipv4Dscp_DESC + + """ipv4Ecn ascending""" + ipv4Ecn_ASC + + """ipv4Ecn descending""" + ipv4Ecn_DESC + + """ipv4Identification ascending""" + ipv4Identification_ASC + + """ipv4Identification descending""" + ipv4Identification_DESC + + """ipv4Options ascending""" + ipv4Options_ASC + + """ipv4Options descending""" + ipv4Options_DESC + + """ipv6Dscp ascending""" + ipv6Dscp_ASC + + """ipv6Dscp descending""" + ipv6Dscp_DESC + + """ipv6Ecn ascending""" + ipv6Ecn_ASC + + """ipv6Ecn descending""" + ipv6Ecn_DESC + + """ipv6ExtensionHeaders ascending""" + ipv6ExtensionHeaders_ASC + + """ipv6ExtensionHeaders descending""" + ipv6ExtensionHeaders_DESC + + """ipv6FlowLabel ascending""" + ipv6FlowLabel_ASC + + """ipv6FlowLabel descending""" + ipv6FlowLabel_DESC + + """ipv6Identification ascending""" + ipv6Identification_ASC + + """ipv6Identification descending""" + ipv6Identification_DESC + + """leaseTag ascending""" + leaseTag_ASC + + """leaseTag descending""" + leaseTag_DESC + + """mitigationReason ascending""" + mitigationReason_ASC + + """mitigationReason descending""" + mitigationReason_DESC + + """mitigationScope ascending""" + mitigationScope_ASC + + """mitigationScope descending""" + mitigationScope_DESC + + """outcome ascending""" + outcome_ASC + + """outcome descending""" + outcome_DESC + + """prefixTag ascending""" + prefixTag_ASC + + """prefixTag descending""" + prefixTag_DESC + + """sampleInterval ascending""" + sampleInterval_ASC + + """sampleInterval descending""" + sampleInterval_DESC + + """sourceAsnName ascending""" + sourceAsnName_ASC + + """sourceAsnName descending""" + sourceAsnName_DESC + + """sourceAsn ascending""" + sourceAsn_ASC + + """sourceAsn descending""" + sourceAsn_DESC + + """sourceCountry ascending""" + sourceCountry_ASC + + """sourceCountry descending""" + sourceCountry_DESC + + """sourceGeohash ascending""" + sourceGeohash_ASC + + """sourceGeohash descending""" + sourceGeohash_DESC + + """sourcePort ascending""" + sourcePort_ASC + + """sourcePort descending""" + sourcePort_DESC + + """sum(bits) ascending""" + sum_bits_ASC + + """sum(bits) descending""" + sum_bits_DESC + + """sum(packets) ascending""" + sum_packets_ASC + + """sum(packets) descending""" + sum_packets_DESC + + """system ascending""" + system_ASC + + """system descending""" + system_DESC + + """tcpAcknowledgementNumber ascending""" + tcpAcknowledgementNumber_ASC + + """tcpAcknowledgementNumber descending""" + tcpAcknowledgementNumber_DESC + + """tcpChecksum ascending""" + tcpChecksum_ASC + + """tcpChecksum descending""" + tcpChecksum_DESC + + """tcpDataOffset ascending""" + tcpDataOffset_ASC + + """tcpDataOffset descending""" + tcpDataOffset_DESC + + """tcpFlagsString ascending""" + tcpFlagsString_ASC + + """tcpFlagsString descending""" + tcpFlagsString_DESC + + """tcpFlags ascending""" + tcpFlags_ASC + + """tcpFlags descending""" + tcpFlags_DESC + + """tcpMss ascending""" + tcpMss_ASC + + """tcpMss descending""" + tcpMss_DESC + + """tcpOptions ascending""" + tcpOptions_ASC + + """tcpOptions descending""" + tcpOptions_DESC + + """tcpSackBlocks ascending""" + tcpSackBlocks_ASC + + """tcpSackBlocks descending""" + tcpSackBlocks_DESC + + """tcpSackPermitted ascending""" + tcpSackPermitted_ASC + + """tcpSackPermitted descending""" + tcpSackPermitted_DESC + + """tcpSequenceNumber ascending""" + tcpSequenceNumber_ASC + + """tcpSequenceNumber descending""" + tcpSequenceNumber_DESC + + """tcpTimestampEcr ascending""" + tcpTimestampEcr_ASC + + """tcpTimestampEcr descending""" + tcpTimestampEcr_DESC + + """tcpTimestampValue ascending""" + tcpTimestampValue_ASC + + """tcpTimestampValue descending""" + tcpTimestampValue_DESC + + """tcpUrgentPointer ascending""" + tcpUrgentPointer_ASC + + """tcpUrgentPointer descending""" + tcpUrgentPointer_DESC + + """tcpWindowScale ascending""" + tcpWindowScale_ASC + + """tcpWindowScale descending""" + tcpWindowScale_DESC + + """tcpWindowSize ascending""" + tcpWindowSize_ASC + + """tcpWindowSize descending""" + tcpWindowSize_DESC + + """udpChecksum ascending""" + udpChecksum_ASC + + """udpChecksum descending""" + udpChecksum_DESC + + """udpPayloadLength ascending""" + udpPayloadLength_ASC + + """udpPayloadLength descending""" + udpPayloadLength_DESC + + """verdict ascending""" + verdict_ASC + + """verdict descending""" + verdict_DESC +} + +"""""" +type AccountProgrammableFlowProtectionNetworkAnalyticsAdaptiveGroupsSum { + """Sum of bits received""" + bits: uint64! + + """Sum of packets received""" + packets: uint64! +} + +"""""" +type AccountProgrammableFlowProtectionNetworkAnalyticsAdaptiveGroupsSumConfidence { + """Confidence interval for the corresponding point estimate""" + bits: Confidence! + + """Confidence interval for the corresponding point estimate""" + packets: Confidence! +} + +""" +Beta. Queue backlog data with adaptive sampling. Queues that are not being written to, or read from, will not return data, even if they have a backlog. +""" +type AccountQueueBacklogAdaptiveGroups { + """The average value for a metric per dimension""" + avg: AccountQueueBacklogAdaptiveGroupsAvg + + """List of dimensions to group by""" + dimensions: AccountQueueBacklogAdaptiveGroupsDimensions +} + +"""""" +type AccountQueueBacklogAdaptiveGroupsAvg { + """The average size of the backlog in bytes for sample interval""" + bytes: uint64! + + """The average number of messages in the backlog for sample interval""" + messages: uint64! + + """The average value used for sample interval""" + sampleInterval: float64! +} + +"""""" +type AccountQueueBacklogAdaptiveGroupsDimensions { + """Message operation timestamp, truncated to start of a day""" + date: Date! + + """Message operation timestamp""" + datetime: Time! + + """Message operation timestamp, truncated to fifteen minutes""" + datetimeFifteenMinutes: Time! + + """Message operation timestamp, truncated to five minutes""" + datetimeFiveMinutes: Time! + + """Message operation timestamp, truncated to start of an hour""" + datetimeHour: Time! + + """Message operation timestamp, truncated to start of an minute""" + datetimeMinute: Time! + + """Message operation timestamp, truncated to start of six hour window""" + datetimeSixHours: Time! + + """The ID of the Queue""" + queueId: string! +} + +"""""" +input AccountQueueBacklogAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountQueueBacklogAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountQueueBacklogAdaptiveGroupsFilter_InputObject!] + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetimeSixHours: Time + + """""" + datetimeSixHours_geq: Time + + """""" + datetimeSixHours_gt: Time + + """""" + datetimeSixHours_in: [Time!] + + """""" + datetimeSixHours_leq: Time + + """""" + datetimeSixHours_lt: Time + + """""" + datetimeSixHours_neq: Time + + """""" + datetimeSixHours_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + queueId: string + + """""" + queueId_geq: string + + """""" + queueId_gt: string + + """""" + queueId_in: [string!] + + """""" + queueId_leq: string + + """""" + queueId_like: string + + """""" + queueId_lt: string + + """""" + queueId_neq: string + + """""" + queueId_notin: [string!] + + """""" + queueId_notlike: string +} + +"""""" +enum AccountQueueBacklogAdaptiveGroupsOrderBy { + """avg(bytes) ascending""" + avg_bytes_ASC + + """avg(bytes) descending""" + avg_bytes_DESC + + """avg(messages) ascending""" + avg_messages_ASC + + """avg(messages) descending""" + avg_messages_DESC + + """avg(sampleInterval) ascending""" + avg_sampleInterval_ASC + + """avg(sampleInterval) descending""" + avg_sampleInterval_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetimeSixHours ascending""" + datetimeSixHours_ASC + + """datetimeSixHours descending""" + datetimeSixHours_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """queueId ascending""" + queueId_ASC + + """queueId descending""" + queueId_DESC +} + +""" +Beta. Queue consumer metrics with adaptive sampling. Inactive queues will not return data. +""" +type AccountQueueConsumerMetricsAdaptiveGroups { + """The average value for a metric per dimension""" + avg: AccountQueueConsumerMetricsAdaptiveGroupsAvg + + """List of dimensions to group by""" + dimensions: AccountQueueConsumerMetricsAdaptiveGroupsDimensions +} + +"""""" +type AccountQueueConsumerMetricsAdaptiveGroupsAvg { + """The average concurrency of the queue""" + concurrency: float64! + + """The average value used for sample interval""" + sampleInterval: float64! +} + +"""""" +type AccountQueueConsumerMetricsAdaptiveGroupsDimensions { + """Message operation timestamp, truncated to start of a day""" + date: Date! + + """Message operation timestamp""" + datetime: Time! + + """Message operation timestamp, truncated to fifteen minutes""" + datetimeFifteenMinutes: Time! + + """Message operation timestamp, truncated to five minutes""" + datetimeFiveMinutes: Time! + + """Message operation timestamp, truncated to start of an hour""" + datetimeHour: Time! + + """Message operation timestamp, truncated to start of an minute""" + datetimeMinute: Time! + + """Message operation timestamp, truncated to start of six hour window""" + datetimeSixHours: Time! + + """The ID of the Queue""" + queueId: string! +} + +"""""" +input AccountQueueConsumerMetricsAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountQueueConsumerMetricsAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountQueueConsumerMetricsAdaptiveGroupsFilter_InputObject!] + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetimeSixHours: Time + + """""" + datetimeSixHours_geq: Time + + """""" + datetimeSixHours_gt: Time + + """""" + datetimeSixHours_in: [Time!] + + """""" + datetimeSixHours_leq: Time + + """""" + datetimeSixHours_lt: Time + + """""" + datetimeSixHours_neq: Time + + """""" + datetimeSixHours_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + queueId: string + + """""" + queueId_geq: string + + """""" + queueId_gt: string + + """""" + queueId_in: [string!] + + """""" + queueId_leq: string + + """""" + queueId_like: string + + """""" + queueId_lt: string + + """""" + queueId_neq: string + + """""" + queueId_notin: [string!] + + """""" + queueId_notlike: string +} + +"""""" +enum AccountQueueConsumerMetricsAdaptiveGroupsOrderBy { + """avg(concurrency) ascending""" + avg_concurrency_ASC + + """avg(concurrency) descending""" + avg_concurrency_DESC + + """avg(sampleInterval) ascending""" + avg_sampleInterval_ASC + + """avg(sampleInterval) descending""" + avg_sampleInterval_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetimeSixHours ascending""" + datetimeSixHours_ASC + + """datetimeSixHours descending""" + datetimeSixHours_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """queueId ascending""" + queueId_ASC + + """queueId descending""" + queueId_DESC +} + +""" +Beta. Queue delayed backlog data with adaptive sampling. Queues that are not being written to, or read from, will not return data, even if they have a backlog. +""" +type AccountQueueDelayedBacklogAdaptiveGroups { + """The average value for a metric per dimension""" + avg: AccountQueueDelayedBacklogAdaptiveGroupsAvg + + """List of dimensions to group by""" + dimensions: AccountQueueDelayedBacklogAdaptiveGroupsDimensions +} + +"""""" +type AccountQueueDelayedBacklogAdaptiveGroupsAvg { + """ + The average number of messages in the delayed backlog for sample interval + """ + messages: uint64! + + """The average value used for sample interval""" + sampleInterval: float64! +} + +"""""" +type AccountQueueDelayedBacklogAdaptiveGroupsDimensions { + """Message operation timestamp, truncated to start of a day""" + date: Date! + + """Message operation timestamp""" + datetime: Time! + + """Message operation timestamp, truncated to fifteen minutes""" + datetimeFifteenMinutes: Time! + + """Message operation timestamp, truncated to five minutes""" + datetimeFiveMinutes: Time! + + """Message operation timestamp, truncated to start of an hour""" + datetimeHour: Time! + + """Message operation timestamp, truncated to start of an minute""" + datetimeMinute: Time! + + """Message operation timestamp, truncated to start of six hour window""" + datetimeSixHours: Time! + + """The ID of the Queue""" + queueId: string! +} + +"""""" +input AccountQueueDelayedBacklogAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountQueueDelayedBacklogAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountQueueDelayedBacklogAdaptiveGroupsFilter_InputObject!] + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetimeSixHours: Time + + """""" + datetimeSixHours_geq: Time + + """""" + datetimeSixHours_gt: Time + + """""" + datetimeSixHours_in: [Time!] + + """""" + datetimeSixHours_leq: Time + + """""" + datetimeSixHours_lt: Time + + """""" + datetimeSixHours_neq: Time + + """""" + datetimeSixHours_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + queueId: string + + """""" + queueId_geq: string + + """""" + queueId_gt: string + + """""" + queueId_in: [string!] + + """""" + queueId_leq: string + + """""" + queueId_like: string + + """""" + queueId_lt: string + + """""" + queueId_neq: string + + """""" + queueId_notin: [string!] + + """""" + queueId_notlike: string +} + +"""""" +enum AccountQueueDelayedBacklogAdaptiveGroupsOrderBy { + """avg(messages) ascending""" + avg_messages_ASC + + """avg(messages) descending""" + avg_messages_DESC + + """avg(sampleInterval) ascending""" + avg_sampleInterval_ASC + + """avg(sampleInterval) descending""" + avg_sampleInterval_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetimeSixHours ascending""" + datetimeSixHours_ASC + + """datetimeSixHours descending""" + datetimeSixHours_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """queueId ascending""" + queueId_ASC + + """queueId descending""" + queueId_DESC +} + +"""Beta. Queue message operation data with adaptive sampling""" +type AccountQueueMessageOperationsAdaptiveGroups { + """The average value for a metric per dimension""" + avg: AccountQueueMessageOperationsAdaptiveGroupsAvg + + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountQueueMessageOperationsAdaptiveGroupsConfidence! + + """Number of Message Operations""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountQueueMessageOperationsAdaptiveGroupsDimensions + + """The max of values for a metric per dimension""" + max: AccountQueueMessageOperationsAdaptiveGroupsMax + + """The sum of values for a metric per dimension""" + sum: AccountQueueMessageOperationsAdaptiveGroupsSum +} + +"""""" +type AccountQueueMessageOperationsAdaptiveGroupsAvg { + """ + The average time in milliseconds between when the message was written to the queue and the current operation over the sample interval. Will always be 0 for WriteMessage operations. + """ + lagTime: uint64! + + """ + The average number of retries per message operation. A retry occurs after an unsucessful delivery, if the queue is configured to retry failed attempts. Only applicable to ReadMessage and DeleteMessage operations. Will always be 0 for WriteMessage operations. + """ + retryCount: uint32! + + """The average value used for sample interval""" + sampleInterval: float64! +} + +"""""" +type AccountQueueMessageOperationsAdaptiveGroupsConfidence { + """Number of Message Operations, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! + + """ + The sum of values for a metric per dimension, with confidence intervals + """ + sum: AccountQueueMessageOperationsAdaptiveGroupsSumConfidence +} + +"""""" +type AccountQueueMessageOperationsAdaptiveGroupsDimensions { + """The type of the Queue message operation""" + actionType: string! + + """ + The queue consumer type for the operation. Only applicable for ReadMessage and DeleteMessge action types. + """ + consumerType: string! + + """Message operation timestamp, truncated to start of a day""" + date: Date! + + """Message operation timestamp""" + datetime: Time! + + """Message operation timestamp, truncated to fifteen minutes""" + datetimeFifteenMinutes: Time! + + """Message operation timestamp, truncated to five minutes""" + datetimeFiveMinutes: Time! + + """Message operation timestamp, truncated to start of an hour""" + datetimeHour: Time! + + """Message operation timestamp, truncated to start of an minute""" + datetimeMinute: Time! + + """Message operation timestamp, truncated to start of six hour window""" + datetimeSixHours: Time! + + """ + The outcome of the operation. Only applicable to DeleteMessage action types. Can be 'success', 'dlq', or 'fail'. Always 'none' for other operations. + """ + outcome: string! + + """The ID of the Queue""" + queueId: string! +} + +"""""" +input AccountQueueMessageOperationsAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountQueueMessageOperationsAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountQueueMessageOperationsAdaptiveGroupsFilter_InputObject!] + + """""" + actionType: string + + """""" + actionType_geq: string + + """""" + actionType_gt: string + + """""" + actionType_in: [string!] + + """""" + actionType_leq: string + + """""" + actionType_like: string + + """""" + actionType_lt: string + + """""" + actionType_neq: string + + """""" + actionType_notin: [string!] + + """""" + actionType_notlike: string + + """""" + consumerType: string + + """""" + consumerType_geq: string + + """""" + consumerType_gt: string + + """""" + consumerType_in: [string!] + + """""" + consumerType_leq: string + + """""" + consumerType_like: string + + """""" + consumerType_lt: string + + """""" + consumerType_neq: string + + """""" + consumerType_notin: [string!] + + """""" + consumerType_notlike: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetimeSixHours: Time + + """""" + datetimeSixHours_geq: Time + + """""" + datetimeSixHours_gt: Time + + """""" + datetimeSixHours_in: [Time!] + + """""" + datetimeSixHours_leq: Time + + """""" + datetimeSixHours_lt: Time + + """""" + datetimeSixHours_neq: Time + + """""" + datetimeSixHours_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + outcome: string + + """""" + outcome_geq: string + + """""" + outcome_gt: string + + """""" + outcome_in: [string!] + + """""" + outcome_leq: string + + """""" + outcome_like: string + + """""" + outcome_lt: string + + """""" + outcome_neq: string + + """""" + outcome_notin: [string!] + + """""" + outcome_notlike: string + + """""" + queueId: string + + """""" + queueId_geq: string + + """""" + queueId_gt: string + + """""" + queueId_in: [string!] + + """""" + queueId_leq: string + + """""" + queueId_like: string + + """""" + queueId_lt: string + + """""" + queueId_neq: string + + """""" + queueId_notin: [string!] + + """""" + queueId_notlike: string +} + +"""""" +type AccountQueueMessageOperationsAdaptiveGroupsMax { + """Max Message Size""" + messageSize: uint32! +} + +"""""" +enum AccountQueueMessageOperationsAdaptiveGroupsOrderBy { + """actionType ascending""" + actionType_ASC + + """actionType descending""" + actionType_DESC + + """avg(lagTime) ascending""" + avg_lagTime_ASC + + """avg(lagTime) descending""" + avg_lagTime_DESC + + """avg(retryCount) ascending""" + avg_retryCount_ASC + + """avg(retryCount) descending""" + avg_retryCount_DESC + + """avg(sampleInterval) ascending""" + avg_sampleInterval_ASC + + """avg(sampleInterval) descending""" + avg_sampleInterval_DESC + + """consumerType ascending""" + consumerType_ASC + + """consumerType descending""" + consumerType_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetimeSixHours ascending""" + datetimeSixHours_ASC + + """datetimeSixHours descending""" + datetimeSixHours_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """max(messageSize) ascending""" + max_messageSize_ASC + + """max(messageSize) descending""" + max_messageSize_DESC + + """outcome ascending""" + outcome_ASC + + """outcome descending""" + outcome_DESC + + """queueId ascending""" + queueId_ASC + + """queueId descending""" + queueId_DESC + + """sum(billableOperations) ascending""" + sum_billableOperations_ASC + + """sum(billableOperations) descending""" + sum_billableOperations_DESC + + """sum(bytes) ascending""" + sum_bytes_ASC + + """sum(bytes) descending""" + sum_bytes_DESC +} + +"""""" +type AccountQueueMessageOperationsAdaptiveGroupsSum { + """ + Number of Billable Operations (some message operations count as multiple billable operations) + """ + billableOperations: uint64! + + """Total size (in bytes) of message operations""" + bytes: uint64! +} + +"""""" +type AccountQueueMessageOperationsAdaptiveGroupsSumConfidence { + """Confidence interval for the corresponding point estimate""" + billableOperations: Confidence! + + """Confidence interval for the corresponding point estimate""" + bytes: Confidence! +} + +"""Beta. R2 operations with adaptive sampling""" +type AccountR2OperationsAdaptiveGroups { + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountR2OperationsAdaptiveGroupsConfidence! + + """List of dimensions to group by""" + dimensions: AccountR2OperationsAdaptiveGroupsDimensions + + """The sum of values for a metric per dimension""" + sum: AccountR2OperationsAdaptiveGroupsSum +} + +"""""" +type AccountR2OperationsAdaptiveGroupsConfidence { + """Confidence level that was requested""" + level: float64! + + """ + The sum of values for a metric per dimension, with confidence intervals + """ + sum: AccountR2OperationsAdaptiveGroupsSumConfidence +} + +"""""" +type AccountR2OperationsAdaptiveGroupsDimensions { + """Status of the R2 operation""" + actionStatus: string! + + """The name of the R2 operation""" + actionType: string! + + """The name of the R2 bucket, if applicable to this request""" + bucketName: string! + + """Request timestamp, truncated to start of a day""" + date: Date! + + """Request timestamp""" + datetime: Time! + + """Request timestamp, truncated to start of an hour""" + datetimeHour: Time! + + """Request timestamp, truncated to start of an minute""" + datetimeMinute: Time! + + """ + The region from which the request originated (WNAM, ENAM, WEUR, EEUR, APAC, SAM, OC, AFR, ME) + """ + eyeballRegion: string! + + """The name of the R2 object, if applicable to this request""" + objectName: string! + + """HTTP status code returned by R2""" + responseStatusCode: uint16! + + """The storage class that applies to this request""" + storageClass: string! +} + +"""""" +input AccountR2OperationsAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountR2OperationsAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountR2OperationsAdaptiveGroupsFilter_InputObject!] + + """""" + actionStatus: string + + """""" + actionStatus_geq: string + + """""" + actionStatus_gt: string + + """""" + actionStatus_in: [string!] + + """""" + actionStatus_leq: string + + """""" + actionStatus_like: string + + """""" + actionStatus_lt: string + + """""" + actionStatus_neq: string + + """""" + actionStatus_notin: [string!] + + """""" + actionStatus_notlike: string + + """""" + actionType: string + + """""" + actionType_geq: string + + """""" + actionType_gt: string + + """""" + actionType_in: [string!] + + """""" + actionType_leq: string + + """""" + actionType_like: string + + """""" + actionType_lt: string + + """""" + actionType_neq: string + + """""" + actionType_notin: [string!] + + """""" + actionType_notlike: string + + """""" + bucketName: string + + """""" + bucketName_geq: string + + """""" + bucketName_gt: string + + """""" + bucketName_in: [string!] + + """""" + bucketName_leq: string + + """""" + bucketName_like: string + + """""" + bucketName_lt: string + + """""" + bucketName_neq: string + + """""" + bucketName_notin: [string!] + + """""" + bucketName_notlike: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + eyeballRegion: string + + """""" + eyeballRegion_geq: string + + """""" + eyeballRegion_gt: string + + """""" + eyeballRegion_in: [string!] + + """""" + eyeballRegion_leq: string + + """""" + eyeballRegion_like: string + + """""" + eyeballRegion_lt: string + + """""" + eyeballRegion_neq: string + + """""" + eyeballRegion_notin: [string!] + + """""" + eyeballRegion_notlike: string + + """""" + objectName: string + + """""" + objectName_geq: string + + """""" + objectName_gt: string + + """""" + objectName_in: [string!] + + """""" + objectName_leq: string + + """""" + objectName_like: string + + """""" + objectName_lt: string + + """""" + objectName_neq: string + + """""" + objectName_notin: [string!] + + """""" + objectName_notlike: string + + """""" + responseStatusCode: uint16 + + """""" + responseStatusCode_geq: uint16 + + """""" + responseStatusCode_gt: uint16 + + """""" + responseStatusCode_in: [uint16!] + + """""" + responseStatusCode_leq: uint16 + + """""" + responseStatusCode_lt: uint16 + + """""" + responseStatusCode_neq: uint16 + + """""" + responseStatusCode_notin: [uint16!] + + """""" + storageClass: string + + """""" + storageClass_geq: string + + """""" + storageClass_gt: string + + """""" + storageClass_in: [string!] + + """""" + storageClass_leq: string + + """""" + storageClass_like: string + + """""" + storageClass_lt: string + + """""" + storageClass_neq: string + + """""" + storageClass_notin: [string!] + + """""" + storageClass_notlike: string +} + +"""""" +enum AccountR2OperationsAdaptiveGroupsOrderBy { + """actionStatus ascending""" + actionStatus_ASC + + """actionStatus descending""" + actionStatus_DESC + + """actionType ascending""" + actionType_ASC + + """actionType descending""" + actionType_DESC + + """bucketName ascending""" + bucketName_ASC + + """bucketName descending""" + bucketName_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """eyeballRegion ascending""" + eyeballRegion_ASC + + """eyeballRegion descending""" + eyeballRegion_DESC + + """objectName ascending""" + objectName_ASC + + """objectName descending""" + objectName_DESC + + """responseStatusCode ascending""" + responseStatusCode_ASC + + """responseStatusCode descending""" + responseStatusCode_DESC + + """storageClass ascending""" + storageClass_ASC + + """storageClass descending""" + storageClass_DESC + + """sum(requests) ascending""" + sum_requests_ASC + + """sum(requests) descending""" + sum_requests_DESC + + """sum(responseBytes) ascending""" + sum_responseBytes_ASC + + """sum(responseBytes) descending""" + sum_responseBytes_DESC + + """sum(responseObjectSize) ascending""" + sum_responseObjectSize_ASC + + """sum(responseObjectSize) descending""" + sum_responseObjectSize_DESC +} + +"""""" +type AccountR2OperationsAdaptiveGroupsSum { + """Sum of Requests""" + requests: uint64! + + """Sum of retrieved bytes""" + responseBytes: uint64! + + """Sum of Response Object Sizes""" + responseObjectSize: uint64! +} + +"""""" +type AccountR2OperationsAdaptiveGroupsSumConfidence { + """Confidence interval for the corresponding point estimate""" + requests: Confidence! + + """Confidence interval for the corresponding point estimate""" + responseBytes: Confidence! + + """Confidence interval for the corresponding point estimate""" + responseObjectSize: Confidence! +} + +"""Beta. R2 storage with adaptive sampling""" +type AccountR2StorageAdaptiveGroups { + """List of dimensions to group by""" + dimensions: AccountR2StorageAdaptiveGroupsDimensions + + """The max of values for a metric per dimension""" + max: AccountR2StorageAdaptiveGroupsMax +} + +"""""" +type AccountR2StorageAdaptiveGroupsDimensions { + """The name of the R2 bucket, if applicable to this request""" + bucketName: string! + + """Storage sample timestamp, truncated to start of a day""" + date: Date! + + """Storage sample timestamp""" + datetime: Time! + + """Storage sample timestamp, truncated to start of an hour""" + datetimeHour: Time! + + """Storage sample timestamp, truncated to start of an minute""" + datetimeMinute: Time! + + """The storage class that applies to this request""" + storageClass: string! +} + +"""""" +input AccountR2StorageAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountR2StorageAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountR2StorageAdaptiveGroupsFilter_InputObject!] + + """""" + bucketName: string + + """""" + bucketName_geq: string + + """""" + bucketName_gt: string + + """""" + bucketName_in: [string!] + + """""" + bucketName_leq: string + + """""" + bucketName_like: string + + """""" + bucketName_lt: string + + """""" + bucketName_neq: string + + """""" + bucketName_notin: [string!] + + """""" + bucketName_notlike: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + storageClass: string + + """""" + storageClass_geq: string + + """""" + storageClass_gt: string + + """""" + storageClass_in: [string!] + + """""" + storageClass_leq: string + + """""" + storageClass_like: string + + """""" + storageClass_lt: string + + """""" + storageClass_neq: string + + """""" + storageClass_notin: [string!] + + """""" + storageClass_notlike: string +} + +"""""" +type AccountR2StorageAdaptiveGroupsMax { + """Max of metadata size""" + metadataSize: uint64! + + """Max of object count""" + objectCount: uint64! + + """Max of payload size""" + payloadSize: uint64! + + """Max of upload count""" + uploadCount: uint64! +} + +"""""" +enum AccountR2StorageAdaptiveGroupsOrderBy { + """bucketName ascending""" + bucketName_ASC + + """bucketName descending""" + bucketName_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """max(metadataSize) ascending""" + max_metadataSize_ASC + + """max(metadataSize) descending""" + max_metadataSize_DESC + + """max(objectCount) ascending""" + max_objectCount_ASC + + """max(objectCount) descending""" + max_objectCount_DESC + + """max(payloadSize) ascending""" + max_payloadSize_ASC + + """max(payloadSize) descending""" + max_payloadSize_DESC + + """max(uploadCount) ascending""" + max_uploadCount_ASC + + """max(uploadCount) descending""" + max_uploadCount_DESC + + """storageClass ascending""" + storageClass_ASC + + """storageClass descending""" + storageClass_DESC +} + +"""Beta. Aggregated RUM pageload event metrics with adaptive sampling""" +type AccountRumPageloadEventsAdaptiveGroups { + """""" + avg: AccountRumPageloadEventsAdaptiveGroupsAvg + + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountRumPageloadEventsAdaptiveGroupsConfidence! + + """The number of pages viewed by end-users""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountRumPageloadEventsAdaptiveGroupsDimensions + + """""" + sum: AccountRumPageloadEventsAdaptiveGroupsSum +} + +"""""" +type AccountRumPageloadEventsAdaptiveGroupsAvg { + """Average sample interval""" + sampleInterval: float64! +} + +"""""" +type AccountRumPageloadEventsAdaptiveGroupsConfidence { + """The number of pages viewed by end-users, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! + + """""" + sum: AccountRumPageloadEventsAdaptiveGroupsSumConfidence +} + +"""""" +type AccountRumPageloadEventsAdaptiveGroupsDimensions { + """ + Indicates if the request is likely from a bot (non-human traffic). Returns 1 if from a bot, 0 otherwise. + """ + bot: uint8! + + """Client country ISO 3166 alpha2 code""" + countryName: string! + + """Signed Exchange enabled status""" + customTagInternalSxg: string! + + """Request date from browser""" + date: Date! + + """Request datetime from browser, truncated to multiple of 15 minutes""" + datetimeFifteenMinutes: Time! + + """Request datetime from browser, truncated to multiple of 5 minutes""" + datetimeFiveMinutes: Time! + + """Request datetime from browser, truncated to multiple of 30 minutes""" + datetimeHalfOfHour: Time! + + """Request datetime from browser, truncated to the hour""" + datetimeHour: Time! + + """Request datetime from browser, truncated to the minute""" + datetimeMinute: Time! + + """Device type used for view the page""" + deviceType: string! + + """Host of the HTTP request referer""" + refererHost: string! + + """Path of the HTTP request referer""" + refererPath: string! + + """Scheme of the HTTP request referer (http or https)""" + refererScheme: string! + + """HTTP Host of the web page URL""" + requestHost: string! + + """Path of the web page URL""" + requestPath: string! + + """Scheme of the web page URL (http or https)""" + requestScheme: string! + + """The key value to identify a site""" + siteTag: string! + + """Browser parsed from the user agent""" + userAgentBrowser: string! + + """OS parsed from the user agent""" + userAgentOS: string! +} + +"""""" +input AccountRumPageloadEventsAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountRumPageloadEventsAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountRumPageloadEventsAdaptiveGroupsFilter_InputObject!] + + """""" + bot: uint8 + + """""" + bot_geq: uint8 + + """""" + bot_gt: uint8 + + """""" + bot_in: bytes + + """""" + bot_leq: uint8 + + """""" + bot_lt: uint8 + + """""" + bot_neq: uint8 + + """""" + bot_notin: bytes + + """""" + countryName: string + + """""" + countryName_geq: string + + """""" + countryName_gt: string + + """""" + countryName_in: [string!] + + """""" + countryName_leq: string + + """""" + countryName_like: string + + """""" + countryName_lt: string + + """""" + countryName_neq: string + + """""" + countryName_notin: [string!] + + """""" + countryName_notlike: string + + """""" + customTagInternalSxg: string + + """""" + customTagInternalSxg_geq: string + + """""" + customTagInternalSxg_gt: string + + """""" + customTagInternalSxg_in: [string!] + + """""" + customTagInternalSxg_leq: string + + """""" + customTagInternalSxg_like: string + + """""" + customTagInternalSxg_lt: string + + """""" + customTagInternalSxg_neq: string + + """""" + customTagInternalSxg_notin: [string!] + + """""" + customTagInternalSxg_notlike: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHalfOfHour: Time + + """""" + datetimeHalfOfHour_geq: Time + + """""" + datetimeHalfOfHour_gt: Time + + """""" + datetimeHalfOfHour_in: [Time!] + + """""" + datetimeHalfOfHour_leq: Time + + """""" + datetimeHalfOfHour_lt: Time + + """""" + datetimeHalfOfHour_neq: Time + + """""" + datetimeHalfOfHour_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + deviceType: string + + """""" + deviceType_geq: string + + """""" + deviceType_gt: string + + """""" + deviceType_in: [string!] + + """""" + deviceType_leq: string + + """""" + deviceType_like: string + + """""" + deviceType_lt: string + + """""" + deviceType_neq: string + + """""" + deviceType_notin: [string!] + + """""" + deviceType_notlike: string + + """""" + refererHost: string + + """""" + refererHost_geq: string + + """""" + refererHost_gt: string + + """""" + refererHost_in: [string!] + + """""" + refererHost_leq: string + + """""" + refererHost_like: string + + """""" + refererHost_lt: string + + """""" + refererHost_neq: string + + """""" + refererHost_notin: [string!] + + """""" + refererHost_notlike: string + + """""" + refererPath: string + + """""" + refererPath_geq: string + + """""" + refererPath_gt: string + + """""" + refererPath_in: [string!] + + """""" + refererPath_leq: string + + """""" + refererPath_like: string + + """""" + refererPath_lt: string + + """""" + refererPath_neq: string + + """""" + refererPath_notin: [string!] + + """""" + refererPath_notlike: string + + """""" + refererScheme: string + + """""" + refererScheme_geq: string + + """""" + refererScheme_gt: string + + """""" + refererScheme_in: [string!] + + """""" + refererScheme_leq: string + + """""" + refererScheme_like: string + + """""" + refererScheme_lt: string + + """""" + refererScheme_neq: string + + """""" + refererScheme_notin: [string!] + + """""" + refererScheme_notlike: string + + """""" + requestHost: string + + """""" + requestHost_geq: string + + """""" + requestHost_gt: string + + """""" + requestHost_in: [string!] + + """""" + requestHost_leq: string + + """""" + requestHost_like: string + + """""" + requestHost_lt: string + + """""" + requestHost_neq: string + + """""" + requestHost_notin: [string!] + + """""" + requestHost_notlike: string + + """""" + requestPath: string + + """""" + requestPath_geq: string + + """""" + requestPath_gt: string + + """""" + requestPath_in: [string!] + + """""" + requestPath_leq: string + + """""" + requestPath_like: string + + """""" + requestPath_lt: string + + """""" + requestPath_neq: string + + """""" + requestPath_notin: [string!] + + """""" + requestPath_notlike: string + + """""" + requestScheme: string + + """""" + requestScheme_geq: string + + """""" + requestScheme_gt: string + + """""" + requestScheme_in: [string!] + + """""" + requestScheme_leq: string + + """""" + requestScheme_like: string + + """""" + requestScheme_lt: string + + """""" + requestScheme_neq: string + + """""" + requestScheme_notin: [string!] + + """""" + requestScheme_notlike: string + + """""" + siteTag: string + + """""" + siteTag_geq: string + + """""" + siteTag_gt: string + + """""" + siteTag_in: [string!] + + """""" + siteTag_leq: string + + """""" + siteTag_like: string + + """""" + siteTag_lt: string + + """""" + siteTag_neq: string + + """""" + siteTag_notin: [string!] + + """""" + siteTag_notlike: string + + """""" + userAgentBrowser: string + + """""" + userAgentBrowser_geq: string + + """""" + userAgentBrowser_gt: string + + """""" + userAgentBrowser_in: [string!] + + """""" + userAgentBrowser_leq: string + + """""" + userAgentBrowser_like: string + + """""" + userAgentBrowser_lt: string + + """""" + userAgentBrowser_neq: string + + """""" + userAgentBrowser_notin: [string!] + + """""" + userAgentBrowser_notlike: string + + """""" + userAgentOS: string + + """""" + userAgentOS_geq: string + + """""" + userAgentOS_gt: string + + """""" + userAgentOS_in: [string!] + + """""" + userAgentOS_leq: string + + """""" + userAgentOS_like: string + + """""" + userAgentOS_lt: string + + """""" + userAgentOS_neq: string + + """""" + userAgentOS_notin: [string!] + + """""" + userAgentOS_notlike: string +} + +"""""" +enum AccountRumPageloadEventsAdaptiveGroupsOrderBy { + """avg(sampleInterval) ascending""" + avg_sampleInterval_ASC + + """avg(sampleInterval) descending""" + avg_sampleInterval_DESC + + """bot ascending""" + bot_ASC + + """bot descending""" + bot_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """countryName ascending""" + countryName_ASC + + """countryName descending""" + countryName_DESC + + """customTagInternalSxg ascending""" + customTagInternalSxg_ASC + + """customTagInternalSxg descending""" + customTagInternalSxg_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHalfOfHour ascending""" + datetimeHalfOfHour_ASC + + """datetimeHalfOfHour descending""" + datetimeHalfOfHour_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """deviceType ascending""" + deviceType_ASC + + """deviceType descending""" + deviceType_DESC + + """refererHost ascending""" + refererHost_ASC + + """refererHost descending""" + refererHost_DESC + + """refererPath ascending""" + refererPath_ASC + + """refererPath descending""" + refererPath_DESC + + """refererScheme ascending""" + refererScheme_ASC + + """refererScheme descending""" + refererScheme_DESC + + """requestHost ascending""" + requestHost_ASC + + """requestHost descending""" + requestHost_DESC + + """requestPath ascending""" + requestPath_ASC + + """requestPath descending""" + requestPath_DESC + + """requestScheme ascending""" + requestScheme_ASC + + """requestScheme descending""" + requestScheme_DESC + + """siteTag ascending""" + siteTag_ASC + + """siteTag descending""" + siteTag_DESC + + """sum(visits) ascending""" + sum_visits_ASC + + """sum(visits) descending""" + sum_visits_DESC + + """userAgentBrowser ascending""" + userAgentBrowser_ASC + + """userAgentBrowser descending""" + userAgentBrowser_DESC + + """userAgentOS ascending""" + userAgentOS_ASC + + """userAgentOS descending""" + userAgentOS_DESC +} + +"""""" +type AccountRumPageloadEventsAdaptiveGroupsSum { + """ + The number of pages viewed by end-users that were initiated from a different website (i.e. where the Document.referrer does not match the hostname) + """ + visits: uint64! +} + +"""""" +type AccountRumPageloadEventsAdaptiveGroupsSumConfidence { + """Confidence interval for the corresponding point estimate""" + visits: Confidence! +} + +"""Beta. Aggregated RUM performance event metrics with adaptive sampling""" +type AccountRumPerformanceEventsAdaptiveGroups { + """""" + avg: AccountRumPerformanceEventsAdaptiveGroupsAvg + + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountRumPerformanceEventsAdaptiveGroupsConfidence! + + """The number of pages viewed by end-users""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountRumPerformanceEventsAdaptiveGroupsDimensions + + """""" + quantiles: AccountRumPerformanceEventsAdaptiveGroupsQuantiles + + """""" + sum: AccountRumPerformanceEventsAdaptiveGroupsSum +} + +"""""" +type AccountRumPerformanceEventsAdaptiveGroupsAvg { + """Connection time""" + connectionTime: uint64! + + """Domain lookup time""" + dnsTime: uint64! + + """ + The time when the first content piece from the DOM is painted (i.e. some text or an image) + """ + firstContentfulPaint: uint64! + + """ + The time when the first pixel is painted onto the screen (i.e. background of the page) + """ + firstPaint: uint64! + + """The time taken for the load event""" + loadEventTime: uint64! + + """ + The time to download and display the entire content of a web page in the browser window + """ + pageLoadTime: uint64! + + """ + The time to download and display the entire content of a web page in the browser window + """ + pageRenderTime: uint64! + + """ + The time between initiating the request and receiving the first byte of the response + """ + requestTime: uint64! + + """ + The time between receiving the first byte and the last byte of the response + """ + responseTime: uint64! + + """Average sample interval""" + sampleInterval: float64! +} + +"""""" +type AccountRumPerformanceEventsAdaptiveGroupsConfidence { + """The number of pages viewed by end-users, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! + + """""" + sum: AccountRumPerformanceEventsAdaptiveGroupsSumConfidence +} + +"""""" +type AccountRumPerformanceEventsAdaptiveGroupsDimensions { + """ + Indicates if the request is likely from a bot (non-human traffic). Returns 1 if from a bot, 0 otherwise. + """ + bot: uint8! + + """Client country ISO 3166 alpha2 code""" + countryName: string! + + """Signed Exchange enabled status""" + customTagInternalSxg: string! + + """Request date from browser""" + date: Date! + + """Request datetime from browser, truncated to multiple of 15 minutes""" + datetimeFifteenMinutes: Time! + + """Request datetime from browser, truncated to multiple of 5 minutes""" + datetimeFiveMinutes: Time! + + """Request datetime from browser, truncated to multiple of 30 minutes""" + datetimeHalfOfHour: Time! + + """Request datetime from browser, truncated to the hour""" + datetimeHour: Time! + + """Request datetime from browser, truncated to the minute""" + datetimeMinute: Time! + + """Device type used for view the page""" + deviceType: string! + + """Host of the HTTP request referer""" + refererHost: string! + + """Path of the HTTP request referer""" + refererPath: string! + + """Scheme of the HTTP request referer (http or https)""" + refererScheme: string! + + """HTTP Host of the web page URL""" + requestHost: string! + + """Path of the web page URL""" + requestPath: string! + + """Scheme of the web page URL (http or https)""" + requestScheme: string! + + """The key value to identify a site""" + siteTag: string! + + """Browser parsed from the user agent""" + userAgentBrowser: string! + + """OS parsed from the user agent""" + userAgentOS: string! +} + +"""""" +input AccountRumPerformanceEventsAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountRumPerformanceEventsAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountRumPerformanceEventsAdaptiveGroupsFilter_InputObject!] + + """""" + bot: uint8 + + """""" + bot_geq: uint8 + + """""" + bot_gt: uint8 + + """""" + bot_in: bytes + + """""" + bot_leq: uint8 + + """""" + bot_lt: uint8 + + """""" + bot_neq: uint8 + + """""" + bot_notin: bytes + + """""" + countryName: string + + """""" + countryName_geq: string + + """""" + countryName_gt: string + + """""" + countryName_in: [string!] + + """""" + countryName_leq: string + + """""" + countryName_like: string + + """""" + countryName_lt: string + + """""" + countryName_neq: string + + """""" + countryName_notin: [string!] + + """""" + countryName_notlike: string + + """""" + customTagInternalSxg: string + + """""" + customTagInternalSxg_geq: string + + """""" + customTagInternalSxg_gt: string + + """""" + customTagInternalSxg_in: [string!] + + """""" + customTagInternalSxg_leq: string + + """""" + customTagInternalSxg_like: string + + """""" + customTagInternalSxg_lt: string + + """""" + customTagInternalSxg_neq: string + + """""" + customTagInternalSxg_notin: [string!] + + """""" + customTagInternalSxg_notlike: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHalfOfHour: Time + + """""" + datetimeHalfOfHour_geq: Time + + """""" + datetimeHalfOfHour_gt: Time + + """""" + datetimeHalfOfHour_in: [Time!] + + """""" + datetimeHalfOfHour_leq: Time + + """""" + datetimeHalfOfHour_lt: Time + + """""" + datetimeHalfOfHour_neq: Time + + """""" + datetimeHalfOfHour_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + deviceType: string + + """""" + deviceType_geq: string + + """""" + deviceType_gt: string + + """""" + deviceType_in: [string!] + + """""" + deviceType_leq: string + + """""" + deviceType_like: string + + """""" + deviceType_lt: string + + """""" + deviceType_neq: string + + """""" + deviceType_notin: [string!] + + """""" + deviceType_notlike: string + + """""" + refererHost: string + + """""" + refererHost_geq: string + + """""" + refererHost_gt: string + + """""" + refererHost_in: [string!] + + """""" + refererHost_leq: string + + """""" + refererHost_like: string + + """""" + refererHost_lt: string + + """""" + refererHost_neq: string + + """""" + refererHost_notin: [string!] + + """""" + refererHost_notlike: string + + """""" + refererPath: string + + """""" + refererPath_geq: string + + """""" + refererPath_gt: string + + """""" + refererPath_in: [string!] + + """""" + refererPath_leq: string + + """""" + refererPath_like: string + + """""" + refererPath_lt: string + + """""" + refererPath_neq: string + + """""" + refererPath_notin: [string!] + + """""" + refererPath_notlike: string + + """""" + refererScheme: string + + """""" + refererScheme_geq: string + + """""" + refererScheme_gt: string + + """""" + refererScheme_in: [string!] + + """""" + refererScheme_leq: string + + """""" + refererScheme_like: string + + """""" + refererScheme_lt: string + + """""" + refererScheme_neq: string + + """""" + refererScheme_notin: [string!] + + """""" + refererScheme_notlike: string + + """""" + requestHost: string + + """""" + requestHost_geq: string + + """""" + requestHost_gt: string + + """""" + requestHost_in: [string!] + + """""" + requestHost_leq: string + + """""" + requestHost_like: string + + """""" + requestHost_lt: string + + """""" + requestHost_neq: string + + """""" + requestHost_notin: [string!] + + """""" + requestHost_notlike: string + + """""" + requestPath: string + + """""" + requestPath_geq: string + + """""" + requestPath_gt: string + + """""" + requestPath_in: [string!] + + """""" + requestPath_leq: string + + """""" + requestPath_like: string + + """""" + requestPath_lt: string + + """""" + requestPath_neq: string + + """""" + requestPath_notin: [string!] + + """""" + requestPath_notlike: string + + """""" + requestScheme: string + + """""" + requestScheme_geq: string + + """""" + requestScheme_gt: string + + """""" + requestScheme_in: [string!] + + """""" + requestScheme_leq: string + + """""" + requestScheme_like: string + + """""" + requestScheme_lt: string + + """""" + requestScheme_neq: string + + """""" + requestScheme_notin: [string!] + + """""" + requestScheme_notlike: string + + """""" + siteTag: string + + """""" + siteTag_geq: string + + """""" + siteTag_gt: string + + """""" + siteTag_in: [string!] + + """""" + siteTag_leq: string + + """""" + siteTag_like: string + + """""" + siteTag_lt: string + + """""" + siteTag_neq: string + + """""" + siteTag_notin: [string!] + + """""" + siteTag_notlike: string + + """""" + userAgentBrowser: string + + """""" + userAgentBrowser_geq: string + + """""" + userAgentBrowser_gt: string + + """""" + userAgentBrowser_in: [string!] + + """""" + userAgentBrowser_leq: string + + """""" + userAgentBrowser_like: string + + """""" + userAgentBrowser_lt: string + + """""" + userAgentBrowser_neq: string + + """""" + userAgentBrowser_notin: [string!] + + """""" + userAgentBrowser_notlike: string + + """""" + userAgentOS: string + + """""" + userAgentOS_geq: string + + """""" + userAgentOS_gt: string + + """""" + userAgentOS_in: [string!] + + """""" + userAgentOS_leq: string + + """""" + userAgentOS_like: string + + """""" + userAgentOS_lt: string + + """""" + userAgentOS_neq: string + + """""" + userAgentOS_notin: [string!] + + """""" + userAgentOS_notlike: string +} + +"""""" +enum AccountRumPerformanceEventsAdaptiveGroupsOrderBy { + """avg(connectionTime) ascending""" + avg_connectionTime_ASC + + """avg(connectionTime) descending""" + avg_connectionTime_DESC + + """avg(dnsTime) ascending""" + avg_dnsTime_ASC + + """avg(dnsTime) descending""" + avg_dnsTime_DESC + + """avg(firstContentfulPaint) ascending""" + avg_firstContentfulPaint_ASC + + """avg(firstContentfulPaint) descending""" + avg_firstContentfulPaint_DESC + + """avg(firstPaint) ascending""" + avg_firstPaint_ASC + + """avg(firstPaint) descending""" + avg_firstPaint_DESC + + """avg(loadEventTime) ascending""" + avg_loadEventTime_ASC + + """avg(loadEventTime) descending""" + avg_loadEventTime_DESC + + """avg(pageLoadTime) ascending""" + avg_pageLoadTime_ASC + + """avg(pageLoadTime) descending""" + avg_pageLoadTime_DESC + + """avg(pageRenderTime) ascending""" + avg_pageRenderTime_ASC + + """avg(pageRenderTime) descending""" + avg_pageRenderTime_DESC + + """avg(requestTime) ascending""" + avg_requestTime_ASC + + """avg(requestTime) descending""" + avg_requestTime_DESC + + """avg(responseTime) ascending""" + avg_responseTime_ASC + + """avg(responseTime) descending""" + avg_responseTime_DESC + + """avg(sampleInterval) ascending""" + avg_sampleInterval_ASC + + """avg(sampleInterval) descending""" + avg_sampleInterval_DESC + + """bot ascending""" + bot_ASC + + """bot descending""" + bot_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """countryName ascending""" + countryName_ASC + + """countryName descending""" + countryName_DESC + + """customTagInternalSxg ascending""" + customTagInternalSxg_ASC + + """customTagInternalSxg descending""" + customTagInternalSxg_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHalfOfHour ascending""" + datetimeHalfOfHour_ASC + + """datetimeHalfOfHour descending""" + datetimeHalfOfHour_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """deviceType ascending""" + deviceType_ASC + + """deviceType descending""" + deviceType_DESC + + """quantiles(connectionTimeP50) ascending""" + quantiles_connectionTimeP50_ASC + + """quantiles(connectionTimeP50) descending""" + quantiles_connectionTimeP50_DESC + + """quantiles(connectionTimeP75) ascending""" + quantiles_connectionTimeP75_ASC + + """quantiles(connectionTimeP75) descending""" + quantiles_connectionTimeP75_DESC + + """quantiles(connectionTimeP90) ascending""" + quantiles_connectionTimeP90_ASC + + """quantiles(connectionTimeP90) descending""" + quantiles_connectionTimeP90_DESC + + """quantiles(connectionTimeP99) ascending""" + quantiles_connectionTimeP99_ASC + + """quantiles(connectionTimeP99) descending""" + quantiles_connectionTimeP99_DESC + + """quantiles(dnsTimeP50) ascending""" + quantiles_dnsTimeP50_ASC + + """quantiles(dnsTimeP50) descending""" + quantiles_dnsTimeP50_DESC + + """quantiles(dnsTimeP75) ascending""" + quantiles_dnsTimeP75_ASC + + """quantiles(dnsTimeP75) descending""" + quantiles_dnsTimeP75_DESC + + """quantiles(dnsTimeP90) ascending""" + quantiles_dnsTimeP90_ASC + + """quantiles(dnsTimeP90) descending""" + quantiles_dnsTimeP90_DESC + + """quantiles(dnsTimeP99) ascending""" + quantiles_dnsTimeP99_ASC + + """quantiles(dnsTimeP99) descending""" + quantiles_dnsTimeP99_DESC + + """quantiles(firstContentfulPaintP50) ascending""" + quantiles_firstContentfulPaintP50_ASC + + """quantiles(firstContentfulPaintP50) descending""" + quantiles_firstContentfulPaintP50_DESC + + """quantiles(firstContentfulPaintP75) ascending""" + quantiles_firstContentfulPaintP75_ASC + + """quantiles(firstContentfulPaintP75) descending""" + quantiles_firstContentfulPaintP75_DESC + + """quantiles(firstContentfulPaintP90) ascending""" + quantiles_firstContentfulPaintP90_ASC + + """quantiles(firstContentfulPaintP90) descending""" + quantiles_firstContentfulPaintP90_DESC + + """quantiles(firstContentfulPaintP99) ascending""" + quantiles_firstContentfulPaintP99_ASC + + """quantiles(firstContentfulPaintP99) descending""" + quantiles_firstContentfulPaintP99_DESC + + """quantiles(firstPaintP50) ascending""" + quantiles_firstPaintP50_ASC + + """quantiles(firstPaintP50) descending""" + quantiles_firstPaintP50_DESC + + """quantiles(firstPaintP75) ascending""" + quantiles_firstPaintP75_ASC + + """quantiles(firstPaintP75) descending""" + quantiles_firstPaintP75_DESC + + """quantiles(firstPaintP90) ascending""" + quantiles_firstPaintP90_ASC + + """quantiles(firstPaintP90) descending""" + quantiles_firstPaintP90_DESC + + """quantiles(firstPaintP99) ascending""" + quantiles_firstPaintP99_ASC + + """quantiles(firstPaintP99) descending""" + quantiles_firstPaintP99_DESC + + """quantiles(loadEventTimeP50) ascending""" + quantiles_loadEventTimeP50_ASC + + """quantiles(loadEventTimeP50) descending""" + quantiles_loadEventTimeP50_DESC + + """quantiles(loadEventTimeP75) ascending""" + quantiles_loadEventTimeP75_ASC + + """quantiles(loadEventTimeP75) descending""" + quantiles_loadEventTimeP75_DESC + + """quantiles(loadEventTimeP90) ascending""" + quantiles_loadEventTimeP90_ASC + + """quantiles(loadEventTimeP90) descending""" + quantiles_loadEventTimeP90_DESC + + """quantiles(loadEventTimeP99) ascending""" + quantiles_loadEventTimeP99_ASC + + """quantiles(loadEventTimeP99) descending""" + quantiles_loadEventTimeP99_DESC + + """quantiles(pageLoadTimeP50) ascending""" + quantiles_pageLoadTimeP50_ASC + + """quantiles(pageLoadTimeP50) descending""" + quantiles_pageLoadTimeP50_DESC + + """quantiles(pageLoadTimeP75) ascending""" + quantiles_pageLoadTimeP75_ASC + + """quantiles(pageLoadTimeP75) descending""" + quantiles_pageLoadTimeP75_DESC + + """quantiles(pageLoadTimeP90) ascending""" + quantiles_pageLoadTimeP90_ASC + + """quantiles(pageLoadTimeP90) descending""" + quantiles_pageLoadTimeP90_DESC + + """quantiles(pageLoadTimeP99) ascending""" + quantiles_pageLoadTimeP99_ASC + + """quantiles(pageLoadTimeP99) descending""" + quantiles_pageLoadTimeP99_DESC + + """quantiles(pageRenderTimeP50) ascending""" + quantiles_pageRenderTimeP50_ASC + + """quantiles(pageRenderTimeP50) descending""" + quantiles_pageRenderTimeP50_DESC + + """quantiles(pageRenderTimeP75) ascending""" + quantiles_pageRenderTimeP75_ASC + + """quantiles(pageRenderTimeP75) descending""" + quantiles_pageRenderTimeP75_DESC + + """quantiles(pageRenderTimeP90) ascending""" + quantiles_pageRenderTimeP90_ASC + + """quantiles(pageRenderTimeP90) descending""" + quantiles_pageRenderTimeP90_DESC + + """quantiles(pageRenderTimeP99) ascending""" + quantiles_pageRenderTimeP99_ASC + + """quantiles(pageRenderTimeP99) descending""" + quantiles_pageRenderTimeP99_DESC + + """quantiles(requestTimeP50) ascending""" + quantiles_requestTimeP50_ASC + + """quantiles(requestTimeP50) descending""" + quantiles_requestTimeP50_DESC + + """quantiles(requestTimeP75) ascending""" + quantiles_requestTimeP75_ASC + + """quantiles(requestTimeP75) descending""" + quantiles_requestTimeP75_DESC + + """quantiles(requestTimeP90) ascending""" + quantiles_requestTimeP90_ASC + + """quantiles(requestTimeP90) descending""" + quantiles_requestTimeP90_DESC + + """quantiles(requestTimeP99) ascending""" + quantiles_requestTimeP99_ASC + + """quantiles(requestTimeP99) descending""" + quantiles_requestTimeP99_DESC + + """quantiles(responseTimeP50) ascending""" + quantiles_responseTimeP50_ASC + + """quantiles(responseTimeP50) descending""" + quantiles_responseTimeP50_DESC + + """quantiles(responseTimeP75) ascending""" + quantiles_responseTimeP75_ASC + + """quantiles(responseTimeP75) descending""" + quantiles_responseTimeP75_DESC + + """quantiles(responseTimeP90) ascending""" + quantiles_responseTimeP90_ASC + + """quantiles(responseTimeP90) descending""" + quantiles_responseTimeP90_DESC + + """quantiles(responseTimeP99) ascending""" + quantiles_responseTimeP99_ASC + + """quantiles(responseTimeP99) descending""" + quantiles_responseTimeP99_DESC + + """refererHost ascending""" + refererHost_ASC + + """refererHost descending""" + refererHost_DESC + + """refererPath ascending""" + refererPath_ASC + + """refererPath descending""" + refererPath_DESC + + """refererScheme ascending""" + refererScheme_ASC + + """refererScheme descending""" + refererScheme_DESC + + """requestHost ascending""" + requestHost_ASC + + """requestHost descending""" + requestHost_DESC + + """requestPath ascending""" + requestPath_ASC + + """requestPath descending""" + requestPath_DESC + + """requestScheme ascending""" + requestScheme_ASC + + """requestScheme descending""" + requestScheme_DESC + + """siteTag ascending""" + siteTag_ASC + + """siteTag descending""" + siteTag_DESC + + """sum(visits) ascending""" + sum_visits_ASC + + """sum(visits) descending""" + sum_visits_DESC + + """userAgentBrowser ascending""" + userAgentBrowser_ASC + + """userAgentBrowser descending""" + userAgentBrowser_DESC + + """userAgentOS ascending""" + userAgentOS_ASC + + """userAgentOS descending""" + userAgentOS_DESC +} + +"""""" +type AccountRumPerformanceEventsAdaptiveGroupsQuantiles { + """Connection time""" + connectionTimeP50: uint64! + + """Connection time""" + connectionTimeP75: uint64! + + """Connection time""" + connectionTimeP90: uint64! + + """Connection time""" + connectionTimeP99: uint64! + + """Domain lookup time""" + dnsTimeP50: uint64! + + """Domain lookup time""" + dnsTimeP75: uint64! + + """Domain lookup time""" + dnsTimeP90: uint64! + + """Domain lookup time""" + dnsTimeP99: uint64! + + """ + The time when the first content piece from the DOM is painted (i.e. some text or an image) + """ + firstContentfulPaintP50: uint64! + + """ + The time when the first content piece from the DOM is painted (i.e. some text or an image) + """ + firstContentfulPaintP75: uint64! + + """ + The time when the first content piece from the DOM is painted (i.e. some text or an image) + """ + firstContentfulPaintP90: uint64! + + """ + The time when the first content piece from the DOM is painted (i.e. some text or an image) + """ + firstContentfulPaintP99: uint64! + + """ + The time when the first pixel is painted onto the screen (i.e. background of the page) + """ + firstPaintP50: uint64! + + """ + The time when the first pixel is painted onto the screen (i.e. background of the page) + """ + firstPaintP75: uint64! + + """ + The time when the first pixel is painted onto the screen (i.e. background of the page) + """ + firstPaintP90: uint64! + + """ + The time when the first pixel is painted onto the screen (i.e. background of the page) + """ + firstPaintP99: uint64! + + """The time taken for the load event""" + loadEventTimeP50: uint64! + + """The time taken for the load event""" + loadEventTimeP75: uint64! + + """The time taken for the load event""" + loadEventTimeP90: uint64! + + """The time taken for the load event""" + loadEventTimeP99: uint64! + + """ + The time to download and display the entire content of a web page in the browser window + """ + pageLoadTimeP50: uint64! + + """ + The time to download and display the entire content of a web page in the browser window + """ + pageLoadTimeP75: uint64! + + """ + The time to download and display the entire content of a web page in the browser window + """ + pageLoadTimeP90: uint64! + + """ + The time to download and display the entire content of a web page in the browser window + """ + pageLoadTimeP99: uint64! + + """ + The time to download and display the entire content of a web page in the browser window + """ + pageRenderTimeP50: uint64! + + """ + The time to download and display the entire content of a web page in the browser window + """ + pageRenderTimeP75: uint64! + + """ + The time to download and display the entire content of a web page in the browser window + """ + pageRenderTimeP90: uint64! + + """ + The time to download and display the entire content of a web page in the browser window + """ + pageRenderTimeP99: uint64! + + """ + The time between initiating the request and receiving the first byte of the response + """ + requestTimeP50: uint64! + + """ + The time between initiating the request and receiving the first byte of the response + """ + requestTimeP75: uint64! + + """ + The time between initiating the request and receiving the first byte of the response + """ + requestTimeP90: uint64! + + """ + The time between initiating the request and receiving the first byte of the response + """ + requestTimeP99: uint64! + + """ + The time between receiving the first byte and the last byte of the response + """ + responseTimeP50: uint64! + + """ + The time between receiving the first byte and the last byte of the response + """ + responseTimeP75: uint64! + + """ + The time between receiving the first byte and the last byte of the response + """ + responseTimeP90: uint64! + + """ + The time between receiving the first byte and the last byte of the response + """ + responseTimeP99: uint64! +} + +"""""" +type AccountRumPerformanceEventsAdaptiveGroupsSum { + """ + The number of pages viewed by end-users that were initiated from a different website (i.e. where the Document.referrer does not match the hostname) + """ + visits: uint64! +} + +"""""" +type AccountRumPerformanceEventsAdaptiveGroupsSumConfidence { + """Confidence interval for the corresponding point estimate""" + visits: Confidence! +} + +"""Beta. RUM Web Vitals event metrics with adaptive sampling""" +type AccountRumWebVitalsEventsAdaptive { + """ + Indicates if the request is likely from a bot (non-human traffic). Returns 1 if from a bot, 0 otherwise. + """ + bot: uint8! + + """Client country ISO 3166 alpha2 code""" + countryName: string! + + """Cumulative Layout Shift (Core Web Vitals) (-1 indicates N/A)""" + cumulativeLayoutShift: float64! + + """Layout values of the rectangular area after the changes""" + cumulativeLayoutShiftCurrentRect: string! + + """DOM selector name of the largest layout shift""" + cumulativeLayoutShiftElement: string! + + """Observed path of the Cumulative Layout Shift (Core Web Vitals)""" + cumulativeLayoutShiftPath: string! + + """Layout values of the rectangular area before the changes""" + cumulativeLayoutShiftPreviousRect: string! + + """Signed Exchange enabled status""" + customTagInternalSxg: string! + + """Request date from browser""" + date: Date! + + """Request datetime from browser""" + datetime: Time! + + """Request datetime from browser, truncated to multiple of 15 minutes""" + datetimeFifteenMinutes: Time! + + """Request datetime from browser, truncated to multiple of 5 minutes""" + datetimeFiveMinutes: Time! + + """Request datetime from browser, truncated to multiple of 30 minutes""" + datetimeHalfOfHour: Time! + + """Request datetime from browser, truncated to the hour""" + datetimeHour: Time! + + """Request datetime from browser, truncated to the minute""" + datetimeMinute: Time! + + """Device type used for view the page""" + deviceType: string! + + """Host of the HTTP request referer""" + refererHost: string! + + """Path of the HTTP request referer""" + refererPath: string! + + """Scheme of the HTTP request referer (http or https)""" + refererScheme: string! + + """HTTP Host of the web page URL""" + requestHost: string! + + """Path of the web page URL""" + requestPath: string! + + """Scheme of the web page URL (http or https)""" + requestScheme: string! + + """ABR sample interval""" + sampleInterval: uint32! + + """The key value to identify a site""" + siteTag: string! + + """Browser parsed from the user agent""" + userAgentBrowser: string! + + """OS parsed from the user agent""" + userAgentOS: string! +} + +"""""" +input AccountRumWebVitalsEventsAdaptiveFilter_InputObject { + """""" + AND: [AccountRumWebVitalsEventsAdaptiveFilter_InputObject!] + + """""" + OR: [AccountRumWebVitalsEventsAdaptiveFilter_InputObject!] + + """""" + bot: uint8 + + """""" + bot_geq: uint8 + + """""" + bot_gt: uint8 + + """""" + bot_in: bytes + + """""" + bot_leq: uint8 + + """""" + bot_lt: uint8 + + """""" + bot_neq: uint8 + + """""" + bot_notin: bytes + + """""" + countryName: string + + """""" + countryName_geq: string + + """""" + countryName_gt: string + + """""" + countryName_in: [string!] + + """""" + countryName_leq: string + + """""" + countryName_like: string + + """""" + countryName_lt: string + + """""" + countryName_neq: string + + """""" + countryName_notin: [string!] + + """""" + countryName_notlike: string + + """""" + cumulativeLayoutShift: float64 + + """""" + cumulativeLayoutShiftCurrentRect: string + + """""" + cumulativeLayoutShiftCurrentRect_geq: string + + """""" + cumulativeLayoutShiftCurrentRect_gt: string + + """""" + cumulativeLayoutShiftCurrentRect_in: [string!] + + """""" + cumulativeLayoutShiftCurrentRect_leq: string + + """""" + cumulativeLayoutShiftCurrentRect_like: string + + """""" + cumulativeLayoutShiftCurrentRect_lt: string + + """""" + cumulativeLayoutShiftCurrentRect_neq: string + + """""" + cumulativeLayoutShiftCurrentRect_notin: [string!] + + """""" + cumulativeLayoutShiftCurrentRect_notlike: string + + """""" + cumulativeLayoutShiftElement: string + + """""" + cumulativeLayoutShiftElement_geq: string + + """""" + cumulativeLayoutShiftElement_gt: string + + """""" + cumulativeLayoutShiftElement_in: [string!] + + """""" + cumulativeLayoutShiftElement_leq: string + + """""" + cumulativeLayoutShiftElement_like: string + + """""" + cumulativeLayoutShiftElement_lt: string + + """""" + cumulativeLayoutShiftElement_neq: string + + """""" + cumulativeLayoutShiftElement_notin: [string!] + + """""" + cumulativeLayoutShiftElement_notlike: string + + """""" + cumulativeLayoutShiftPath: string + + """""" + cumulativeLayoutShiftPath_geq: string + + """""" + cumulativeLayoutShiftPath_gt: string + + """""" + cumulativeLayoutShiftPath_in: [string!] + + """""" + cumulativeLayoutShiftPath_leq: string + + """""" + cumulativeLayoutShiftPath_like: string + + """""" + cumulativeLayoutShiftPath_lt: string + + """""" + cumulativeLayoutShiftPath_neq: string + + """""" + cumulativeLayoutShiftPath_notin: [string!] + + """""" + cumulativeLayoutShiftPath_notlike: string + + """""" + cumulativeLayoutShiftPreviousRect: string + + """""" + cumulativeLayoutShiftPreviousRect_geq: string + + """""" + cumulativeLayoutShiftPreviousRect_gt: string + + """""" + cumulativeLayoutShiftPreviousRect_in: [string!] + + """""" + cumulativeLayoutShiftPreviousRect_leq: string + + """""" + cumulativeLayoutShiftPreviousRect_like: string + + """""" + cumulativeLayoutShiftPreviousRect_lt: string + + """""" + cumulativeLayoutShiftPreviousRect_neq: string + + """""" + cumulativeLayoutShiftPreviousRect_notin: [string!] + + """""" + cumulativeLayoutShiftPreviousRect_notlike: string + + """""" + cumulativeLayoutShift_geq: float64 + + """""" + cumulativeLayoutShift_gt: float64 + + """""" + cumulativeLayoutShift_in: [float64!] + + """""" + cumulativeLayoutShift_leq: float64 + + """""" + cumulativeLayoutShift_lt: float64 + + """""" + cumulativeLayoutShift_neq: float64 + + """""" + cumulativeLayoutShift_notin: [float64!] + + """""" + customTagInternalSxg: string + + """""" + customTagInternalSxg_geq: string + + """""" + customTagInternalSxg_gt: string + + """""" + customTagInternalSxg_in: [string!] + + """""" + customTagInternalSxg_leq: string + + """""" + customTagInternalSxg_like: string + + """""" + customTagInternalSxg_lt: string + + """""" + customTagInternalSxg_neq: string + + """""" + customTagInternalSxg_notin: [string!] + + """""" + customTagInternalSxg_notlike: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHalfOfHour: Time + + """""" + datetimeHalfOfHour_geq: Time + + """""" + datetimeHalfOfHour_gt: Time + + """""" + datetimeHalfOfHour_in: [Time!] + + """""" + datetimeHalfOfHour_leq: Time + + """""" + datetimeHalfOfHour_lt: Time + + """""" + datetimeHalfOfHour_neq: Time + + """""" + datetimeHalfOfHour_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + deviceType: string + + """""" + deviceType_geq: string + + """""" + deviceType_gt: string + + """""" + deviceType_in: [string!] + + """""" + deviceType_leq: string + + """""" + deviceType_like: string + + """""" + deviceType_lt: string + + """""" + deviceType_neq: string + + """""" + deviceType_notin: [string!] + + """""" + deviceType_notlike: string + + """""" + refererHost: string + + """""" + refererHost_geq: string + + """""" + refererHost_gt: string + + """""" + refererHost_in: [string!] + + """""" + refererHost_leq: string + + """""" + refererHost_like: string + + """""" + refererHost_lt: string + + """""" + refererHost_neq: string + + """""" + refererHost_notin: [string!] + + """""" + refererHost_notlike: string + + """""" + refererPath: string + + """""" + refererPath_geq: string + + """""" + refererPath_gt: string + + """""" + refererPath_in: [string!] + + """""" + refererPath_leq: string + + """""" + refererPath_like: string + + """""" + refererPath_lt: string + + """""" + refererPath_neq: string + + """""" + refererPath_notin: [string!] + + """""" + refererPath_notlike: string + + """""" + refererScheme: string + + """""" + refererScheme_geq: string + + """""" + refererScheme_gt: string + + """""" + refererScheme_in: [string!] + + """""" + refererScheme_leq: string + + """""" + refererScheme_like: string + + """""" + refererScheme_lt: string + + """""" + refererScheme_neq: string + + """""" + refererScheme_notin: [string!] + + """""" + refererScheme_notlike: string + + """""" + requestHost: string + + """""" + requestHost_geq: string + + """""" + requestHost_gt: string + + """""" + requestHost_in: [string!] + + """""" + requestHost_leq: string + + """""" + requestHost_like: string + + """""" + requestHost_lt: string + + """""" + requestHost_neq: string + + """""" + requestHost_notin: [string!] + + """""" + requestHost_notlike: string + + """""" + requestPath: string + + """""" + requestPath_geq: string + + """""" + requestPath_gt: string + + """""" + requestPath_in: [string!] + + """""" + requestPath_leq: string + + """""" + requestPath_like: string + + """""" + requestPath_lt: string + + """""" + requestPath_neq: string + + """""" + requestPath_notin: [string!] + + """""" + requestPath_notlike: string + + """""" + requestScheme: string + + """""" + requestScheme_geq: string + + """""" + requestScheme_gt: string + + """""" + requestScheme_in: [string!] + + """""" + requestScheme_leq: string + + """""" + requestScheme_like: string + + """""" + requestScheme_lt: string + + """""" + requestScheme_neq: string + + """""" + requestScheme_notin: [string!] + + """""" + requestScheme_notlike: string + + """""" + sampleInterval: uint32 + + """""" + sampleInterval_geq: uint32 + + """""" + sampleInterval_gt: uint32 + + """""" + sampleInterval_in: [uint32!] + + """""" + sampleInterval_leq: uint32 + + """""" + sampleInterval_lt: uint32 + + """""" + sampleInterval_neq: uint32 + + """""" + sampleInterval_notin: [uint32!] + + """""" + siteTag: string + + """""" + siteTag_geq: string + + """""" + siteTag_gt: string + + """""" + siteTag_in: [string!] + + """""" + siteTag_leq: string + + """""" + siteTag_like: string + + """""" + siteTag_lt: string + + """""" + siteTag_neq: string + + """""" + siteTag_notin: [string!] + + """""" + siteTag_notlike: string + + """""" + userAgentBrowser: string + + """""" + userAgentBrowser_geq: string + + """""" + userAgentBrowser_gt: string + + """""" + userAgentBrowser_in: [string!] + + """""" + userAgentBrowser_leq: string + + """""" + userAgentBrowser_like: string + + """""" + userAgentBrowser_lt: string + + """""" + userAgentBrowser_neq: string + + """""" + userAgentBrowser_notin: [string!] + + """""" + userAgentBrowser_notlike: string + + """""" + userAgentOS: string + + """""" + userAgentOS_geq: string + + """""" + userAgentOS_gt: string + + """""" + userAgentOS_in: [string!] + + """""" + userAgentOS_leq: string + + """""" + userAgentOS_like: string + + """""" + userAgentOS_lt: string + + """""" + userAgentOS_neq: string + + """""" + userAgentOS_notin: [string!] + + """""" + userAgentOS_notlike: string +} + +"""Beta. Aggregated RUM Web Vitals event metrics with adaptive sampling""" +type AccountRumWebVitalsEventsAdaptiveGroups { + """""" + avg: AccountRumWebVitalsEventsAdaptiveGroupsAvg + + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountRumWebVitalsEventsAdaptiveGroupsConfidence! + + """The number of pages viewed by end-users""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountRumWebVitalsEventsAdaptiveGroupsDimensions + + """""" + quantiles: AccountRumWebVitalsEventsAdaptiveGroupsQuantiles + + """""" + sum: AccountRumWebVitalsEventsAdaptiveGroupsSum +} + +"""""" +type AccountRumWebVitalsEventsAdaptiveGroupsAvg { + """ + Cumulative Layout Shift (Core Web Vitals) (negative value indicates N/A) + """ + cumulativeLayoutShift: float64! + + """First Contentful Paint in microseconds (negative value indicates N/A)""" + firstContentfulPaint: int64! + + """ + First Input Delay (Core Web Vitals) in microseconds (negative value indicates N/A) + """ + firstInputDelay: int64! @deprecated(reason: "FirstInputDelay is replaced by InteractionToNextPaint. Please use INP instead.") + + """ + Interaction to Next Paint in microseconds (negative value indicates N/A) + """ + interactionToNextPaint: int64! + + """ + Largest Contentful Paint (Core Web Vitals) in microseconds (negative value indicates N/A) + """ + largestContentfulPaint: int64! + + """ + Largest Contentful Paint Attributions Element Render Delay in microseconds (negative value indicates N/A) + """ + lcpElementRenderDelay: int64! + + """ + Largest Contentful Paint Attributions Resource Load Delay in microseconds (negative value indicates N/A) + """ + lcpResourceLoadDelay: int64! + + """ + Largest Contentful Paint Attributions Resource Load Time in microseconds (negative value indicates N/A) + """ + lcpResourceLoadTime: int64! + + """Average sample interval""" + sampleInterval: float64! + + """Time to First Byte in microseconds (negative value indicates N/A)""" + timeToFirstByte: int64! +} + +"""""" +type AccountRumWebVitalsEventsAdaptiveGroupsConfidence { + """The number of pages viewed by end-users, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! + + """""" + sum: AccountRumWebVitalsEventsAdaptiveGroupsSumConfidence +} + +"""""" +type AccountRumWebVitalsEventsAdaptiveGroupsDimensions { + """ + Indicates if the request is likely from a bot (non-human traffic). Returns 1 if from a bot, 0 otherwise. + """ + bot: uint8! + + """Client country ISO 3166 alpha2 code""" + countryName: string! + + """DOM selector name of the largest layout shift""" + cumulativeLayoutShiftElement: string! + + """Observed path of the Cumulative Layout Shift (Core Web Vitals)""" + cumulativeLayoutShiftPath: string! + + """Signed Exchange enabled status""" + customTagInternalSxg: string! + + """Request date from browser""" + date: Date! + + """Request datetime from browser, truncated to multiple of 15 minutes""" + datetimeFifteenMinutes: Time! + + """Request datetime from browser, truncated to multiple of 5 minutes""" + datetimeFiveMinutes: Time! + + """Request datetime from browser, truncated to multiple of 30 minutes""" + datetimeHalfOfHour: Time! + + """Request datetime from browser, truncated to the hour""" + datetimeHour: Time! + + """Request datetime from browser, truncated to the minute""" + datetimeMinute: Time! + + """Device type used for view the page""" + deviceType: string! + + """DOM selector name of the input delay""" + firstInputDelayElement: string! @deprecated(reason: "FirstInputDelay is replaced by InteractionToNextPaint. Please use INP instead.") + + """Action name of the input delay""" + firstInputDelayName: string! @deprecated(reason: "FirstInputDelay is replaced by InteractionToNextPaint. Please use INP instead.") + + """Observed path of the First Input Delay (Core Web Vitals)""" + firstInputDelayPath: string! @deprecated(reason: "FirstInputDelay is replaced by InteractionToNextPaint. Please use INP instead.") + + """DOM selector name of the interaction""" + interactionToNextPaintElement: string! + + """Action name of the interaction""" + interactionToNextPaintName: string! + + """Observed path of the Cumulative Layout Shift (Core Web Vitals)""" + interactionToNextPaintPath: string! + + """DOM selector name of the largest object""" + largestContentfulPaintElement: string! + + """Host of the largest object""" + largestContentfulPaintObjectHost: string! + + """Path of the largest object""" + largestContentfulPaintObjectPath: string! + + """Scheme of the largest object (http or https)""" + largestContentfulPaintObjectScheme: string! + + """Observed path of the Largest Contentful Paint (Core Web Vitals)""" + largestContentfulPaintPath: string! + + """Fetch priority of the LCP element.""" + lcpFetchPriority: string! + + """Initiator type of the LCP element.""" + lcpInitiatorType: string! + + """Host of the HTTP request referer""" + refererHost: string! + + """Path of the HTTP request referer""" + refererPath: string! + + """Scheme of the HTTP request referer (http or https)""" + refererScheme: string! + + """HTTP Host of the web page URL""" + requestHost: string! + + """Path of the web page URL""" + requestPath: string! + + """Scheme of the web page URL (http or https)""" + requestScheme: string! + + """The key value to identify a site""" + siteTag: string! + + """Browser parsed from the user agent""" + userAgentBrowser: string! + + """OS parsed from the user agent""" + userAgentOS: string! +} + +"""""" +input AccountRumWebVitalsEventsAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountRumWebVitalsEventsAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountRumWebVitalsEventsAdaptiveGroupsFilter_InputObject!] + + """""" + bot: uint8 + + """""" + bot_geq: uint8 + + """""" + bot_gt: uint8 + + """""" + bot_in: bytes + + """""" + bot_leq: uint8 + + """""" + bot_lt: uint8 + + """""" + bot_neq: uint8 + + """""" + bot_notin: bytes + + """""" + countryName: string + + """""" + countryName_geq: string + + """""" + countryName_gt: string + + """""" + countryName_in: [string!] + + """""" + countryName_leq: string + + """""" + countryName_like: string + + """""" + countryName_lt: string + + """""" + countryName_neq: string + + """""" + countryName_notin: [string!] + + """""" + countryName_notlike: string + + """""" + cumulativeLayoutShift: float64 + + """""" + cumulativeLayoutShiftElement: string + + """""" + cumulativeLayoutShiftElement_geq: string + + """""" + cumulativeLayoutShiftElement_gt: string + + """""" + cumulativeLayoutShiftElement_in: [string!] + + """""" + cumulativeLayoutShiftElement_leq: string + + """""" + cumulativeLayoutShiftElement_like: string + + """""" + cumulativeLayoutShiftElement_lt: string + + """""" + cumulativeLayoutShiftElement_neq: string + + """""" + cumulativeLayoutShiftElement_notin: [string!] + + """""" + cumulativeLayoutShiftElement_notlike: string + + """""" + cumulativeLayoutShiftPath: string + + """""" + cumulativeLayoutShiftPath_geq: string + + """""" + cumulativeLayoutShiftPath_gt: string + + """""" + cumulativeLayoutShiftPath_in: [string!] + + """""" + cumulativeLayoutShiftPath_leq: string + + """""" + cumulativeLayoutShiftPath_like: string + + """""" + cumulativeLayoutShiftPath_lt: string + + """""" + cumulativeLayoutShiftPath_neq: string + + """""" + cumulativeLayoutShiftPath_notin: [string!] + + """""" + cumulativeLayoutShiftPath_notlike: string + + """""" + cumulativeLayoutShift_geq: float64 + + """""" + cumulativeLayoutShift_gt: float64 + + """""" + cumulativeLayoutShift_in: [float64!] + + """""" + cumulativeLayoutShift_leq: float64 + + """""" + cumulativeLayoutShift_lt: float64 + + """""" + cumulativeLayoutShift_neq: float64 + + """""" + cumulativeLayoutShift_notin: [float64!] + + """""" + customTagInternalSxg: string + + """""" + customTagInternalSxg_geq: string + + """""" + customTagInternalSxg_gt: string + + """""" + customTagInternalSxg_in: [string!] + + """""" + customTagInternalSxg_leq: string + + """""" + customTagInternalSxg_like: string + + """""" + customTagInternalSxg_lt: string + + """""" + customTagInternalSxg_neq: string + + """""" + customTagInternalSxg_notin: [string!] + + """""" + customTagInternalSxg_notlike: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHalfOfHour: Time + + """""" + datetimeHalfOfHour_geq: Time + + """""" + datetimeHalfOfHour_gt: Time + + """""" + datetimeHalfOfHour_in: [Time!] + + """""" + datetimeHalfOfHour_leq: Time + + """""" + datetimeHalfOfHour_lt: Time + + """""" + datetimeHalfOfHour_neq: Time + + """""" + datetimeHalfOfHour_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + deviceType: string + + """""" + deviceType_geq: string + + """""" + deviceType_gt: string + + """""" + deviceType_in: [string!] + + """""" + deviceType_leq: string + + """""" + deviceType_like: string + + """""" + deviceType_lt: string + + """""" + deviceType_neq: string + + """""" + deviceType_notin: [string!] + + """""" + deviceType_notlike: string + + """""" + firstInputDelay: int64 + + """""" + firstInputDelayElement: string + + """""" + firstInputDelayElement_geq: string + + """""" + firstInputDelayElement_gt: string + + """""" + firstInputDelayElement_in: [string!] + + """""" + firstInputDelayElement_leq: string + + """""" + firstInputDelayElement_like: string + + """""" + firstInputDelayElement_lt: string + + """""" + firstInputDelayElement_neq: string + + """""" + firstInputDelayElement_notin: [string!] + + """""" + firstInputDelayElement_notlike: string + + """""" + firstInputDelayName: string + + """""" + firstInputDelayName_geq: string + + """""" + firstInputDelayName_gt: string + + """""" + firstInputDelayName_in: [string!] + + """""" + firstInputDelayName_leq: string + + """""" + firstInputDelayName_like: string + + """""" + firstInputDelayName_lt: string + + """""" + firstInputDelayName_neq: string + + """""" + firstInputDelayName_notin: [string!] + + """""" + firstInputDelayName_notlike: string + + """""" + firstInputDelayPath: string + + """""" + firstInputDelayPath_geq: string + + """""" + firstInputDelayPath_gt: string + + """""" + firstInputDelayPath_in: [string!] + + """""" + firstInputDelayPath_leq: string + + """""" + firstInputDelayPath_like: string + + """""" + firstInputDelayPath_lt: string + + """""" + firstInputDelayPath_neq: string + + """""" + firstInputDelayPath_notin: [string!] + + """""" + firstInputDelayPath_notlike: string + + """""" + firstInputDelay_geq: int64 + + """""" + firstInputDelay_gt: int64 + + """""" + firstInputDelay_in: [int64!] + + """""" + firstInputDelay_leq: int64 + + """""" + firstInputDelay_lt: int64 + + """""" + firstInputDelay_neq: int64 + + """""" + firstInputDelay_notin: [int64!] + + """""" + interactionToNextPaint: int64 + + """""" + interactionToNextPaintElement: string + + """""" + interactionToNextPaintElement_geq: string + + """""" + interactionToNextPaintElement_gt: string + + """""" + interactionToNextPaintElement_in: [string!] + + """""" + interactionToNextPaintElement_leq: string + + """""" + interactionToNextPaintElement_like: string + + """""" + interactionToNextPaintElement_lt: string + + """""" + interactionToNextPaintElement_neq: string + + """""" + interactionToNextPaintElement_notin: [string!] + + """""" + interactionToNextPaintElement_notlike: string + + """""" + interactionToNextPaintName: string + + """""" + interactionToNextPaintName_geq: string + + """""" + interactionToNextPaintName_gt: string + + """""" + interactionToNextPaintName_in: [string!] + + """""" + interactionToNextPaintName_leq: string + + """""" + interactionToNextPaintName_like: string + + """""" + interactionToNextPaintName_lt: string + + """""" + interactionToNextPaintName_neq: string + + """""" + interactionToNextPaintName_notin: [string!] + + """""" + interactionToNextPaintName_notlike: string + + """""" + interactionToNextPaintPath: string + + """""" + interactionToNextPaintPath_geq: string + + """""" + interactionToNextPaintPath_gt: string + + """""" + interactionToNextPaintPath_in: [string!] + + """""" + interactionToNextPaintPath_leq: string + + """""" + interactionToNextPaintPath_like: string + + """""" + interactionToNextPaintPath_lt: string + + """""" + interactionToNextPaintPath_neq: string + + """""" + interactionToNextPaintPath_notin: [string!] + + """""" + interactionToNextPaintPath_notlike: string + + """""" + interactionToNextPaint_geq: int64 + + """""" + interactionToNextPaint_gt: int64 + + """""" + interactionToNextPaint_in: [int64!] + + """""" + interactionToNextPaint_leq: int64 + + """""" + interactionToNextPaint_lt: int64 + + """""" + interactionToNextPaint_neq: int64 + + """""" + interactionToNextPaint_notin: [int64!] + + """""" + largestContentfulPaint: int64 + + """""" + largestContentfulPaintElement: string + + """""" + largestContentfulPaintElement_geq: string + + """""" + largestContentfulPaintElement_gt: string + + """""" + largestContentfulPaintElement_in: [string!] + + """""" + largestContentfulPaintElement_leq: string + + """""" + largestContentfulPaintElement_like: string + + """""" + largestContentfulPaintElement_lt: string + + """""" + largestContentfulPaintElement_neq: string + + """""" + largestContentfulPaintElement_notin: [string!] + + """""" + largestContentfulPaintElement_notlike: string + + """""" + largestContentfulPaintObjectHost: string + + """""" + largestContentfulPaintObjectHost_geq: string + + """""" + largestContentfulPaintObjectHost_gt: string + + """""" + largestContentfulPaintObjectHost_in: [string!] + + """""" + largestContentfulPaintObjectHost_leq: string + + """""" + largestContentfulPaintObjectHost_like: string + + """""" + largestContentfulPaintObjectHost_lt: string + + """""" + largestContentfulPaintObjectHost_neq: string + + """""" + largestContentfulPaintObjectHost_notin: [string!] + + """""" + largestContentfulPaintObjectHost_notlike: string + + """""" + largestContentfulPaintObjectPath: string + + """""" + largestContentfulPaintObjectPath_geq: string + + """""" + largestContentfulPaintObjectPath_gt: string + + """""" + largestContentfulPaintObjectPath_in: [string!] + + """""" + largestContentfulPaintObjectPath_leq: string + + """""" + largestContentfulPaintObjectPath_like: string + + """""" + largestContentfulPaintObjectPath_lt: string + + """""" + largestContentfulPaintObjectPath_neq: string + + """""" + largestContentfulPaintObjectPath_notin: [string!] + + """""" + largestContentfulPaintObjectPath_notlike: string + + """""" + largestContentfulPaintObjectScheme: string + + """""" + largestContentfulPaintObjectScheme_geq: string + + """""" + largestContentfulPaintObjectScheme_gt: string + + """""" + largestContentfulPaintObjectScheme_in: [string!] + + """""" + largestContentfulPaintObjectScheme_leq: string + + """""" + largestContentfulPaintObjectScheme_like: string + + """""" + largestContentfulPaintObjectScheme_lt: string + + """""" + largestContentfulPaintObjectScheme_neq: string + + """""" + largestContentfulPaintObjectScheme_notin: [string!] + + """""" + largestContentfulPaintObjectScheme_notlike: string + + """""" + largestContentfulPaintPath: string + + """""" + largestContentfulPaintPath_geq: string + + """""" + largestContentfulPaintPath_gt: string + + """""" + largestContentfulPaintPath_in: [string!] + + """""" + largestContentfulPaintPath_leq: string + + """""" + largestContentfulPaintPath_like: string + + """""" + largestContentfulPaintPath_lt: string + + """""" + largestContentfulPaintPath_neq: string + + """""" + largestContentfulPaintPath_notin: [string!] + + """""" + largestContentfulPaintPath_notlike: string + + """""" + largestContentfulPaint_geq: int64 + + """""" + largestContentfulPaint_gt: int64 + + """""" + largestContentfulPaint_in: [int64!] + + """""" + largestContentfulPaint_leq: int64 + + """""" + largestContentfulPaint_lt: int64 + + """""" + largestContentfulPaint_neq: int64 + + """""" + largestContentfulPaint_notin: [int64!] + + """""" + lcpFetchPriority: string + + """""" + lcpFetchPriority_geq: string + + """""" + lcpFetchPriority_gt: string + + """""" + lcpFetchPriority_in: [string!] + + """""" + lcpFetchPriority_leq: string + + """""" + lcpFetchPriority_like: string + + """""" + lcpFetchPriority_lt: string + + """""" + lcpFetchPriority_neq: string + + """""" + lcpFetchPriority_notin: [string!] + + """""" + lcpFetchPriority_notlike: string + + """""" + lcpInitiatorType: string + + """""" + lcpInitiatorType_geq: string + + """""" + lcpInitiatorType_gt: string + + """""" + lcpInitiatorType_in: [string!] + + """""" + lcpInitiatorType_leq: string + + """""" + lcpInitiatorType_like: string + + """""" + lcpInitiatorType_lt: string + + """""" + lcpInitiatorType_neq: string + + """""" + lcpInitiatorType_notin: [string!] + + """""" + lcpInitiatorType_notlike: string + + """""" + refererHost: string + + """""" + refererHost_geq: string + + """""" + refererHost_gt: string + + """""" + refererHost_in: [string!] + + """""" + refererHost_leq: string + + """""" + refererHost_like: string + + """""" + refererHost_lt: string + + """""" + refererHost_neq: string + + """""" + refererHost_notin: [string!] + + """""" + refererHost_notlike: string + + """""" + refererPath: string + + """""" + refererPath_geq: string + + """""" + refererPath_gt: string + + """""" + refererPath_in: [string!] + + """""" + refererPath_leq: string + + """""" + refererPath_like: string + + """""" + refererPath_lt: string + + """""" + refererPath_neq: string + + """""" + refererPath_notin: [string!] + + """""" + refererPath_notlike: string + + """""" + refererScheme: string + + """""" + refererScheme_geq: string + + """""" + refererScheme_gt: string + + """""" + refererScheme_in: [string!] + + """""" + refererScheme_leq: string + + """""" + refererScheme_like: string + + """""" + refererScheme_lt: string + + """""" + refererScheme_neq: string + + """""" + refererScheme_notin: [string!] + + """""" + refererScheme_notlike: string + + """""" + requestHost: string + + """""" + requestHost_geq: string + + """""" + requestHost_gt: string + + """""" + requestHost_in: [string!] + + """""" + requestHost_leq: string + + """""" + requestHost_like: string + + """""" + requestHost_lt: string + + """""" + requestHost_neq: string + + """""" + requestHost_notin: [string!] + + """""" + requestHost_notlike: string + + """""" + requestPath: string + + """""" + requestPath_geq: string + + """""" + requestPath_gt: string + + """""" + requestPath_in: [string!] + + """""" + requestPath_leq: string + + """""" + requestPath_like: string + + """""" + requestPath_lt: string + + """""" + requestPath_neq: string + + """""" + requestPath_notin: [string!] + + """""" + requestPath_notlike: string + + """""" + requestScheme: string + + """""" + requestScheme_geq: string + + """""" + requestScheme_gt: string + + """""" + requestScheme_in: [string!] + + """""" + requestScheme_leq: string + + """""" + requestScheme_like: string + + """""" + requestScheme_lt: string + + """""" + requestScheme_neq: string + + """""" + requestScheme_notin: [string!] + + """""" + requestScheme_notlike: string + + """""" + siteTag: string + + """""" + siteTag_geq: string + + """""" + siteTag_gt: string + + """""" + siteTag_in: [string!] + + """""" + siteTag_leq: string + + """""" + siteTag_like: string + + """""" + siteTag_lt: string + + """""" + siteTag_neq: string + + """""" + siteTag_notin: [string!] + + """""" + siteTag_notlike: string + + """""" + userAgentBrowser: string + + """""" + userAgentBrowser_geq: string + + """""" + userAgentBrowser_gt: string + + """""" + userAgentBrowser_in: [string!] + + """""" + userAgentBrowser_leq: string + + """""" + userAgentBrowser_like: string + + """""" + userAgentBrowser_lt: string + + """""" + userAgentBrowser_neq: string + + """""" + userAgentBrowser_notin: [string!] + + """""" + userAgentBrowser_notlike: string + + """""" + userAgentOS: string + + """""" + userAgentOS_geq: string + + """""" + userAgentOS_gt: string + + """""" + userAgentOS_in: [string!] + + """""" + userAgentOS_leq: string + + """""" + userAgentOS_like: string + + """""" + userAgentOS_lt: string + + """""" + userAgentOS_neq: string + + """""" + userAgentOS_notin: [string!] + + """""" + userAgentOS_notlike: string +} + +"""""" +enum AccountRumWebVitalsEventsAdaptiveGroupsOrderBy { + """avg(cumulativeLayoutShift) ascending""" + avg_cumulativeLayoutShift_ASC + + """avg(cumulativeLayoutShift) descending""" + avg_cumulativeLayoutShift_DESC + + """avg(firstContentfulPaint) ascending""" + avg_firstContentfulPaint_ASC + + """avg(firstContentfulPaint) descending""" + avg_firstContentfulPaint_DESC + + """avg(firstInputDelay) ascending""" + avg_firstInputDelay_ASC + + """avg(firstInputDelay) descending""" + avg_firstInputDelay_DESC + + """avg(interactionToNextPaint) ascending""" + avg_interactionToNextPaint_ASC + + """avg(interactionToNextPaint) descending""" + avg_interactionToNextPaint_DESC + + """avg(largestContentfulPaint) ascending""" + avg_largestContentfulPaint_ASC + + """avg(largestContentfulPaint) descending""" + avg_largestContentfulPaint_DESC + + """avg(lcpElementRenderDelay) ascending""" + avg_lcpElementRenderDelay_ASC + + """avg(lcpElementRenderDelay) descending""" + avg_lcpElementRenderDelay_DESC + + """avg(lcpResourceLoadDelay) ascending""" + avg_lcpResourceLoadDelay_ASC + + """avg(lcpResourceLoadDelay) descending""" + avg_lcpResourceLoadDelay_DESC + + """avg(lcpResourceLoadTime) ascending""" + avg_lcpResourceLoadTime_ASC + + """avg(lcpResourceLoadTime) descending""" + avg_lcpResourceLoadTime_DESC + + """avg(sampleInterval) ascending""" + avg_sampleInterval_ASC + + """avg(sampleInterval) descending""" + avg_sampleInterval_DESC + + """avg(timeToFirstByte) ascending""" + avg_timeToFirstByte_ASC + + """avg(timeToFirstByte) descending""" + avg_timeToFirstByte_DESC + + """bot ascending""" + bot_ASC + + """bot descending""" + bot_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """countryName ascending""" + countryName_ASC + + """countryName descending""" + countryName_DESC + + """cumulativeLayoutShiftElement ascending""" + cumulativeLayoutShiftElement_ASC + + """cumulativeLayoutShiftElement descending""" + cumulativeLayoutShiftElement_DESC + + """cumulativeLayoutShiftPath ascending""" + cumulativeLayoutShiftPath_ASC + + """cumulativeLayoutShiftPath descending""" + cumulativeLayoutShiftPath_DESC + + """customTagInternalSxg ascending""" + customTagInternalSxg_ASC + + """customTagInternalSxg descending""" + customTagInternalSxg_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHalfOfHour ascending""" + datetimeHalfOfHour_ASC + + """datetimeHalfOfHour descending""" + datetimeHalfOfHour_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """deviceType ascending""" + deviceType_ASC + + """deviceType descending""" + deviceType_DESC + + """firstInputDelayElement ascending""" + firstInputDelayElement_ASC + + """firstInputDelayElement descending""" + firstInputDelayElement_DESC + + """firstInputDelayName ascending""" + firstInputDelayName_ASC + + """firstInputDelayName descending""" + firstInputDelayName_DESC + + """firstInputDelayPath ascending""" + firstInputDelayPath_ASC + + """firstInputDelayPath descending""" + firstInputDelayPath_DESC + + """interactionToNextPaintElement ascending""" + interactionToNextPaintElement_ASC + + """interactionToNextPaintElement descending""" + interactionToNextPaintElement_DESC + + """interactionToNextPaintName ascending""" + interactionToNextPaintName_ASC + + """interactionToNextPaintName descending""" + interactionToNextPaintName_DESC + + """interactionToNextPaintPath ascending""" + interactionToNextPaintPath_ASC + + """interactionToNextPaintPath descending""" + interactionToNextPaintPath_DESC + + """largestContentfulPaintElement ascending""" + largestContentfulPaintElement_ASC + + """largestContentfulPaintElement descending""" + largestContentfulPaintElement_DESC + + """largestContentfulPaintObjectHost ascending""" + largestContentfulPaintObjectHost_ASC + + """largestContentfulPaintObjectHost descending""" + largestContentfulPaintObjectHost_DESC + + """largestContentfulPaintObjectPath ascending""" + largestContentfulPaintObjectPath_ASC + + """largestContentfulPaintObjectPath descending""" + largestContentfulPaintObjectPath_DESC + + """largestContentfulPaintObjectScheme ascending""" + largestContentfulPaintObjectScheme_ASC + + """largestContentfulPaintObjectScheme descending""" + largestContentfulPaintObjectScheme_DESC + + """largestContentfulPaintPath ascending""" + largestContentfulPaintPath_ASC + + """largestContentfulPaintPath descending""" + largestContentfulPaintPath_DESC + + """lcpFetchPriority ascending""" + lcpFetchPriority_ASC + + """lcpFetchPriority descending""" + lcpFetchPriority_DESC + + """lcpInitiatorType ascending""" + lcpInitiatorType_ASC + + """lcpInitiatorType descending""" + lcpInitiatorType_DESC + + """quantiles(cumulativeLayoutShiftP50) ascending""" + quantiles_cumulativeLayoutShiftP50_ASC + + """quantiles(cumulativeLayoutShiftP50) descending""" + quantiles_cumulativeLayoutShiftP50_DESC + + """quantiles(cumulativeLayoutShiftP75) ascending""" + quantiles_cumulativeLayoutShiftP75_ASC + + """quantiles(cumulativeLayoutShiftP75) descending""" + quantiles_cumulativeLayoutShiftP75_DESC + + """quantiles(cumulativeLayoutShiftP90) ascending""" + quantiles_cumulativeLayoutShiftP90_ASC + + """quantiles(cumulativeLayoutShiftP90) descending""" + quantiles_cumulativeLayoutShiftP90_DESC + + """quantiles(cumulativeLayoutShiftP99) ascending""" + quantiles_cumulativeLayoutShiftP99_ASC + + """quantiles(cumulativeLayoutShiftP99) descending""" + quantiles_cumulativeLayoutShiftP99_DESC + + """quantiles(firstContentfulPaintP50) ascending""" + quantiles_firstContentfulPaintP50_ASC + + """quantiles(firstContentfulPaintP50) descending""" + quantiles_firstContentfulPaintP50_DESC + + """quantiles(firstContentfulPaintP75) ascending""" + quantiles_firstContentfulPaintP75_ASC + + """quantiles(firstContentfulPaintP75) descending""" + quantiles_firstContentfulPaintP75_DESC + + """quantiles(firstContentfulPaintP90) ascending""" + quantiles_firstContentfulPaintP90_ASC + + """quantiles(firstContentfulPaintP90) descending""" + quantiles_firstContentfulPaintP90_DESC + + """quantiles(firstContentfulPaintP99) ascending""" + quantiles_firstContentfulPaintP99_ASC + + """quantiles(firstContentfulPaintP99) descending""" + quantiles_firstContentfulPaintP99_DESC + + """quantiles(firstInputDelayP50) ascending""" + quantiles_firstInputDelayP50_ASC + + """quantiles(firstInputDelayP50) descending""" + quantiles_firstInputDelayP50_DESC + + """quantiles(firstInputDelayP75) ascending""" + quantiles_firstInputDelayP75_ASC + + """quantiles(firstInputDelayP75) descending""" + quantiles_firstInputDelayP75_DESC + + """quantiles(firstInputDelayP90) ascending""" + quantiles_firstInputDelayP90_ASC + + """quantiles(firstInputDelayP90) descending""" + quantiles_firstInputDelayP90_DESC + + """quantiles(firstInputDelayP99) ascending""" + quantiles_firstInputDelayP99_ASC + + """quantiles(firstInputDelayP99) descending""" + quantiles_firstInputDelayP99_DESC + + """quantiles(interactionToNextPaintP50) ascending""" + quantiles_interactionToNextPaintP50_ASC + + """quantiles(interactionToNextPaintP50) descending""" + quantiles_interactionToNextPaintP50_DESC + + """quantiles(interactionToNextPaintP75) ascending""" + quantiles_interactionToNextPaintP75_ASC + + """quantiles(interactionToNextPaintP75) descending""" + quantiles_interactionToNextPaintP75_DESC + + """quantiles(interactionToNextPaintP90) ascending""" + quantiles_interactionToNextPaintP90_ASC + + """quantiles(interactionToNextPaintP90) descending""" + quantiles_interactionToNextPaintP90_DESC + + """quantiles(interactionToNextPaintP99) ascending""" + quantiles_interactionToNextPaintP99_ASC + + """quantiles(interactionToNextPaintP99) descending""" + quantiles_interactionToNextPaintP99_DESC + + """quantiles(largestContentfulPaintP50) ascending""" + quantiles_largestContentfulPaintP50_ASC + + """quantiles(largestContentfulPaintP50) descending""" + quantiles_largestContentfulPaintP50_DESC + + """quantiles(largestContentfulPaintP75) ascending""" + quantiles_largestContentfulPaintP75_ASC + + """quantiles(largestContentfulPaintP75) descending""" + quantiles_largestContentfulPaintP75_DESC + + """quantiles(largestContentfulPaintP90) ascending""" + quantiles_largestContentfulPaintP90_ASC + + """quantiles(largestContentfulPaintP90) descending""" + quantiles_largestContentfulPaintP90_DESC + + """quantiles(largestContentfulPaintP99) ascending""" + quantiles_largestContentfulPaintP99_ASC + + """quantiles(largestContentfulPaintP99) descending""" + quantiles_largestContentfulPaintP99_DESC + + """quantiles(lcpElementRenderDelayP50) ascending""" + quantiles_lcpElementRenderDelayP50_ASC + + """quantiles(lcpElementRenderDelayP50) descending""" + quantiles_lcpElementRenderDelayP50_DESC + + """quantiles(lcpElementRenderDelayP75) ascending""" + quantiles_lcpElementRenderDelayP75_ASC + + """quantiles(lcpElementRenderDelayP75) descending""" + quantiles_lcpElementRenderDelayP75_DESC + + """quantiles(lcpElementRenderDelayP90) ascending""" + quantiles_lcpElementRenderDelayP90_ASC + + """quantiles(lcpElementRenderDelayP90) descending""" + quantiles_lcpElementRenderDelayP90_DESC + + """quantiles(lcpElementRenderDelayP99) ascending""" + quantiles_lcpElementRenderDelayP99_ASC + + """quantiles(lcpElementRenderDelayP99) descending""" + quantiles_lcpElementRenderDelayP99_DESC + + """quantiles(lcpResourceLoadDelayP50) ascending""" + quantiles_lcpResourceLoadDelayP50_ASC + + """quantiles(lcpResourceLoadDelayP50) descending""" + quantiles_lcpResourceLoadDelayP50_DESC + + """quantiles(lcpResourceLoadDelayP75) ascending""" + quantiles_lcpResourceLoadDelayP75_ASC + + """quantiles(lcpResourceLoadDelayP75) descending""" + quantiles_lcpResourceLoadDelayP75_DESC + + """quantiles(lcpResourceLoadDelayP90) ascending""" + quantiles_lcpResourceLoadDelayP90_ASC + + """quantiles(lcpResourceLoadDelayP90) descending""" + quantiles_lcpResourceLoadDelayP90_DESC + + """quantiles(lcpResourceLoadDelayP99) ascending""" + quantiles_lcpResourceLoadDelayP99_ASC + + """quantiles(lcpResourceLoadDelayP99) descending""" + quantiles_lcpResourceLoadDelayP99_DESC + + """quantiles(lcpResourceLoadTimeP50) ascending""" + quantiles_lcpResourceLoadTimeP50_ASC + + """quantiles(lcpResourceLoadTimeP50) descending""" + quantiles_lcpResourceLoadTimeP50_DESC + + """quantiles(lcpResourceLoadTimeP75) ascending""" + quantiles_lcpResourceLoadTimeP75_ASC + + """quantiles(lcpResourceLoadTimeP75) descending""" + quantiles_lcpResourceLoadTimeP75_DESC + + """quantiles(lcpResourceLoadTimeP90) ascending""" + quantiles_lcpResourceLoadTimeP90_ASC + + """quantiles(lcpResourceLoadTimeP90) descending""" + quantiles_lcpResourceLoadTimeP90_DESC + + """quantiles(lcpResourceLoadTimeP99) ascending""" + quantiles_lcpResourceLoadTimeP99_ASC + + """quantiles(lcpResourceLoadTimeP99) descending""" + quantiles_lcpResourceLoadTimeP99_DESC + + """quantiles(timeToFirstByteP50) ascending""" + quantiles_timeToFirstByteP50_ASC + + """quantiles(timeToFirstByteP50) descending""" + quantiles_timeToFirstByteP50_DESC + + """quantiles(timeToFirstByteP75) ascending""" + quantiles_timeToFirstByteP75_ASC + + """quantiles(timeToFirstByteP75) descending""" + quantiles_timeToFirstByteP75_DESC + + """quantiles(timeToFirstByteP90) ascending""" + quantiles_timeToFirstByteP90_ASC + + """quantiles(timeToFirstByteP90) descending""" + quantiles_timeToFirstByteP90_DESC + + """quantiles(timeToFirstByteP99) ascending""" + quantiles_timeToFirstByteP99_ASC + + """quantiles(timeToFirstByteP99) descending""" + quantiles_timeToFirstByteP99_DESC + + """refererHost ascending""" + refererHost_ASC + + """refererHost descending""" + refererHost_DESC + + """refererPath ascending""" + refererPath_ASC + + """refererPath descending""" + refererPath_DESC + + """refererScheme ascending""" + refererScheme_ASC + + """refererScheme descending""" + refererScheme_DESC + + """requestHost ascending""" + requestHost_ASC + + """requestHost descending""" + requestHost_DESC + + """requestPath ascending""" + requestPath_ASC + + """requestPath descending""" + requestPath_DESC + + """requestScheme ascending""" + requestScheme_ASC + + """requestScheme descending""" + requestScheme_DESC + + """siteTag ascending""" + siteTag_ASC + + """siteTag descending""" + siteTag_DESC + + """sum(clsGood) ascending""" + sum_clsGood_ASC + + """sum(clsGood) descending""" + sum_clsGood_DESC + + """sum(clsNeedsImprovement) ascending""" + sum_clsNeedsImprovement_ASC + + """sum(clsNeedsImprovement) descending""" + sum_clsNeedsImprovement_DESC + + """sum(clsPoor) ascending""" + sum_clsPoor_ASC + + """sum(clsPoor) descending""" + sum_clsPoor_DESC + + """sum(clsTotal) ascending""" + sum_clsTotal_ASC + + """sum(clsTotal) descending""" + sum_clsTotal_DESC + + """sum(fcpGood) ascending""" + sum_fcpGood_ASC + + """sum(fcpGood) descending""" + sum_fcpGood_DESC + + """sum(fcpNeedsImprovement) ascending""" + sum_fcpNeedsImprovement_ASC + + """sum(fcpNeedsImprovement) descending""" + sum_fcpNeedsImprovement_DESC + + """sum(fcpPoor) ascending""" + sum_fcpPoor_ASC + + """sum(fcpPoor) descending""" + sum_fcpPoor_DESC + + """sum(fcpTotal) ascending""" + sum_fcpTotal_ASC + + """sum(fcpTotal) descending""" + sum_fcpTotal_DESC + + """sum(fidGood) ascending""" + sum_fidGood_ASC + + """sum(fidGood) descending""" + sum_fidGood_DESC + + """sum(fidNeedsImprovement) ascending""" + sum_fidNeedsImprovement_ASC + + """sum(fidNeedsImprovement) descending""" + sum_fidNeedsImprovement_DESC + + """sum(fidPoor) ascending""" + sum_fidPoor_ASC + + """sum(fidPoor) descending""" + sum_fidPoor_DESC + + """sum(fidTotal) ascending""" + sum_fidTotal_ASC + + """sum(fidTotal) descending""" + sum_fidTotal_DESC + + """sum(inpGood) ascending""" + sum_inpGood_ASC + + """sum(inpGood) descending""" + sum_inpGood_DESC + + """sum(inpNeedsImprovement) ascending""" + sum_inpNeedsImprovement_ASC + + """sum(inpNeedsImprovement) descending""" + sum_inpNeedsImprovement_DESC + + """sum(inpPoor) ascending""" + sum_inpPoor_ASC + + """sum(inpPoor) descending""" + sum_inpPoor_DESC + + """sum(inpTotal) ascending""" + sum_inpTotal_ASC + + """sum(inpTotal) descending""" + sum_inpTotal_DESC + + """sum(lcpGood) ascending""" + sum_lcpGood_ASC + + """sum(lcpGood) descending""" + sum_lcpGood_DESC + + """sum(lcpNeedsImprovement) ascending""" + sum_lcpNeedsImprovement_ASC + + """sum(lcpNeedsImprovement) descending""" + sum_lcpNeedsImprovement_DESC + + """sum(lcpPoor) ascending""" + sum_lcpPoor_ASC + + """sum(lcpPoor) descending""" + sum_lcpPoor_DESC + + """sum(lcpTotal) ascending""" + sum_lcpTotal_ASC + + """sum(lcpTotal) descending""" + sum_lcpTotal_DESC + + """sum(ttfbGood) ascending""" + sum_ttfbGood_ASC + + """sum(ttfbGood) descending""" + sum_ttfbGood_DESC + + """sum(ttfbNeedsImprovement) ascending""" + sum_ttfbNeedsImprovement_ASC + + """sum(ttfbNeedsImprovement) descending""" + sum_ttfbNeedsImprovement_DESC + + """sum(ttfbPoor) ascending""" + sum_ttfbPoor_ASC + + """sum(ttfbPoor) descending""" + sum_ttfbPoor_DESC + + """sum(ttfbTotal) ascending""" + sum_ttfbTotal_ASC + + """sum(ttfbTotal) descending""" + sum_ttfbTotal_DESC + + """sum(visits) ascending""" + sum_visits_ASC + + """sum(visits) descending""" + sum_visits_DESC + + """userAgentBrowser ascending""" + userAgentBrowser_ASC + + """userAgentBrowser descending""" + userAgentBrowser_DESC + + """userAgentOS ascending""" + userAgentOS_ASC + + """userAgentOS descending""" + userAgentOS_DESC +} + +"""""" +type AccountRumWebVitalsEventsAdaptiveGroupsQuantiles { + """ + Cumulative Layout Shift (Core Web Vitals) (negative value indicates N/A) + """ + cumulativeLayoutShiftP50: float64! + + """ + Cumulative Layout Shift (Core Web Vitals) (negative value indicates N/A) + """ + cumulativeLayoutShiftP75: float64! + + """ + Cumulative Layout Shift (Core Web Vitals) (negative value indicates N/A) + """ + cumulativeLayoutShiftP90: float64! + + """ + Cumulative Layout Shift (Core Web Vitals) (negative value indicates N/A) + """ + cumulativeLayoutShiftP99: float64! + + """First Contentful Paint in microseconds (negative value indicates N/A)""" + firstContentfulPaintP50: int64! + + """First Contentful Paint in microseconds (negative value indicates N/A)""" + firstContentfulPaintP75: int64! + + """First Contentful Paint in microseconds (negative value indicates N/A)""" + firstContentfulPaintP90: int64! + + """First Contentful Paint in microseconds (negative value indicates N/A)""" + firstContentfulPaintP99: int64! + + """ + First Input Delay (Core Web Vitals) in microseconds (negative value indicates N/A) + """ + firstInputDelayP50: int64! @deprecated(reason: "FirstInputDelay is replaced by InteractionToNextPaint. Please use INP instead.") + + """ + First Input Delay (Core Web Vitals) in microseconds (negative value indicates N/A) + """ + firstInputDelayP75: int64! @deprecated(reason: "FirstInputDelay is replaced by InteractionToNextPaint. Please use INP instead.") + + """ + First Input Delay (Core Web Vitals) in microseconds (negative value indicates N/A) + """ + firstInputDelayP90: int64! @deprecated(reason: "FirstInputDelay is replaced by InteractionToNextPaint. Please use INP instead.") + + """ + First Input Delay (Core Web Vitals) in microseconds (negative value indicates N/A) + """ + firstInputDelayP99: int64! @deprecated(reason: "FirstInputDelay is replaced by InteractionToNextPaint. Please use INP instead.") + + """ + Interaction to Next Paint in microseconds (negative value indicates N/A) + """ + interactionToNextPaintP50: int64! + + """ + Interaction to Next Paint in microseconds (negative value indicates N/A) + """ + interactionToNextPaintP75: int64! + + """ + Interaction to Next Paint in microseconds (negative value indicates N/A) + """ + interactionToNextPaintP90: int64! + + """ + Interaction to Next Paint in microseconds (negative value indicates N/A) + """ + interactionToNextPaintP99: int64! + + """ + Largest Contentful Paint (Core Web Vitals) in microseconds (negative value indicates N/A) + """ + largestContentfulPaintP50: int64! + + """ + Largest Contentful Paint (Core Web Vitals) in microseconds (negative value indicates N/A) + """ + largestContentfulPaintP75: int64! + + """ + Largest Contentful Paint (Core Web Vitals) in microseconds (negative value indicates N/A) + """ + largestContentfulPaintP90: int64! + + """ + Largest Contentful Paint (Core Web Vitals) in microseconds (negative value indicates N/A) + """ + largestContentfulPaintP99: int64! + + """ + Largest Contentful Paint Attributions Element Render Delay in microseconds (negative value indicates N/A) + """ + lcpElementRenderDelayP50: int64! + + """ + Largest Contentful Paint Attributions Element Render Delay in microseconds (negative value indicates N/A) + """ + lcpElementRenderDelayP75: int64! + + """ + Largest Contentful Paint Attributions Element Render Delay in microseconds (negative value indicates N/A) + """ + lcpElementRenderDelayP90: int64! + + """ + Largest Contentful Paint Attributions Element Render Delay in microseconds (negative value indicates N/A) + """ + lcpElementRenderDelayP99: int64! + + """ + Largest Contentful Paint Attributions Resource Load Delay in microseconds (negative value indicates N/A) + """ + lcpResourceLoadDelayP50: int64! + + """ + Largest Contentful Paint Attributions Resource Load Delay in microseconds (negative value indicates N/A) + """ + lcpResourceLoadDelayP75: int64! + + """ + Largest Contentful Paint Attributions Resource Load Delay in microseconds (negative value indicates N/A) + """ + lcpResourceLoadDelayP90: int64! + + """ + Largest Contentful Paint Attributions Resource Load Delay in microseconds (negative value indicates N/A) + """ + lcpResourceLoadDelayP99: int64! + + """ + Largest Contentful Paint Attributions Resource Load Time in microseconds (negative value indicates N/A) + """ + lcpResourceLoadTimeP50: int64! + + """ + Largest Contentful Paint Attributions Resource Load Time in microseconds (negative value indicates N/A) + """ + lcpResourceLoadTimeP75: int64! + + """ + Largest Contentful Paint Attributions Resource Load Time in microseconds (negative value indicates N/A) + """ + lcpResourceLoadTimeP90: int64! + + """ + Largest Contentful Paint Attributions Resource Load Time in microseconds (negative value indicates N/A) + """ + lcpResourceLoadTimeP99: int64! + + """Time to First Byte in microseconds (negative value indicates N/A)""" + timeToFirstByteP50: int64! + + """Time to First Byte in microseconds (negative value indicates N/A)""" + timeToFirstByteP75: int64! + + """Time to First Byte in microseconds (negative value indicates N/A)""" + timeToFirstByteP90: int64! + + """Time to First Byte in microseconds (negative value indicates N/A)""" + timeToFirstByteP99: int64! +} + +"""""" +type AccountRumWebVitalsEventsAdaptiveGroupsSum { + """ + Cumulative Layout Shift (Core Web Vitals), count of Good occurrences (under 0.1) + """ + clsGood: uint64! + + """ + Cumulative Layout Shift (Core Web Vitals), count of Needs Improvement occurrences (between 0.1 and 0.25) + """ + clsNeedsImprovement: uint64! + + """ + Cumulative Layout Shift (Core Web Vitals), count of Poor occurrences (over 0.25) + """ + clsPoor: uint64! + + """Cumulative Layout Shift (Core Web Vitals), total count""" + clsTotal: uint64! + + """First Contentful Paint, count of Good occurrences (under 1.8 s)""" + fcpGood: uint64! + + """ + First Contentful Paint, count of Needs Improvement occurrences (between 1.8 s and 3 s) + """ + fcpNeedsImprovement: uint64! + + """First Contentful Paint, count of Poor occurrences (over 3 s)""" + fcpPoor: uint64! + + """First Contentful Paint, total count""" + fcpTotal: uint64! + + """ + First Input Delay (Core Web Vitals), count of Good occurrences (under 100 ms) + """ + fidGood: uint64! @deprecated(reason: "FirstInputDelay is replaced by InteractionToNextPaint. Please use INP instead.") + + """ + First Input Delay (Core Web Vitals), count of Needs Improvement occurrences (between 100 ms and 300ms) + """ + fidNeedsImprovement: uint64! @deprecated(reason: "FirstInputDelay is replaced by InteractionToNextPaint. Please use INP instead.") + + """ + First Input Delay (Core Web Vitals), count of Poor occurrences (over 300 ms) + """ + fidPoor: uint64! @deprecated(reason: "FirstInputDelay is replaced by InteractionToNextPaint. Please use INP instead.") + + """First Input Delay (Core Web Vitals), total count""" + fidTotal: uint64! @deprecated(reason: "FirstInputDelay is replaced by InteractionToNextPaint. Please use INP instead.") + + """Interaction to Next Paint, count of Good occurrences (under 200 ms)""" + inpGood: uint64! + + """ + Interaction to Next Paint, count of Needs Improvement occurrences (between 200 ms and 500ms) + """ + inpNeedsImprovement: uint64! + + """Interaction to Next Paint, count of Poor occurrences (over 500 ms)""" + inpPoor: uint64! + + """Interaction to Next Paint, total count""" + inpTotal: uint64! + + """ + Largest Contentful Paint (Core Web Vitals), count of Good occurrences (under 2.5 sec) + """ + lcpGood: uint64! + + """ + Largest Contentful Paint (Core Web Vitals), count of Needs Improvement occurrences (between 2.5 sec and 4.0 sec) + """ + lcpNeedsImprovement: uint64! + + """ + Largest Contentful Paint (Core Web Vitals), count of Poor occurrences (over 4.0 sec) + """ + lcpPoor: uint64! + + """Largest Contentful Paint (Core Web Vitals), total count""" + lcpTotal: uint64! + + """Time to First Byte, count of Good occurrences (under 800 ms)""" + ttfbGood: uint64! + + """ + Time to First Byte, count of Needs Improvement occurrences (between 800 ms and 1800ms) + """ + ttfbNeedsImprovement: uint64! + + """Time to First Byte, count of Poor occurrences (over 500 ms)""" + ttfbPoor: uint64! + + """Time to First Byte, total count""" + ttfbTotal: uint64! + + """ + The number of pages viewed by end-users that were initiated from a different website (i.e. where the Document.referrer does not match the hostname) + """ + visits: uint64! +} + +"""""" +type AccountRumWebVitalsEventsAdaptiveGroupsSumConfidence { + """Confidence interval for the corresponding point estimate""" + clsGood: Confidence! + + """Confidence interval for the corresponding point estimate""" + clsNeedsImprovement: Confidence! + + """Confidence interval for the corresponding point estimate""" + clsPoor: Confidence! + + """Confidence interval for the corresponding point estimate""" + clsTotal: Confidence! + + """Confidence interval for the corresponding point estimate""" + fcpGood: Confidence! + + """Confidence interval for the corresponding point estimate""" + fcpNeedsImprovement: Confidence! + + """Confidence interval for the corresponding point estimate""" + fcpPoor: Confidence! + + """Confidence interval for the corresponding point estimate""" + fcpTotal: Confidence! + + """Confidence interval for the corresponding point estimate""" + inpGood: Confidence! + + """Confidence interval for the corresponding point estimate""" + inpNeedsImprovement: Confidence! + + """Confidence interval for the corresponding point estimate""" + inpPoor: Confidence! + + """Confidence interval for the corresponding point estimate""" + inpTotal: Confidence! + + """Confidence interval for the corresponding point estimate""" + lcpGood: Confidence! + + """Confidence interval for the corresponding point estimate""" + lcpNeedsImprovement: Confidence! + + """Confidence interval for the corresponding point estimate""" + lcpPoor: Confidence! + + """Confidence interval for the corresponding point estimate""" + lcpTotal: Confidence! + + """Confidence interval for the corresponding point estimate""" + ttfbGood: Confidence! + + """Confidence interval for the corresponding point estimate""" + ttfbNeedsImprovement: Confidence! + + """Confidence interval for the corresponding point estimate""" + ttfbPoor: Confidence! + + """Confidence interval for the corresponding point estimate""" + ttfbTotal: Confidence! + + """Confidence interval for the corresponding point estimate""" + visits: Confidence! +} + +"""""" +enum AccountRumWebVitalsEventsAdaptiveOrderBy { + """bot ascending""" + bot_ASC + + """bot descending""" + bot_DESC + + """countryName ascending""" + countryName_ASC + + """countryName descending""" + countryName_DESC + + """cumulativeLayoutShiftCurrentRect ascending""" + cumulativeLayoutShiftCurrentRect_ASC + + """cumulativeLayoutShiftCurrentRect descending""" + cumulativeLayoutShiftCurrentRect_DESC + + """cumulativeLayoutShiftElement ascending""" + cumulativeLayoutShiftElement_ASC + + """cumulativeLayoutShiftElement descending""" + cumulativeLayoutShiftElement_DESC + + """cumulativeLayoutShiftPath ascending""" + cumulativeLayoutShiftPath_ASC + + """cumulativeLayoutShiftPath descending""" + cumulativeLayoutShiftPath_DESC + + """cumulativeLayoutShiftPreviousRect ascending""" + cumulativeLayoutShiftPreviousRect_ASC + + """cumulativeLayoutShiftPreviousRect descending""" + cumulativeLayoutShiftPreviousRect_DESC + + """cumulativeLayoutShift ascending""" + cumulativeLayoutShift_ASC + + """cumulativeLayoutShift descending""" + cumulativeLayoutShift_DESC + + """customTagInternalSxg ascending""" + customTagInternalSxg_ASC + + """customTagInternalSxg descending""" + customTagInternalSxg_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHalfOfHour ascending""" + datetimeHalfOfHour_ASC + + """datetimeHalfOfHour descending""" + datetimeHalfOfHour_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """deviceType ascending""" + deviceType_ASC + + """deviceType descending""" + deviceType_DESC + + """refererHost ascending""" + refererHost_ASC + + """refererHost descending""" + refererHost_DESC + + """refererPath ascending""" + refererPath_ASC + + """refererPath descending""" + refererPath_DESC + + """refererScheme ascending""" + refererScheme_ASC + + """refererScheme descending""" + refererScheme_DESC + + """requestHost ascending""" + requestHost_ASC + + """requestHost descending""" + requestHost_DESC + + """requestPath ascending""" + requestPath_ASC + + """requestPath descending""" + requestPath_DESC + + """requestScheme ascending""" + requestScheme_ASC + + """requestScheme descending""" + requestScheme_DESC + + """sampleInterval ascending""" + sampleInterval_ASC + + """sampleInterval descending""" + sampleInterval_DESC + + """siteTag ascending""" + siteTag_ASC + + """siteTag descending""" + siteTag_DESC + + """userAgentBrowser ascending""" + userAgentBrowser_ASC + + """userAgentBrowser descending""" + userAgentBrowser_DESC + + """userAgentOS ascending""" + userAgentOS_ASC + + """userAgentOS descending""" + userAgentOS_DESC +} + +"""Access and limitations for an account""" +type AccountSettings { + """""" + MagicWANConnectorMetricsAdaptiveGroups: Settings! + + """""" + accessLoginRequestsAdaptiveGroups: Settings! + + """""" + advancedDnsProtectionNetworkAnalyticsAdaptiveGroups: Settings! + + """""" + advancedTcpProtectionNetworkAnalyticsAdaptiveGroups: Settings! + + """""" + aegisIpUtilizationAdaptiveGroups: Settings! + + """""" + aiGatewayCacheAdaptiveGroups: Settings! + + """""" + aiGatewayErrorsAdaptiveGroups: Settings! + + """""" + aiGatewayRequestsAdaptiveGroups: Settings! + + """""" + aiGatewaySizeAdaptiveGroups: Settings! + + """""" + aiInferenceAdaptive: Settings! + + """""" + aiInferenceAdaptiveGroups: Settings! + + """""" + autoRAGConfigAPIAdaptiveGroups: Settings! + + """""" + autoRAGEngineAdaptiveGroups: Settings! + + """""" + browserIsolationSessionsAdaptiveGroups: Settings! + + """""" + browserIsolationUserActionsAdaptiveGroups: Settings! + + """""" + browserRenderingApiAdaptiveGroups: Settings! + + """""" + browserRenderingBindingSessionsAdaptiveGroups: Settings! + + """""" + browserRenderingBrowserTimeUsageAdaptiveGroups: Settings! + + """""" + browserRenderingEventsAdaptive: Settings! + + """""" + browserRenderingEventsAdaptiveGroups: Settings! + + """""" + callsStatusAdaptive: Settings! + + """""" + callsTurnUsageAdaptiveGroups: Settings! + + """""" + callsUsageAdaptiveGroups: Settings! + + """""" + cdnNetworkAnalyticsAdaptiveGroups: Settings! + + """""" + cloudchamberMetricsAdaptiveGroups: Settings! + + """""" + cloudflareTunnelsAnalyticsAdaptiveGroups: Settings! + + """""" + containersMetricsAdaptiveGroups: Settings! + + """""" + d1AnalyticsAdaptiveGroups: Settings! + + """""" + d1QueriesAdaptiveGroups: Settings! + + """""" + d1StorageAdaptiveGroups: Settings! + + """""" + dnsAnalyticsAdaptive: Settings! + + """""" + dnsAnalyticsAdaptiveGroups: Settings! + + """""" + dnsFirewallAnalyticsAdaptive: Settings! + + """""" + dnsFirewallAnalyticsAdaptiveGroups: Settings! + + """""" + dosdAttackAnalyticsGroups: Settings! + + """""" + dosdNetworkAnalyticsAdaptiveGroups: Settings! + + """""" + durableObjectsInvocationsAdaptiveGroups: Settings! + + """""" + durableObjectsPeriodicGroups: Settings! + + """""" + durableObjectsSqlStorageGroups: Settings! + + """""" + durableObjectsStorageGroups: Settings! + + """""" + durableObjectsSubrequestsAdaptiveGroups: Settings! + + """""" + fbmAttackAnalyticsGroups: Settings! + + """""" + firewallEventsAdaptive: Settings! + + """""" + firewallEventsAdaptiveGroups: Settings! + + """""" + flowtrackdNetworkAnalyticsAdaptiveGroups: Settings! + + """""" + gatewayL4DownstreamSessionsAdaptiveGroups: Settings! + + """""" + gatewayL4SessionsAdaptiveGroups: Settings! + + """""" + gatewayL4UpstreamSessionsAdaptiveGroups: Settings! + + """""" + gatewayL7RequestsAdaptiveGroups: Settings! + + """""" + gatewayResolverByCategoryAdaptiveGroups: Settings! + + """""" + gatewayResolverByCustomResolverGroups: Settings! + + """""" + gatewayResolverByRuleExecutionPerformanceAdaptiveGroups: Settings! + + """""" + gatewayResolverQueriesAdaptiveGroups: Settings! + + """""" + httpRequests1dGroups: Settings! + + """""" + httpRequests1hGroups: Settings! + + """""" + httpRequests1mGroups: Settings! + + """""" + httpRequestsAdaptive: Settings! + + """""" + httpRequestsAdaptiveGroups: Settings! + + """""" + httpRequestsOverviewAdaptiveGroups: Settings! + + """""" + hyperdriveQueriesAdaptiveGroups: Settings! + + """""" + imagesRequestsAdaptiveGroups: Settings! + + """""" + imagesUniqueTransformations: Settings! + + """""" + imagesUniqueTransformationsAccumulatedSinceStartOfMonth: Settings! + + """""" + kvOperationsAdaptiveGroups: Settings! + + """""" + kvStorageAdaptiveGroups: Settings! + + """""" + liveInputEventsAdaptive: Settings! + + """""" + liveInputEventsAdaptiveGroups: Settings! + + """""" + logExplorerIngestionAdaptiveGroups: Settings! + + """""" + logpushHealthAdaptiveGroups: Settings! + + """""" + magicEndpointHealthCheckAdaptiveGroups: Settings! + + """""" + magicFirewallNetworkAnalyticsAdaptiveGroups: Settings! + + """""" + magicFirewallRateLimitNetworkAnalyticsAdaptiveGroups: Settings! + + """""" + magicFirewallSamplesAdaptiveGroups: Settings! + + """""" + magicIDPSNetworkAnalyticsAdaptiveGroups: Settings! + + """""" + magicTransitNetworkAnalyticsAdaptiveGroups: Settings! + + """""" + magicTransitTunnelHealthCheckSLOsAdaptiveGroups: Settings! + + """""" + magicTransitTunnelHealthChecksAdaptiveGroups: Settings! + + """""" + magicTransitTunnelTrafficAdaptiveGroups: Settings! + + """""" + mconnTelemetryEventsAdaptiveGroups: Settings! + + """""" + mconnTelemetryEventsStagingAdaptiveGroups: Settings! + + """""" + mconnTelemetrySnapshotDhcpLeasesAdaptiveGroups: Settings! + + """""" + mconnTelemetrySnapshotDhcpLeasesStagingAdaptiveGroups: Settings! + + """""" + mconnTelemetrySnapshotDisksAdaptiveGroups: Settings! + + """""" + mconnTelemetrySnapshotDisksStagingAdaptiveGroups: Settings! + + """""" + mconnTelemetrySnapshotInterfaceAddressesAdaptiveGroups: Settings! + + """""" + mconnTelemetrySnapshotInterfaceAddressesStagingAdaptiveGroups: Settings! + + """""" + mconnTelemetrySnapshotInterfacesAdaptiveGroups: Settings! + + """""" + mconnTelemetrySnapshotInterfacesStagingAdaptiveGroups: Settings! + + """""" + mconnTelemetrySnapshotMountsAdaptiveGroups: Settings! + + """""" + mconnTelemetrySnapshotMountsStagingAdaptiveGroups: Settings! + + """""" + mconnTelemetrySnapshotNetdevsAdaptiveGroups: Settings! + + """""" + mconnTelemetrySnapshotNetdevsStagingAdaptiveGroups: Settings! + + """""" + mconnTelemetrySnapshotThermalsAdaptiveGroups: Settings! + + """""" + mconnTelemetrySnapshotThermalsStagingAdaptiveGroups: Settings! + + """""" + mconnTelemetrySnapshotTunnelsAdaptiveGroups: Settings! + + """""" + mconnTelemetrySnapshotTunnelsStagingAdaptiveGroups: Settings! + + """""" + mconnTelemetrySnapshotsAdaptiveGroups: Settings! + + """""" + mconnTelemetrySnapshotsStagingAdaptiveGroups: Settings! + + """""" + mediaUniqueTransformations: Settings! + + """""" + mediaUniqueTransformationsAccumulatedSinceStartOfMonth: Settings! + + """""" + mnmAWSVPCFlowDataAdaptiveGroups: Settings! + + """""" + mnmFlowDataAdaptiveGroups: Settings! + + """""" + nelReportsAdaptiveGroups: Settings! + + """""" + ohttpMetricsAdaptive: Settings! + + """""" + ohttpMetricsAdaptiveGroups: Settings! + + """""" + pagesFunctionsInvocationsAdaptiveGroups: Settings! + + """""" + pipelinesDeliveryAdaptiveGroups: Settings! + + """""" + pipelinesIngestionAdaptiveGroups: Settings! + + """""" + pipelinesOperatorAdaptiveGroups: Settings! + + """""" + pipelinesOperatorStagingAdaptiveGroups: Settings! + + """""" + pipelinesSinkAdaptiveGroups: Settings! + + """""" + pipelinesSinkStagingAdaptiveGroups: Settings! + + """""" + programmableFlowProtectionNetworkAnalyticsAdaptiveGroups: Settings! + + """""" + queueBacklogAdaptiveGroups: Settings! + + """""" + queueConsumerMetricsAdaptiveGroups: Settings! + + """""" + queueDelayedBacklogAdaptiveGroups: Settings! + + """""" + queueMessageOperationsAdaptiveGroups: Settings! + + """""" + r2OperationsAdaptiveGroups: Settings! + + """""" + r2StorageAdaptiveGroups: Settings! + + """""" + rumPageloadEventsAdaptiveGroups: Settings! + + """""" + rumPerformanceEventsAdaptiveGroups: Settings! + + """""" + rumWebVitalsEventsAdaptive: Settings! + + """""" + rumWebVitalsEventsAdaptiveGroups: Settings! + + """""" + sinkholeRequestLogsAdaptive: Settings! + + """""" + sinkholeRequestLogsAdaptiveGroups: Settings! + + """""" + sippyOperationsAdaptiveGroups: Settings! + + """""" + spectrumNetworkAnalyticsAdaptiveGroups: Settings! + + """""" + storageTraces: Settings! + + """""" + streamCMCDAdaptiveGroups: Settings! + + """""" + streamMinutesViewedAdaptiveGroups: Settings! + + """""" + toMarkdownConversionAdaptive: Settings! + + """""" + toMarkdownConversionAdaptiveGroups: Settings! + + """""" + turnstileAdaptiveGroups: Settings! + + """""" + vectorizeQueriesAdaptiveGroups: Settings! + + """""" + vectorizeStorageAdaptiveGroups: Settings! + + """""" + vectorizeV2OperationsAdaptiveGroups: Settings! + + """""" + vectorizeV2QueriesAdaptiveGroups: Settings! + + """""" + vectorizeV2StorageAdaptiveGroups: Settings! + + """""" + vectorizeV2WritesAdaptiveGroups: Settings! + + """""" + videoBufferEventsAdaptiveGroups: Settings! + + """""" + videoPlaybackEventsAdaptiveGroups: Settings! + + """""" + videoQualityEventsAdaptiveGroups: Settings! + + """""" + warpDeviceAdaptiveGroups: Settings! + + """""" + workerPlacementAdaptiveGroups: Settings! + + """""" + workersAnalyticsEngineAdaptiveGroups: Settings! + + """""" + workersBuildsBuildMinutesAdaptiveGroups: Settings! + + """""" + workersInvocationsAdaptive: Settings! + + """""" + workersInvocationsScheduled: Settings! + + """""" + workersOverviewDataAdaptiveGroups: Settings! + + """""" + workersOverviewRequestsAdaptiveGroups: Settings! + + """""" + workersSubrequestsAdaptiveGroups: Settings! + + """""" + workersVpcConnectionAdaptiveGroups: Settings! + + """""" + workflowsAdaptive: Settings! + + """""" + workflowsAdaptiveGroups: Settings! + + """""" + zarazTrackAdaptiveGroups: Settings! + + """""" + zarazTriggersAdaptiveGroups: Settings! + + """""" + zeroTrustPrivateNetworkDiscoveryGroups: Settings! +} + +"""Sinkhole Request Logs""" +type AccountSinkholeRequestLogsAdaptive { + """The request body""" + body: string! + + """The date and time the event was recorded""" + datetime: Time! + + """The destination IP address of the request""" + destinationAddress: string! + + """ + The request headers. If a header has multiple values, the values are comma separated. Each header is newline separated. + """ + headers: string! + + """The host the request was sent to""" + host: string! + + """The request method""" + method: string! + + """ + The path to the object within the R2 bucket linked to this sinkhole that stores overflow body and header data. Blank if neither headers nor body was larger than 256 bytes. + """ + r2Path: string! + + """The referrer of the request""" + referrer: string! + + """ABR sample interval""" + sampleInterval: uint32! + + """The ID of the sinkhole that logged the request""" + sinkholeId: string! + + """The sender's IP address""" + sourceAddress: string! + + """The request uri""" + uri: string! + + """The request url""" + url: string! + + """The request user agent""" + userAgent: string! +} + +"""""" +input AccountSinkholeRequestLogsAdaptiveFilter_InputObject { + """""" + AND: [AccountSinkholeRequestLogsAdaptiveFilter_InputObject!] + + """""" + OR: [AccountSinkholeRequestLogsAdaptiveFilter_InputObject!] + + """""" + body: string + + """""" + body_geq: string + + """""" + body_gt: string + + """""" + body_in: [string!] + + """""" + body_leq: string + + """""" + body_like: string + + """""" + body_lt: string + + """""" + body_neq: string + + """""" + body_notin: [string!] + + """""" + body_notlike: string + + """""" + datetime: Time + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + destinationAddress: string + + """""" + destinationAddress_geq: string + + """""" + destinationAddress_gt: string + + """""" + destinationAddress_in: [string!] + + """""" + destinationAddress_leq: string + + """""" + destinationAddress_like: string + + """""" + destinationAddress_lt: string + + """""" + destinationAddress_neq: string + + """""" + destinationAddress_notin: [string!] + + """""" + destinationAddress_notlike: string + + """""" + headers: string + + """""" + headers_geq: string + + """""" + headers_gt: string + + """""" + headers_in: [string!] + + """""" + headers_leq: string + + """""" + headers_like: string + + """""" + headers_lt: string + + """""" + headers_neq: string + + """""" + headers_notin: [string!] + + """""" + headers_notlike: string + + """""" + host: string + + """""" + host_geq: string + + """""" + host_gt: string + + """""" + host_in: [string!] + + """""" + host_leq: string + + """""" + host_like: string + + """""" + host_lt: string + + """""" + host_neq: string + + """""" + host_notin: [string!] + + """""" + host_notlike: string + + """""" + method: string + + """""" + method_geq: string + + """""" + method_gt: string + + """""" + method_in: [string!] + + """""" + method_leq: string + + """""" + method_like: string + + """""" + method_lt: string + + """""" + method_neq: string + + """""" + method_notin: [string!] + + """""" + method_notlike: string + + """""" + r2Path: string + + """""" + r2Path_geq: string + + """""" + r2Path_gt: string + + """""" + r2Path_in: [string!] + + """""" + r2Path_leq: string + + """""" + r2Path_like: string + + """""" + r2Path_lt: string + + """""" + r2Path_neq: string + + """""" + r2Path_notin: [string!] + + """""" + r2Path_notlike: string + + """""" + referrer: string + + """""" + referrer_geq: string + + """""" + referrer_gt: string + + """""" + referrer_in: [string!] + + """""" + referrer_leq: string + + """""" + referrer_like: string + + """""" + referrer_lt: string + + """""" + referrer_neq: string + + """""" + referrer_notin: [string!] + + """""" + referrer_notlike: string + + """""" + sampleInterval: uint32 + + """""" + sampleInterval_geq: uint32 + + """""" + sampleInterval_gt: uint32 + + """""" + sampleInterval_in: [uint32!] + + """""" + sampleInterval_leq: uint32 + + """""" + sampleInterval_lt: uint32 + + """""" + sampleInterval_neq: uint32 + + """""" + sampleInterval_notin: [uint32!] + + """""" + sinkholeId: string + + """""" + sinkholeId_geq: string + + """""" + sinkholeId_gt: string + + """""" + sinkholeId_in: [string!] + + """""" + sinkholeId_leq: string + + """""" + sinkholeId_like: string + + """""" + sinkholeId_lt: string + + """""" + sinkholeId_neq: string + + """""" + sinkholeId_notin: [string!] + + """""" + sinkholeId_notlike: string + + """""" + sourceAddress: string + + """""" + sourceAddress_geq: string + + """""" + sourceAddress_gt: string + + """""" + sourceAddress_in: [string!] + + """""" + sourceAddress_leq: string + + """""" + sourceAddress_like: string + + """""" + sourceAddress_lt: string + + """""" + sourceAddress_neq: string + + """""" + sourceAddress_notin: [string!] + + """""" + sourceAddress_notlike: string + + """""" + uri: string + + """""" + uri_geq: string + + """""" + uri_gt: string + + """""" + uri_in: [string!] + + """""" + uri_leq: string + + """""" + uri_like: string + + """""" + uri_lt: string + + """""" + uri_neq: string + + """""" + uri_notin: [string!] + + """""" + uri_notlike: string + + """""" + url: string + + """""" + url_geq: string + + """""" + url_gt: string + + """""" + url_in: [string!] + + """""" + url_leq: string + + """""" + url_like: string + + """""" + url_lt: string + + """""" + url_neq: string + + """""" + url_notin: [string!] + + """""" + url_notlike: string + + """""" + userAgent: string + + """""" + userAgent_geq: string + + """""" + userAgent_gt: string + + """""" + userAgent_in: [string!] + + """""" + userAgent_leq: string + + """""" + userAgent_like: string + + """""" + userAgent_lt: string + + """""" + userAgent_neq: string + + """""" + userAgent_notin: [string!] + + """""" + userAgent_notlike: string +} + +"""Sinkhole Request Logs""" +type AccountSinkholeRequestLogsAdaptiveGroups { + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountSinkholeRequestLogsAdaptiveGroupsConfidence! + + """Number of requests logged""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountSinkholeRequestLogsAdaptiveGroupsDimensions +} + +"""""" +type AccountSinkholeRequestLogsAdaptiveGroupsConfidence { + """Number of requests logged, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! +} + +"""""" +type AccountSinkholeRequestLogsAdaptiveGroupsDimensions { + """The request body""" + body: string! + + """The date and time the event was recorded""" + datetime: Time! + + """The destination IP address of the request""" + destinationAddress: string! + + """ + The request headers. If a header has multiple values, the values are comma separated. Each header is newline separated. + """ + headers: string! + + """The host the request was sent to""" + host: string! + + """The request method""" + method: string! + + """ + The path to the object within the R2 bucket linked to this sinkhole that stores overflow body and header data. Blank if neither headers nor body was larger than 256 bytes. + """ + r2Path: string! + + """The referrer of the request""" + referrer: string! + + """The ID of the sinkhole that logged the request""" + sinkholeId: string! + + """The sender's IP address""" + sourceAddress: string! + + """The request uri""" + uri: string! + + """The request url""" + url: string! + + """The request user agent""" + userAgent: string! +} + +"""""" +input AccountSinkholeRequestLogsAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountSinkholeRequestLogsAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountSinkholeRequestLogsAdaptiveGroupsFilter_InputObject!] + + """""" + body: string + + """""" + body_geq: string + + """""" + body_gt: string + + """""" + body_in: [string!] + + """""" + body_leq: string + + """""" + body_like: string + + """""" + body_lt: string + + """""" + body_neq: string + + """""" + body_notin: [string!] + + """""" + body_notlike: string + + """""" + datetime: Time + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + destinationAddress: string + + """""" + destinationAddress_geq: string + + """""" + destinationAddress_gt: string + + """""" + destinationAddress_in: [string!] + + """""" + destinationAddress_leq: string + + """""" + destinationAddress_like: string + + """""" + destinationAddress_lt: string + + """""" + destinationAddress_neq: string + + """""" + destinationAddress_notin: [string!] + + """""" + destinationAddress_notlike: string + + """""" + headers: string + + """""" + headers_geq: string + + """""" + headers_gt: string + + """""" + headers_in: [string!] + + """""" + headers_leq: string + + """""" + headers_like: string + + """""" + headers_lt: string + + """""" + headers_neq: string + + """""" + headers_notin: [string!] + + """""" + headers_notlike: string + + """""" + host: string + + """""" + host_geq: string + + """""" + host_gt: string + + """""" + host_in: [string!] + + """""" + host_leq: string + + """""" + host_like: string + + """""" + host_lt: string + + """""" + host_neq: string + + """""" + host_notin: [string!] + + """""" + host_notlike: string + + """""" + method: string + + """""" + method_geq: string + + """""" + method_gt: string + + """""" + method_in: [string!] + + """""" + method_leq: string + + """""" + method_like: string + + """""" + method_lt: string + + """""" + method_neq: string + + """""" + method_notin: [string!] + + """""" + method_notlike: string + + """""" + r2Path: string + + """""" + r2Path_geq: string + + """""" + r2Path_gt: string + + """""" + r2Path_in: [string!] + + """""" + r2Path_leq: string + + """""" + r2Path_like: string + + """""" + r2Path_lt: string + + """""" + r2Path_neq: string + + """""" + r2Path_notin: [string!] + + """""" + r2Path_notlike: string + + """""" + referrer: string + + """""" + referrer_geq: string + + """""" + referrer_gt: string + + """""" + referrer_in: [string!] + + """""" + referrer_leq: string + + """""" + referrer_like: string + + """""" + referrer_lt: string + + """""" + referrer_neq: string + + """""" + referrer_notin: [string!] + + """""" + referrer_notlike: string + + """""" + sinkholeId: string + + """""" + sinkholeId_geq: string + + """""" + sinkholeId_gt: string + + """""" + sinkholeId_in: [string!] + + """""" + sinkholeId_leq: string + + """""" + sinkholeId_like: string + + """""" + sinkholeId_lt: string + + """""" + sinkholeId_neq: string + + """""" + sinkholeId_notin: [string!] + + """""" + sinkholeId_notlike: string + + """""" + sourceAddress: string + + """""" + sourceAddress_geq: string + + """""" + sourceAddress_gt: string + + """""" + sourceAddress_in: [string!] + + """""" + sourceAddress_leq: string + + """""" + sourceAddress_like: string + + """""" + sourceAddress_lt: string + + """""" + sourceAddress_neq: string + + """""" + sourceAddress_notin: [string!] + + """""" + sourceAddress_notlike: string + + """""" + uri: string + + """""" + uri_geq: string + + """""" + uri_gt: string + + """""" + uri_in: [string!] + + """""" + uri_leq: string + + """""" + uri_like: string + + """""" + uri_lt: string + + """""" + uri_neq: string + + """""" + uri_notin: [string!] + + """""" + uri_notlike: string + + """""" + url: string + + """""" + url_geq: string + + """""" + url_gt: string + + """""" + url_in: [string!] + + """""" + url_leq: string + + """""" + url_like: string + + """""" + url_lt: string + + """""" + url_neq: string + + """""" + url_notin: [string!] + + """""" + url_notlike: string + + """""" + userAgent: string + + """""" + userAgent_geq: string + + """""" + userAgent_gt: string + + """""" + userAgent_in: [string!] + + """""" + userAgent_leq: string + + """""" + userAgent_like: string + + """""" + userAgent_lt: string + + """""" + userAgent_neq: string + + """""" + userAgent_notin: [string!] + + """""" + userAgent_notlike: string +} + +"""""" +enum AccountSinkholeRequestLogsAdaptiveGroupsOrderBy { + """body ascending""" + body_ASC + + """body descending""" + body_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """destinationAddress ascending""" + destinationAddress_ASC + + """destinationAddress descending""" + destinationAddress_DESC + + """headers ascending""" + headers_ASC + + """headers descending""" + headers_DESC + + """host ascending""" + host_ASC + + """host descending""" + host_DESC + + """method ascending""" + method_ASC + + """method descending""" + method_DESC + + """r2Path ascending""" + r2Path_ASC + + """r2Path descending""" + r2Path_DESC + + """referrer ascending""" + referrer_ASC + + """referrer descending""" + referrer_DESC + + """sinkholeId ascending""" + sinkholeId_ASC + + """sinkholeId descending""" + sinkholeId_DESC + + """sourceAddress ascending""" + sourceAddress_ASC + + """sourceAddress descending""" + sourceAddress_DESC + + """uri ascending""" + uri_ASC + + """uri descending""" + uri_DESC + + """url ascending""" + url_ASC + + """url descending""" + url_DESC + + """userAgent ascending""" + userAgent_ASC + + """userAgent descending""" + userAgent_DESC +} + +"""""" +enum AccountSinkholeRequestLogsAdaptiveOrderBy { + """body ascending""" + body_ASC + + """body descending""" + body_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """destinationAddress ascending""" + destinationAddress_ASC + + """destinationAddress descending""" + destinationAddress_DESC + + """headers ascending""" + headers_ASC + + """headers descending""" + headers_DESC + + """host ascending""" + host_ASC + + """host descending""" + host_DESC + + """method ascending""" + method_ASC + + """method descending""" + method_DESC + + """r2Path ascending""" + r2Path_ASC + + """r2Path descending""" + r2Path_DESC + + """referrer ascending""" + referrer_ASC + + """referrer descending""" + referrer_DESC + + """sampleInterval ascending""" + sampleInterval_ASC + + """sampleInterval descending""" + sampleInterval_DESC + + """sinkholeId ascending""" + sinkholeId_ASC + + """sinkholeId descending""" + sinkholeId_DESC + + """sourceAddress ascending""" + sourceAddress_ASC + + """sourceAddress descending""" + sourceAddress_DESC + + """uri ascending""" + uri_ASC + + """uri descending""" + uri_DESC + + """url ascending""" + url_ASC + + """url descending""" + url_DESC + + """userAgent ascending""" + userAgent_ASC + + """userAgent descending""" + userAgent_DESC +} + +"""Sippy operations with adaptive sampling""" +type AccountSippyOperationsAdaptiveGroups { + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountSippyOperationsAdaptiveGroupsConfidence! + + """Total number of Sippy operations""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountSippyOperationsAdaptiveGroupsDimensions + + """The sum of values for a metric per dimension""" + sum: AccountSippyOperationsAdaptiveGroupsSum +} + +"""""" +type AccountSippyOperationsAdaptiveGroupsConfidence { + """Total number of Sippy operations, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! + + """ + The sum of values for a metric per dimension, with confidence intervals + """ + sum: AccountSippyOperationsAdaptiveGroupsSumConfidence +} + +"""""" +type AccountSippyOperationsAdaptiveGroupsDimensions { + """Operation's name""" + action: string! + + """Name of the R2 bucket""" + bucket: string! + + """Operation timestamp, truncated to start of a day""" + date: Date! + + """Operation timestamp""" + datetime: Time! + + """Operation timestamp, truncated to start of an hour""" + datetimeHour: Time! + + """Operation timestamp, truncated to start of an minute""" + datetimeMinute: Time! + + """Operation's initiator (eyeball / Sippy)""" + initiator: string! + + """Object key the operation was made for""" + object: string! + + """Number of bytes transferred as part of the operation""" + size: uint64! + + """Operation's response HTTP code""" + status: uint16! + + """Operation's target (upstream / R2)""" + target: string! +} + +"""""" +input AccountSippyOperationsAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountSippyOperationsAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountSippyOperationsAdaptiveGroupsFilter_InputObject!] + + """""" + action: string + + """""" + action_geq: string + + """""" + action_gt: string + + """""" + action_in: [string!] + + """""" + action_leq: string + + """""" + action_like: string + + """""" + action_lt: string + + """""" + action_neq: string + + """""" + action_notin: [string!] + + """""" + action_notlike: string + + """""" + bucket: string + + """""" + bucket_geq: string + + """""" + bucket_gt: string + + """""" + bucket_in: [string!] + + """""" + bucket_leq: string + + """""" + bucket_like: string + + """""" + bucket_lt: string + + """""" + bucket_neq: string + + """""" + bucket_notin: [string!] + + """""" + bucket_notlike: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + initiator: string + + """""" + initiator_geq: string + + """""" + initiator_gt: string + + """""" + initiator_in: [string!] + + """""" + initiator_leq: string + + """""" + initiator_like: string + + """""" + initiator_lt: string + + """""" + initiator_neq: string + + """""" + initiator_notin: [string!] + + """""" + initiator_notlike: string + + """""" + object: string + + """""" + object_geq: string + + """""" + object_gt: string + + """""" + object_in: [string!] + + """""" + object_leq: string + + """""" + object_like: string + + """""" + object_lt: string + + """""" + object_neq: string + + """""" + object_notin: [string!] + + """""" + object_notlike: string + + """""" + size: uint64 + + """""" + size_geq: uint64 + + """""" + size_gt: uint64 + + """""" + size_in: [uint64!] + + """""" + size_leq: uint64 + + """""" + size_lt: uint64 + + """""" + size_neq: uint64 + + """""" + size_notin: [uint64!] + + """""" + status: uint16 + + """""" + status_geq: uint16 + + """""" + status_gt: uint16 + + """""" + status_in: [uint16!] + + """""" + status_leq: uint16 + + """""" + status_lt: uint16 + + """""" + status_neq: uint16 + + """""" + status_notin: [uint16!] + + """""" + target: string + + """""" + target_geq: string + + """""" + target_gt: string + + """""" + target_in: [string!] + + """""" + target_leq: string + + """""" + target_like: string + + """""" + target_lt: string + + """""" + target_neq: string + + """""" + target_notin: [string!] + + """""" + target_notlike: string +} + +"""""" +enum AccountSippyOperationsAdaptiveGroupsOrderBy { + """action ascending""" + action_ASC + + """action descending""" + action_DESC + + """bucket ascending""" + bucket_ASC + + """bucket descending""" + bucket_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """initiator ascending""" + initiator_ASC + + """initiator descending""" + initiator_DESC + + """object ascending""" + object_ASC + + """object descending""" + object_DESC + + """size ascending""" + size_ASC + + """size descending""" + size_DESC + + """status ascending""" + status_ASC + + """status descending""" + status_DESC + + """sum(size) ascending""" + sum_size_ASC + + """sum(size) descending""" + sum_size_DESC + + """target ascending""" + target_ASC + + """target descending""" + target_DESC +} + +"""""" +type AccountSippyOperationsAdaptiveGroupsSum { + """Total bytes transferred""" + size: uint64! +} + +"""""" +type AccountSippyOperationsAdaptiveGroupsSumConfidence { + """Confidence interval for the corresponding point estimate""" + size: Confidence! +} + +"""Network analytics data for Spectrum traffic""" +type AccountSpectrumNetworkAnalyticsAdaptiveGroups { + """The average of values for a metric per dimension""" + avg: AccountSpectrumNetworkAnalyticsAdaptiveGroupsAvg + + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountSpectrumNetworkAnalyticsAdaptiveGroupsConfidence! + + """List of dimensions to group by""" + dimensions: AccountSpectrumNetworkAnalyticsAdaptiveGroupsDimensions + + """The sum of values for a metric per dimension""" + sum: AccountSpectrumNetworkAnalyticsAdaptiveGroupsSum +} + +"""""" +type AccountSpectrumNetworkAnalyticsAdaptiveGroupsAvg { + """ + Sum of bits received, divided by 1 second, providing a per-second bit rate when grouped by datetime + """ + bitRate: uint64! + + """ + Sum of bits received, divided by 86400 seconds, providing a per-second bit rate when grouped by date + """ + bitRateDay: uint64! + + """ + Sum of bits received, divided by 900 seconds, providing a per-second bit rate when grouped by datetimeFifteenMinutes + """ + bitRateFifteenMinutes: uint64! + + """ + Sum of bits received, divided by 300 seconds, providing a per-second bit rate when grouped by datetimeFiveMinutes + """ + bitRateFiveMinutes: uint64! + + """ + Sum of bits received, divided by 3600 seconds, providing a per-second bit rate when grouped by datetimeHour + """ + bitRateHour: uint64! + + """ + Sum of bits received, divided by 60 seconds, providing a per-second bit rate when grouped by datetimeMinute + """ + bitRateMinute: uint64! + + """ + Sum of bits received, divided by 10 seconds, providing a per-second bit rate when grouped by datetimeTenSeconds + """ + bitRateTenSeconds: uint64! + + """ + Sum of packets received, divided by 1 second, providing a per-second packet rate when grouped by datetime + """ + packetRate: uint64! + + """ + Sum of packets received, divided by 86400 seconds, providing a per-second packet rate when grouped by date + """ + packetRateDay: uint64! + + """ + Sum of packets received, divided by 900 seconds, providing a per-second packet rate when grouped by datetimeFifteenMinutes + """ + packetRateFifteenMinutes: uint64! + + """ + Sum of packets received, divided by 300 seconds, providing a per-second packet rate when grouped by datetimeFiveMinutes + """ + packetRateFiveMinutes: uint64! + + """ + Sum of packets received, divided by 3600 seconds, providing a per-second packet rate when grouped by datetimeHour + """ + packetRateHour: uint64! + + """ + Sum of packets received, divided by 60 seconds, providing a per-second packet rate when grouped by datetimeMinute + """ + packetRateMinute: uint64! + + """ + Sum of packets received, divided by 10 seconds, providing a per-second packet rate when grouped by datetimeTenSeconds + """ + packetRateTenSeconds: uint64! +} + +"""""" +type AccountSpectrumNetworkAnalyticsAdaptiveGroupsAvgConfidence { + """Confidence interval for the corresponding point estimate""" + bitRate: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateDay: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateFifteenMinutes: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateFiveMinutes: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateHour: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateMinute: Confidence! + + """Confidence interval for the corresponding point estimate""" + bitRateTenSeconds: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRate: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateDay: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateFifteenMinutes: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateFiveMinutes: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateHour: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateMinute: Confidence! + + """Confidence interval for the corresponding point estimate""" + packetRateTenSeconds: Confidence! +} + +"""""" +type AccountSpectrumNetworkAnalyticsAdaptiveGroupsConfidence { + """ + The average of values for a metric per dimension, with confidence intervals + """ + avg: AccountSpectrumNetworkAnalyticsAdaptiveGroupsAvgConfidence + + """Confidence level that was requested""" + level: float64! + + """ + The sum of values for a metric per dimension, with confidence intervals + """ + sum: AccountSpectrumNetworkAnalyticsAdaptiveGroupsSumConfidence +} + +"""""" +type AccountSpectrumNetworkAnalyticsAdaptiveGroupsDimensions { + """Application tag associated with the packet""" + applicationTag: string! + + """ + City where the Cloudflare datacenter that received the packet is located + """ + coloCity: string! + + """ + Cloudflare datacenter that received the packet (nearest IATA airport code) + """ + coloCode: string! + + """ + Country where the Cloudflare datacenter that received the packet is located (ISO 3166-1 alpha-2) + """ + coloCountry: string! + + """ + Latitude and longitude where the Cloudflare datacenter that received the packet is located (Geohash encoding) + """ + coloGeohash: string! + + """ + Cloudflare datacenter that received the packet (unique site identifier) + """ + coloName: string! + + """Date that the packet was received""" + date: Date! + + """Date and time that the packet was received""" + datetime: Time! + + """ + Date and time that the packet was received, rounded to the start of the nearest fifteen minutes + """ + datetimeFifteenMinutes: Time! + + """ + Date and time that the packet was received, rounded to the start of the nearest five minutes + """ + datetimeFiveMinutes: Time! + + """ + Date and time that the packet was received, rounded to the start of the nearest hour + """ + datetimeHour: Time! + + """ + Date and time that the packet was received, rounded to the start of the nearest minute + """ + datetimeMinute: Time! + + """ + Date and time that the packet was received, rounded to the start of the nearest ten seconds + """ + datetimeTenSeconds: Time! + + """ + ASN associated with the destination IP of the packet, or 0 if there was no mapping available + """ + destinationAsn: uint32! + + """ + Name of ASN associated with the destination IP of the packet, if available + """ + destinationAsnName: string! + + """ + Country where the destination IP of the packet is located (ISO 3166-1 alpha-2) + """ + destinationCountry: string! + + """ + Latitude and longitude where the destination IP of the packet is located (Geohash encoding) + """ + destinationGeohash: string! + + """Value of the Destination Port header field in the TCP or UDP packet""" + destinationPort: uint16! + + """ + Direction of the packet relative to the customer network (possible values: inbound, outbound, lateral) + """ + direction: string! + + """ + Value of the Ethertype header field in the Ethernet packet (2048 for IPv4; 34525 for IPv6) + """ + ethertype: uint16! + + """Value of the Checkusm header field in the GRE packet""" + greChecksum: uint16! + + """Value of the Ethertype header field in the GRE packet""" + greEthertype: uint16! + + """Length of the GRE packet header, in bytes""" + greHeaderLength: uint16! + + """Value of the Key header field in the GRE packet""" + greKey: uint32! + + """Value of the Sequence Number header field in the GRE packet""" + greSequenceNumber: uint32! + + """Value of the Version header field in the GRE packet""" + greVersion: uint8! + + """Value of the Checkusm header field in the ICMP packet""" + icmpChecksum: uint16! + + """Value of the Code header field in the ICMP packet""" + icmpCode: uint8! + + """Value of the Type header field in the ICMP packet""" + icmpType: uint8! + + """ + Value of the Destination Address header field in the IPv4 or IPv6 packet + """ + ipDestinationAddress: string! + + """ + Computed subnet of the Destination Address header field in the IPv4 or IPv6 packet (/24 for IPv4; /48 for IPv6) + """ + ipDestinationSubnet: string! + + """Value of the Fragment Offset header field in the IPv4 or IPv6 packet""" + ipFragmentOffset: uint16! + + """Length of the IPv4 or IPv6 packet header, in bytes""" + ipHeaderLength: uint16! + + """Value of the More Fragments header field in the IPv4 or IPv6 packet""" + ipMoreFragments: uint8! + + """Value of the Protocol header field in the IPv4 or IPv6 packet""" + ipProtocol: uint8! + + """ + Name of the protocol specified by the Protocol header field in the IPv4 or IPv6 packet + """ + ipProtocolName: string! + + """Value of the Source Address header field in the IPv4 or IPv6 packet""" + ipSourceAddress: string! + + """ + Computed subnet of the Source Address header field in the IPv4 or IPv6 packet (/24 for IPv4; /48 for IPv6) + """ + ipSourceSubnet: string! + + """Total length of the IPv4 or IPv6 packet, in bytes""" + ipTotalLength: uint16! + + """ + Total length of the IPv4 or IPv6 packet, in bytes, with the last two digits truncated + """ + ipTotalLengthBuckets: uint16! + + """ + Value of the TTL header field in the IPv4 packet or the Hop Limit header field in the IPv6 packet + """ + ipTtl: uint8! + + """ + Value of the TTL header field in the IPv4 packet or the Hop Limit header field in the IPv6 packet, with the last digit truncated + """ + ipTtlBuckets: uint8! + + """Value of the Checksum header field in the IPv4 packet""" + ipv4Checksum: uint16! + + """Value of the Don't Fragment header field in the IPv4 packet""" + ipv4DontFragment: uint8! + + """ + Value of the Differentiated Services Code Point header field in the IPv4 packet + """ + ipv4Dscp: uint8! + + """ + Value of the Explicit Congestion Notification header field in the IPv4 packet + """ + ipv4Ecn: uint8! + + """Value of the Identification header field in the IPv4 packet""" + ipv4Identification: uint16! + + """List of Options numbers included in the IPv4 packet header""" + ipv4Options: string! + + """ + Value of the Differentiated Services Code Point header field in the IPv6 packet + """ + ipv6Dscp: uint8! + + """ + Value of the Explicit Congestion Notification header field in the IPv6 packet + """ + ipv6Ecn: uint8! + + """List of Extension Header numbers included in the IPv6 packet header""" + ipv6ExtensionHeaders: string! + + """Value of the Flow Label header field in the IPv6 packet""" + ipv6FlowLabel: uint32! + + """Value of the Identification extension header field in the IPv6 packet""" + ipv6Identification: uint32! + + """IP lease tag associated with the packet""" + leaseTag: string! + + """ + Which system dropped the packet (possible values: dosd, flowtrackd, magic-firewall) + """ + mitigationSystem: string! + + """The action that was taken on the packet (possible values: pass, drop)""" + outcome: string! + + """IP prefix tag associated with the packet""" + prefixTag: string! + + """ABR sample interval""" + sampleInterval: uint32! + + """ + ASN associated with the source IP of the packet, or 0 if there was no mapping available + """ + sourceAsn: uint32! + + """Name of ASN associated with the source IP of the packet, if available""" + sourceAsnName: string! + + """ + Country where the source IP of the packet is located (ISO 3166-1 alpha-2) + """ + sourceCountry: string! + + """ + Latitude and longitude where the source IP of the packet is located (Geohash encoding) + """ + sourceGeohash: string! + + """Value of the Source Port header field in the TCP or UDP packet""" + sourcePort: uint16! + + """Value of the Acknowledgement Number header field in the TCP packet""" + tcpAcknowledgementNumber: uint32! + + """Value of the Checkusm header field in the TCP packet""" + tcpChecksum: uint16! + + """Value of the Data Offset header field in the TCP packet""" + tcpDataOffset: uint16! + + """Value of the Flags header field in the TCP packet""" + tcpFlags: uint8! + + """ + Human-readable string representation of the Flags header field in the TCP packet + """ + tcpFlagsString: string! + + """Value of the MSS option header field in the TCP packet""" + tcpMss: uint16! + + """List of Options numbers included in the TCP packet header""" + tcpOptions: string! + + """Value of the SACK Blocks option header field in the TCP packet""" + tcpSackBlocks: string! + + """Value of the SACK Permitted option header field in the TCP packet""" + tcpSackPermitted: uint8! + + """Value of the Sequence Number header field in the TCP packet""" + tcpSequenceNumber: uint32! + + """ + Value of the Timestamp Echo Reply option header field in the TCP packet + """ + tcpTimestampEcr: uint32! + + """Value of the Timestamp option header field in the TCP packet""" + tcpTimestampValue: uint32! + + """Value of the Urgent Pointer header field in the TCP packet""" + tcpUrgentPointer: uint16! + + """Value of the Window Scale option header field in the TCP packet""" + tcpWindowScale: uint16! + + """Value of the Window Size header field in the TCP packet""" + tcpWindowSize: uint16! + + """Value of the Checkusm header field in the UDP packet""" + udpChecksum: uint16! + + """Value of the Payload Length header field in the UDP packet""" + udpPayloadLength: uint16! +} + +"""""" +input AccountSpectrumNetworkAnalyticsAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountSpectrumNetworkAnalyticsAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountSpectrumNetworkAnalyticsAdaptiveGroupsFilter_InputObject!] + + """""" + applicationTag: string + + """""" + applicationTag_geq: string + + """""" + applicationTag_gt: string + + """""" + applicationTag_in: [string!] + + """""" + applicationTag_leq: string + + """""" + applicationTag_like: string + + """""" + applicationTag_lt: string + + """""" + applicationTag_neq: string + + """""" + applicationTag_notin: [string!] + + """""" + applicationTag_notlike: string + + """""" + coloCity: string + + """""" + coloCity_geq: string + + """""" + coloCity_gt: string + + """""" + coloCity_in: [string!] + + """""" + coloCity_leq: string + + """""" + coloCity_like: string + + """""" + coloCity_lt: string + + """""" + coloCity_neq: string + + """""" + coloCity_notin: [string!] + + """""" + coloCity_notlike: string + + """""" + coloCode: string + + """""" + coloCode_geq: string + + """""" + coloCode_gt: string + + """""" + coloCode_in: [string!] + + """""" + coloCode_leq: string + + """""" + coloCode_like: string + + """""" + coloCode_lt: string + + """""" + coloCode_neq: string + + """""" + coloCode_notin: [string!] + + """""" + coloCode_notlike: string + + """""" + coloCountry: string + + """""" + coloCountry_geq: string + + """""" + coloCountry_gt: string + + """""" + coloCountry_in: [string!] + + """""" + coloCountry_leq: string + + """""" + coloCountry_like: string + + """""" + coloCountry_lt: string + + """""" + coloCountry_neq: string + + """""" + coloCountry_notin: [string!] + + """""" + coloCountry_notlike: string + + """""" + coloGeohash: string + + """""" + coloGeohash_geq: string + + """""" + coloGeohash_gt: string + + """""" + coloGeohash_in: [string!] + + """""" + coloGeohash_leq: string + + """""" + coloGeohash_like: string + + """""" + coloGeohash_lt: string + + """""" + coloGeohash_neq: string + + """""" + coloGeohash_notin: [string!] + + """""" + coloGeohash_notlike: string + + """""" + coloName: string + + """""" + coloName_geq: string + + """""" + coloName_gt: string + + """""" + coloName_in: [string!] + + """""" + coloName_leq: string + + """""" + coloName_like: string + + """""" + coloName_lt: string + + """""" + coloName_neq: string + + """""" + coloName_notin: [string!] + + """""" + coloName_notlike: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetimeTenSeconds: Time + + """""" + datetimeTenSeconds_geq: Time + + """""" + datetimeTenSeconds_gt: Time + + """""" + datetimeTenSeconds_in: [Time!] + + """""" + datetimeTenSeconds_leq: Time + + """""" + datetimeTenSeconds_lt: Time + + """""" + datetimeTenSeconds_neq: Time + + """""" + datetimeTenSeconds_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + destinationAsn: uint32 + + """""" + destinationAsnName: string + + """""" + destinationAsnName_geq: string + + """""" + destinationAsnName_gt: string + + """""" + destinationAsnName_in: [string!] + + """""" + destinationAsnName_leq: string + + """""" + destinationAsnName_like: string + + """""" + destinationAsnName_lt: string + + """""" + destinationAsnName_neq: string + + """""" + destinationAsnName_notin: [string!] + + """""" + destinationAsnName_notlike: string + + """""" + destinationAsn_geq: uint32 + + """""" + destinationAsn_gt: uint32 + + """""" + destinationAsn_in: [uint32!] + + """""" + destinationAsn_leq: uint32 + + """""" + destinationAsn_lt: uint32 + + """""" + destinationAsn_neq: uint32 + + """""" + destinationAsn_notin: [uint32!] + + """""" + destinationCountry: string + + """""" + destinationCountry_geq: string + + """""" + destinationCountry_gt: string + + """""" + destinationCountry_in: [string!] + + """""" + destinationCountry_leq: string + + """""" + destinationCountry_like: string + + """""" + destinationCountry_lt: string + + """""" + destinationCountry_neq: string + + """""" + destinationCountry_notin: [string!] + + """""" + destinationCountry_notlike: string + + """""" + destinationGeohash: string + + """""" + destinationGeohash_geq: string + + """""" + destinationGeohash_gt: string + + """""" + destinationGeohash_in: [string!] + + """""" + destinationGeohash_leq: string + + """""" + destinationGeohash_like: string + + """""" + destinationGeohash_lt: string + + """""" + destinationGeohash_neq: string + + """""" + destinationGeohash_notin: [string!] + + """""" + destinationGeohash_notlike: string + + """""" + destinationPort: uint16 + + """""" + destinationPort_geq: uint16 + + """""" + destinationPort_gt: uint16 + + """""" + destinationPort_in: [uint16!] + + """""" + destinationPort_leq: uint16 + + """""" + destinationPort_lt: uint16 + + """""" + destinationPort_neq: uint16 + + """""" + destinationPort_notin: [uint16!] + + """""" + direction: string + + """""" + direction_geq: string + + """""" + direction_gt: string + + """""" + direction_in: [string!] + + """""" + direction_leq: string + + """""" + direction_like: string + + """""" + direction_lt: string + + """""" + direction_neq: string + + """""" + direction_notin: [string!] + + """""" + direction_notlike: string + + """""" + ethertype: uint16 + + """""" + ethertype_geq: uint16 + + """""" + ethertype_gt: uint16 + + """""" + ethertype_in: [uint16!] + + """""" + ethertype_leq: uint16 + + """""" + ethertype_lt: uint16 + + """""" + ethertype_neq: uint16 + + """""" + ethertype_notin: [uint16!] + + """""" + greChecksum: uint16 + + """""" + greChecksum_geq: uint16 + + """""" + greChecksum_gt: uint16 + + """""" + greChecksum_in: [uint16!] + + """""" + greChecksum_leq: uint16 + + """""" + greChecksum_lt: uint16 + + """""" + greChecksum_neq: uint16 + + """""" + greChecksum_notin: [uint16!] + + """""" + greEthertype: uint16 + + """""" + greEthertype_geq: uint16 + + """""" + greEthertype_gt: uint16 + + """""" + greEthertype_in: [uint16!] + + """""" + greEthertype_leq: uint16 + + """""" + greEthertype_lt: uint16 + + """""" + greEthertype_neq: uint16 + + """""" + greEthertype_notin: [uint16!] + + """""" + greHeaderLength: uint16 + + """""" + greHeaderLength_geq: uint16 + + """""" + greHeaderLength_gt: uint16 + + """""" + greHeaderLength_in: [uint16!] + + """""" + greHeaderLength_leq: uint16 + + """""" + greHeaderLength_lt: uint16 + + """""" + greHeaderLength_neq: uint16 + + """""" + greHeaderLength_notin: [uint16!] + + """""" + greKey: uint32 + + """""" + greKey_geq: uint32 + + """""" + greKey_gt: uint32 + + """""" + greKey_in: [uint32!] + + """""" + greKey_leq: uint32 + + """""" + greKey_lt: uint32 + + """""" + greKey_neq: uint32 + + """""" + greKey_notin: [uint32!] + + """""" + greSequenceNumber: uint32 + + """""" + greSequenceNumber_geq: uint32 + + """""" + greSequenceNumber_gt: uint32 + + """""" + greSequenceNumber_in: [uint32!] + + """""" + greSequenceNumber_leq: uint32 + + """""" + greSequenceNumber_lt: uint32 + + """""" + greSequenceNumber_neq: uint32 + + """""" + greSequenceNumber_notin: [uint32!] + + """""" + greVersion: uint8 + + """""" + greVersion_geq: uint8 + + """""" + greVersion_gt: uint8 + + """""" + greVersion_in: bytes + + """""" + greVersion_leq: uint8 + + """""" + greVersion_lt: uint8 + + """""" + greVersion_neq: uint8 + + """""" + greVersion_notin: bytes + + """""" + icmpChecksum: uint16 + + """""" + icmpChecksum_geq: uint16 + + """""" + icmpChecksum_gt: uint16 + + """""" + icmpChecksum_in: [uint16!] + + """""" + icmpChecksum_leq: uint16 + + """""" + icmpChecksum_lt: uint16 + + """""" + icmpChecksum_neq: uint16 + + """""" + icmpChecksum_notin: [uint16!] + + """""" + icmpCode: uint8 + + """""" + icmpCode_geq: uint8 + + """""" + icmpCode_gt: uint8 + + """""" + icmpCode_in: bytes + + """""" + icmpCode_leq: uint8 + + """""" + icmpCode_lt: uint8 + + """""" + icmpCode_neq: uint8 + + """""" + icmpCode_notin: bytes + + """""" + icmpType: uint8 + + """""" + icmpType_geq: uint8 + + """""" + icmpType_gt: uint8 + + """""" + icmpType_in: bytes + + """""" + icmpType_leq: uint8 + + """""" + icmpType_lt: uint8 + + """""" + icmpType_neq: uint8 + + """""" + icmpType_notin: bytes + + """""" + ipDestinationAddress: string + + """""" + ipDestinationAddress_geq: string + + """""" + ipDestinationAddress_gt: string + + """""" + ipDestinationAddress_in: [string!] + + """""" + ipDestinationAddress_leq: string + + """""" + ipDestinationAddress_like: string + + """""" + ipDestinationAddress_lt: string + + """""" + ipDestinationAddress_neq: string + + """""" + ipDestinationAddress_notin: [string!] + + """""" + ipDestinationAddress_notlike: string + + """""" + ipDestinationSubnet: string + + """""" + ipDestinationSubnet_geq: string + + """""" + ipDestinationSubnet_gt: string + + """""" + ipDestinationSubnet_in: [string!] + + """""" + ipDestinationSubnet_leq: string + + """""" + ipDestinationSubnet_like: string + + """""" + ipDestinationSubnet_lt: string + + """""" + ipDestinationSubnet_neq: string + + """""" + ipDestinationSubnet_notin: [string!] + + """""" + ipDestinationSubnet_notlike: string + + """""" + ipFragmentOffset: uint16 + + """""" + ipFragmentOffset_geq: uint16 + + """""" + ipFragmentOffset_gt: uint16 + + """""" + ipFragmentOffset_in: [uint16!] + + """""" + ipFragmentOffset_leq: uint16 + + """""" + ipFragmentOffset_lt: uint16 + + """""" + ipFragmentOffset_neq: uint16 + + """""" + ipFragmentOffset_notin: [uint16!] + + """""" + ipHeaderLength: uint16 + + """""" + ipHeaderLength_geq: uint16 + + """""" + ipHeaderLength_gt: uint16 + + """""" + ipHeaderLength_in: [uint16!] + + """""" + ipHeaderLength_leq: uint16 + + """""" + ipHeaderLength_lt: uint16 + + """""" + ipHeaderLength_neq: uint16 + + """""" + ipHeaderLength_notin: [uint16!] + + """""" + ipMoreFragments: uint8 + + """""" + ipMoreFragments_geq: uint8 + + """""" + ipMoreFragments_gt: uint8 + + """""" + ipMoreFragments_in: bytes + + """""" + ipMoreFragments_leq: uint8 + + """""" + ipMoreFragments_lt: uint8 + + """""" + ipMoreFragments_neq: uint8 + + """""" + ipMoreFragments_notin: bytes + + """""" + ipProtocol: uint8 + + """""" + ipProtocolName: string + + """""" + ipProtocolName_geq: string + + """""" + ipProtocolName_gt: string + + """""" + ipProtocolName_in: [string!] + + """""" + ipProtocolName_leq: string + + """""" + ipProtocolName_like: string + + """""" + ipProtocolName_lt: string + + """""" + ipProtocolName_neq: string + + """""" + ipProtocolName_notin: [string!] + + """""" + ipProtocolName_notlike: string + + """""" + ipProtocol_geq: uint8 + + """""" + ipProtocol_gt: uint8 + + """""" + ipProtocol_in: bytes + + """""" + ipProtocol_leq: uint8 + + """""" + ipProtocol_lt: uint8 + + """""" + ipProtocol_neq: uint8 + + """""" + ipProtocol_notin: bytes + + """""" + ipSourceAddress: string + + """""" + ipSourceAddress_geq: string + + """""" + ipSourceAddress_gt: string + + """""" + ipSourceAddress_in: [string!] + + """""" + ipSourceAddress_leq: string + + """""" + ipSourceAddress_like: string + + """""" + ipSourceAddress_lt: string + + """""" + ipSourceAddress_neq: string + + """""" + ipSourceAddress_notin: [string!] + + """""" + ipSourceAddress_notlike: string + + """""" + ipSourceSubnet: string + + """""" + ipSourceSubnet_geq: string + + """""" + ipSourceSubnet_gt: string + + """""" + ipSourceSubnet_in: [string!] + + """""" + ipSourceSubnet_leq: string + + """""" + ipSourceSubnet_like: string + + """""" + ipSourceSubnet_lt: string + + """""" + ipSourceSubnet_neq: string + + """""" + ipSourceSubnet_notin: [string!] + + """""" + ipSourceSubnet_notlike: string + + """""" + ipTotalLength: uint16 + + """""" + ipTotalLengthBuckets: uint16 + + """""" + ipTotalLengthBuckets_geq: uint16 + + """""" + ipTotalLengthBuckets_gt: uint16 + + """""" + ipTotalLengthBuckets_in: [uint16!] + + """""" + ipTotalLengthBuckets_leq: uint16 + + """""" + ipTotalLengthBuckets_lt: uint16 + + """""" + ipTotalLengthBuckets_neq: uint16 + + """""" + ipTotalLengthBuckets_notin: [uint16!] + + """""" + ipTotalLength_geq: uint16 + + """""" + ipTotalLength_gt: uint16 + + """""" + ipTotalLength_in: [uint16!] + + """""" + ipTotalLength_leq: uint16 + + """""" + ipTotalLength_lt: uint16 + + """""" + ipTotalLength_neq: uint16 + + """""" + ipTotalLength_notin: [uint16!] + + """""" + ipTtl: uint8 + + """""" + ipTtlBuckets: uint8 + + """""" + ipTtlBuckets_geq: uint8 + + """""" + ipTtlBuckets_gt: uint8 + + """""" + ipTtlBuckets_in: bytes + + """""" + ipTtlBuckets_leq: uint8 + + """""" + ipTtlBuckets_lt: uint8 + + """""" + ipTtlBuckets_neq: uint8 + + """""" + ipTtlBuckets_notin: bytes + + """""" + ipTtl_geq: uint8 + + """""" + ipTtl_gt: uint8 + + """""" + ipTtl_in: bytes + + """""" + ipTtl_leq: uint8 + + """""" + ipTtl_lt: uint8 + + """""" + ipTtl_neq: uint8 + + """""" + ipTtl_notin: bytes + + """""" + ipv4Checksum: uint16 + + """""" + ipv4Checksum_geq: uint16 + + """""" + ipv4Checksum_gt: uint16 + + """""" + ipv4Checksum_in: [uint16!] + + """""" + ipv4Checksum_leq: uint16 + + """""" + ipv4Checksum_lt: uint16 + + """""" + ipv4Checksum_neq: uint16 + + """""" + ipv4Checksum_notin: [uint16!] + + """""" + ipv4DontFragment: uint8 + + """""" + ipv4DontFragment_geq: uint8 + + """""" + ipv4DontFragment_gt: uint8 + + """""" + ipv4DontFragment_in: bytes + + """""" + ipv4DontFragment_leq: uint8 + + """""" + ipv4DontFragment_lt: uint8 + + """""" + ipv4DontFragment_neq: uint8 + + """""" + ipv4DontFragment_notin: bytes + + """""" + ipv4Dscp: uint8 + + """""" + ipv4Dscp_geq: uint8 + + """""" + ipv4Dscp_gt: uint8 + + """""" + ipv4Dscp_in: bytes + + """""" + ipv4Dscp_leq: uint8 + + """""" + ipv4Dscp_lt: uint8 + + """""" + ipv4Dscp_neq: uint8 + + """""" + ipv4Dscp_notin: bytes + + """""" + ipv4Ecn: uint8 + + """""" + ipv4Ecn_geq: uint8 + + """""" + ipv4Ecn_gt: uint8 + + """""" + ipv4Ecn_in: bytes + + """""" + ipv4Ecn_leq: uint8 + + """""" + ipv4Ecn_lt: uint8 + + """""" + ipv4Ecn_neq: uint8 + + """""" + ipv4Ecn_notin: bytes + + """""" + ipv4Identification: uint16 + + """""" + ipv4Identification_geq: uint16 + + """""" + ipv4Identification_gt: uint16 + + """""" + ipv4Identification_in: [uint16!] + + """""" + ipv4Identification_leq: uint16 + + """""" + ipv4Identification_lt: uint16 + + """""" + ipv4Identification_neq: uint16 + + """""" + ipv4Identification_notin: [uint16!] + + """""" + ipv4Options: string + + """""" + ipv4Options_geq: string + + """""" + ipv4Options_gt: string + + """""" + ipv4Options_in: [string!] + + """""" + ipv4Options_leq: string + + """""" + ipv4Options_like: string + + """""" + ipv4Options_lt: string + + """""" + ipv4Options_neq: string + + """""" + ipv4Options_notin: [string!] + + """""" + ipv4Options_notlike: string + + """""" + ipv6Dscp: uint8 + + """""" + ipv6Dscp_geq: uint8 + + """""" + ipv6Dscp_gt: uint8 + + """""" + ipv6Dscp_in: bytes + + """""" + ipv6Dscp_leq: uint8 + + """""" + ipv6Dscp_lt: uint8 + + """""" + ipv6Dscp_neq: uint8 + + """""" + ipv6Dscp_notin: bytes + + """""" + ipv6Ecn: uint8 + + """""" + ipv6Ecn_geq: uint8 + + """""" + ipv6Ecn_gt: uint8 + + """""" + ipv6Ecn_in: bytes + + """""" + ipv6Ecn_leq: uint8 + + """""" + ipv6Ecn_lt: uint8 + + """""" + ipv6Ecn_neq: uint8 + + """""" + ipv6Ecn_notin: bytes + + """""" + ipv6ExtensionHeaders: string + + """""" + ipv6ExtensionHeaders_geq: string + + """""" + ipv6ExtensionHeaders_gt: string + + """""" + ipv6ExtensionHeaders_in: [string!] + + """""" + ipv6ExtensionHeaders_leq: string + + """""" + ipv6ExtensionHeaders_like: string + + """""" + ipv6ExtensionHeaders_lt: string + + """""" + ipv6ExtensionHeaders_neq: string + + """""" + ipv6ExtensionHeaders_notin: [string!] + + """""" + ipv6ExtensionHeaders_notlike: string + + """""" + ipv6FlowLabel: uint32 + + """""" + ipv6FlowLabel_geq: uint32 + + """""" + ipv6FlowLabel_gt: uint32 + + """""" + ipv6FlowLabel_in: [uint32!] + + """""" + ipv6FlowLabel_leq: uint32 + + """""" + ipv6FlowLabel_lt: uint32 + + """""" + ipv6FlowLabel_neq: uint32 + + """""" + ipv6FlowLabel_notin: [uint32!] + + """""" + ipv6Identification: uint32 + + """""" + ipv6Identification_geq: uint32 + + """""" + ipv6Identification_gt: uint32 + + """""" + ipv6Identification_in: [uint32!] + + """""" + ipv6Identification_leq: uint32 + + """""" + ipv6Identification_lt: uint32 + + """""" + ipv6Identification_neq: uint32 + + """""" + ipv6Identification_notin: [uint32!] + + """""" + leaseTag: string + + """""" + leaseTag_geq: string + + """""" + leaseTag_gt: string + + """""" + leaseTag_in: [string!] + + """""" + leaseTag_leq: string + + """""" + leaseTag_like: string + + """""" + leaseTag_lt: string + + """""" + leaseTag_neq: string + + """""" + leaseTag_notin: [string!] + + """""" + leaseTag_notlike: string + + """""" + mitigationSystem: string + + """""" + mitigationSystem_geq: string + + """""" + mitigationSystem_gt: string + + """""" + mitigationSystem_in: [string!] + + """""" + mitigationSystem_leq: string + + """""" + mitigationSystem_like: string + + """""" + mitigationSystem_lt: string + + """""" + mitigationSystem_neq: string + + """""" + mitigationSystem_notin: [string!] + + """""" + mitigationSystem_notlike: string + + """""" + outcome: string + + """""" + outcome_geq: string + + """""" + outcome_gt: string + + """""" + outcome_in: [string!] + + """""" + outcome_leq: string + + """""" + outcome_like: string + + """""" + outcome_lt: string + + """""" + outcome_neq: string + + """""" + outcome_notin: [string!] + + """""" + outcome_notlike: string + + """""" + prefixTag: string + + """""" + prefixTag_geq: string + + """""" + prefixTag_gt: string + + """""" + prefixTag_in: [string!] + + """""" + prefixTag_leq: string + + """""" + prefixTag_like: string + + """""" + prefixTag_lt: string + + """""" + prefixTag_neq: string + + """""" + prefixTag_notin: [string!] + + """""" + prefixTag_notlike: string + + """""" + sampleInterval: uint32 + + """""" + sampleInterval_geq: uint32 + + """""" + sampleInterval_gt: uint32 + + """""" + sampleInterval_in: [uint32!] + + """""" + sampleInterval_leq: uint32 + + """""" + sampleInterval_lt: uint32 + + """""" + sampleInterval_neq: uint32 + + """""" + sampleInterval_notin: [uint32!] + + """""" + sourceAsn: uint32 + + """""" + sourceAsnName: string + + """""" + sourceAsnName_geq: string + + """""" + sourceAsnName_gt: string + + """""" + sourceAsnName_in: [string!] + + """""" + sourceAsnName_leq: string + + """""" + sourceAsnName_like: string + + """""" + sourceAsnName_lt: string + + """""" + sourceAsnName_neq: string + + """""" + sourceAsnName_notin: [string!] + + """""" + sourceAsnName_notlike: string + + """""" + sourceAsn_geq: uint32 + + """""" + sourceAsn_gt: uint32 + + """""" + sourceAsn_in: [uint32!] + + """""" + sourceAsn_leq: uint32 + + """""" + sourceAsn_lt: uint32 + + """""" + sourceAsn_neq: uint32 + + """""" + sourceAsn_notin: [uint32!] + + """""" + sourceCountry: string + + """""" + sourceCountry_geq: string + + """""" + sourceCountry_gt: string + + """""" + sourceCountry_in: [string!] + + """""" + sourceCountry_leq: string + + """""" + sourceCountry_like: string + + """""" + sourceCountry_lt: string + + """""" + sourceCountry_neq: string + + """""" + sourceCountry_notin: [string!] + + """""" + sourceCountry_notlike: string + + """""" + sourceGeohash: string + + """""" + sourceGeohash_geq: string + + """""" + sourceGeohash_gt: string + + """""" + sourceGeohash_in: [string!] + + """""" + sourceGeohash_leq: string + + """""" + sourceGeohash_like: string + + """""" + sourceGeohash_lt: string + + """""" + sourceGeohash_neq: string + + """""" + sourceGeohash_notin: [string!] + + """""" + sourceGeohash_notlike: string + + """""" + sourcePort: uint16 + + """""" + sourcePort_geq: uint16 + + """""" + sourcePort_gt: uint16 + + """""" + sourcePort_in: [uint16!] + + """""" + sourcePort_leq: uint16 + + """""" + sourcePort_lt: uint16 + + """""" + sourcePort_neq: uint16 + + """""" + sourcePort_notin: [uint16!] + + """""" + tcpAcknowledgementNumber: uint32 + + """""" + tcpAcknowledgementNumber_geq: uint32 + + """""" + tcpAcknowledgementNumber_gt: uint32 + + """""" + tcpAcknowledgementNumber_in: [uint32!] + + """""" + tcpAcknowledgementNumber_leq: uint32 + + """""" + tcpAcknowledgementNumber_lt: uint32 + + """""" + tcpAcknowledgementNumber_neq: uint32 + + """""" + tcpAcknowledgementNumber_notin: [uint32!] + + """""" + tcpChecksum: uint16 + + """""" + tcpChecksum_geq: uint16 + + """""" + tcpChecksum_gt: uint16 + + """""" + tcpChecksum_in: [uint16!] + + """""" + tcpChecksum_leq: uint16 + + """""" + tcpChecksum_lt: uint16 + + """""" + tcpChecksum_neq: uint16 + + """""" + tcpChecksum_notin: [uint16!] + + """""" + tcpDataOffset: uint16 + + """""" + tcpDataOffset_geq: uint16 + + """""" + tcpDataOffset_gt: uint16 + + """""" + tcpDataOffset_in: [uint16!] + + """""" + tcpDataOffset_leq: uint16 + + """""" + tcpDataOffset_lt: uint16 + + """""" + tcpDataOffset_neq: uint16 + + """""" + tcpDataOffset_notin: [uint16!] + + """""" + tcpFlags: uint8 + + """""" + tcpFlagsString: string + + """""" + tcpFlagsString_geq: string + + """""" + tcpFlagsString_gt: string + + """""" + tcpFlagsString_in: [string!] + + """""" + tcpFlagsString_leq: string + + """""" + tcpFlagsString_like: string + + """""" + tcpFlagsString_lt: string + + """""" + tcpFlagsString_neq: string + + """""" + tcpFlagsString_notin: [string!] + + """""" + tcpFlagsString_notlike: string + + """""" + tcpFlags_geq: uint8 + + """""" + tcpFlags_gt: uint8 + + """""" + tcpFlags_in: bytes + + """""" + tcpFlags_leq: uint8 + + """""" + tcpFlags_lt: uint8 + + """""" + tcpFlags_neq: uint8 + + """""" + tcpFlags_notin: bytes + + """""" + tcpMss: uint16 + + """""" + tcpMss_geq: uint16 + + """""" + tcpMss_gt: uint16 + + """""" + tcpMss_in: [uint16!] + + """""" + tcpMss_leq: uint16 + + """""" + tcpMss_lt: uint16 + + """""" + tcpMss_neq: uint16 + + """""" + tcpMss_notin: [uint16!] + + """""" + tcpOptions: string + + """""" + tcpOptions_geq: string + + """""" + tcpOptions_gt: string + + """""" + tcpOptions_in: [string!] + + """""" + tcpOptions_leq: string + + """""" + tcpOptions_like: string + + """""" + tcpOptions_lt: string + + """""" + tcpOptions_neq: string + + """""" + tcpOptions_notin: [string!] + + """""" + tcpOptions_notlike: string + + """""" + tcpSackBlocks: string + + """""" + tcpSackBlocks_geq: string + + """""" + tcpSackBlocks_gt: string + + """""" + tcpSackBlocks_in: [string!] + + """""" + tcpSackBlocks_leq: string + + """""" + tcpSackBlocks_like: string + + """""" + tcpSackBlocks_lt: string + + """""" + tcpSackBlocks_neq: string + + """""" + tcpSackBlocks_notin: [string!] + + """""" + tcpSackBlocks_notlike: string + + """""" + tcpSackPermitted: uint8 + + """""" + tcpSackPermitted_geq: uint8 + + """""" + tcpSackPermitted_gt: uint8 + + """""" + tcpSackPermitted_in: bytes + + """""" + tcpSackPermitted_leq: uint8 + + """""" + tcpSackPermitted_lt: uint8 + + """""" + tcpSackPermitted_neq: uint8 + + """""" + tcpSackPermitted_notin: bytes + + """""" + tcpSequenceNumber: uint32 + + """""" + tcpSequenceNumber_geq: uint32 + + """""" + tcpSequenceNumber_gt: uint32 + + """""" + tcpSequenceNumber_in: [uint32!] + + """""" + tcpSequenceNumber_leq: uint32 + + """""" + tcpSequenceNumber_lt: uint32 + + """""" + tcpSequenceNumber_neq: uint32 + + """""" + tcpSequenceNumber_notin: [uint32!] + + """""" + tcpTimestampEcr: uint32 + + """""" + tcpTimestampEcr_geq: uint32 + + """""" + tcpTimestampEcr_gt: uint32 + + """""" + tcpTimestampEcr_in: [uint32!] + + """""" + tcpTimestampEcr_leq: uint32 + + """""" + tcpTimestampEcr_lt: uint32 + + """""" + tcpTimestampEcr_neq: uint32 + + """""" + tcpTimestampEcr_notin: [uint32!] + + """""" + tcpTimestampValue: uint32 + + """""" + tcpTimestampValue_geq: uint32 + + """""" + tcpTimestampValue_gt: uint32 + + """""" + tcpTimestampValue_in: [uint32!] + + """""" + tcpTimestampValue_leq: uint32 + + """""" + tcpTimestampValue_lt: uint32 + + """""" + tcpTimestampValue_neq: uint32 + + """""" + tcpTimestampValue_notin: [uint32!] + + """""" + tcpUrgentPointer: uint16 + + """""" + tcpUrgentPointer_geq: uint16 + + """""" + tcpUrgentPointer_gt: uint16 + + """""" + tcpUrgentPointer_in: [uint16!] + + """""" + tcpUrgentPointer_leq: uint16 + + """""" + tcpUrgentPointer_lt: uint16 + + """""" + tcpUrgentPointer_neq: uint16 + + """""" + tcpUrgentPointer_notin: [uint16!] + + """""" + tcpWindowScale: uint16 + + """""" + tcpWindowScale_geq: uint16 + + """""" + tcpWindowScale_gt: uint16 + + """""" + tcpWindowScale_in: [uint16!] + + """""" + tcpWindowScale_leq: uint16 + + """""" + tcpWindowScale_lt: uint16 + + """""" + tcpWindowScale_neq: uint16 + + """""" + tcpWindowScale_notin: [uint16!] + + """""" + tcpWindowSize: uint16 + + """""" + tcpWindowSize_geq: uint16 + + """""" + tcpWindowSize_gt: uint16 + + """""" + tcpWindowSize_in: [uint16!] + + """""" + tcpWindowSize_leq: uint16 + + """""" + tcpWindowSize_lt: uint16 + + """""" + tcpWindowSize_neq: uint16 + + """""" + tcpWindowSize_notin: [uint16!] + + """""" + udpChecksum: uint16 + + """""" + udpChecksum_geq: uint16 + + """""" + udpChecksum_gt: uint16 + + """""" + udpChecksum_in: [uint16!] + + """""" + udpChecksum_leq: uint16 + + """""" + udpChecksum_lt: uint16 + + """""" + udpChecksum_neq: uint16 + + """""" + udpChecksum_notin: [uint16!] + + """""" + udpPayloadLength: uint16 + + """""" + udpPayloadLength_geq: uint16 + + """""" + udpPayloadLength_gt: uint16 + + """""" + udpPayloadLength_in: [uint16!] + + """""" + udpPayloadLength_leq: uint16 + + """""" + udpPayloadLength_lt: uint16 + + """""" + udpPayloadLength_neq: uint16 + + """""" + udpPayloadLength_notin: [uint16!] +} + +"""""" +enum AccountSpectrumNetworkAnalyticsAdaptiveGroupsOrderBy { + """applicationTag ascending""" + applicationTag_ASC + + """applicationTag descending""" + applicationTag_DESC + + """avg(bitRateDay) ascending""" + avg_bitRateDay_ASC + + """avg(bitRateDay) descending""" + avg_bitRateDay_DESC + + """avg(bitRateFifteenMinutes) ascending""" + avg_bitRateFifteenMinutes_ASC + + """avg(bitRateFifteenMinutes) descending""" + avg_bitRateFifteenMinutes_DESC + + """avg(bitRateFiveMinutes) ascending""" + avg_bitRateFiveMinutes_ASC + + """avg(bitRateFiveMinutes) descending""" + avg_bitRateFiveMinutes_DESC + + """avg(bitRateHour) ascending""" + avg_bitRateHour_ASC + + """avg(bitRateHour) descending""" + avg_bitRateHour_DESC + + """avg(bitRateMinute) ascending""" + avg_bitRateMinute_ASC + + """avg(bitRateMinute) descending""" + avg_bitRateMinute_DESC + + """avg(bitRateTenSeconds) ascending""" + avg_bitRateTenSeconds_ASC + + """avg(bitRateTenSeconds) descending""" + avg_bitRateTenSeconds_DESC + + """avg(bitRate) ascending""" + avg_bitRate_ASC + + """avg(bitRate) descending""" + avg_bitRate_DESC + + """avg(packetRateDay) ascending""" + avg_packetRateDay_ASC + + """avg(packetRateDay) descending""" + avg_packetRateDay_DESC + + """avg(packetRateFifteenMinutes) ascending""" + avg_packetRateFifteenMinutes_ASC + + """avg(packetRateFifteenMinutes) descending""" + avg_packetRateFifteenMinutes_DESC + + """avg(packetRateFiveMinutes) ascending""" + avg_packetRateFiveMinutes_ASC + + """avg(packetRateFiveMinutes) descending""" + avg_packetRateFiveMinutes_DESC + + """avg(packetRateHour) ascending""" + avg_packetRateHour_ASC + + """avg(packetRateHour) descending""" + avg_packetRateHour_DESC + + """avg(packetRateMinute) ascending""" + avg_packetRateMinute_ASC + + """avg(packetRateMinute) descending""" + avg_packetRateMinute_DESC + + """avg(packetRateTenSeconds) ascending""" + avg_packetRateTenSeconds_ASC + + """avg(packetRateTenSeconds) descending""" + avg_packetRateTenSeconds_DESC + + """avg(packetRate) ascending""" + avg_packetRate_ASC + + """avg(packetRate) descending""" + avg_packetRate_DESC + + """coloCity ascending""" + coloCity_ASC + + """coloCity descending""" + coloCity_DESC + + """coloCode ascending""" + coloCode_ASC + + """coloCode descending""" + coloCode_DESC + + """coloCountry ascending""" + coloCountry_ASC + + """coloCountry descending""" + coloCountry_DESC + + """coloGeohash ascending""" + coloGeohash_ASC + + """coloGeohash descending""" + coloGeohash_DESC + + """coloName ascending""" + coloName_ASC + + """coloName descending""" + coloName_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetimeTenSeconds ascending""" + datetimeTenSeconds_ASC + + """datetimeTenSeconds descending""" + datetimeTenSeconds_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """destinationAsnName ascending""" + destinationAsnName_ASC + + """destinationAsnName descending""" + destinationAsnName_DESC + + """destinationAsn ascending""" + destinationAsn_ASC + + """destinationAsn descending""" + destinationAsn_DESC + + """destinationCountry ascending""" + destinationCountry_ASC + + """destinationCountry descending""" + destinationCountry_DESC + + """destinationGeohash ascending""" + destinationGeohash_ASC + + """destinationGeohash descending""" + destinationGeohash_DESC + + """destinationPort ascending""" + destinationPort_ASC + + """destinationPort descending""" + destinationPort_DESC + + """destinationService ascending""" + destinationService_ASC + + """destinationService descending""" + destinationService_DESC + + """direction ascending""" + direction_ASC + + """direction descending""" + direction_DESC + + """ethertype ascending""" + ethertype_ASC + + """ethertype descending""" + ethertype_DESC + + """greChecksum ascending""" + greChecksum_ASC + + """greChecksum descending""" + greChecksum_DESC + + """greEthertype ascending""" + greEthertype_ASC + + """greEthertype descending""" + greEthertype_DESC + + """greHeaderLength ascending""" + greHeaderLength_ASC + + """greHeaderLength descending""" + greHeaderLength_DESC + + """greKey ascending""" + greKey_ASC + + """greKey descending""" + greKey_DESC + + """greSequenceNumber ascending""" + greSequenceNumber_ASC + + """greSequenceNumber descending""" + greSequenceNumber_DESC + + """greVersion ascending""" + greVersion_ASC + + """greVersion descending""" + greVersion_DESC + + """icmpChecksum ascending""" + icmpChecksum_ASC + + """icmpChecksum descending""" + icmpChecksum_DESC + + """icmpCode ascending""" + icmpCode_ASC + + """icmpCode descending""" + icmpCode_DESC + + """icmpType ascending""" + icmpType_ASC + + """icmpType descending""" + icmpType_DESC + + """ipDestinationAddress ascending""" + ipDestinationAddress_ASC + + """ipDestinationAddress descending""" + ipDestinationAddress_DESC + + """ipDestinationSubnet ascending""" + ipDestinationSubnet_ASC + + """ipDestinationSubnet descending""" + ipDestinationSubnet_DESC + + """ipFragmentOffset ascending""" + ipFragmentOffset_ASC + + """ipFragmentOffset descending""" + ipFragmentOffset_DESC + + """ipHeaderLength ascending""" + ipHeaderLength_ASC + + """ipHeaderLength descending""" + ipHeaderLength_DESC + + """ipMoreFragments ascending""" + ipMoreFragments_ASC + + """ipMoreFragments descending""" + ipMoreFragments_DESC + + """ipProtocolName ascending""" + ipProtocolName_ASC + + """ipProtocolName descending""" + ipProtocolName_DESC + + """ipProtocol ascending""" + ipProtocol_ASC + + """ipProtocol descending""" + ipProtocol_DESC + + """ipSourceAddress ascending""" + ipSourceAddress_ASC + + """ipSourceAddress descending""" + ipSourceAddress_DESC + + """ipSourceSubnet ascending""" + ipSourceSubnet_ASC + + """ipSourceSubnet descending""" + ipSourceSubnet_DESC + + """ipTotalLengthBuckets ascending""" + ipTotalLengthBuckets_ASC + + """ipTotalLengthBuckets descending""" + ipTotalLengthBuckets_DESC + + """ipTotalLength ascending""" + ipTotalLength_ASC + + """ipTotalLength descending""" + ipTotalLength_DESC + + """ipTtlBuckets ascending""" + ipTtlBuckets_ASC + + """ipTtlBuckets descending""" + ipTtlBuckets_DESC + + """ipTtl ascending""" + ipTtl_ASC + + """ipTtl descending""" + ipTtl_DESC + + """ipv4Checksum ascending""" + ipv4Checksum_ASC + + """ipv4Checksum descending""" + ipv4Checksum_DESC + + """ipv4DontFragment ascending""" + ipv4DontFragment_ASC + + """ipv4DontFragment descending""" + ipv4DontFragment_DESC + + """ipv4Dscp ascending""" + ipv4Dscp_ASC + + """ipv4Dscp descending""" + ipv4Dscp_DESC + + """ipv4Ecn ascending""" + ipv4Ecn_ASC + + """ipv4Ecn descending""" + ipv4Ecn_DESC + + """ipv4Identification ascending""" + ipv4Identification_ASC + + """ipv4Identification descending""" + ipv4Identification_DESC + + """ipv4Options ascending""" + ipv4Options_ASC + + """ipv4Options descending""" + ipv4Options_DESC + + """ipv6Dscp ascending""" + ipv6Dscp_ASC + + """ipv6Dscp descending""" + ipv6Dscp_DESC + + """ipv6Ecn ascending""" + ipv6Ecn_ASC + + """ipv6Ecn descending""" + ipv6Ecn_DESC + + """ipv6ExtensionHeaders ascending""" + ipv6ExtensionHeaders_ASC + + """ipv6ExtensionHeaders descending""" + ipv6ExtensionHeaders_DESC + + """ipv6FlowLabel ascending""" + ipv6FlowLabel_ASC + + """ipv6FlowLabel descending""" + ipv6FlowLabel_DESC + + """ipv6Identification ascending""" + ipv6Identification_ASC + + """ipv6Identification descending""" + ipv6Identification_DESC + + """leaseTag ascending""" + leaseTag_ASC + + """leaseTag descending""" + leaseTag_DESC + + """mitigationSystem ascending""" + mitigationSystem_ASC + + """mitigationSystem descending""" + mitigationSystem_DESC + + """outcome ascending""" + outcome_ASC + + """outcome descending""" + outcome_DESC + + """prefixTag ascending""" + prefixTag_ASC + + """prefixTag descending""" + prefixTag_DESC + + """sampleInterval ascending""" + sampleInterval_ASC + + """sampleInterval descending""" + sampleInterval_DESC + + """sourceAsnName ascending""" + sourceAsnName_ASC + + """sourceAsnName descending""" + sourceAsnName_DESC + + """sourceAsn ascending""" + sourceAsn_ASC + + """sourceAsn descending""" + sourceAsn_DESC + + """sourceCountry ascending""" + sourceCountry_ASC + + """sourceCountry descending""" + sourceCountry_DESC + + """sourceGeohash ascending""" + sourceGeohash_ASC + + """sourceGeohash descending""" + sourceGeohash_DESC + + """sourcePort ascending""" + sourcePort_ASC + + """sourcePort descending""" + sourcePort_DESC + + """sourceService ascending""" + sourceService_ASC + + """sourceService descending""" + sourceService_DESC + + """sum(bits) ascending""" + sum_bits_ASC + + """sum(bits) descending""" + sum_bits_DESC + + """sum(packets) ascending""" + sum_packets_ASC + + """sum(packets) descending""" + sum_packets_DESC + + """system ascending""" + system_ASC + + """system descending""" + system_DESC + + """tcpAcknowledgementNumber ascending""" + tcpAcknowledgementNumber_ASC + + """tcpAcknowledgementNumber descending""" + tcpAcknowledgementNumber_DESC + + """tcpChecksum ascending""" + tcpChecksum_ASC + + """tcpChecksum descending""" + tcpChecksum_DESC + + """tcpDataOffset ascending""" + tcpDataOffset_ASC + + """tcpDataOffset descending""" + tcpDataOffset_DESC + + """tcpFlagsString ascending""" + tcpFlagsString_ASC + + """tcpFlagsString descending""" + tcpFlagsString_DESC + + """tcpFlags ascending""" + tcpFlags_ASC + + """tcpFlags descending""" + tcpFlags_DESC + + """tcpMss ascending""" + tcpMss_ASC + + """tcpMss descending""" + tcpMss_DESC + + """tcpOptions ascending""" + tcpOptions_ASC + + """tcpOptions descending""" + tcpOptions_DESC + + """tcpSackBlocks ascending""" + tcpSackBlocks_ASC + + """tcpSackBlocks descending""" + tcpSackBlocks_DESC + + """tcpSackPermitted ascending""" + tcpSackPermitted_ASC + + """tcpSackPermitted descending""" + tcpSackPermitted_DESC + + """tcpSequenceNumber ascending""" + tcpSequenceNumber_ASC + + """tcpSequenceNumber descending""" + tcpSequenceNumber_DESC + + """tcpTimestampEcr ascending""" + tcpTimestampEcr_ASC + + """tcpTimestampEcr descending""" + tcpTimestampEcr_DESC + + """tcpTimestampValue ascending""" + tcpTimestampValue_ASC + + """tcpTimestampValue descending""" + tcpTimestampValue_DESC + + """tcpUrgentPointer ascending""" + tcpUrgentPointer_ASC + + """tcpUrgentPointer descending""" + tcpUrgentPointer_DESC + + """tcpWindowScale ascending""" + tcpWindowScale_ASC + + """tcpWindowScale descending""" + tcpWindowScale_DESC + + """tcpWindowSize ascending""" + tcpWindowSize_ASC + + """tcpWindowSize descending""" + tcpWindowSize_DESC + + """udpChecksum ascending""" + udpChecksum_ASC + + """udpChecksum descending""" + udpChecksum_DESC + + """udpPayloadLength ascending""" + udpPayloadLength_ASC + + """udpPayloadLength descending""" + udpPayloadLength_DESC + + """verdict ascending""" + verdict_ASC + + """verdict descending""" + verdict_DESC +} + +"""""" +type AccountSpectrumNetworkAnalyticsAdaptiveGroupsSum { + """Sum of bits received""" + bits: uint64! + + """Sum of packets received""" + packets: uint64! +} + +"""""" +type AccountSpectrumNetworkAnalyticsAdaptiveGroupsSumConfidence { + """Confidence interval for the corresponding point estimate""" + bits: Confidence! + + """Confidence interval for the corresponding point estimate""" + packets: Confidence! +} + +"""Storage Tracing Information""" +type AccountStorageTraces { + """The container that this resource is stored under.""" + containerId: string! + + """Storage trace timestamp""" + datetime: Time! + + """The identifier to access this resource in the container.""" + resourceId: string! + + """The identifier of the storage service that houses the resourse.""" + serviceId: string! + + """The ID that this trace entry is under.""" + traceId: string! + + """The AccountID of the user who owns the resource.""" + userAccountId: string! +} + +"""""" +input AccountStorageTracesFilter_InputObject { + """""" + AND: [AccountStorageTracesFilter_InputObject!] + + """""" + OR: [AccountStorageTracesFilter_InputObject!] + + """""" + containerId: string + + """""" + containerId_geq: string + + """""" + containerId_gt: string + + """""" + containerId_in: [string!] + + """""" + containerId_leq: string + + """""" + containerId_like: string + + """""" + containerId_lt: string + + """""" + containerId_neq: string + + """""" + containerId_notin: [string!] + + """""" + containerId_notlike: string + + """""" + datetime: Time + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + resourceId: string + + """""" + resourceId_geq: string + + """""" + resourceId_gt: string + + """""" + resourceId_in: [string!] + + """""" + resourceId_leq: string + + """""" + resourceId_like: string + + """""" + resourceId_lt: string + + """""" + resourceId_neq: string + + """""" + resourceId_notin: [string!] + + """""" + resourceId_notlike: string + + """""" + serviceId: string + + """""" + serviceId_geq: string + + """""" + serviceId_gt: string + + """""" + serviceId_in: [string!] + + """""" + serviceId_leq: string + + """""" + serviceId_like: string + + """""" + serviceId_lt: string + + """""" + serviceId_neq: string + + """""" + serviceId_notin: [string!] + + """""" + serviceId_notlike: string + + """""" + traceId: string + + """""" + traceId_geq: string + + """""" + traceId_gt: string + + """""" + traceId_in: [string!] + + """""" + traceId_leq: string + + """""" + traceId_like: string + + """""" + traceId_lt: string + + """""" + traceId_neq: string + + """""" + traceId_notin: [string!] + + """""" + traceId_notlike: string + + """""" + userAccountId: string + + """""" + userAccountId_geq: string + + """""" + userAccountId_gt: string + + """""" + userAccountId_in: [string!] + + """""" + userAccountId_leq: string + + """""" + userAccountId_like: string + + """""" + userAccountId_lt: string + + """""" + userAccountId_neq: string + + """""" + userAccountId_notin: [string!] + + """""" + userAccountId_notlike: string +} + +"""""" +enum AccountStorageTracesOrderBy { + """containerId ascending""" + containerId_ASC + + """containerId descending""" + containerId_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """resourceId ascending""" + resourceId_ASC + + """resourceId descending""" + resourceId_DESC + + """serviceId ascending""" + serviceId_ASC + + """serviceId descending""" + serviceId_DESC + + """traceId ascending""" + traceId_ASC + + """traceId descending""" + traceId_DESC + + """userAccountId ascending""" + userAccountId_ASC + + """userAccountId descending""" + userAccountId_DESC +} + +"""Stream CMCD data""" +type AccountStreamCMCDAdaptiveGroups { + """The average value for a metric per dimension""" + avg: AccountStreamCMCDAdaptiveGroupsAvg + + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountStreamCMCDAdaptiveGroupsConfidence! + + """The number of values for a metric per dimension""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountStreamCMCDAdaptiveGroupsDimensions + + """The maximum value for a metric per dimension""" + max: AccountStreamCMCDAdaptiveGroupsMax + + """Quantiles of a metric per dimension""" + quantiles: AccountStreamCMCDAdaptiveGroupsQuantiles + + """The sum of values for a metric per dimension""" + sum: AccountStreamCMCDAdaptiveGroupsSum + + """The number of unique values for a metric per dimension""" + uniq: AccountStreamCMCDAdaptiveGroupsUniq +} + +"""""" +type AccountStreamCMCDAdaptiveGroupsAvg { + """Average buffer length""" + bufferLength: float64! + + """Average buffer starvation duration in milliseconds""" + bufferStarvationDuration: float64! + + """Average encoded bitrate""" + encodedBitrate: float64! + + """ + Average buffer starvation duration at the start of viewing in milliseconds + """ + initialBufferStarvationDuration: float64! + + """Average throughput""" + measuredThroughput: float64! +} + +"""""" +type AccountStreamCMCDAdaptiveGroupsConfidence { + """ + The number of values for a metric per dimension, with confidence intervals + """ + count: Confidence! + + """Confidence level that was requested""" + level: float64! + + """ + The sum of values for a metric per dimension, with confidence intervals + """ + sum: AccountStreamCMCDAdaptiveGroupsSumConfidence +} + +"""""" +type AccountStreamCMCDAdaptiveGroupsDimensions { + """Buffer length of the requested object""" + bufferLength: uint16! + + """ + 1 if the buffer was starved between the last request and this request, 0 if not + """ + bufferStarvation: uint8! + + """Buffer starvation duration in milliseconds""" + bufferStarvationDuration: uint16! + + """Content ID""" + contentId: string! + + """Viewer country""" + country: string! + + """Creator ID""" + creatorId: string! + + """Ingest event timestamp""" + datetime: Time! + + """The date and time of the ingest event truncated to fifteen minutes""" + datetimeFifteenMinutes: Time! + + """The date and time of the ingest event truncated to five minutes""" + datetimeFiveMinutes: Time! + + """The date and time of the ingest event truncated to the hour""" + datetimeHour: Time! + + """The date and time of the ingest event truncated to the minute""" + datetimeMinute: Time! + + """ + The date and time of the ingest event truncated to the start of the six hour window + """ + datetimeSixHours: Time! + + """Encoded bitrate of the requested object""" + encodedBitrate: uint16! + + """HLS type, hls if HLS, ll-hls if LL-HLS, otherwise blank""" + hlsType: string! + + """Initial buffer starvation duration in milliseconds""" + initialBufferStarvationDuration: uint16! + + """Input ID""" + inputId: string! + + """Throughput between client and server""" + measuredThroughput: uint16! + + """Playback duration in ms of the requested object""" + objectDuration: uint16! + + """1 if real-time, 2 if 2x speed, 0 if not playing""" + playbackRate: uint8! + + """Resolution""" + resolution: string! + + """Session ID""" + sessionId: string! + + """1 if request object is needed for startup, 0 if not""" + startup: uint8! + + """l for live, v for video on demand (VOD)""" + streamType: string! + + """h if HLS or LL-HLS, d if DASH""" + streamingFormat: string! + + """Highest available bitrate rendition""" + topBitrate: uint32! + + """Video ID""" + videoId: string! +} + +"""""" +input AccountStreamCMCDAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountStreamCMCDAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountStreamCMCDAdaptiveGroupsFilter_InputObject!] + + """""" + bufferLength: uint16 + + """""" + bufferLength_geq: uint16 + + """""" + bufferLength_gt: uint16 + + """""" + bufferLength_in: [uint16!] + + """""" + bufferLength_leq: uint16 + + """""" + bufferLength_lt: uint16 + + """""" + bufferLength_neq: uint16 + + """""" + bufferLength_notin: [uint16!] + + """""" + bufferStarvation: uint8 + + """""" + bufferStarvationDuration: uint16 + + """""" + bufferStarvationDuration_geq: uint16 + + """""" + bufferStarvationDuration_gt: uint16 + + """""" + bufferStarvationDuration_in: [uint16!] + + """""" + bufferStarvationDuration_leq: uint16 + + """""" + bufferStarvationDuration_lt: uint16 + + """""" + bufferStarvationDuration_neq: uint16 + + """""" + bufferStarvationDuration_notin: [uint16!] + + """""" + bufferStarvation_geq: uint8 + + """""" + bufferStarvation_gt: uint8 + + """""" + bufferStarvation_in: bytes + + """""" + bufferStarvation_leq: uint8 + + """""" + bufferStarvation_lt: uint8 + + """""" + bufferStarvation_neq: uint8 + + """""" + bufferStarvation_notin: bytes + + """""" + contentId: string + + """""" + contentId_geq: string + + """""" + contentId_gt: string + + """""" + contentId_in: [string!] + + """""" + contentId_leq: string + + """""" + contentId_like: string + + """""" + contentId_lt: string + + """""" + contentId_neq: string + + """""" + contentId_notin: [string!] + + """""" + contentId_notlike: string + + """""" + country: string + + """""" + country_geq: string + + """""" + country_gt: string + + """""" + country_in: [string!] + + """""" + country_leq: string + + """""" + country_like: string + + """""" + country_lt: string + + """""" + country_neq: string + + """""" + country_notin: [string!] + + """""" + country_notlike: string + + """""" + creatorId: string + + """""" + creatorId_geq: string + + """""" + creatorId_gt: string + + """""" + creatorId_in: [string!] + + """""" + creatorId_leq: string + + """""" + creatorId_like: string + + """""" + creatorId_lt: string + + """""" + creatorId_neq: string + + """""" + creatorId_notin: [string!] + + """""" + creatorId_notlike: string + + """""" + datetime: Time + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetimeSixHours: Time + + """""" + datetimeSixHours_geq: Time + + """""" + datetimeSixHours_gt: Time + + """""" + datetimeSixHours_in: [Time!] + + """""" + datetimeSixHours_leq: Time + + """""" + datetimeSixHours_lt: Time + + """""" + datetimeSixHours_neq: Time + + """""" + datetimeSixHours_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + encodedBitrate: uint16 + + """""" + encodedBitrate_geq: uint16 + + """""" + encodedBitrate_gt: uint16 + + """""" + encodedBitrate_in: [uint16!] + + """""" + encodedBitrate_leq: uint16 + + """""" + encodedBitrate_lt: uint16 + + """""" + encodedBitrate_neq: uint16 + + """""" + encodedBitrate_notin: [uint16!] + + """""" + hlsType: string + + """""" + hlsType_geq: string + + """""" + hlsType_gt: string + + """""" + hlsType_in: [string!] + + """""" + hlsType_leq: string + + """""" + hlsType_like: string + + """""" + hlsType_lt: string + + """""" + hlsType_neq: string + + """""" + hlsType_notin: [string!] + + """""" + hlsType_notlike: string + + """""" + initialBufferStarvationDuration: uint16 + + """""" + initialBufferStarvationDuration_geq: uint16 + + """""" + initialBufferStarvationDuration_gt: uint16 + + """""" + initialBufferStarvationDuration_in: [uint16!] + + """""" + initialBufferStarvationDuration_leq: uint16 + + """""" + initialBufferStarvationDuration_lt: uint16 + + """""" + initialBufferStarvationDuration_neq: uint16 + + """""" + initialBufferStarvationDuration_notin: [uint16!] + + """""" + inputId: string + + """""" + inputId_geq: string + + """""" + inputId_gt: string + + """""" + inputId_in: [string!] + + """""" + inputId_leq: string + + """""" + inputId_like: string + + """""" + inputId_lt: string + + """""" + inputId_neq: string + + """""" + inputId_notin: [string!] + + """""" + inputId_notlike: string + + """""" + measuredThroughput: uint16 + + """""" + measuredThroughput_geq: uint16 + + """""" + measuredThroughput_gt: uint16 + + """""" + measuredThroughput_in: [uint16!] + + """""" + measuredThroughput_leq: uint16 + + """""" + measuredThroughput_lt: uint16 + + """""" + measuredThroughput_neq: uint16 + + """""" + measuredThroughput_notin: [uint16!] + + """""" + objectDuration: uint16 + + """""" + objectDuration_geq: uint16 + + """""" + objectDuration_gt: uint16 + + """""" + objectDuration_in: [uint16!] + + """""" + objectDuration_leq: uint16 + + """""" + objectDuration_lt: uint16 + + """""" + objectDuration_neq: uint16 + + """""" + objectDuration_notin: [uint16!] + + """""" + playbackRate: uint8 + + """""" + playbackRate_geq: uint8 + + """""" + playbackRate_gt: uint8 + + """""" + playbackRate_in: bytes + + """""" + playbackRate_leq: uint8 + + """""" + playbackRate_lt: uint8 + + """""" + playbackRate_neq: uint8 + + """""" + playbackRate_notin: bytes + + """""" + resolution: string + + """""" + resolution_geq: string + + """""" + resolution_gt: string + + """""" + resolution_in: [string!] + + """""" + resolution_leq: string + + """""" + resolution_like: string + + """""" + resolution_lt: string + + """""" + resolution_neq: string + + """""" + resolution_notin: [string!] + + """""" + resolution_notlike: string + + """""" + sessionId: string + + """""" + sessionId_geq: string + + """""" + sessionId_gt: string + + """""" + sessionId_in: [string!] + + """""" + sessionId_leq: string + + """""" + sessionId_like: string + + """""" + sessionId_lt: string + + """""" + sessionId_neq: string + + """""" + sessionId_notin: [string!] + + """""" + sessionId_notlike: string + + """""" + startup: uint8 + + """""" + startup_geq: uint8 + + """""" + startup_gt: uint8 + + """""" + startup_in: bytes + + """""" + startup_leq: uint8 + + """""" + startup_lt: uint8 + + """""" + startup_neq: uint8 + + """""" + startup_notin: bytes + + """""" + streamType: string + + """""" + streamType_geq: string + + """""" + streamType_gt: string + + """""" + streamType_in: [string!] + + """""" + streamType_leq: string + + """""" + streamType_like: string + + """""" + streamType_lt: string + + """""" + streamType_neq: string + + """""" + streamType_notin: [string!] + + """""" + streamType_notlike: string + + """""" + streamingFormat: string + + """""" + streamingFormat_geq: string + + """""" + streamingFormat_gt: string + + """""" + streamingFormat_in: [string!] + + """""" + streamingFormat_leq: string + + """""" + streamingFormat_like: string + + """""" + streamingFormat_lt: string + + """""" + streamingFormat_neq: string + + """""" + streamingFormat_notin: [string!] + + """""" + streamingFormat_notlike: string + + """""" + topBitrate: uint32 + + """""" + topBitrate_geq: uint32 + + """""" + topBitrate_gt: uint32 + + """""" + topBitrate_in: [uint32!] + + """""" + topBitrate_leq: uint32 + + """""" + topBitrate_lt: uint32 + + """""" + topBitrate_neq: uint32 + + """""" + topBitrate_notin: [uint32!] + + """""" + videoId: string + + """""" + videoId_geq: string + + """""" + videoId_gt: string + + """""" + videoId_in: [string!] + + """""" + videoId_leq: string + + """""" + videoId_like: string + + """""" + videoId_lt: string + + """""" + videoId_neq: string + + """""" + videoId_notin: [string!] + + """""" + videoId_notlike: string +} + +"""""" +type AccountStreamCMCDAdaptiveGroupsMax { + """Last time this dimension combination was seen""" + latestDatetime: Time! +} + +"""""" +enum AccountStreamCMCDAdaptiveGroupsOrderBy { + """avg(bufferLength) ascending""" + avg_bufferLength_ASC + + """avg(bufferLength) descending""" + avg_bufferLength_DESC + + """avg(bufferStarvationDuration) ascending""" + avg_bufferStarvationDuration_ASC + + """avg(bufferStarvationDuration) descending""" + avg_bufferStarvationDuration_DESC + + """avg(encodedBitrate) ascending""" + avg_encodedBitrate_ASC + + """avg(encodedBitrate) descending""" + avg_encodedBitrate_DESC + + """avg(initialBufferStarvationDuration) ascending""" + avg_initialBufferStarvationDuration_ASC + + """avg(initialBufferStarvationDuration) descending""" + avg_initialBufferStarvationDuration_DESC + + """avg(measuredThroughput) ascending""" + avg_measuredThroughput_ASC + + """avg(measuredThroughput) descending""" + avg_measuredThroughput_DESC + + """bufferLength ascending""" + bufferLength_ASC + + """bufferLength descending""" + bufferLength_DESC + + """bufferStarvationDuration ascending""" + bufferStarvationDuration_ASC + + """bufferStarvationDuration descending""" + bufferStarvationDuration_DESC + + """bufferStarvation ascending""" + bufferStarvation_ASC + + """bufferStarvation descending""" + bufferStarvation_DESC + + """contentId ascending""" + contentId_ASC + + """contentId descending""" + contentId_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """country ascending""" + country_ASC + + """country descending""" + country_DESC + + """creatorId ascending""" + creatorId_ASC + + """creatorId descending""" + creatorId_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetimeSixHours ascending""" + datetimeSixHours_ASC + + """datetimeSixHours descending""" + datetimeSixHours_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """encodedBitrate ascending""" + encodedBitrate_ASC + + """encodedBitrate descending""" + encodedBitrate_DESC + + """hlsType ascending""" + hlsType_ASC + + """hlsType descending""" + hlsType_DESC + + """initialBufferStarvationDuration ascending""" + initialBufferStarvationDuration_ASC + + """initialBufferStarvationDuration descending""" + initialBufferStarvationDuration_DESC + + """inputId ascending""" + inputId_ASC + + """inputId descending""" + inputId_DESC + + """max(latestDatetime) ascending""" + max_latestDatetime_ASC + + """max(latestDatetime) descending""" + max_latestDatetime_DESC + + """measuredThroughput ascending""" + measuredThroughput_ASC + + """measuredThroughput descending""" + measuredThroughput_DESC + + """mediaType ascending""" + mediaType_ASC + + """mediaType descending""" + mediaType_DESC + + """millisecondsViewed ascending""" + millisecondsViewed_ASC + + """millisecondsViewed descending""" + millisecondsViewed_DESC + + """objectDuration ascending""" + objectDuration_ASC + + """objectDuration descending""" + objectDuration_DESC + + """playbackRate ascending""" + playbackRate_ASC + + """playbackRate descending""" + playbackRate_DESC + + """quantiles(bufferStarvationDurationP50) ascending""" + quantiles_bufferStarvationDurationP50_ASC + + """quantiles(bufferStarvationDurationP50) descending""" + quantiles_bufferStarvationDurationP50_DESC + + """quantiles(bufferStarvationDurationP75) ascending""" + quantiles_bufferStarvationDurationP75_ASC + + """quantiles(bufferStarvationDurationP75) descending""" + quantiles_bufferStarvationDurationP75_DESC + + """quantiles(bufferStarvationDurationP90) ascending""" + quantiles_bufferStarvationDurationP90_ASC + + """quantiles(bufferStarvationDurationP90) descending""" + quantiles_bufferStarvationDurationP90_DESC + + """quantiles(bufferStarvationDurationP99) ascending""" + quantiles_bufferStarvationDurationP99_ASC + + """quantiles(bufferStarvationDurationP99) descending""" + quantiles_bufferStarvationDurationP99_DESC + + """quantiles(initialBufferStarvationDurationP50) ascending""" + quantiles_initialBufferStarvationDurationP50_ASC + + """quantiles(initialBufferStarvationDurationP50) descending""" + quantiles_initialBufferStarvationDurationP50_DESC + + """quantiles(initialBufferStarvationDurationP75) ascending""" + quantiles_initialBufferStarvationDurationP75_ASC + + """quantiles(initialBufferStarvationDurationP75) descending""" + quantiles_initialBufferStarvationDurationP75_DESC + + """quantiles(initialBufferStarvationDurationP90) ascending""" + quantiles_initialBufferStarvationDurationP90_ASC + + """quantiles(initialBufferStarvationDurationP90) descending""" + quantiles_initialBufferStarvationDurationP90_DESC + + """quantiles(initialBufferStarvationDurationP99) ascending""" + quantiles_initialBufferStarvationDurationP99_ASC + + """quantiles(initialBufferStarvationDurationP99) descending""" + quantiles_initialBufferStarvationDurationP99_DESC + + """resolution ascending""" + resolution_ASC + + """resolution descending""" + resolution_DESC + + """responseStatus ascending""" + responseStatus_ASC + + """responseStatus descending""" + responseStatus_DESC + + """sessionId ascending""" + sessionId_ASC + + """sessionId descending""" + sessionId_DESC + + """startup ascending""" + startup_ASC + + """startup descending""" + startup_DESC + + """streamType ascending""" + streamType_ASC + + """streamType descending""" + streamType_DESC + + """streamingFormat ascending""" + streamingFormat_ASC + + """streamingFormat descending""" + streamingFormat_DESC + + """sum(millisecondsViewed) ascending""" + sum_millisecondsViewed_ASC + + """sum(millisecondsViewed) descending""" + sum_millisecondsViewed_DESC + + """topBitrate ascending""" + topBitrate_ASC + + """topBitrate descending""" + topBitrate_DESC + + """uniq(viewers) ascending""" + uniq_viewers_ASC + + """uniq(viewers) descending""" + uniq_viewers_DESC + + """videoId ascending""" + videoId_ASC + + """videoId descending""" + videoId_DESC +} + +"""""" +type AccountStreamCMCDAdaptiveGroupsQuantiles { + """50th percentile buffer starvation duration in milliseconds""" + bufferStarvationDurationP50: float64! + + """75th percentile buffer starvation duration in milliseconds""" + bufferStarvationDurationP75: float64! + + """90th percentile buffer starvation duration in milliseconds""" + bufferStarvationDurationP90: float64! + + """99th percentile buffer starvation duration in milliseconds""" + bufferStarvationDurationP99: float64! + + """50th percentile initial buffer starvation duration in milliseconds""" + initialBufferStarvationDurationP50: float64! + + """75th percentile initial buffer starvation duration in milliseconds""" + initialBufferStarvationDurationP75: float64! + + """90th percentile initial buffer starvation duration in milliseconds""" + initialBufferStarvationDurationP90: float64! + + """99th percentile initial buffer starvation duration in milliseconds""" + initialBufferStarvationDurationP99: float64! +} + +"""""" +type AccountStreamCMCDAdaptiveGroupsSum { + """Estimated time viewed in milliseconds""" + millisecondsViewed: uint64! +} + +"""""" +type AccountStreamCMCDAdaptiveGroupsSumConfidence { + """Confidence interval for the corresponding point estimate""" + millisecondsViewed: Confidence! +} + +"""""" +type AccountStreamCMCDAdaptiveGroupsUniq { + """The number of unique viewers""" + viewers: uint64! +} + +"""A high-level summary of Cloudflare Stream minutes viewed.""" +type AccountStreamMinutesViewedAdaptiveGroups { + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountStreamMinutesViewedAdaptiveGroupsConfidence! + + """The number of values for a metric per dimension""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountStreamMinutesViewedAdaptiveGroupsDimensions + + """The sum of values for a metric per dimension""" + sum: AccountStreamMinutesViewedAdaptiveGroupsSum +} + +"""""" +type AccountStreamMinutesViewedAdaptiveGroupsConfidence { + """ + The number of values for a metric per dimension, with confidence intervals + """ + count: Confidence! + + """Confidence level that was requested""" + level: float64! +} + +"""""" +type AccountStreamMinutesViewedAdaptiveGroupsDimensions { + """ISO 3166 alpha2 country code from the client""" + clientCountryName: string! + + """Customer-provided creator ID of a video""" + creator: string! + + """The date the event occurred at the edge""" + date: Date! + + """The date and time the event occurred at the edge""" + datetime: Time! + + """ + The date and time the event occurred at the edge truncated to a multiple of 15 minutes + """ + datetimeFifteenMinutes: Time! + + """ + The date and time the event occurred at the edge truncated to a multiple of 5 minutes + """ + datetimeFiveMinutes: Time! + + """The date and time the event occurred at the edge truncated to hours""" + datetimeHour: Time! + + """ + The date and time the event occurred at the edge truncated to the minute + """ + datetimeMinute: Time! + + """The source of the minutes viewed""" + mediaType: string! + + """Unique ID of a video""" + uid: string! +} + +"""""" +input AccountStreamMinutesViewedAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountStreamMinutesViewedAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountStreamMinutesViewedAdaptiveGroupsFilter_InputObject!] + + """""" + clientCountryName: string + + """""" + clientCountryName_geq: string + + """""" + clientCountryName_gt: string + + """""" + clientCountryName_in: [string!] + + """""" + clientCountryName_leq: string + + """""" + clientCountryName_like: string + + """""" + clientCountryName_lt: string + + """""" + clientCountryName_neq: string + + """""" + clientCountryName_notin: [string!] + + """""" + clientCountryName_notlike: string + + """""" + creator: string + + """""" + creator_geq: string + + """""" + creator_gt: string + + """""" + creator_in: [string!] + + """""" + creator_leq: string + + """""" + creator_like: string + + """""" + creator_lt: string + + """""" + creator_neq: string + + """""" + creator_notin: [string!] + + """""" + creator_notlike: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + mediaType: string + + """""" + mediaType_geq: string + + """""" + mediaType_gt: string + + """""" + mediaType_in: [string!] + + """""" + mediaType_leq: string + + """""" + mediaType_like: string + + """""" + mediaType_lt: string + + """""" + mediaType_neq: string + + """""" + mediaType_notin: [string!] + + """""" + mediaType_notlike: string + + """""" + uid: string + + """""" + uid_geq: string + + """""" + uid_gt: string + + """""" + uid_in: [string!] + + """""" + uid_leq: string + + """""" + uid_like: string + + """""" + uid_lt: string + + """""" + uid_neq: string + + """""" + uid_notin: [string!] + + """""" + uid_notlike: string +} + +"""""" +enum AccountStreamMinutesViewedAdaptiveGroupsOrderBy { + """clientCountryName ascending""" + clientCountryName_ASC + + """clientCountryName descending""" + clientCountryName_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """creator ascending""" + creator_ASC + + """creator descending""" + creator_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """mediaType ascending""" + mediaType_ASC + + """mediaType descending""" + mediaType_DESC + + """sum(minutesViewed) ascending""" + sum_minutesViewed_ASC + + """sum(minutesViewed) descending""" + sum_minutesViewed_DESC + + """uid ascending""" + uid_ASC + + """uid descending""" + uid_DESC +} + +"""""" +type AccountStreamMinutesViewedAdaptiveGroupsSum { + """""" + minutesViewed: uint64! +} + +"""Markdown Conversion Metrics""" +type AccountToMarkdownConversionAdaptive { + """The ID of this conversion, as a ULID""" + conversionId: string! + + """The date when trigger was triggered""" + date: Date! + + """The date and time truncated to fifteen minutes""" + datetimeFifteenMinutes: Time! + + """The date and time truncated to five minutes""" + datetimeFiveMinutes: Time! + + """The date and time truncated to the hour""" + datetimeHour: Time! + + """The date and time truncated to the minute""" + datetimeMinute: Time! + + """The duration in milliseconds it took to convert this file""" + durationMs: uint32! + + """ + The reason this conversion might have errored. Empty if the conversion is successful + """ + errorReason: string! + + """The name of the file under conversion""" + fileName: string! + + """The size of the file being converted in bytes""" + fileSize: uint32! + + """The MIME Type of the file under conversion""" + mimeType: string! + + """Conversion options used on the request that originated this conversion""" + options: string! + + """The size of the markdown content after conversion, in bytes""" + outputSize: uint32! + + """ + The original file conversion that originated this one. Empty if this is a 'root' conversion + """ + parentConversion: string! + + """The ID of this request that originated this conversion, as a ULID""" + requestId: string! + + """ + Whether this conversion was successful or not. Values can be 'markdown' for success or 'error' for errors + """ + result: string! + + """The service that originated this conversion request""" + service: string! + + """ + Whether this conversion request was done via the binding method or via an API request + """ + source: string! +} + +"""""" +input AccountToMarkdownConversionAdaptiveFilter_InputObject { + """""" + AND: [AccountToMarkdownConversionAdaptiveFilter_InputObject!] + + """""" + OR: [AccountToMarkdownConversionAdaptiveFilter_InputObject!] + + """""" + conversionId: string + + """""" + conversionId_geq: string + + """""" + conversionId_gt: string + + """""" + conversionId_in: [string!] + + """""" + conversionId_leq: string + + """""" + conversionId_like: string + + """""" + conversionId_lt: string + + """""" + conversionId_neq: string + + """""" + conversionId_notin: [string!] + + """""" + conversionId_notlike: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + durationMs: uint32 + + """""" + durationMs_geq: uint32 + + """""" + durationMs_gt: uint32 + + """""" + durationMs_in: [uint32!] + + """""" + durationMs_leq: uint32 + + """""" + durationMs_lt: uint32 + + """""" + durationMs_neq: uint32 + + """""" + durationMs_notin: [uint32!] + + """""" + errorReason: string + + """""" + errorReason_geq: string + + """""" + errorReason_gt: string + + """""" + errorReason_in: [string!] + + """""" + errorReason_leq: string + + """""" + errorReason_like: string + + """""" + errorReason_lt: string + + """""" + errorReason_neq: string + + """""" + errorReason_notin: [string!] + + """""" + errorReason_notlike: string + + """""" + fileName: string + + """""" + fileName_geq: string + + """""" + fileName_gt: string + + """""" + fileName_in: [string!] + + """""" + fileName_leq: string + + """""" + fileName_like: string + + """""" + fileName_lt: string + + """""" + fileName_neq: string + + """""" + fileName_notin: [string!] + + """""" + fileName_notlike: string + + """""" + fileSize: uint32 + + """""" + fileSize_geq: uint32 + + """""" + fileSize_gt: uint32 + + """""" + fileSize_in: [uint32!] + + """""" + fileSize_leq: uint32 + + """""" + fileSize_lt: uint32 + + """""" + fileSize_neq: uint32 + + """""" + fileSize_notin: [uint32!] + + """""" + mimeType: string + + """""" + mimeType_geq: string + + """""" + mimeType_gt: string + + """""" + mimeType_in: [string!] + + """""" + mimeType_leq: string + + """""" + mimeType_like: string + + """""" + mimeType_lt: string + + """""" + mimeType_neq: string + + """""" + mimeType_notin: [string!] + + """""" + mimeType_notlike: string + + """""" + options: string + + """""" + options_geq: string + + """""" + options_gt: string + + """""" + options_in: [string!] + + """""" + options_leq: string + + """""" + options_like: string + + """""" + options_lt: string + + """""" + options_neq: string + + """""" + options_notin: [string!] + + """""" + options_notlike: string + + """""" + outputSize: uint32 + + """""" + outputSize_geq: uint32 + + """""" + outputSize_gt: uint32 + + """""" + outputSize_in: [uint32!] + + """""" + outputSize_leq: uint32 + + """""" + outputSize_lt: uint32 + + """""" + outputSize_neq: uint32 + + """""" + outputSize_notin: [uint32!] + + """""" + parentConversion: string + + """""" + parentConversion_geq: string + + """""" + parentConversion_gt: string + + """""" + parentConversion_in: [string!] + + """""" + parentConversion_leq: string + + """""" + parentConversion_like: string + + """""" + parentConversion_lt: string + + """""" + parentConversion_neq: string + + """""" + parentConversion_notin: [string!] + + """""" + parentConversion_notlike: string + + """""" + requestId: string + + """""" + requestId_geq: string + + """""" + requestId_gt: string + + """""" + requestId_in: [string!] + + """""" + requestId_leq: string + + """""" + requestId_like: string + + """""" + requestId_lt: string + + """""" + requestId_neq: string + + """""" + requestId_notin: [string!] + + """""" + requestId_notlike: string + + """""" + result: string + + """""" + result_geq: string + + """""" + result_gt: string + + """""" + result_in: [string!] + + """""" + result_leq: string + + """""" + result_like: string + + """""" + result_lt: string + + """""" + result_neq: string + + """""" + result_notin: [string!] + + """""" + result_notlike: string + + """""" + service: string + + """""" + service_geq: string + + """""" + service_gt: string + + """""" + service_in: [string!] + + """""" + service_leq: string + + """""" + service_like: string + + """""" + service_lt: string + + """""" + service_neq: string + + """""" + service_notin: [string!] + + """""" + service_notlike: string + + """""" + source: string + + """""" + source_geq: string + + """""" + source_gt: string + + """""" + source_in: [string!] + + """""" + source_leq: string + + """""" + source_like: string + + """""" + source_lt: string + + """""" + source_neq: string + + """""" + source_notin: [string!] + + """""" + source_notlike: string +} + +"""Markdown Conversion Metrics""" +type AccountToMarkdownConversionAdaptiveGroups { + """The average of values for a metric per dimension""" + avg: AccountToMarkdownConversionAdaptiveGroupsAvg + + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountToMarkdownConversionAdaptiveGroupsConfidence! + + """Total number of conversions for an account""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountToMarkdownConversionAdaptiveGroupsDimensions + + """The max of values for a metric per dimension""" + max: AccountToMarkdownConversionAdaptiveGroupsMax + + """The min of values for a metric per dimension""" + min: AccountToMarkdownConversionAdaptiveGroupsMin +} + +"""""" +type AccountToMarkdownConversionAdaptiveGroupsAvg { + """Average of output size""" + completed: uint32! + + """Average of conversion duration""" + durationMs: uint32! + + """Average of file sizes""" + fileSize: uint32! +} + +"""""" +type AccountToMarkdownConversionAdaptiveGroupsConfidence { + """Total number of conversions for an account, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! +} + +"""""" +type AccountToMarkdownConversionAdaptiveGroupsDimensions { + """The ID of this conversion, as a ULID""" + conversionId: string! + + """The date when trigger was triggered""" + date: Date! + + """The date and time truncated to fifteen minutes""" + datetimeFifteenMinutes: Time! + + """The date and time truncated to five minutes""" + datetimeFiveMinutes: Time! + + """The date and time truncated to the hour""" + datetimeHour: Time! + + """The date and time truncated to the minute""" + datetimeMinute: Time! + + """The duration in milliseconds it took to convert this file""" + durationMs: uint32! + + """ + The reason this conversion might have errored. Empty if the conversion is successful + """ + errorReason: string! + + """The name of the file under conversion""" + fileName: string! + + """The size of the file being converted in bytes""" + fileSize: uint32! + + """The MIME Type of the file under conversion""" + mimeType: string! + + """Conversion options used on the request that originated this conversion""" + options: string! + + """The size of the markdown content after conversion, in bytes""" + outputSize: uint32! + + """ + The original file conversion that originated this one. Empty if this is a 'root' conversion + """ + parentConversion: string! + + """The ID of this request that originated this conversion, as a ULID""" + requestId: string! + + """ + Whether this conversion was successful or not. Values can be 'markdown' for success or 'error' for errors + """ + result: string! + + """The service that originated this conversion request""" + service: string! + + """ + Whether this conversion request was done via the binding method or via an API request + """ + source: string! +} + +"""""" +input AccountToMarkdownConversionAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountToMarkdownConversionAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountToMarkdownConversionAdaptiveGroupsFilter_InputObject!] + + """""" + conversionId: string + + """""" + conversionId_geq: string + + """""" + conversionId_gt: string + + """""" + conversionId_in: [string!] + + """""" + conversionId_leq: string + + """""" + conversionId_like: string + + """""" + conversionId_lt: string + + """""" + conversionId_neq: string + + """""" + conversionId_notin: [string!] + + """""" + conversionId_notlike: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + durationMs: uint32 + + """""" + durationMs_geq: uint32 + + """""" + durationMs_gt: uint32 + + """""" + durationMs_in: [uint32!] + + """""" + durationMs_leq: uint32 + + """""" + durationMs_lt: uint32 + + """""" + durationMs_neq: uint32 + + """""" + durationMs_notin: [uint32!] + + """""" + errorReason: string + + """""" + errorReason_geq: string + + """""" + errorReason_gt: string + + """""" + errorReason_in: [string!] + + """""" + errorReason_leq: string + + """""" + errorReason_like: string + + """""" + errorReason_lt: string + + """""" + errorReason_neq: string + + """""" + errorReason_notin: [string!] + + """""" + errorReason_notlike: string + + """""" + fileName: string + + """""" + fileName_geq: string + + """""" + fileName_gt: string + + """""" + fileName_in: [string!] + + """""" + fileName_leq: string + + """""" + fileName_like: string + + """""" + fileName_lt: string + + """""" + fileName_neq: string + + """""" + fileName_notin: [string!] + + """""" + fileName_notlike: string + + """""" + fileSize: uint32 + + """""" + fileSize_geq: uint32 + + """""" + fileSize_gt: uint32 + + """""" + fileSize_in: [uint32!] + + """""" + fileSize_leq: uint32 + + """""" + fileSize_lt: uint32 + + """""" + fileSize_neq: uint32 + + """""" + fileSize_notin: [uint32!] + + """""" + mimeType: string + + """""" + mimeType_geq: string + + """""" + mimeType_gt: string + + """""" + mimeType_in: [string!] + + """""" + mimeType_leq: string + + """""" + mimeType_like: string + + """""" + mimeType_lt: string + + """""" + mimeType_neq: string + + """""" + mimeType_notin: [string!] + + """""" + mimeType_notlike: string + + """""" + options: string + + """""" + options_geq: string + + """""" + options_gt: string + + """""" + options_in: [string!] + + """""" + options_leq: string + + """""" + options_like: string + + """""" + options_lt: string + + """""" + options_neq: string + + """""" + options_notin: [string!] + + """""" + options_notlike: string + + """""" + outputSize: uint32 + + """""" + outputSize_geq: uint32 + + """""" + outputSize_gt: uint32 + + """""" + outputSize_in: [uint32!] + + """""" + outputSize_leq: uint32 + + """""" + outputSize_lt: uint32 + + """""" + outputSize_neq: uint32 + + """""" + outputSize_notin: [uint32!] + + """""" + parentConversion: string + + """""" + parentConversion_geq: string + + """""" + parentConversion_gt: string + + """""" + parentConversion_in: [string!] + + """""" + parentConversion_leq: string + + """""" + parentConversion_like: string + + """""" + parentConversion_lt: string + + """""" + parentConversion_neq: string + + """""" + parentConversion_notin: [string!] + + """""" + parentConversion_notlike: string + + """""" + requestId: string + + """""" + requestId_geq: string + + """""" + requestId_gt: string + + """""" + requestId_in: [string!] + + """""" + requestId_leq: string + + """""" + requestId_like: string + + """""" + requestId_lt: string + + """""" + requestId_neq: string + + """""" + requestId_notin: [string!] + + """""" + requestId_notlike: string + + """""" + result: string + + """""" + result_geq: string + + """""" + result_gt: string + + """""" + result_in: [string!] + + """""" + result_leq: string + + """""" + result_like: string + + """""" + result_lt: string + + """""" + result_neq: string + + """""" + result_notin: [string!] + + """""" + result_notlike: string + + """""" + service: string + + """""" + service_geq: string + + """""" + service_gt: string + + """""" + service_in: [string!] + + """""" + service_leq: string + + """""" + service_like: string + + """""" + service_lt: string + + """""" + service_neq: string + + """""" + service_notin: [string!] + + """""" + service_notlike: string + + """""" + source: string + + """""" + source_geq: string + + """""" + source_gt: string + + """""" + source_in: [string!] + + """""" + source_leq: string + + """""" + source_like: string + + """""" + source_lt: string + + """""" + source_neq: string + + """""" + source_notin: [string!] + + """""" + source_notlike: string +} + +"""""" +type AccountToMarkdownConversionAdaptiveGroupsMax { + """Max of output size""" + completed: uint32! + + """Max of conversion duration""" + durationMs: uint32! + + """Max of file sizes""" + fileSize: uint32! +} + +"""""" +type AccountToMarkdownConversionAdaptiveGroupsMin { + """Min of output size""" + completed: uint32! + + """Min of conversion duration""" + durationMs: uint32! + + """Min of file sizes""" + fileSize: uint32! +} + +"""""" +enum AccountToMarkdownConversionAdaptiveGroupsOrderBy { + """avg(completed) ascending""" + avg_completed_ASC + + """avg(completed) descending""" + avg_completed_DESC + + """avg(durationMs) ascending""" + avg_durationMs_ASC + + """avg(durationMs) descending""" + avg_durationMs_DESC + + """avg(fileSize) ascending""" + avg_fileSize_ASC + + """avg(fileSize) descending""" + avg_fileSize_DESC + + """conversionId ascending""" + conversionId_ASC + + """conversionId descending""" + conversionId_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """durationMs ascending""" + durationMs_ASC + + """durationMs descending""" + durationMs_DESC + + """errorReason ascending""" + errorReason_ASC + + """errorReason descending""" + errorReason_DESC + + """fileName ascending""" + fileName_ASC + + """fileName descending""" + fileName_DESC + + """fileSize ascending""" + fileSize_ASC + + """fileSize descending""" + fileSize_DESC + + """max(completed) ascending""" + max_completed_ASC + + """max(completed) descending""" + max_completed_DESC + + """max(durationMs) ascending""" + max_durationMs_ASC + + """max(durationMs) descending""" + max_durationMs_DESC + + """max(fileSize) ascending""" + max_fileSize_ASC + + """max(fileSize) descending""" + max_fileSize_DESC + + """mimeType ascending""" + mimeType_ASC + + """mimeType descending""" + mimeType_DESC + + """min(completed) ascending""" + min_completed_ASC + + """min(completed) descending""" + min_completed_DESC + + """min(durationMs) ascending""" + min_durationMs_ASC + + """min(durationMs) descending""" + min_durationMs_DESC + + """min(fileSize) ascending""" + min_fileSize_ASC + + """min(fileSize) descending""" + min_fileSize_DESC + + """options ascending""" + options_ASC + + """options descending""" + options_DESC + + """outputSize ascending""" + outputSize_ASC + + """outputSize descending""" + outputSize_DESC + + """parentConversion ascending""" + parentConversion_ASC + + """parentConversion descending""" + parentConversion_DESC + + """requestId ascending""" + requestId_ASC + + """requestId descending""" + requestId_DESC + + """result ascending""" + result_ASC + + """result descending""" + result_DESC + + """service ascending""" + service_ASC + + """service descending""" + service_DESC + + """source ascending""" + source_ASC + + """source descending""" + source_DESC +} + +"""""" +enum AccountToMarkdownConversionAdaptiveOrderBy { + """conversionId ascending""" + conversionId_ASC + + """conversionId descending""" + conversionId_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """durationMs ascending""" + durationMs_ASC + + """durationMs descending""" + durationMs_DESC + + """errorReason ascending""" + errorReason_ASC + + """errorReason descending""" + errorReason_DESC + + """fileName ascending""" + fileName_ASC + + """fileName descending""" + fileName_DESC + + """fileSize ascending""" + fileSize_ASC + + """fileSize descending""" + fileSize_DESC + + """mimeType ascending""" + mimeType_ASC + + """mimeType descending""" + mimeType_DESC + + """options ascending""" + options_ASC + + """options descending""" + options_DESC + + """outputSize ascending""" + outputSize_ASC + + """outputSize descending""" + outputSize_DESC + + """parentConversion ascending""" + parentConversion_ASC + + """parentConversion descending""" + parentConversion_DESC + + """requestId ascending""" + requestId_ASC + + """requestId descending""" + requestId_DESC + + """result ascending""" + result_ASC + + """result descending""" + result_DESC + + """service ascending""" + service_ASC + + """service descending""" + service_DESC + + """source ascending""" + source_ASC + + """source descending""" + source_DESC +} + +"""Beta. Cloudflare Turnstile aggregated events with adaptive sampling""" +type AccountTurnstileAdaptiveGroups { + """""" + avg: AccountTurnstileAdaptiveGroupsAvg + + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountTurnstileAdaptiveGroupsConfidence! + + """Number of Cloudflare Turnstile events processed""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountTurnstileAdaptiveGroupsDimensions +} + +"""""" +type AccountTurnstileAdaptiveGroupsAvg { + """Average sample interval""" + sampleInterval: float64! +} + +"""""" +type AccountTurnstileAdaptiveGroupsConfidence { + """ + Number of Cloudflare Turnstile events processed, with confidence intervals + """ + count: Confidence! + + """Confidence level that was requested""" + level: float64! +} + +"""""" +type AccountTurnstileAdaptiveGroupsDimensions { + """The action tag tied to that challenge event""" + action: string! + + """ASN tied to that Turnstile event""" + asn: uint32! + + """Major version of the browser tied to that Turnstile event""" + browserMajor: float64! + + """Browser name tied to that Turnstile event""" + browserName: string! + + """2 character country code tied to that Turnstile event""" + countryCode: string! + + """The date the challenge event was emitted""" + date: Date! + + """The date and time the challenge event was emitted""" + datetime: Time! + + """The date and time the challenge event was emitted truncated to the day""" + datetimeDay: Time! + + """ + The date and time the challenge event was emitted truncated to a multiple of 15 minutes + """ + datetimeFifteenMinutes: Time! + + """ + The date and time the challenge event was emitted truncated to a multiple of 5 minutes + """ + datetimeFiveMinutes: Time! + + """ + The date and time the challenge event was emitted truncated to a multiple of 30 minutes + """ + datetimeHalfOfHour: Time! + + """ + The date and time the challenge event was emitted truncated to the hour + """ + datetimeHour: Time! + + """ + The date and time the challenge event was emitted truncated to the minute + """ + datetimeMinute: Time! + + """The type of the Cloudflare Turnstile event""" + eventType: string! + + """Hostname tied to that Turnstile event""" + hostname: string! + + """IPv4 tied to that Turnstile event""" + ipv4: string! + + """IPv6 tied to that Turnstile event""" + ipv6: string! + + """Major version of the OS tied to that Turnstile event""" + osMajor: float64! + + """OS name tied to that Turnstile event""" + osName: string! + + """The sitekey of the widget associated with the event""" + siteKey: string! + + """User agent tied to that Turnstile event""" + userAgent: string! +} + +"""""" +input AccountTurnstileAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountTurnstileAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountTurnstileAdaptiveGroupsFilter_InputObject!] + + """""" + action: string + + """""" + action_geq: string + + """""" + action_gt: string + + """""" + action_in: [string!] + + """""" + action_leq: string + + """""" + action_like: string + + """""" + action_lt: string + + """""" + action_neq: string + + """""" + action_notin: [string!] + + """""" + action_notlike: string + + """""" + asn: uint32 + + """""" + asn_geq: uint32 + + """""" + asn_gt: uint32 + + """""" + asn_in: [uint32!] + + """""" + asn_leq: uint32 + + """""" + asn_lt: uint32 + + """""" + asn_neq: uint32 + + """""" + asn_notin: [uint32!] + + """""" + browserMajor: float64 + + """""" + browserMajor_geq: float64 + + """""" + browserMajor_gt: float64 + + """""" + browserMajor_in: [float64!] + + """""" + browserMajor_leq: float64 + + """""" + browserMajor_lt: float64 + + """""" + browserMajor_neq: float64 + + """""" + browserMajor_notin: [float64!] + + """""" + browserName: string + + """""" + browserName_geq: string + + """""" + browserName_gt: string + + """""" + browserName_in: [string!] + + """""" + browserName_leq: string + + """""" + browserName_like: string + + """""" + browserName_lt: string + + """""" + browserName_neq: string + + """""" + browserName_notin: [string!] + + """""" + browserName_notlike: string + + """""" + countryCode: string + + """""" + countryCode_geq: string + + """""" + countryCode_gt: string + + """""" + countryCode_in: [string!] + + """""" + countryCode_leq: string + + """""" + countryCode_like: string + + """""" + countryCode_lt: string + + """""" + countryCode_neq: string + + """""" + countryCode_notin: [string!] + + """""" + countryCode_notlike: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeDay: Time + + """""" + datetimeDay_geq: Time + + """""" + datetimeDay_gt: Time + + """""" + datetimeDay_in: [Time!] + + """""" + datetimeDay_leq: Time + + """""" + datetimeDay_lt: Time + + """""" + datetimeDay_neq: Time + + """""" + datetimeDay_notin: [Time!] + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHalfOfHour: Time + + """""" + datetimeHalfOfHour_geq: Time + + """""" + datetimeHalfOfHour_gt: Time + + """""" + datetimeHalfOfHour_in: [Time!] + + """""" + datetimeHalfOfHour_leq: Time + + """""" + datetimeHalfOfHour_lt: Time + + """""" + datetimeHalfOfHour_neq: Time + + """""" + datetimeHalfOfHour_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + eventType: string + + """""" + eventType_geq: string + + """""" + eventType_gt: string + + """""" + eventType_in: [string!] + + """""" + eventType_leq: string + + """""" + eventType_like: string + + """""" + eventType_lt: string + + """""" + eventType_neq: string + + """""" + eventType_notin: [string!] + + """""" + eventType_notlike: string + + """""" + hostname: string + + """""" + hostname_geq: string + + """""" + hostname_gt: string + + """""" + hostname_in: [string!] + + """""" + hostname_leq: string + + """""" + hostname_like: string + + """""" + hostname_lt: string + + """""" + hostname_neq: string + + """""" + hostname_notin: [string!] + + """""" + hostname_notlike: string + + """""" + ipv4: string + + """""" + ipv4_geq: string + + """""" + ipv4_gt: string + + """""" + ipv4_in: [string!] + + """""" + ipv4_leq: string + + """""" + ipv4_like: string + + """""" + ipv4_lt: string + + """""" + ipv4_neq: string + + """""" + ipv4_notin: [string!] + + """""" + ipv4_notlike: string + + """""" + ipv6: string + + """""" + ipv6_geq: string + + """""" + ipv6_gt: string + + """""" + ipv6_in: [string!] + + """""" + ipv6_leq: string + + """""" + ipv6_like: string + + """""" + ipv6_lt: string + + """""" + ipv6_neq: string + + """""" + ipv6_notin: [string!] + + """""" + ipv6_notlike: string + + """""" + osMajor: float64 + + """""" + osMajor_geq: float64 + + """""" + osMajor_gt: float64 + + """""" + osMajor_in: [float64!] + + """""" + osMajor_leq: float64 + + """""" + osMajor_lt: float64 + + """""" + osMajor_neq: float64 + + """""" + osMajor_notin: [float64!] + + """""" + osName: string + + """""" + osName_geq: string + + """""" + osName_gt: string + + """""" + osName_in: [string!] + + """""" + osName_leq: string + + """""" + osName_like: string + + """""" + osName_lt: string + + """""" + osName_neq: string + + """""" + osName_notin: [string!] + + """""" + osName_notlike: string + + """""" + siteKey: string + + """""" + siteKey_geq: string + + """""" + siteKey_gt: string + + """""" + siteKey_in: [string!] + + """""" + siteKey_leq: string + + """""" + siteKey_like: string + + """""" + siteKey_lt: string + + """""" + siteKey_neq: string + + """""" + siteKey_notin: [string!] + + """""" + siteKey_notlike: string + + """""" + userAgent: string + + """""" + userAgent_geq: string + + """""" + userAgent_gt: string + + """""" + userAgent_in: [string!] + + """""" + userAgent_leq: string + + """""" + userAgent_like: string + + """""" + userAgent_lt: string + + """""" + userAgent_neq: string + + """""" + userAgent_notin: [string!] + + """""" + userAgent_notlike: string +} + +"""""" +enum AccountTurnstileAdaptiveGroupsOrderBy { + """action ascending""" + action_ASC + + """action descending""" + action_DESC + + """asn ascending""" + asn_ASC + + """asn descending""" + asn_DESC + + """avg(sampleInterval) ascending""" + avg_sampleInterval_ASC + + """avg(sampleInterval) descending""" + avg_sampleInterval_DESC + + """browserMajor ascending""" + browserMajor_ASC + + """browserMajor descending""" + browserMajor_DESC + + """browserName ascending""" + browserName_ASC + + """browserName descending""" + browserName_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """countryCode ascending""" + countryCode_ASC + + """countryCode descending""" + countryCode_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeDay ascending""" + datetimeDay_ASC + + """datetimeDay descending""" + datetimeDay_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHalfOfHour ascending""" + datetimeHalfOfHour_ASC + + """datetimeHalfOfHour descending""" + datetimeHalfOfHour_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """eventType ascending""" + eventType_ASC + + """eventType descending""" + eventType_DESC + + """hostname ascending""" + hostname_ASC + + """hostname descending""" + hostname_DESC + + """ipv4 ascending""" + ipv4_ASC + + """ipv4 descending""" + ipv4_DESC + + """ipv6 ascending""" + ipv6_ASC + + """ipv6 descending""" + ipv6_DESC + + """osMajor ascending""" + osMajor_ASC + + """osMajor descending""" + osMajor_DESC + + """osName ascending""" + osName_ASC + + """osName descending""" + osName_DESC + + """siteKey ascending""" + siteKey_ASC + + """siteKey descending""" + siteKey_DESC + + """userAgent ascending""" + userAgent_ASC + + """userAgent descending""" + userAgent_DESC +} + +"""Beta. Vectorize usage with adaptive sampling""" +type AccountVectorizeQueriesAdaptiveGroups { + """List of dimensions to group by""" + dimensions: AccountVectorizeQueriesAdaptiveGroupsDimensions + + """The sum of values for a metric per dimension""" + sum: AccountVectorizeQueriesAdaptiveGroupsSum +} + +"""""" +type AccountVectorizeQueriesAdaptiveGroupsDimensions { + """Vectorize storage sample timestamp""" + date: Date! + + """Vectorize storage sample timestamp, truncated to the hour""" + datetimeHour: Time! + + """Identifier for a Vectorize index""" + vectorizeIndexId: string! +} + +"""""" +input AccountVectorizeQueriesAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountVectorizeQueriesAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountVectorizeQueriesAdaptiveGroupsFilter_InputObject!] + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + vectorizeIndexId: string + + """""" + vectorizeIndexId_geq: string + + """""" + vectorizeIndexId_gt: string + + """""" + vectorizeIndexId_in: [string!] + + """""" + vectorizeIndexId_leq: string + + """""" + vectorizeIndexId_like: string + + """""" + vectorizeIndexId_lt: string + + """""" + vectorizeIndexId_neq: string + + """""" + vectorizeIndexId_notin: [string!] + + """""" + vectorizeIndexId_notlike: string +} + +"""""" +enum AccountVectorizeQueriesAdaptiveGroupsOrderBy { + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """sum(queriedVectorDimensions) ascending""" + sum_queriedVectorDimensions_ASC + + """sum(queriedVectorDimensions) descending""" + sum_queriedVectorDimensions_DESC + + """vectorizeIndexId ascending""" + vectorizeIndexId_ASC + + """vectorizeIndexId descending""" + vectorizeIndexId_DESC +} + +"""""" +type AccountVectorizeQueriesAdaptiveGroupsSum { + """ + The number of queried vector dimensions in Vectorize over the queried time period. + """ + queriedVectorDimensions: uint64! +} + +"""Beta. Vectorize storage with adaptive sampling""" +type AccountVectorizeStorageAdaptiveGroups { + """List of dimensions to group by""" + dimensions: AccountVectorizeStorageAdaptiveGroupsDimensions + + """The max of values for a metric per dimension""" + max: AccountVectorizeStorageAdaptiveGroupsMax +} + +"""""" +type AccountVectorizeStorageAdaptiveGroupsDimensions { + """Vectorize storage sample timestamp""" + date: Date! + + """Vectorize storage sample timestamp, truncated to the hour""" + datetimeHour: Time! + + """Identifier for a Vectorize index""" + vectorizeIndexId: string! +} + +"""""" +input AccountVectorizeStorageAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountVectorizeStorageAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountVectorizeStorageAdaptiveGroupsFilter_InputObject!] + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + vectorizeIndexId: string + + """""" + vectorizeIndexId_geq: string + + """""" + vectorizeIndexId_gt: string + + """""" + vectorizeIndexId_in: [string!] + + """""" + vectorizeIndexId_leq: string + + """""" + vectorizeIndexId_like: string + + """""" + vectorizeIndexId_lt: string + + """""" + vectorizeIndexId_neq: string + + """""" + vectorizeIndexId_notin: [string!] + + """""" + vectorizeIndexId_notlike: string +} + +"""""" +type AccountVectorizeStorageAdaptiveGroupsMax { + """ + The maximum number of stored vector dimensions in Vectorize over the queried time period. + """ + storedVectorDimensions: uint64! +} + +"""""" +enum AccountVectorizeStorageAdaptiveGroupsOrderBy { + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """max(storedVectorDimensions) ascending""" + max_storedVectorDimensions_ASC + + """max(storedVectorDimensions) descending""" + max_storedVectorDimensions_DESC + + """vectorizeIndexId ascending""" + vectorizeIndexId_ASC + + """vectorizeIndexId descending""" + vectorizeIndexId_DESC +} + +"""Vectorize operations with adaptive sampling""" +type AccountVectorizeV2OperationsAdaptiveGroups { + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountVectorizeV2OperationsAdaptiveGroupsConfidence! + + """Total number of Vectorize operations""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountVectorizeV2OperationsAdaptiveGroupsDimensions +} + +"""""" +type AccountVectorizeV2OperationsAdaptiveGroupsConfidence { + """Total number of Vectorize operations, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! +} + +"""""" +type AccountVectorizeV2OperationsAdaptiveGroupsDimensions { + """Vectorize operation event timestamp, truncated to start of a day""" + date: Date! + + """Vectorize operation event timestamp""" + datetime: Time! + + """Vectorize operation event timestamp, truncated to start of hour""" + datetimeHour: Time! + + """Vectorize operation event timestamp, truncated to start of minute""" + datetimeMinute: Time! + + """Name of a Vectorize index""" + indexName: string! + + """The type of Vectorize operation""" + operation: uint64! + + """Request status. One of [2xx, 4xx, 5xx, unknown]""" + requestStatus: string! +} + +"""""" +input AccountVectorizeV2OperationsAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountVectorizeV2OperationsAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountVectorizeV2OperationsAdaptiveGroupsFilter_InputObject!] + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + indexName: string + + """""" + indexName_geq: string + + """""" + indexName_gt: string + + """""" + indexName_in: [string!] + + """""" + indexName_leq: string + + """""" + indexName_like: string + + """""" + indexName_lt: string + + """""" + indexName_neq: string + + """""" + indexName_notin: [string!] + + """""" + indexName_notlike: string + + """""" + operation: uint64 + + """""" + operation_geq: uint64 + + """""" + operation_gt: uint64 + + """""" + operation_in: [uint64!] + + """""" + operation_leq: uint64 + + """""" + operation_lt: uint64 + + """""" + operation_neq: uint64 + + """""" + operation_notin: [uint64!] + + """""" + requestStatus: string + + """""" + requestStatus_geq: string + + """""" + requestStatus_gt: string + + """""" + requestStatus_in: [string!] + + """""" + requestStatus_leq: string + + """""" + requestStatus_like: string + + """""" + requestStatus_lt: string + + """""" + requestStatus_neq: string + + """""" + requestStatus_notin: [string!] + + """""" + requestStatus_notlike: string +} + +"""""" +enum AccountVectorizeV2OperationsAdaptiveGroupsOrderBy { + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """indexName ascending""" + indexName_ASC + + """indexName descending""" + indexName_DESC + + """operation ascending""" + operation_ASC + + """operation descending""" + operation_DESC + + """requestStatus ascending""" + requestStatus_ASC + + """requestStatus descending""" + requestStatus_DESC +} + +"""Vectorize queries with adaptive sampling""" +type AccountVectorizeV2QueriesAdaptiveGroups { + """The average value for a metric per dimension""" + avg: AccountVectorizeV2QueriesAdaptiveGroupsAvg + + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountVectorizeV2QueriesAdaptiveGroupsConfidence! + + """Total number of Vectorize queries""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountVectorizeV2QueriesAdaptiveGroupsDimensions + + """Quantiles of a metric per dimension""" + quantiles: AccountVectorizeV2QueriesAdaptiveGroupsQuantiles + + """The sum of values for a metric per dimension""" + sum: AccountVectorizeV2QueriesAdaptiveGroupsSum +} + +"""""" +type AccountVectorizeV2QueriesAdaptiveGroupsAvg { + """Average latency (in milliseconds) of serving a Vectorize query""" + requestDurationMs: uint64! +} + +"""""" +type AccountVectorizeV2QueriesAdaptiveGroupsConfidence { + """Total number of Vectorize queries, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! + + """ + The sum of values for a metric per dimension, with confidence intervals + """ + sum: AccountVectorizeV2QueriesAdaptiveGroupsSumConfidence +} + +"""""" +type AccountVectorizeV2QueriesAdaptiveGroupsDimensions { + """Vectorize queries event timestamp, truncated to start of a day""" + date: Date! + + """Vectorize queries event timestamp""" + datetime: Time! + + """Vectorize queries event timestamp, truncated to start of hour""" + datetimeHour: Time! + + """Vectorize queries event timestamp, truncated to start of minute""" + datetimeMinute: Time! + + """Name of a Vectorize index""" + indexName: string! + + """The type of Vectorize operation""" + operation: uint64! + + """Request status. One of [2xx, 4xx, 5xx, unknown]""" + requestStatus: string! +} + +"""""" +input AccountVectorizeV2QueriesAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountVectorizeV2QueriesAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountVectorizeV2QueriesAdaptiveGroupsFilter_InputObject!] + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + indexName: string + + """""" + indexName_geq: string + + """""" + indexName_gt: string + + """""" + indexName_in: [string!] + + """""" + indexName_leq: string + + """""" + indexName_like: string + + """""" + indexName_lt: string + + """""" + indexName_neq: string + + """""" + indexName_notin: [string!] + + """""" + indexName_notlike: string + + """""" + operation: uint64 + + """""" + operation_geq: uint64 + + """""" + operation_gt: uint64 + + """""" + operation_in: [uint64!] + + """""" + operation_leq: uint64 + + """""" + operation_lt: uint64 + + """""" + operation_neq: uint64 + + """""" + operation_notin: [uint64!] + + """""" + requestStatus: string + + """""" + requestStatus_geq: string + + """""" + requestStatus_gt: string + + """""" + requestStatus_in: [string!] + + """""" + requestStatus_leq: string + + """""" + requestStatus_like: string + + """""" + requestStatus_lt: string + + """""" + requestStatus_neq: string + + """""" + requestStatus_notin: [string!] + + """""" + requestStatus_notlike: string +} + +"""""" +enum AccountVectorizeV2QueriesAdaptiveGroupsOrderBy { + """avg(requestDurationMs) ascending""" + avg_requestDurationMs_ASC + + """avg(requestDurationMs) descending""" + avg_requestDurationMs_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """indexName ascending""" + indexName_ASC + + """indexName descending""" + indexName_DESC + + """operation ascending""" + operation_ASC + + """operation descending""" + operation_DESC + + """quantiles(requestDurationMsP25) ascending""" + quantiles_requestDurationMsP25_ASC + + """quantiles(requestDurationMsP25) descending""" + quantiles_requestDurationMsP25_DESC + + """quantiles(requestDurationMsP50) ascending""" + quantiles_requestDurationMsP50_ASC + + """quantiles(requestDurationMsP50) descending""" + quantiles_requestDurationMsP50_DESC + + """quantiles(requestDurationMsP75) ascending""" + quantiles_requestDurationMsP75_ASC + + """quantiles(requestDurationMsP75) descending""" + quantiles_requestDurationMsP75_DESC + + """quantiles(requestDurationMsP95) ascending""" + quantiles_requestDurationMsP95_ASC + + """quantiles(requestDurationMsP95) descending""" + quantiles_requestDurationMsP95_DESC + + """quantiles(requestDurationMsP99) ascending""" + quantiles_requestDurationMsP99_ASC + + """quantiles(requestDurationMsP99) descending""" + quantiles_requestDurationMsP99_DESC + + """requestStatus ascending""" + requestStatus_ASC + + """requestStatus descending""" + requestStatus_DESC + + """sum(queriedVectorDimensions) ascending""" + sum_queriedVectorDimensions_ASC + + """sum(queriedVectorDimensions) descending""" + sum_queriedVectorDimensions_DESC + + """sum(requestDurationMs) ascending""" + sum_requestDurationMs_ASC + + """sum(requestDurationMs) descending""" + sum_requestDurationMs_DESC + + """sum(servedVectorCount) ascending""" + sum_servedVectorCount_ASC + + """sum(servedVectorCount) descending""" + sum_servedVectorCount_DESC +} + +"""""" +type AccountVectorizeV2QueriesAdaptiveGroupsQuantiles { + """25th percentile latency (milliseconds)""" + requestDurationMsP25: float32! + + """50th percentile latency (milliseconds)""" + requestDurationMsP50: float32! + + """75th percentile latency (milliseconds)""" + requestDurationMsP75: float32! + + """95th percentile latency (milliseconds)""" + requestDurationMsP95: float32! + + """99th percentile latency (milliseconds)""" + requestDurationMsP99: float32! +} + +"""""" +type AccountVectorizeV2QueriesAdaptiveGroupsSum { + """ + The number of queried vector dimensions in Vectorize over the queried time period. This metric must always be fetched along with the 'indexName' and 'datetime' dimensions, as well as a 'requestStatus:2xx' filter to estimate billable usage. + """ + queriedVectorDimensions: uint64! + + """ + Total latency (in milliseconds) of serving Vectorize queries over the queried time period + """ + requestDurationMs: uint64! + + """ + The number of vectors served in Vectorize queries over the queried time period. + """ + servedVectorCount: uint64! +} + +"""""" +type AccountVectorizeV2QueriesAdaptiveGroupsSumConfidence { + """Confidence interval for the corresponding point estimate""" + requestDurationMs: Confidence! + + """Confidence interval for the corresponding point estimate""" + servedVectorCount: Confidence! +} + +"""Vectorize storage with adaptive sampling""" +type AccountVectorizeV2StorageAdaptiveGroups { + """List of dimensions to group by""" + dimensions: AccountVectorizeV2StorageAdaptiveGroupsDimensions + + """The max of values for a metric per dimension""" + max: AccountVectorizeV2StorageAdaptiveGroupsMax +} + +"""""" +type AccountVectorizeV2StorageAdaptiveGroupsDimensions { + """Vectorize storage event timestamp, truncated to start of a day""" + date: Date! + + """Vectorize storage event timestamp""" + datetime: Time! + + """Vectorize storage event timestamp, truncated to start of hour""" + datetimeHour: Time! + + """Vectorize storage event timestamp, truncated to start of minute""" + datetimeMinute: Time! + + """Name of a Vectorize index""" + indexName: string! +} + +"""""" +input AccountVectorizeV2StorageAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountVectorizeV2StorageAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountVectorizeV2StorageAdaptiveGroupsFilter_InputObject!] + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + indexName: string + + """""" + indexName_geq: string + + """""" + indexName_gt: string + + """""" + indexName_in: [string!] + + """""" + indexName_leq: string + + """""" + indexName_like: string + + """""" + indexName_lt: string + + """""" + indexName_neq: string + + """""" + indexName_notin: [string!] + + """""" + indexName_notlike: string +} + +"""""" +type AccountVectorizeV2StorageAdaptiveGroupsMax { + """ + The maximum number of stored vector dimensions in Vectorize over the queried time period. + """ + storedVectorDimensions: uint64! + + """ + The maximum number of stored vectors in Vectorize over the queried time period. + """ + vectorCount: uint64! +} + +"""""" +enum AccountVectorizeV2StorageAdaptiveGroupsOrderBy { + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """indexName ascending""" + indexName_ASC + + """indexName descending""" + indexName_DESC + + """max(storedVectorDimensions) ascending""" + max_storedVectorDimensions_ASC + + """max(storedVectorDimensions) descending""" + max_storedVectorDimensions_DESC + + """max(vectorCount) ascending""" + max_vectorCount_ASC + + """max(vectorCount) descending""" + max_vectorCount_DESC +} + +"""Vectorize writes with adaptive sampling""" +type AccountVectorizeV2WritesAdaptiveGroups { + """The average value for a metric per dimension""" + avg: AccountVectorizeV2WritesAdaptiveGroupsAvg + + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountVectorizeV2WritesAdaptiveGroupsConfidence! + + """Total number of Vectorize writes""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountVectorizeV2WritesAdaptiveGroupsDimensions + + """Quantiles of a metric per dimension""" + quantiles: AccountVectorizeV2WritesAdaptiveGroupsQuantiles + + """The sum of values for a metric per dimension""" + sum: AccountVectorizeV2WritesAdaptiveGroupsSum +} + +"""""" +type AccountVectorizeV2WritesAdaptiveGroupsAvg { + """Average latency (in milliseconds) of serving a Vectorize write""" + requestDurationMs: uint64! +} + +"""""" +type AccountVectorizeV2WritesAdaptiveGroupsConfidence { + """Total number of Vectorize writes, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! + + """ + The sum of values for a metric per dimension, with confidence intervals + """ + sum: AccountVectorizeV2WritesAdaptiveGroupsSumConfidence +} + +"""""" +type AccountVectorizeV2WritesAdaptiveGroupsDimensions { + """Vectorize write event timestamp, truncated to start of a day""" + date: Date! + + """Vectorize write event timestamp""" + datetime: Time! + + """Vectorize write event timestamp, truncated to start of hour""" + datetimeHour: Time! + + """Vectorize write event timestamp, truncated to start of minute""" + datetimeMinute: Time! + + """Name of a Vectorize index""" + indexName: string! + + """The type of Vectorize operation""" + operation: uint64! + + """Request status. One of [2xx, 4xx, 5xx, unknown]""" + requestStatus: string! +} + +"""""" +input AccountVectorizeV2WritesAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountVectorizeV2WritesAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountVectorizeV2WritesAdaptiveGroupsFilter_InputObject!] + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + indexName: string + + """""" + indexName_geq: string + + """""" + indexName_gt: string + + """""" + indexName_in: [string!] + + """""" + indexName_leq: string + + """""" + indexName_like: string + + """""" + indexName_lt: string + + """""" + indexName_neq: string + + """""" + indexName_notin: [string!] + + """""" + indexName_notlike: string + + """""" + operation: uint64 + + """""" + operation_geq: uint64 + + """""" + operation_gt: uint64 + + """""" + operation_in: [uint64!] + + """""" + operation_leq: uint64 + + """""" + operation_lt: uint64 + + """""" + operation_neq: uint64 + + """""" + operation_notin: [uint64!] + + """""" + requestStatus: string + + """""" + requestStatus_geq: string + + """""" + requestStatus_gt: string + + """""" + requestStatus_in: [string!] + + """""" + requestStatus_leq: string + + """""" + requestStatus_like: string + + """""" + requestStatus_lt: string + + """""" + requestStatus_neq: string + + """""" + requestStatus_notin: [string!] + + """""" + requestStatus_notlike: string +} + +"""""" +enum AccountVectorizeV2WritesAdaptiveGroupsOrderBy { + """avg(requestDurationMs) ascending""" + avg_requestDurationMs_ASC + + """avg(requestDurationMs) descending""" + avg_requestDurationMs_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """indexName ascending""" + indexName_ASC + + """indexName descending""" + indexName_DESC + + """operation ascending""" + operation_ASC + + """operation descending""" + operation_DESC + + """quantiles(requestDurationMsP25) ascending""" + quantiles_requestDurationMsP25_ASC + + """quantiles(requestDurationMsP25) descending""" + quantiles_requestDurationMsP25_DESC + + """quantiles(requestDurationMsP50) ascending""" + quantiles_requestDurationMsP50_ASC + + """quantiles(requestDurationMsP50) descending""" + quantiles_requestDurationMsP50_DESC + + """quantiles(requestDurationMsP75) ascending""" + quantiles_requestDurationMsP75_ASC + + """quantiles(requestDurationMsP75) descending""" + quantiles_requestDurationMsP75_DESC + + """quantiles(requestDurationMsP95) ascending""" + quantiles_requestDurationMsP95_ASC + + """quantiles(requestDurationMsP95) descending""" + quantiles_requestDurationMsP95_DESC + + """quantiles(requestDurationMsP99) ascending""" + quantiles_requestDurationMsP99_ASC + + """quantiles(requestDurationMsP99) descending""" + quantiles_requestDurationMsP99_DESC + + """requestStatus ascending""" + requestStatus_ASC + + """requestStatus descending""" + requestStatus_DESC + + """sum(addedVectorCount) ascending""" + sum_addedVectorCount_ASC + + """sum(addedVectorCount) descending""" + sum_addedVectorCount_DESC + + """sum(deletedVectorCount) ascending""" + sum_deletedVectorCount_ASC + + """sum(deletedVectorCount) descending""" + sum_deletedVectorCount_DESC + + """sum(requestDurationMs) ascending""" + sum_requestDurationMs_ASC + + """sum(requestDurationMs) descending""" + sum_requestDurationMs_DESC +} + +"""""" +type AccountVectorizeV2WritesAdaptiveGroupsQuantiles { + """25th percentile latency (milliseconds)""" + requestDurationMsP25: float32! + + """50th percentile latency (milliseconds)""" + requestDurationMsP50: float32! + + """75th percentile latency (milliseconds)""" + requestDurationMsP75: float32! + + """95th percentile latency (milliseconds)""" + requestDurationMsP95: float32! + + """99th percentile latency (milliseconds)""" + requestDurationMsP99: float32! +} + +"""""" +type AccountVectorizeV2WritesAdaptiveGroupsSum { + """ + The number of vectors added in Vectorize writes over the queried time period. + """ + addedVectorCount: uint64! + + """ + The number of vectors deleted in Vectorize writes over the queried time period. + """ + deletedVectorCount: uint64! + + """ + Total latency (in milliseconds) of serving Vectorize writes over the queried time period + """ + requestDurationMs: uint64! +} + +"""""" +type AccountVectorizeV2WritesAdaptiveGroupsSumConfidence { + """Confidence interval for the corresponding point estimate""" + addedVectorCount: Confidence! + + """Confidence interval for the corresponding point estimate""" + deletedVectorCount: Confidence! + + """Confidence interval for the corresponding point estimate""" + requestDurationMs: Confidence! +} + +""" +Beta. Aggregated video streaming buffer event metrics with adaptive sampling +""" +type AccountVideoBufferEventsAdaptiveGroups { + """""" + avg: AccountVideoBufferEventsAdaptiveGroupsAvg + + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountVideoBufferEventsAdaptiveGroupsConfidence! + + """Total number of buffer events""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountVideoBufferEventsAdaptiveGroupsDimensions +} + +"""""" +type AccountVideoBufferEventsAdaptiveGroupsAvg { + """Average sample interval""" + sampleInterval: float64! +} + +"""""" +type AccountVideoBufferEventsAdaptiveGroupsConfidence { + """Total number of buffer events, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! +} + +"""""" +type AccountVideoBufferEventsAdaptiveGroupsDimensions { + """ISO 3166 alpha2 country code from the client""" + clientCountryName: string! + + """Request date of the event""" + date: Date! + + """Request datetime of the event""" + datetime: Time! + + """Request datetime of the event, truncated to multiple of 15 minutes""" + datetimeFifteenMinutes: Time! + + """Request datetime of the event, truncated to multiple of 5 minutes""" + datetimeFiveMinutes: Time! + + """Request datetime of the event, truncated to multiple of 30 minutes""" + datetimeHalfOfHour: Time! + + """Request datetime of the event, truncated to the hour""" + datetimeHour: Time! + + """Request datetime of the event, truncated to the minute""" + datetimeMinute: Time! + + """Browser of the device used in playback""" + deviceBrowser: string! + + """OS of the device used in playback""" + deviceOs: string! + + """Device type used in playback""" + deviceType: string! + + """unique id for a video""" + uid: string! +} + +"""""" +input AccountVideoBufferEventsAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountVideoBufferEventsAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountVideoBufferEventsAdaptiveGroupsFilter_InputObject!] + + """""" + clientCountryName: string + + """""" + clientCountryName_geq: string + + """""" + clientCountryName_gt: string + + """""" + clientCountryName_in: [string!] + + """""" + clientCountryName_leq: string + + """""" + clientCountryName_like: string + + """""" + clientCountryName_lt: string + + """""" + clientCountryName_neq: string + + """""" + clientCountryName_notin: [string!] + + """""" + clientCountryName_notlike: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHalfOfHour: Time + + """""" + datetimeHalfOfHour_geq: Time + + """""" + datetimeHalfOfHour_gt: Time + + """""" + datetimeHalfOfHour_in: [Time!] + + """""" + datetimeHalfOfHour_leq: Time + + """""" + datetimeHalfOfHour_lt: Time + + """""" + datetimeHalfOfHour_neq: Time + + """""" + datetimeHalfOfHour_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + deviceBrowser: string + + """""" + deviceBrowser_geq: string + + """""" + deviceBrowser_gt: string + + """""" + deviceBrowser_in: [string!] + + """""" + deviceBrowser_leq: string + + """""" + deviceBrowser_like: string + + """""" + deviceBrowser_lt: string + + """""" + deviceBrowser_neq: string + + """""" + deviceBrowser_notin: [string!] + + """""" + deviceBrowser_notlike: string + + """""" + deviceOs: string + + """""" + deviceOs_geq: string + + """""" + deviceOs_gt: string + + """""" + deviceOs_in: [string!] + + """""" + deviceOs_leq: string + + """""" + deviceOs_like: string + + """""" + deviceOs_lt: string + + """""" + deviceOs_neq: string + + """""" + deviceOs_notin: [string!] + + """""" + deviceOs_notlike: string + + """""" + deviceType: string + + """""" + deviceType_geq: string + + """""" + deviceType_gt: string + + """""" + deviceType_in: [string!] + + """""" + deviceType_leq: string + + """""" + deviceType_like: string + + """""" + deviceType_lt: string + + """""" + deviceType_neq: string + + """""" + deviceType_notin: [string!] + + """""" + deviceType_notlike: string + + """""" + uid: string + + """""" + uid_geq: string + + """""" + uid_gt: string + + """""" + uid_in: [string!] + + """""" + uid_leq: string + + """""" + uid_like: string + + """""" + uid_lt: string + + """""" + uid_neq: string + + """""" + uid_notin: [string!] + + """""" + uid_notlike: string +} + +"""""" +enum AccountVideoBufferEventsAdaptiveGroupsOrderBy { + """avg(sampleInterval) ascending""" + avg_sampleInterval_ASC + + """avg(sampleInterval) descending""" + avg_sampleInterval_DESC + + """clientCountryName ascending""" + clientCountryName_ASC + + """clientCountryName descending""" + clientCountryName_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHalfOfHour ascending""" + datetimeHalfOfHour_ASC + + """datetimeHalfOfHour descending""" + datetimeHalfOfHour_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """deviceBrowser ascending""" + deviceBrowser_ASC + + """deviceBrowser descending""" + deviceBrowser_DESC + + """deviceOs ascending""" + deviceOs_ASC + + """deviceOs descending""" + deviceOs_DESC + + """deviceType ascending""" + deviceType_ASC + + """deviceType descending""" + deviceType_DESC + + """eventType ascending""" + eventType_ASC + + """eventType descending""" + eventType_DESC + + """uid ascending""" + uid_ASC + + """uid descending""" + uid_DESC +} + +""" +Beta. Aggregated video streaming playback event metrics with adaptive sampling +""" +type AccountVideoPlaybackEventsAdaptiveGroups { + """""" + avg: AccountVideoPlaybackEventsAdaptiveGroupsAvg + + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountVideoPlaybackEventsAdaptiveGroupsConfidence! + + """Total number of playback starts""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountVideoPlaybackEventsAdaptiveGroupsDimensions + + """""" + sum: AccountVideoPlaybackEventsAdaptiveGroupsSum +} + +"""""" +type AccountVideoPlaybackEventsAdaptiveGroupsAvg { + """Average sample interval""" + sampleInterval: float64! +} + +"""""" +type AccountVideoPlaybackEventsAdaptiveGroupsConfidence { + """Total number of playback starts, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! + + """""" + sum: AccountVideoPlaybackEventsAdaptiveGroupsSumConfidence +} + +"""""" +type AccountVideoPlaybackEventsAdaptiveGroupsDimensions { + """ISO 3166 alpha2 country code from the client""" + clientCountryName: string! + + """Request date of the event""" + date: Date! + + """Request datetime of the event""" + datetime: Time! + + """Request datetime of the event, truncated to multiple of 15 minutes""" + datetimeFifteenMinutes: Time! + + """Request datetime of the event, truncated to multiple of 5 minutes""" + datetimeFiveMinutes: Time! + + """Request datetime of the event, truncated to multiple of 30 minutes""" + datetimeHalfOfHour: Time! + + """Request datetime of the event, truncated to the hour""" + datetimeHour: Time! + + """Request datetime of the event, truncated to the minute""" + datetimeMinute: Time! + + """Browser of the device used in playback""" + deviceBrowser: string! + + """OS of the device used in playback""" + deviceOs: string! + + """Device type used in playback""" + deviceType: string! + + """unique id for a video""" + uid: string! +} + +"""""" +input AccountVideoPlaybackEventsAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountVideoPlaybackEventsAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountVideoPlaybackEventsAdaptiveGroupsFilter_InputObject!] + + """""" + clientCountryName: string + + """""" + clientCountryName_geq: string + + """""" + clientCountryName_gt: string + + """""" + clientCountryName_in: [string!] + + """""" + clientCountryName_leq: string + + """""" + clientCountryName_like: string + + """""" + clientCountryName_lt: string + + """""" + clientCountryName_neq: string + + """""" + clientCountryName_notin: [string!] + + """""" + clientCountryName_notlike: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHalfOfHour: Time + + """""" + datetimeHalfOfHour_geq: Time + + """""" + datetimeHalfOfHour_gt: Time + + """""" + datetimeHalfOfHour_in: [Time!] + + """""" + datetimeHalfOfHour_leq: Time + + """""" + datetimeHalfOfHour_lt: Time + + """""" + datetimeHalfOfHour_neq: Time + + """""" + datetimeHalfOfHour_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + deviceBrowser: string + + """""" + deviceBrowser_geq: string + + """""" + deviceBrowser_gt: string + + """""" + deviceBrowser_in: [string!] + + """""" + deviceBrowser_leq: string + + """""" + deviceBrowser_like: string + + """""" + deviceBrowser_lt: string + + """""" + deviceBrowser_neq: string + + """""" + deviceBrowser_notin: [string!] + + """""" + deviceBrowser_notlike: string + + """""" + deviceOs: string + + """""" + deviceOs_geq: string + + """""" + deviceOs_gt: string + + """""" + deviceOs_in: [string!] + + """""" + deviceOs_leq: string + + """""" + deviceOs_like: string + + """""" + deviceOs_lt: string + + """""" + deviceOs_neq: string + + """""" + deviceOs_notin: [string!] + + """""" + deviceOs_notlike: string + + """""" + deviceType: string + + """""" + deviceType_geq: string + + """""" + deviceType_gt: string + + """""" + deviceType_in: [string!] + + """""" + deviceType_leq: string + + """""" + deviceType_like: string + + """""" + deviceType_lt: string + + """""" + deviceType_neq: string + + """""" + deviceType_notin: [string!] + + """""" + deviceType_notlike: string + + """""" + uid: string + + """""" + uid_geq: string + + """""" + uid_gt: string + + """""" + uid_in: [string!] + + """""" + uid_leq: string + + """""" + uid_like: string + + """""" + uid_lt: string + + """""" + uid_neq: string + + """""" + uid_notin: [string!] + + """""" + uid_notlike: string +} + +"""""" +enum AccountVideoPlaybackEventsAdaptiveGroupsOrderBy { + """avg(sampleInterval) ascending""" + avg_sampleInterval_ASC + + """avg(sampleInterval) descending""" + avg_sampleInterval_DESC + + """clientCountryName ascending""" + clientCountryName_ASC + + """clientCountryName descending""" + clientCountryName_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHalfOfHour ascending""" + datetimeHalfOfHour_ASC + + """datetimeHalfOfHour descending""" + datetimeHalfOfHour_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """deviceBrowser ascending""" + deviceBrowser_ASC + + """deviceBrowser descending""" + deviceBrowser_DESC + + """deviceOs ascending""" + deviceOs_ASC + + """deviceOs descending""" + deviceOs_DESC + + """deviceType ascending""" + deviceType_ASC + + """deviceType descending""" + deviceType_DESC + + """sum(timeViewedMinutes) ascending""" + sum_timeViewedMinutes_ASC + + """sum(timeViewedMinutes) descending""" + sum_timeViewedMinutes_DESC + + """uid ascending""" + uid_ASC + + """uid descending""" + uid_DESC +} + +"""""" +type AccountVideoPlaybackEventsAdaptiveGroupsSum { + """Total time viewed in minutes""" + timeViewedMinutes: uint64! +} + +"""""" +type AccountVideoPlaybackEventsAdaptiveGroupsSumConfidence { + """Confidence interval for the corresponding point estimate""" + timeViewedMinutes: Confidence! +} + +""" +Beta. Aggregated video streaming quality change event metrics with adaptive sampling +""" +type AccountVideoQualityEventsAdaptiveGroups { + """""" + avg: AccountVideoQualityEventsAdaptiveGroupsAvg + + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountVideoQualityEventsAdaptiveGroupsConfidence! + + """Total number of quality change events""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountVideoQualityEventsAdaptiveGroupsDimensions +} + +"""""" +type AccountVideoQualityEventsAdaptiveGroupsAvg { + """Average sample interval""" + sampleInterval: float64! +} + +"""""" +type AccountVideoQualityEventsAdaptiveGroupsConfidence { + """Total number of quality change events, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! +} + +"""""" +type AccountVideoQualityEventsAdaptiveGroupsDimensions { + """ISO 3166 alpha2 country code from the client""" + clientCountryName: string! + + """Request date of the event""" + date: Date! + + """Request datetime of the event""" + datetime: Time! + + """Request datetime of the event, truncated to multiple of 15 minutes""" + datetimeFifteenMinutes: Time! + + """Request datetime of the event, truncated to multiple of 5 minutes""" + datetimeFiveMinutes: Time! + + """Request datetime of the event, truncated to multiple of 30 minutes""" + datetimeHalfOfHour: Time! + + """Request datetime of the event, truncated to the hour""" + datetimeHour: Time! + + """Request datetime of the event, truncated to the minute""" + datetimeMinute: Time! + + """Browser of the device used in playback""" + deviceBrowser: string! + + """OS of the device used in playback""" + deviceOs: string! + + """Device type used in playback""" + deviceType: string! + + """Video playback vertical resolution""" + qualityResolution: uint64! + + """unique id for a video""" + uid: string! +} + +"""""" +input AccountVideoQualityEventsAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountVideoQualityEventsAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountVideoQualityEventsAdaptiveGroupsFilter_InputObject!] + + """""" + clientCountryName: string + + """""" + clientCountryName_geq: string + + """""" + clientCountryName_gt: string + + """""" + clientCountryName_in: [string!] + + """""" + clientCountryName_leq: string + + """""" + clientCountryName_like: string + + """""" + clientCountryName_lt: string + + """""" + clientCountryName_neq: string + + """""" + clientCountryName_notin: [string!] + + """""" + clientCountryName_notlike: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHalfOfHour: Time + + """""" + datetimeHalfOfHour_geq: Time + + """""" + datetimeHalfOfHour_gt: Time + + """""" + datetimeHalfOfHour_in: [Time!] + + """""" + datetimeHalfOfHour_leq: Time + + """""" + datetimeHalfOfHour_lt: Time + + """""" + datetimeHalfOfHour_neq: Time + + """""" + datetimeHalfOfHour_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + deviceBrowser: string + + """""" + deviceBrowser_geq: string + + """""" + deviceBrowser_gt: string + + """""" + deviceBrowser_in: [string!] + + """""" + deviceBrowser_leq: string + + """""" + deviceBrowser_like: string + + """""" + deviceBrowser_lt: string + + """""" + deviceBrowser_neq: string + + """""" + deviceBrowser_notin: [string!] + + """""" + deviceBrowser_notlike: string + + """""" + deviceOs: string + + """""" + deviceOs_geq: string + + """""" + deviceOs_gt: string + + """""" + deviceOs_in: [string!] + + """""" + deviceOs_leq: string + + """""" + deviceOs_like: string + + """""" + deviceOs_lt: string + + """""" + deviceOs_neq: string + + """""" + deviceOs_notin: [string!] + + """""" + deviceOs_notlike: string + + """""" + deviceType: string + + """""" + deviceType_geq: string + + """""" + deviceType_gt: string + + """""" + deviceType_in: [string!] + + """""" + deviceType_leq: string + + """""" + deviceType_like: string + + """""" + deviceType_lt: string + + """""" + deviceType_neq: string + + """""" + deviceType_notin: [string!] + + """""" + deviceType_notlike: string + + """""" + qualityResolution: uint64 + + """""" + qualityResolution_geq: uint64 + + """""" + qualityResolution_gt: uint64 + + """""" + qualityResolution_in: [uint64!] + + """""" + qualityResolution_leq: uint64 + + """""" + qualityResolution_lt: uint64 + + """""" + qualityResolution_neq: uint64 + + """""" + qualityResolution_notin: [uint64!] + + """""" + uid: string + + """""" + uid_geq: string + + """""" + uid_gt: string + + """""" + uid_in: [string!] + + """""" + uid_leq: string + + """""" + uid_like: string + + """""" + uid_lt: string + + """""" + uid_neq: string + + """""" + uid_notin: [string!] + + """""" + uid_notlike: string +} + +"""""" +enum AccountVideoQualityEventsAdaptiveGroupsOrderBy { + """avg(sampleInterval) ascending""" + avg_sampleInterval_ASC + + """avg(sampleInterval) descending""" + avg_sampleInterval_DESC + + """clientCountryName ascending""" + clientCountryName_ASC + + """clientCountryName descending""" + clientCountryName_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHalfOfHour ascending""" + datetimeHalfOfHour_ASC + + """datetimeHalfOfHour descending""" + datetimeHalfOfHour_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """deviceBrowser ascending""" + deviceBrowser_ASC + + """deviceBrowser descending""" + deviceBrowser_DESC + + """deviceOs ascending""" + deviceOs_ASC + + """deviceOs descending""" + deviceOs_DESC + + """deviceType ascending""" + deviceType_ASC + + """deviceType descending""" + deviceType_DESC + + """eventType ascending""" + eventType_ASC + + """eventType descending""" + eventType_DESC + + """qualityResolution ascending""" + qualityResolution_ASC + + """qualityResolution descending""" + qualityResolution_DESC + + """uid ascending""" + uid_ASC + + """uid descending""" + uid_DESC +} + +"""Beta. Warp device health events with adaptive sampling""" +type AccountWarpDeviceAdaptiveGroups { + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountWarpDeviceAdaptiveGroupsConfidence! + + """ + Number of device health events, which usually occur at 2m intervals per device + """ + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountWarpDeviceAdaptiveGroupsDimensions + + """""" + uniq: AccountWarpDeviceAdaptiveGroupsUniq +} + +"""""" +type AccountWarpDeviceAdaptiveGroupsConfidence { + """ + Number of device health events, which usually occur at 2m intervals per device, with confidence intervals + """ + count: Confidence! + + """Confidence level that was requested""" + level: float64! +} + +"""""" +type AccountWarpDeviceAdaptiveGroupsDimensions { + """Device's OS""" + clientPlatform: string! + + """Device's Warp version""" + clientVersion: string! + + """Device's connected colo""" + colo: string! + + """The date of the device log""" + date: Date! + + """The date and time of the device log""" + datetime: Time! + + """The date and time of the device log truncated to every five minutes""" + datetimeFiveMinute: Time! + + """The date and time of the device log truncated to the hour""" + datetimeHour: Time! + + """The date and time of the device log truncated to every ten minutes""" + datetimeTenMinute: Time! + + """Device ID""" + deviceId: string! + + """Device's Warp mode""" + mode: string! + + """Device connection status""" + status: string! +} + +"""""" +input AccountWarpDeviceAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountWarpDeviceAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountWarpDeviceAdaptiveGroupsFilter_InputObject!] + + """""" + clientPlatform: string + + """""" + clientPlatform_geq: string + + """""" + clientPlatform_gt: string + + """""" + clientPlatform_in: [string!] + + """""" + clientPlatform_leq: string + + """""" + clientPlatform_like: string + + """""" + clientPlatform_lt: string + + """""" + clientPlatform_neq: string + + """""" + clientPlatform_notin: [string!] + + """""" + clientPlatform_notlike: string + + """""" + clientVersion: string + + """""" + clientVersion_geq: string + + """""" + clientVersion_gt: string + + """""" + clientVersion_in: [string!] + + """""" + clientVersion_leq: string + + """""" + clientVersion_like: string + + """""" + clientVersion_lt: string + + """""" + clientVersion_neq: string + + """""" + clientVersion_notin: [string!] + + """""" + clientVersion_notlike: string + + """""" + colo: string + + """""" + colo_geq: string + + """""" + colo_gt: string + + """""" + colo_in: [string!] + + """""" + colo_leq: string + + """""" + colo_like: string + + """""" + colo_lt: string + + """""" + colo_neq: string + + """""" + colo_notin: [string!] + + """""" + colo_notlike: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeFiveMinute: Time + + """""" + datetimeFiveMinute_geq: Time + + """""" + datetimeFiveMinute_gt: Time + + """""" + datetimeFiveMinute_in: [Time!] + + """""" + datetimeFiveMinute_leq: Time + + """""" + datetimeFiveMinute_lt: Time + + """""" + datetimeFiveMinute_neq: Time + + """""" + datetimeFiveMinute_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeTenMinute: Time + + """""" + datetimeTenMinute_geq: Time + + """""" + datetimeTenMinute_gt: Time + + """""" + datetimeTenMinute_in: [Time!] + + """""" + datetimeTenMinute_leq: Time + + """""" + datetimeTenMinute_lt: Time + + """""" + datetimeTenMinute_neq: Time + + """""" + datetimeTenMinute_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + deviceId: string + + """""" + deviceId_geq: string + + """""" + deviceId_gt: string + + """""" + deviceId_in: [string!] + + """""" + deviceId_leq: string + + """""" + deviceId_like: string + + """""" + deviceId_lt: string + + """""" + deviceId_neq: string + + """""" + deviceId_notin: [string!] + + """""" + deviceId_notlike: string + + """""" + mode: string + + """""" + mode_geq: string + + """""" + mode_gt: string + + """""" + mode_in: [string!] + + """""" + mode_leq: string + + """""" + mode_like: string + + """""" + mode_lt: string + + """""" + mode_neq: string + + """""" + mode_notin: [string!] + + """""" + mode_notlike: string + + """""" + status: string + + """""" + status_geq: string + + """""" + status_gt: string + + """""" + status_in: [string!] + + """""" + status_leq: string + + """""" + status_like: string + + """""" + status_lt: string + + """""" + status_neq: string + + """""" + status_notin: [string!] + + """""" + status_notlike: string +} + +"""""" +enum AccountWarpDeviceAdaptiveGroupsOrderBy { + """clientPlatform ascending""" + clientPlatform_ASC + + """clientPlatform descending""" + clientPlatform_DESC + + """clientVersion ascending""" + clientVersion_ASC + + """clientVersion descending""" + clientVersion_DESC + + """colo ascending""" + colo_ASC + + """colo descending""" + colo_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFiveMinute ascending""" + datetimeFiveMinute_ASC + + """datetimeFiveMinute descending""" + datetimeFiveMinute_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeTenMinute ascending""" + datetimeTenMinute_ASC + + """datetimeTenMinute descending""" + datetimeTenMinute_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """deviceId ascending""" + deviceId_ASC + + """deviceId descending""" + deviceId_DESC + + """mode ascending""" + mode_ASC + + """mode descending""" + mode_DESC + + """status ascending""" + status_ASC + + """status descending""" + status_DESC + + """uniq(deviceIds) ascending""" + uniq_deviceIds_ASC + + """uniq(deviceIds) descending""" + uniq_deviceIds_DESC +} + +"""""" +type AccountWarpDeviceAdaptiveGroupsUniq { + """Approximate count of unique deviceIds""" + deviceIds: uint64! +} + +"""Worker placement metrics""" +type AccountWorkerPlacementAdaptiveGroups { + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountWorkerPlacementAdaptiveGroupsConfidence! + + """List of dimensions to group by""" + dimensions: AccountWorkerPlacementAdaptiveGroupsDimensions + + """Quantiles of a metric per dimension""" + quantiles: AccountWorkerPlacementAdaptiveGroupsQuantiles + + """The sum of values for a metric per dimension""" + sum: AccountWorkerPlacementAdaptiveGroupsSum +} + +"""""" +type AccountWorkerPlacementAdaptiveGroupsConfidence { + """Confidence level that was requested""" + level: float64! + + """ + The sum of values for a metric per dimension, with confidence intervals + """ + sum: AccountWorkerPlacementAdaptiveGroupsSumConfidence +} + +"""""" +type AccountWorkerPlacementAdaptiveGroupsDimensions { + """ + IATA airport code for the Cloudflare datacenter where the request entered Cloudflare's network. + """ + clientColoCode: string! + + """IATA airport code for the Cloudflare datacenter where the script ran.""" + coloCode: string! + + """Request timestamp, truncated to start of a day""" + date: Date! + + """Request timestamp""" + datetime: Time! + + """Request timestamp, truncated to fifteen minutes""" + datetimeFifteenMinutes: Time! + + """Request timestamp, truncated to five minutes""" + datetimeFiveMinutes: Time! + + """Request timestamp, truncated to start of an hour""" + datetimeHour: Time! + + """Request timestamp, truncated to start of an minute""" + datetimeMinute: Time! + + """Request timestamp, truncated to start of six hour window""" + datetimeSixHours: Time! + + """Response status of worker""" + httpStatus: uint16! + + """ + 1 if the request was sampled to bypass Smart Placement, 0 if it was processed using Smart Placement + """ + isSample: uint8! + + """ + 1 if the request was processed using Smart Placement, 0 if it was processed in default mode + """ + placementUsed: uint8! + + """Bucket of request duration rounded down to nearest 10*2^n""" + requestDurationBucketMin: uint32! + + """Bucket of request duration rounded down to nearest 100ms""" + requestDurationBucketMin100ms: uint32! + + """The script name""" + scriptName: string! + + """The unique tag of the script""" + scriptTag: string! + + """The script version""" + scriptVersion: string! +} + +"""""" +input AccountWorkerPlacementAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountWorkerPlacementAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountWorkerPlacementAdaptiveGroupsFilter_InputObject!] + + """""" + clientColoCode: string + + """""" + clientColoCode_geq: string + + """""" + clientColoCode_gt: string + + """""" + clientColoCode_in: [string!] + + """""" + clientColoCode_leq: string + + """""" + clientColoCode_like: string + + """""" + clientColoCode_lt: string + + """""" + clientColoCode_neq: string + + """""" + clientColoCode_notin: [string!] + + """""" + clientColoCode_notlike: string + + """""" + coloCode: string + + """""" + coloCode_geq: string + + """""" + coloCode_gt: string + + """""" + coloCode_in: [string!] + + """""" + coloCode_leq: string + + """""" + coloCode_like: string + + """""" + coloCode_lt: string + + """""" + coloCode_neq: string + + """""" + coloCode_notin: [string!] + + """""" + coloCode_notlike: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetimeSixHours: Time + + """""" + datetimeSixHours_geq: Time + + """""" + datetimeSixHours_gt: Time + + """""" + datetimeSixHours_in: [Time!] + + """""" + datetimeSixHours_leq: Time + + """""" + datetimeSixHours_lt: Time + + """""" + datetimeSixHours_neq: Time + + """""" + datetimeSixHours_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + httpStatus: uint16 + + """""" + httpStatus_geq: uint16 + + """""" + httpStatus_gt: uint16 + + """""" + httpStatus_in: [uint16!] + + """""" + httpStatus_leq: uint16 + + """""" + httpStatus_lt: uint16 + + """""" + httpStatus_neq: uint16 + + """""" + httpStatus_notin: [uint16!] + + """""" + isSample: uint8 + + """""" + isSample_geq: uint8 + + """""" + isSample_gt: uint8 + + """""" + isSample_in: bytes + + """""" + isSample_leq: uint8 + + """""" + isSample_lt: uint8 + + """""" + isSample_neq: uint8 + + """""" + isSample_notin: bytes + + """""" + placementUsed: uint8 + + """""" + placementUsed_geq: uint8 + + """""" + placementUsed_gt: uint8 + + """""" + placementUsed_in: bytes + + """""" + placementUsed_leq: uint8 + + """""" + placementUsed_lt: uint8 + + """""" + placementUsed_neq: uint8 + + """""" + placementUsed_notin: bytes + + """""" + requestDurationBucketMin: uint32 + + """""" + requestDurationBucketMin100ms: uint32 + + """""" + requestDurationBucketMin100ms_geq: uint32 + + """""" + requestDurationBucketMin100ms_gt: uint32 + + """""" + requestDurationBucketMin100ms_in: [uint32!] + + """""" + requestDurationBucketMin100ms_leq: uint32 + + """""" + requestDurationBucketMin100ms_lt: uint32 + + """""" + requestDurationBucketMin100ms_neq: uint32 + + """""" + requestDurationBucketMin100ms_notin: [uint32!] + + """""" + requestDurationBucketMin_geq: uint32 + + """""" + requestDurationBucketMin_gt: uint32 + + """""" + requestDurationBucketMin_in: [uint32!] + + """""" + requestDurationBucketMin_leq: uint32 + + """""" + requestDurationBucketMin_lt: uint32 + + """""" + requestDurationBucketMin_neq: uint32 + + """""" + requestDurationBucketMin_notin: [uint32!] + + """""" + scriptName: string + + """""" + scriptName_geq: string + + """""" + scriptName_gt: string + + """""" + scriptName_in: [string!] + + """""" + scriptName_leq: string + + """""" + scriptName_like: string + + """""" + scriptName_lt: string + + """""" + scriptName_neq: string + + """""" + scriptName_notin: [string!] + + """""" + scriptName_notlike: string + + """""" + scriptTag: string + + """""" + scriptTag_geq: string + + """""" + scriptTag_gt: string + + """""" + scriptTag_in: [string!] + + """""" + scriptTag_leq: string + + """""" + scriptTag_like: string + + """""" + scriptTag_lt: string + + """""" + scriptTag_neq: string + + """""" + scriptTag_notin: [string!] + + """""" + scriptTag_notlike: string + + """""" + scriptVersion: string + + """""" + scriptVersion_geq: string + + """""" + scriptVersion_gt: string + + """""" + scriptVersion_in: [string!] + + """""" + scriptVersion_leq: string + + """""" + scriptVersion_like: string + + """""" + scriptVersion_lt: string + + """""" + scriptVersion_neq: string + + """""" + scriptVersion_notin: [string!] + + """""" + scriptVersion_notlike: string +} + +"""""" +enum AccountWorkerPlacementAdaptiveGroupsOrderBy { + """clientColoCode ascending""" + clientColoCode_ASC + + """clientColoCode descending""" + clientColoCode_DESC + + """coloCode ascending""" + coloCode_ASC + + """coloCode descending""" + coloCode_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetimeSixHours ascending""" + datetimeSixHours_ASC + + """datetimeSixHours descending""" + datetimeSixHours_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """httpStatus ascending""" + httpStatus_ASC + + """httpStatus descending""" + httpStatus_DESC + + """isSample ascending""" + isSample_ASC + + """isSample descending""" + isSample_DESC + + """placementUsed ascending""" + placementUsed_ASC + + """placementUsed descending""" + placementUsed_DESC + + """quantiles(requestDurationP25) ascending""" + quantiles_requestDurationP25_ASC + + """quantiles(requestDurationP25) descending""" + quantiles_requestDurationP25_DESC + + """quantiles(requestDurationP50) ascending""" + quantiles_requestDurationP50_ASC + + """quantiles(requestDurationP50) descending""" + quantiles_requestDurationP50_DESC + + """quantiles(requestDurationP75) ascending""" + quantiles_requestDurationP75_ASC + + """quantiles(requestDurationP75) descending""" + quantiles_requestDurationP75_DESC + + """quantiles(requestDurationP90) ascending""" + quantiles_requestDurationP90_ASC + + """quantiles(requestDurationP90) descending""" + quantiles_requestDurationP90_DESC + + """quantiles(requestDurationP95) ascending""" + quantiles_requestDurationP95_ASC + + """quantiles(requestDurationP95) descending""" + quantiles_requestDurationP95_DESC + + """quantiles(requestDurationP999) ascending""" + quantiles_requestDurationP999_ASC + + """quantiles(requestDurationP999) descending""" + quantiles_requestDurationP999_DESC + + """quantiles(requestDurationP99) ascending""" + quantiles_requestDurationP99_ASC + + """quantiles(requestDurationP99) descending""" + quantiles_requestDurationP99_DESC + + """requestDurationBucketMin100ms ascending""" + requestDurationBucketMin100ms_ASC + + """requestDurationBucketMin100ms descending""" + requestDurationBucketMin100ms_DESC + + """requestDurationBucketMin ascending""" + requestDurationBucketMin_ASC + + """requestDurationBucketMin descending""" + requestDurationBucketMin_DESC + + """scriptId ascending""" + scriptId_ASC + + """scriptId descending""" + scriptId_DESC + + """scriptName ascending""" + scriptName_ASC + + """scriptName descending""" + scriptName_DESC + + """scriptTag ascending""" + scriptTag_ASC + + """scriptTag descending""" + scriptTag_DESC + + """scriptVersion ascending""" + scriptVersion_ASC + + """scriptVersion descending""" + scriptVersion_DESC + + """sum(requestDuration) ascending""" + sum_requestDuration_ASC + + """sum(requestDuration) descending""" + sum_requestDuration_DESC + + """sum(requests) ascending""" + sum_requests_ASC + + """sum(requests) descending""" + sum_requests_DESC +} + +"""""" +type AccountWorkerPlacementAdaptiveGroupsQuantiles { + """Request duration 25th percentile - milliseconds""" + requestDurationP25: float32! + + """Request duration 50th percentile - milliseconds""" + requestDurationP50: float32! + + """Request duration 75th percentile - milliseconds""" + requestDurationP75: float32! + + """Request duration 90th percentile - milliseconds""" + requestDurationP90: float32! + + """Request duration 95th percentile - milliseconds""" + requestDurationP95: float32! + + """Request duration 99th percentile - milliseconds""" + requestDurationP99: float32! + + """Request duration 99.9th percentile - milliseconds""" + requestDurationP999: float32! +} + +"""""" +type AccountWorkerPlacementAdaptiveGroupsSum { + """ + Sum of duration ms of requests measured at the data centers that receive the requests + """ + requestDuration: uint64! + + """Total number of requests""" + requests: uint64! +} + +"""""" +type AccountWorkerPlacementAdaptiveGroupsSumConfidence { + """Confidence interval for the corresponding point estimate""" + requestDuration: Confidence! + + """Confidence interval for the corresponding point estimate""" + requests: Confidence! +} + +"""Beta. Custom Events with adaptive sampling""" +type AccountWorkersAnalyticsEngineAdaptiveGroups { + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountWorkersAnalyticsEngineAdaptiveGroupsConfidence! + + """The number of values for a metric per dimension""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountWorkersAnalyticsEngineAdaptiveGroupsDimensions +} + +"""""" +type AccountWorkersAnalyticsEngineAdaptiveGroupsConfidence { + """ + The number of values for a metric per dimension, with confidence intervals + """ + count: Confidence! + + """Confidence level that was requested""" + level: float64! +} + +"""""" +type AccountWorkersAnalyticsEngineAdaptiveGroupsDimensions { + """The dataset name""" + dataset: string! + + """The date the event occurred""" + date: Date! + + """The date and time the event occurred""" + datetime: Time! + + """ + The date and time the event occurred truncated to a multiple of 15 minutes + """ + datetimeFifteenMinutes: Time! + + """ + The date and time the event occurred truncated to a multiple of 5 minutes + """ + datetimeFiveMinutes: Time! + + """The date and time the event occurred truncated to the start of an hour""" + datetimeHour: Time! + + """ + The date and time the event occurred truncated to the start of a minute + """ + datetimeMinute: Time! +} + +"""""" +input AccountWorkersAnalyticsEngineAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountWorkersAnalyticsEngineAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountWorkersAnalyticsEngineAdaptiveGroupsFilter_InputObject!] + + """""" + dataset: string + + """""" + dataset_geq: string + + """""" + dataset_gt: string + + """""" + dataset_in: [string!] + + """""" + dataset_leq: string + + """""" + dataset_like: string + + """""" + dataset_lt: string + + """""" + dataset_neq: string + + """""" + dataset_notin: [string!] + + """""" + dataset_notlike: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] +} + +"""""" +enum AccountWorkersAnalyticsEngineAdaptiveGroupsOrderBy { + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """dataset ascending""" + dataset_ASC + + """dataset descending""" + dataset_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC +} + +"""Workers Builds build minute overview data with adaptive sampling""" +type AccountWorkersBuildsBuildMinutesAdaptiveGroups { + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountWorkersBuildsBuildMinutesAdaptiveGroupsConfidence! + + """List of dimensions to group by""" + dimensions: AccountWorkersBuildsBuildMinutesAdaptiveGroupsDimensions + + """The sum of values for a metric per dimension""" + sum: AccountWorkersBuildsBuildMinutesAdaptiveGroupsSum +} + +"""""" +type AccountWorkersBuildsBuildMinutesAdaptiveGroupsConfidence { + """Confidence level that was requested""" + level: float64! + + """ + The sum of values for a metric per dimension, with confidence intervals + """ + sum: AccountWorkersBuildsBuildMinutesAdaptiveGroupsSumConfidence +} + +"""""" +type AccountWorkersBuildsBuildMinutesAdaptiveGroupsDimensions { + """Build minutes recorded timestamp""" + datetime: Time! +} + +"""""" +input AccountWorkersBuildsBuildMinutesAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountWorkersBuildsBuildMinutesAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountWorkersBuildsBuildMinutesAdaptiveGroupsFilter_InputObject!] + + """""" + datetime: Time + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] +} + +"""""" +enum AccountWorkersBuildsBuildMinutesAdaptiveGroupsOrderBy { + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """sum(buildMinutes) ascending""" + sum_buildMinutes_ASC + + """sum(buildMinutes) descending""" + sum_buildMinutes_DESC +} + +"""""" +type AccountWorkersBuildsBuildMinutesAdaptiveGroupsSum { + """The sum of build minutes""" + buildMinutes: float64! +} + +"""""" +type AccountWorkersBuildsBuildMinutesAdaptiveGroupsSumConfidence { + """Confidence interval for the corresponding point estimate""" + buildMinutes: Confidence! +} + +"""Beta. Workers invocations with adaptive sampling""" +type AccountWorkersInvocationsAdaptive { + """The average value used for sample interval""" + avg: AccountWorkersInvocationsAdaptiveAvg + + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountWorkersInvocationsAdaptiveConfidence! + + """List of dimensions to group by""" + dimensions: AccountWorkersInvocationsAdaptiveDimensions + + """The max value for a metric""" + max: AccountWorkersInvocationsAdaptiveMax + + """The min value for a metric""" + min: AccountWorkersInvocationsAdaptiveMin + + """Quantiles of a metric per dimension""" + quantiles: AccountWorkersInvocationsAdaptiveQuantiles + + """The sum of values for a metric per dimension""" + sum: AccountWorkersInvocationsAdaptiveSum +} + +"""""" +type AccountWorkersInvocationsAdaptiveAvg { + """""" + sampleInterval: float64! +} + +"""""" +type AccountWorkersInvocationsAdaptiveConfidence { + """Confidence level that was requested""" + level: float64! + + """ + The sum of values for a metric per dimension, with confidence intervals + """ + sum: AccountWorkersInvocationsAdaptiveSumConfidence +} + +"""""" +type AccountWorkersInvocationsAdaptiveDimensions { + """IATA airport code for the Cloudflare datacenter where the script ran.""" + coloCode: string! + + """Request datetime, truncated to start of a day""" + date: Date! + + """Request datetime""" + datetime: Time! + + """The date and time of the event truncated to fifteen minutes""" + datetimeFifteenMinutes: Time! + + """The date and time of the event truncated to five minutes""" + datetimeFiveMinutes: Time! + + """Request datetime, truncated to start of an hour""" + datetimeHour: Time! + + """Request datetime, truncated to start of an minute""" + datetimeMinute: Time! + + """Request datetime, truncated to start of six hour window""" + datetimeSixHours: Time! + + """The name of the script's dispatch namespace""" + dispatchNamespaceName: string! + + """The name of the script environment""" + environmentName: string! + + """Whether the request is from a Dispatch Worker. Non-zero if true""" + isDispatcher: uint8! + + """The name of the script""" + scriptName: string! + + """The unique tag of the script""" + scriptTag: string! + + """The version of the Worker""" + scriptVersion: string! + + """Status of the worker invocation""" + status: string! + + """Usage model of the worker invocation""" + usageModel: string! +} + +"""""" +input AccountWorkersInvocationsAdaptiveFilter_InputObject { + """""" + AND: [AccountWorkersInvocationsAdaptiveFilter_InputObject!] + + """""" + OR: [AccountWorkersInvocationsAdaptiveFilter_InputObject!] + + """""" + coloCode: string + + """""" + coloCode_geq: string + + """""" + coloCode_gt: string + + """""" + coloCode_in: [string!] + + """""" + coloCode_leq: string + + """""" + coloCode_like: string + + """""" + coloCode_lt: string + + """""" + coloCode_neq: string + + """""" + coloCode_notin: [string!] + + """""" + coloCode_notlike: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetimeSixHours: Time + + """""" + datetimeSixHours_geq: Time + + """""" + datetimeSixHours_gt: Time + + """""" + datetimeSixHours_in: [Time!] + + """""" + datetimeSixHours_leq: Time + + """""" + datetimeSixHours_lt: Time + + """""" + datetimeSixHours_neq: Time + + """""" + datetimeSixHours_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + dispatchNamespaceName: string + + """""" + dispatchNamespaceName_geq: string + + """""" + dispatchNamespaceName_gt: string + + """""" + dispatchNamespaceName_in: [string!] + + """""" + dispatchNamespaceName_leq: string + + """""" + dispatchNamespaceName_like: string + + """""" + dispatchNamespaceName_lt: string + + """""" + dispatchNamespaceName_neq: string + + """""" + dispatchNamespaceName_notin: [string!] + + """""" + dispatchNamespaceName_notlike: string + + """""" + environmentName: string + + """""" + environmentName_geq: string + + """""" + environmentName_gt: string + + """""" + environmentName_in: [string!] + + """""" + environmentName_leq: string + + """""" + environmentName_like: string + + """""" + environmentName_lt: string + + """""" + environmentName_neq: string + + """""" + environmentName_notin: [string!] + + """""" + environmentName_notlike: string + + """""" + isDispatcher: uint8 + + """""" + isDispatcher_geq: uint8 + + """""" + isDispatcher_gt: uint8 + + """""" + isDispatcher_in: bytes + + """""" + isDispatcher_leq: uint8 + + """""" + isDispatcher_lt: uint8 + + """""" + isDispatcher_neq: uint8 + + """""" + isDispatcher_notin: bytes + + """""" + scriptName: string + + """""" + scriptName_geq: string + + """""" + scriptName_gt: string + + """""" + scriptName_in: [string!] + + """""" + scriptName_leq: string + + """""" + scriptName_like: string + + """""" + scriptName_lt: string + + """""" + scriptName_neq: string + + """""" + scriptName_notin: [string!] + + """""" + scriptName_notlike: string + + """""" + scriptTag: string + + """""" + scriptTag_geq: string + + """""" + scriptTag_gt: string + + """""" + scriptTag_in: [string!] + + """""" + scriptTag_leq: string + + """""" + scriptTag_like: string + + """""" + scriptTag_lt: string + + """""" + scriptTag_neq: string + + """""" + scriptTag_notin: [string!] + + """""" + scriptTag_notlike: string + + """""" + scriptVersion: string + + """""" + scriptVersion_geq: string + + """""" + scriptVersion_gt: string + + """""" + scriptVersion_in: [string!] + + """""" + scriptVersion_leq: string + + """""" + scriptVersion_like: string + + """""" + scriptVersion_lt: string + + """""" + scriptVersion_neq: string + + """""" + scriptVersion_notin: [string!] + + """""" + scriptVersion_notlike: string + + """""" + status: string + + """""" + status_geq: string + + """""" + status_gt: string + + """""" + status_in: [string!] + + """""" + status_leq: string + + """""" + status_like: string + + """""" + status_lt: string + + """""" + status_neq: string + + """""" + status_notin: [string!] + + """""" + status_notlike: string + + """""" + usageModel: string + + """""" + usageModel_geq: string + + """""" + usageModel_gt: string + + """""" + usageModel_in: [string!] + + """""" + usageModel_leq: string + + """""" + usageModel_like: string + + """""" + usageModel_lt: string + + """""" + usageModel_neq: string + + """""" + usageModel_notin: [string!] + + """""" + usageModel_notlike: string +} + +"""""" +type AccountWorkersInvocationsAdaptiveMax { + """Maximum CPU time for one request - microseconds""" + cpuTime: float64! + + """Maximum duration of one request - GB*s""" + duration: float64! + + """Maximum Request Duration in microseconds""" + requestDuration: float64! + + """Maximum response body size for one request - bytes""" + responseBodySize: float64! + + """Maximum wall time for one request - microseconds""" + wallTime: float64! +} + +"""""" +type AccountWorkersInvocationsAdaptiveMin { + """Minimum CPU time for one request - microseconds""" + cpuTime: float64! + + """Minimum duration of one request - GB*s""" + duration: float64! + + """Minimum Request Duration in microseconds""" + requestDuration: float64! + + """Minimum response body size for one request - bytes""" + responseBodySize: float64! + + """Minimum wall time for one request - microseconds""" + wallTime: float64! +} + +"""""" +enum AccountWorkersInvocationsAdaptiveOrderBy { + """actorNamespaceId ascending""" + actorNamespaceId_ASC + + """actorNamespaceId descending""" + actorNamespaceId_DESC + + """avg(sampleInterval) ascending""" + avg_sampleInterval_ASC + + """avg(sampleInterval) descending""" + avg_sampleInterval_DESC + + """coloCode ascending""" + coloCode_ASC + + """coloCode descending""" + coloCode_DESC + + """constantScriptId ascending""" + constantScriptId_ASC + + """constantScriptId descending""" + constantScriptId_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetimeSixHours ascending""" + datetimeSixHours_ASC + + """datetimeSixHours descending""" + datetimeSixHours_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """dispatchNamespaceName ascending""" + dispatchNamespaceName_ASC + + """dispatchNamespaceName descending""" + dispatchNamespaceName_DESC + + """environmentName ascending""" + environmentName_ASC + + """environmentName descending""" + environmentName_DESC + + """isDispatcher ascending""" + isDispatcher_ASC + + """isDispatcher descending""" + isDispatcher_DESC + + """max(cpuTime) ascending""" + max_cpuTime_ASC + + """max(cpuTime) descending""" + max_cpuTime_DESC + + """max(duration) ascending""" + max_duration_ASC + + """max(duration) descending""" + max_duration_DESC + + """max(requestDuration) ascending""" + max_requestDuration_ASC + + """max(requestDuration) descending""" + max_requestDuration_DESC + + """max(responseBodySize) ascending""" + max_responseBodySize_ASC + + """max(responseBodySize) descending""" + max_responseBodySize_DESC + + """max(wallTime) ascending""" + max_wallTime_ASC + + """max(wallTime) descending""" + max_wallTime_DESC + + """min(cpuTime) ascending""" + min_cpuTime_ASC + + """min(cpuTime) descending""" + min_cpuTime_DESC + + """min(duration) ascending""" + min_duration_ASC + + """min(duration) descending""" + min_duration_DESC + + """min(requestDuration) ascending""" + min_requestDuration_ASC + + """min(requestDuration) descending""" + min_requestDuration_DESC + + """min(responseBodySize) ascending""" + min_responseBodySize_ASC + + """min(responseBodySize) descending""" + min_responseBodySize_DESC + + """min(wallTime) ascending""" + min_wallTime_ASC + + """min(wallTime) descending""" + min_wallTime_DESC + + """quantiles(cpuTimeP25) ascending""" + quantiles_cpuTimeP25_ASC + + """quantiles(cpuTimeP25) descending""" + quantiles_cpuTimeP25_DESC + + """quantiles(cpuTimeP50) ascending""" + quantiles_cpuTimeP50_ASC + + """quantiles(cpuTimeP50) descending""" + quantiles_cpuTimeP50_DESC + + """quantiles(cpuTimeP75) ascending""" + quantiles_cpuTimeP75_ASC + + """quantiles(cpuTimeP75) descending""" + quantiles_cpuTimeP75_DESC + + """quantiles(cpuTimeP90) ascending""" + quantiles_cpuTimeP90_ASC + + """quantiles(cpuTimeP90) descending""" + quantiles_cpuTimeP90_DESC + + """quantiles(cpuTimeP95) ascending""" + quantiles_cpuTimeP95_ASC + + """quantiles(cpuTimeP95) descending""" + quantiles_cpuTimeP95_DESC + + """quantiles(cpuTimeP999) ascending""" + quantiles_cpuTimeP999_ASC + + """quantiles(cpuTimeP999) descending""" + quantiles_cpuTimeP999_DESC + + """quantiles(cpuTimeP99) ascending""" + quantiles_cpuTimeP99_ASC + + """quantiles(cpuTimeP99) descending""" + quantiles_cpuTimeP99_DESC + + """quantiles(durationP25) ascending""" + quantiles_durationP25_ASC + + """quantiles(durationP25) descending""" + quantiles_durationP25_DESC + + """quantiles(durationP50) ascending""" + quantiles_durationP50_ASC + + """quantiles(durationP50) descending""" + quantiles_durationP50_DESC + + """quantiles(durationP75) ascending""" + quantiles_durationP75_ASC + + """quantiles(durationP75) descending""" + quantiles_durationP75_DESC + + """quantiles(durationP90) ascending""" + quantiles_durationP90_ASC + + """quantiles(durationP90) descending""" + quantiles_durationP90_DESC + + """quantiles(durationP95) ascending""" + quantiles_durationP95_ASC + + """quantiles(durationP95) descending""" + quantiles_durationP95_DESC + + """quantiles(durationP999) ascending""" + quantiles_durationP999_ASC + + """quantiles(durationP999) descending""" + quantiles_durationP999_DESC + + """quantiles(durationP99) ascending""" + quantiles_durationP99_ASC + + """quantiles(durationP99) descending""" + quantiles_durationP99_DESC + + """quantiles(requestDurationP25) ascending""" + quantiles_requestDurationP25_ASC + + """quantiles(requestDurationP25) descending""" + quantiles_requestDurationP25_DESC + + """quantiles(requestDurationP50) ascending""" + quantiles_requestDurationP50_ASC + + """quantiles(requestDurationP50) descending""" + quantiles_requestDurationP50_DESC + + """quantiles(requestDurationP75) ascending""" + quantiles_requestDurationP75_ASC + + """quantiles(requestDurationP75) descending""" + quantiles_requestDurationP75_DESC + + """quantiles(requestDurationP90) ascending""" + quantiles_requestDurationP90_ASC + + """quantiles(requestDurationP90) descending""" + quantiles_requestDurationP90_DESC + + """quantiles(requestDurationP95) ascending""" + quantiles_requestDurationP95_ASC + + """quantiles(requestDurationP95) descending""" + quantiles_requestDurationP95_DESC + + """quantiles(requestDurationP999) ascending""" + quantiles_requestDurationP999_ASC + + """quantiles(requestDurationP999) descending""" + quantiles_requestDurationP999_DESC + + """quantiles(requestDurationP99) ascending""" + quantiles_requestDurationP99_ASC + + """quantiles(requestDurationP99) descending""" + quantiles_requestDurationP99_DESC + + """quantiles(responseBodySizeP25) ascending""" + quantiles_responseBodySizeP25_ASC + + """quantiles(responseBodySizeP25) descending""" + quantiles_responseBodySizeP25_DESC + + """quantiles(responseBodySizeP50) ascending""" + quantiles_responseBodySizeP50_ASC + + """quantiles(responseBodySizeP50) descending""" + quantiles_responseBodySizeP50_DESC + + """quantiles(responseBodySizeP75) ascending""" + quantiles_responseBodySizeP75_ASC + + """quantiles(responseBodySizeP75) descending""" + quantiles_responseBodySizeP75_DESC + + """quantiles(responseBodySizeP90) ascending""" + quantiles_responseBodySizeP90_ASC + + """quantiles(responseBodySizeP90) descending""" + quantiles_responseBodySizeP90_DESC + + """quantiles(responseBodySizeP95) ascending""" + quantiles_responseBodySizeP95_ASC + + """quantiles(responseBodySizeP95) descending""" + quantiles_responseBodySizeP95_DESC + + """quantiles(responseBodySizeP999) ascending""" + quantiles_responseBodySizeP999_ASC + + """quantiles(responseBodySizeP999) descending""" + quantiles_responseBodySizeP999_DESC + + """quantiles(responseBodySizeP99) ascending""" + quantiles_responseBodySizeP99_ASC + + """quantiles(responseBodySizeP99) descending""" + quantiles_responseBodySizeP99_DESC + + """quantiles(wallTimeP25) ascending""" + quantiles_wallTimeP25_ASC + + """quantiles(wallTimeP25) descending""" + quantiles_wallTimeP25_DESC + + """quantiles(wallTimeP50) ascending""" + quantiles_wallTimeP50_ASC + + """quantiles(wallTimeP50) descending""" + quantiles_wallTimeP50_DESC + + """quantiles(wallTimeP75) ascending""" + quantiles_wallTimeP75_ASC + + """quantiles(wallTimeP75) descending""" + quantiles_wallTimeP75_DESC + + """quantiles(wallTimeP90) ascending""" + quantiles_wallTimeP90_ASC + + """quantiles(wallTimeP90) descending""" + quantiles_wallTimeP90_DESC + + """quantiles(wallTimeP95) ascending""" + quantiles_wallTimeP95_ASC + + """quantiles(wallTimeP95) descending""" + quantiles_wallTimeP95_DESC + + """quantiles(wallTimeP999) ascending""" + quantiles_wallTimeP999_ASC + + """quantiles(wallTimeP999) descending""" + quantiles_wallTimeP999_DESC + + """quantiles(wallTimeP99) ascending""" + quantiles_wallTimeP99_ASC + + """quantiles(wallTimeP99) descending""" + quantiles_wallTimeP99_DESC + + """scriptName ascending""" + scriptName_ASC + + """scriptName descending""" + scriptName_DESC + + """scriptTag ascending""" + scriptTag_ASC + + """scriptTag descending""" + scriptTag_DESC + + """scriptVersion ascending""" + scriptVersion_ASC + + """scriptVersion descending""" + scriptVersion_DESC + + """stableId ascending""" + stableId_ASC + + """stableId descending""" + stableId_DESC + + """status ascending""" + status_ASC + + """status descending""" + status_DESC + + """sum(clientDisconnects) ascending""" + sum_clientDisconnects_ASC + + """sum(clientDisconnects) descending""" + sum_clientDisconnects_DESC + + """sum(cpuTimeUs) ascending""" + sum_cpuTimeUs_ASC + + """sum(cpuTimeUs) descending""" + sum_cpuTimeUs_DESC + + """sum(duration) ascending""" + sum_duration_ASC + + """sum(duration) descending""" + sum_duration_DESC + + """sum(errors) ascending""" + sum_errors_ASC + + """sum(errors) descending""" + sum_errors_DESC + + """sum(requestDuration) ascending""" + sum_requestDuration_ASC + + """sum(requestDuration) descending""" + sum_requestDuration_DESC + + """sum(requests) ascending""" + sum_requests_ASC + + """sum(requests) descending""" + sum_requests_DESC + + """sum(responseBodySize) ascending""" + sum_responseBodySize_ASC + + """sum(responseBodySize) descending""" + sum_responseBodySize_DESC + + """sum(subrequests) ascending""" + sum_subrequests_ASC + + """sum(subrequests) descending""" + sum_subrequests_DESC + + """sum(wallTime) ascending""" + sum_wallTime_ASC + + """sum(wallTime) descending""" + sum_wallTime_DESC + + """usageModel ascending""" + usageModel_ASC + + """usageModel descending""" + usageModel_DESC +} + +"""""" +type AccountWorkersInvocationsAdaptiveQuantiles { + """CPU time 25th percentile - microseconds""" + cpuTimeP25: float32! + + """CPU time 50th percentile - microseconds""" + cpuTimeP50: float32! + + """CPU time 75th percentile - microseconds""" + cpuTimeP75: float32! + + """CPU time 90th percentile - microseconds""" + cpuTimeP90: float32! + + """CPU time 95th percentile - microseconds""" + cpuTimeP95: float32! + + """CPU time 99th percentile - microseconds""" + cpuTimeP99: float32! + + """CPU time 99.9th percentile - microseconds""" + cpuTimeP999: float32! + + """Duration 25th percentile - GB*s""" + durationP25: float32! + + """Duration 50th percentile - GB*s""" + durationP50: float32! + + """Duration 75th percentile - GB*s""" + durationP75: float32! + + """Duration 90th percentile - GB*s""" + durationP90: float32! + + """Duration 95th percentile - GB*s""" + durationP95: float32! + + """Duration 99th percentile - GB*s""" + durationP99: float32! + + """Duration 99.9th percentile - GB*s""" + durationP999: float32! + + """Request duration 25th percentile - microseconds""" + requestDurationP25: float32! + + """Request duration 50th percentile - microseconds""" + requestDurationP50: float32! + + """Request duration 75th percentile - microseconds""" + requestDurationP75: float32! + + """Request duration 90th percentile - microseconds""" + requestDurationP90: float32! + + """Request duration 95th percentile - microseconds""" + requestDurationP95: float32! + + """Request duration 99th percentile - microseconds""" + requestDurationP99: float32! + + """Request duration 99.9th percentile - microseconds""" + requestDurationP999: float32! + + """Response body size 25th percentile - bytes""" + responseBodySizeP25: float32! + + """Response body size 50th percentile - bytes""" + responseBodySizeP50: float32! + + """Response body size 75th percentile - bytes""" + responseBodySizeP75: float32! + + """Response body size 90th percentile - bytes""" + responseBodySizeP90: float32! + + """Response body size 95th percentile - bytes""" + responseBodySizeP95: float32! + + """Response body size 99th percentile - bytes""" + responseBodySizeP99: float32! + + """Response body size 99.9th percentile - bytes""" + responseBodySizeP999: float32! + + """Wall time 25th percentile - microseconds""" + wallTimeP25: float32! + + """Wall time 50th percentile - microseconds""" + wallTimeP50: float32! + + """Wall time 75th percentile - microseconds""" + wallTimeP75: float32! + + """Wall time 90th percentile - microseconds""" + wallTimeP90: float32! + + """Wall time 95th percentile - microseconds""" + wallTimeP95: float32! + + """Wall time 99th percentile - microseconds""" + wallTimeP99: float32! + + """Wall time 99.9th percentile - microseconds""" + wallTimeP999: float32! +} + +"""""" +type AccountWorkersInvocationsAdaptiveSum { + """Sum of client disconnects""" + clientDisconnects: uint64! + + """Sum of cpu time in us""" + cpuTimeUs: uint64! + + """Sum of Duration - GB*s""" + duration: float64! + + """Sum of Errors""" + errors: uint64! + + """Sum of Request Duration in microseconds""" + requestDuration: float64! + + """Sum of Requests""" + requests: uint64! + + """Sum of Response Body Sizes""" + responseBodySize: uint64! + + """Sum of Subrequests""" + subrequests: uint64! + + """Sum of Wall Time""" + wallTime: uint64! +} + +"""""" +type AccountWorkersInvocationsAdaptiveSumConfidence { + """Confidence interval for the corresponding point estimate""" + clientDisconnects: Confidence! + + """Confidence interval for the corresponding point estimate""" + cpuTimeUs: Confidence! + + """Confidence interval for the corresponding point estimate""" + duration: Confidence! + + """Confidence interval for the corresponding point estimate""" + errors: Confidence! + + """Confidence interval for the corresponding point estimate""" + requestDuration: Confidence! + + """Confidence interval for the corresponding point estimate""" + requests: Confidence! + + """Confidence interval for the corresponding point estimate""" + responseBodySize: Confidence! + + """Confidence interval for the corresponding point estimate""" + subrequests: Confidence! + + """Confidence interval for the corresponding point estimate""" + wallTime: Confidence! +} + +"""Workers scheduled invocations""" +type AccountWorkersInvocationsScheduled { + """CPU time - microseconds""" + cpuTimeUs: uint32! + + """The cron string of the schedule""" + cron: string! + + """Request datetime""" + datetime: Time! + + """The name of the script environment""" + environmentName: string! + + """Scheduled datetime""" + scheduledDatetime: Time! + + """The name of the script""" + scriptName: string! + + """Status of the worker invocation""" + status: string! +} + +"""""" +input AccountWorkersInvocationsScheduledFilter_InputObject { + """""" + AND: [AccountWorkersInvocationsScheduledFilter_InputObject!] + + """""" + OR: [AccountWorkersInvocationsScheduledFilter_InputObject!] + + """""" + cpuTimeUs: uint32 + + """""" + cpuTimeUs_geq: uint32 + + """""" + cpuTimeUs_gt: uint32 + + """""" + cpuTimeUs_in: [uint32!] + + """""" + cpuTimeUs_leq: uint32 + + """""" + cpuTimeUs_lt: uint32 + + """""" + cpuTimeUs_neq: uint32 + + """""" + cpuTimeUs_notin: [uint32!] + + """""" + cron: string + + """""" + cron_geq: string + + """""" + cron_gt: string + + """""" + cron_in: [string!] + + """""" + cron_leq: string + + """""" + cron_like: string + + """""" + cron_lt: string + + """""" + cron_neq: string + + """""" + cron_notin: [string!] + + """""" + cron_notlike: string + + """""" + datetime: Time + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + environmentName: string + + """""" + environmentName_geq: string + + """""" + environmentName_gt: string + + """""" + environmentName_in: [string!] + + """""" + environmentName_leq: string + + """""" + environmentName_like: string + + """""" + environmentName_lt: string + + """""" + environmentName_neq: string + + """""" + environmentName_notin: [string!] + + """""" + environmentName_notlike: string + + """""" + scheduledDatetime: Time + + """""" + scheduledDatetime_geq: Time + + """""" + scheduledDatetime_gt: Time + + """""" + scheduledDatetime_in: [Time!] + + """""" + scheduledDatetime_leq: Time + + """""" + scheduledDatetime_lt: Time + + """""" + scheduledDatetime_neq: Time + + """""" + scheduledDatetime_notin: [Time!] + + """""" + scriptName: string + + """""" + scriptName_geq: string + + """""" + scriptName_gt: string + + """""" + scriptName_in: [string!] + + """""" + scriptName_leq: string + + """""" + scriptName_like: string + + """""" + scriptName_lt: string + + """""" + scriptName_neq: string + + """""" + scriptName_notin: [string!] + + """""" + scriptName_notlike: string + + """""" + status: string + + """""" + status_geq: string + + """""" + status_gt: string + + """""" + status_in: [string!] + + """""" + status_leq: string + + """""" + status_like: string + + """""" + status_lt: string + + """""" + status_neq: string + + """""" + status_notin: [string!] + + """""" + status_notlike: string +} + +"""""" +enum AccountWorkersInvocationsScheduledOrderBy { + """cpuTimeUs ascending""" + cpuTimeUs_ASC + + """cpuTimeUs descending""" + cpuTimeUs_DESC + + """cron ascending""" + cron_ASC + + """cron descending""" + cron_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """environmentName ascending""" + environmentName_ASC + + """environmentName descending""" + environmentName_DESC + + """scheduledDatetime ascending""" + scheduledDatetime_ASC + + """scheduledDatetime descending""" + scheduledDatetime_DESC + + """scriptName ascending""" + scriptName_ASC + + """scriptName descending""" + scriptName_DESC + + """status ascending""" + status_ASC + + """status descending""" + status_DESC +} + +"""Beta. Workers account overview invocation data with adaptive sampling""" +type AccountWorkersOverviewDataAdaptiveGroups { + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountWorkersOverviewDataAdaptiveGroupsConfidence! + + """List of dimensions to group by""" + dimensions: AccountWorkersOverviewDataAdaptiveGroupsDimensions + + """The sum of values for a metric per dimension""" + sum: AccountWorkersOverviewDataAdaptiveGroupsSum +} + +"""""" +type AccountWorkersOverviewDataAdaptiveGroupsConfidence { + """Confidence level that was requested""" + level: float64! + + """ + The sum of values for a metric per dimension, with confidence intervals + """ + sum: AccountWorkersOverviewDataAdaptiveGroupsSumConfidence +} + +"""""" +type AccountWorkersOverviewDataAdaptiveGroupsDimensions { + """Request datetime""" + datetime: Time! + + """Usage model of the worker invocation""" + usageModel: uint8! +} + +"""""" +input AccountWorkersOverviewDataAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountWorkersOverviewDataAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountWorkersOverviewDataAdaptiveGroupsFilter_InputObject!] + + """""" + datetime: Time + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + usageModel: uint8 + + """""" + usageModel_geq: uint8 + + """""" + usageModel_gt: uint8 + + """""" + usageModel_in: bytes + + """""" + usageModel_leq: uint8 + + """""" + usageModel_lt: uint8 + + """""" + usageModel_neq: uint8 + + """""" + usageModel_notin: bytes +} + +"""""" +enum AccountWorkersOverviewDataAdaptiveGroupsOrderBy { + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """sum(standardCpuTimeUs) ascending""" + sum_standardCpuTimeUs_ASC + + """sum(standardCpuTimeUs) descending""" + sum_standardCpuTimeUs_DESC + + """sum(unboundDurationUs) ascending""" + sum_unboundDurationUs_ASC + + """sum(unboundDurationUs) descending""" + sum_unboundDurationUs_DESC + + """usageModel ascending""" + usageModel_ASC + + """usageModel descending""" + usageModel_DESC +} + +"""""" +type AccountWorkersOverviewDataAdaptiveGroupsSum { + """Standard usage model cpu time in us""" + standardCpuTimeUs: uint32! + + """Unbound usage model duration in us""" + unboundDurationUs: float64! +} + +"""""" +type AccountWorkersOverviewDataAdaptiveGroupsSumConfidence { + """Confidence interval for the corresponding point estimate""" + standardCpuTimeUs: Confidence! + + """Confidence interval for the corresponding point estimate""" + unboundDurationUs: Confidence! +} + +"""Beta. Workers account overview invocation count with adaptive sampling""" +type AccountWorkersOverviewRequestsAdaptiveGroups { + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountWorkersOverviewRequestsAdaptiveGroupsConfidence! + + """The number of values for a metric per dimension""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountWorkersOverviewRequestsAdaptiveGroupsDimensions + + """The sum of values for a metric per dimension""" + sum: AccountWorkersOverviewRequestsAdaptiveGroupsSum +} + +"""""" +type AccountWorkersOverviewRequestsAdaptiveGroupsConfidence { + """ + The number of values for a metric per dimension, with confidence intervals + """ + count: Confidence! + + """Confidence level that was requested""" + level: float64! + + """ + The sum of values for a metric per dimension, with confidence intervals + """ + sum: AccountWorkersOverviewRequestsAdaptiveGroupsSumConfidence +} + +"""""" +type AccountWorkersOverviewRequestsAdaptiveGroupsDimensions { + """Request datetime""" + datetime: Time! + + """Status of the worker invocation""" + status: uint8! + + """Usage model of the worker invocation""" + usageModel: uint8! +} + +"""""" +input AccountWorkersOverviewRequestsAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountWorkersOverviewRequestsAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountWorkersOverviewRequestsAdaptiveGroupsFilter_InputObject!] + + """""" + datetime: Time + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + status: uint8 + + """""" + status_geq: uint8 + + """""" + status_gt: uint8 + + """""" + status_in: bytes + + """""" + status_leq: uint8 + + """""" + status_lt: uint8 + + """""" + status_neq: uint8 + + """""" + status_notin: bytes + + """""" + usageModel: uint8 + + """""" + usageModel_geq: uint8 + + """""" + usageModel_gt: uint8 + + """""" + usageModel_in: bytes + + """""" + usageModel_leq: uint8 + + """""" + usageModel_lt: uint8 + + """""" + usageModel_neq: uint8 + + """""" + usageModel_notin: bytes +} + +"""""" +enum AccountWorkersOverviewRequestsAdaptiveGroupsOrderBy { + """actorNamespaceId ascending""" + actorNamespaceId_ASC + + """actorNamespaceId descending""" + actorNamespaceId_DESC + + """constantScriptId ascending""" + constantScriptId_ASC + + """constantScriptId descending""" + constantScriptId_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """stableId ascending""" + stableId_ASC + + """stableId descending""" + stableId_DESC + + """status ascending""" + status_ASC + + """status descending""" + status_DESC + + """sum(cpuTimeUs) ascending""" + sum_cpuTimeUs_ASC + + """sum(cpuTimeUs) descending""" + sum_cpuTimeUs_DESC + + """usageModel ascending""" + usageModel_ASC + + """usageModel descending""" + usageModel_DESC +} + +"""""" +type AccountWorkersOverviewRequestsAdaptiveGroupsSum { + """Cpu time in us""" + cpuTimeUs: float64! +} + +"""""" +type AccountWorkersOverviewRequestsAdaptiveGroupsSumConfidence { + """Confidence interval for the corresponding point estimate""" + cpuTimeUs: Confidence! +} + +"""Beta. Workers subrequests with adaptive sampling""" +type AccountWorkersSubrequestsAdaptiveGroups { + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountWorkersSubrequestsAdaptiveGroupsConfidence! + + """List of dimensions to group by""" + dimensions: AccountWorkersSubrequestsAdaptiveGroupsDimensions + + """Quantiles of a metric per dimension""" + quantiles: AccountWorkersSubrequestsAdaptiveGroupsQuantiles + + """The sum of values for a metric per dimension""" + sum: AccountWorkersSubrequestsAdaptiveGroupsSum +} + +"""""" +type AccountWorkersSubrequestsAdaptiveGroupsConfidence { + """Confidence level that was requested""" + level: float64! + + """ + The sum of values for a metric per dimension, with confidence intervals + """ + sum: AccountWorkersSubrequestsAdaptiveGroupsSumConfidence +} + +"""""" +type AccountWorkersSubrequestsAdaptiveGroupsDimensions { + """Cache status""" + cacheStatus: uint64! + + """Request datetime, truncated to start of a day""" + date: Date! + + """Request datetime""" + datetime: Time! + + """The date and time of the event truncated to fifteen minutes""" + datetimeFifteenMinutes: Time! + + """The date and time of the event truncated to five minutes""" + datetimeFiveMinutes: Time! + + """Request datetime, truncated to start of an hour""" + datetimeHour: Time! + + """Request datetime, truncated to start of an minute""" + datetimeMinute: Time! + + """Request datetime, truncated to start of six hour window""" + datetimeSixHours: Time! + + """The name of the script environment""" + environmentName: string! + + """The hostname of the subrequest""" + hostname: string! + + """Origin HTTP response code""" + httpResponseStatus: uint64! + + """The outcome of the subrequest""" + requestOutcome: string! + + """The name of the script""" + scriptName: string! + + """The version of the Worker""" + scriptVersion: string! + + """Usage model of the worker invocation""" + usageModel: string! +} + +"""""" +input AccountWorkersSubrequestsAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountWorkersSubrequestsAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountWorkersSubrequestsAdaptiveGroupsFilter_InputObject!] + + """""" + cacheStatus: uint64 + + """""" + cacheStatus_geq: uint64 + + """""" + cacheStatus_gt: uint64 + + """""" + cacheStatus_in: [uint64!] + + """""" + cacheStatus_leq: uint64 + + """""" + cacheStatus_lt: uint64 + + """""" + cacheStatus_neq: uint64 + + """""" + cacheStatus_notin: [uint64!] + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetimeSixHours: Time + + """""" + datetimeSixHours_geq: Time + + """""" + datetimeSixHours_gt: Time + + """""" + datetimeSixHours_in: [Time!] + + """""" + datetimeSixHours_leq: Time + + """""" + datetimeSixHours_lt: Time + + """""" + datetimeSixHours_neq: Time + + """""" + datetimeSixHours_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + environmentName: string + + """""" + environmentName_geq: string + + """""" + environmentName_gt: string + + """""" + environmentName_in: [string!] + + """""" + environmentName_leq: string + + """""" + environmentName_like: string + + """""" + environmentName_lt: string + + """""" + environmentName_neq: string + + """""" + environmentName_notin: [string!] + + """""" + environmentName_notlike: string + + """""" + hostname: string + + """""" + hostname_geq: string + + """""" + hostname_gt: string + + """""" + hostname_in: [string!] + + """""" + hostname_leq: string + + """""" + hostname_like: string + + """""" + hostname_lt: string + + """""" + hostname_neq: string + + """""" + hostname_notin: [string!] + + """""" + hostname_notlike: string + + """""" + httpResponseStatus: uint64 + + """""" + httpResponseStatus_geq: uint64 + + """""" + httpResponseStatus_gt: uint64 + + """""" + httpResponseStatus_in: [uint64!] + + """""" + httpResponseStatus_leq: uint64 + + """""" + httpResponseStatus_lt: uint64 + + """""" + httpResponseStatus_neq: uint64 + + """""" + httpResponseStatus_notin: [uint64!] + + """""" + requestOutcome: string + + """""" + requestOutcome_geq: string + + """""" + requestOutcome_gt: string + + """""" + requestOutcome_in: [string!] + + """""" + requestOutcome_leq: string + + """""" + requestOutcome_like: string + + """""" + requestOutcome_lt: string + + """""" + requestOutcome_neq: string + + """""" + requestOutcome_notin: [string!] + + """""" + requestOutcome_notlike: string + + """""" + scriptName: string + + """""" + scriptName_geq: string + + """""" + scriptName_gt: string + + """""" + scriptName_in: [string!] + + """""" + scriptName_leq: string + + """""" + scriptName_like: string + + """""" + scriptName_lt: string + + """""" + scriptName_neq: string + + """""" + scriptName_notin: [string!] + + """""" + scriptName_notlike: string + + """""" + scriptVersion: string + + """""" + scriptVersion_geq: string + + """""" + scriptVersion_gt: string + + """""" + scriptVersion_in: [string!] + + """""" + scriptVersion_leq: string + + """""" + scriptVersion_like: string + + """""" + scriptVersion_lt: string + + """""" + scriptVersion_neq: string + + """""" + scriptVersion_notin: [string!] + + """""" + scriptVersion_notlike: string + + """""" + usageModel: string + + """""" + usageModel_geq: string + + """""" + usageModel_gt: string + + """""" + usageModel_in: [string!] + + """""" + usageModel_leq: string + + """""" + usageModel_like: string + + """""" + usageModel_lt: string + + """""" + usageModel_neq: string + + """""" + usageModel_notin: [string!] + + """""" + usageModel_notlike: string +} + +"""""" +enum AccountWorkersSubrequestsAdaptiveGroupsOrderBy { + """cacheStatus ascending""" + cacheStatus_ASC + + """cacheStatus descending""" + cacheStatus_DESC + + """constantScriptId ascending""" + constantScriptId_ASC + + """constantScriptId descending""" + constantScriptId_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetimeSixHours ascending""" + datetimeSixHours_ASC + + """datetimeSixHours descending""" + datetimeSixHours_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """environmentName ascending""" + environmentName_ASC + + """environmentName descending""" + environmentName_DESC + + """hostname ascending""" + hostname_ASC + + """hostname descending""" + hostname_DESC + + """httpResponseStatus ascending""" + httpResponseStatus_ASC + + """httpResponseStatus descending""" + httpResponseStatus_DESC + + """quantiles(timeToResponseDrainedUsP25) ascending""" + quantiles_timeToResponseDrainedUsP25_ASC + + """quantiles(timeToResponseDrainedUsP25) descending""" + quantiles_timeToResponseDrainedUsP25_DESC + + """quantiles(timeToResponseDrainedUsP50) ascending""" + quantiles_timeToResponseDrainedUsP50_ASC + + """quantiles(timeToResponseDrainedUsP50) descending""" + quantiles_timeToResponseDrainedUsP50_DESC + + """quantiles(timeToResponseDrainedUsP75) ascending""" + quantiles_timeToResponseDrainedUsP75_ASC + + """quantiles(timeToResponseDrainedUsP75) descending""" + quantiles_timeToResponseDrainedUsP75_DESC + + """quantiles(timeToResponseDrainedUsP90) ascending""" + quantiles_timeToResponseDrainedUsP90_ASC + + """quantiles(timeToResponseDrainedUsP90) descending""" + quantiles_timeToResponseDrainedUsP90_DESC + + """quantiles(timeToResponseDrainedUsP95) ascending""" + quantiles_timeToResponseDrainedUsP95_ASC + + """quantiles(timeToResponseDrainedUsP95) descending""" + quantiles_timeToResponseDrainedUsP95_DESC + + """quantiles(timeToResponseDrainedUsP999) ascending""" + quantiles_timeToResponseDrainedUsP999_ASC + + """quantiles(timeToResponseDrainedUsP999) descending""" + quantiles_timeToResponseDrainedUsP999_DESC + + """quantiles(timeToResponseDrainedUsP99) ascending""" + quantiles_timeToResponseDrainedUsP99_ASC + + """quantiles(timeToResponseDrainedUsP99) descending""" + quantiles_timeToResponseDrainedUsP99_DESC + + """quantiles(timeToResponseUsP25) ascending""" + quantiles_timeToResponseUsP25_ASC + + """quantiles(timeToResponseUsP25) descending""" + quantiles_timeToResponseUsP25_DESC + + """quantiles(timeToResponseUsP50) ascending""" + quantiles_timeToResponseUsP50_ASC + + """quantiles(timeToResponseUsP50) descending""" + quantiles_timeToResponseUsP50_DESC + + """quantiles(timeToResponseUsP75) ascending""" + quantiles_timeToResponseUsP75_ASC + + """quantiles(timeToResponseUsP75) descending""" + quantiles_timeToResponseUsP75_DESC + + """quantiles(timeToResponseUsP90) ascending""" + quantiles_timeToResponseUsP90_ASC + + """quantiles(timeToResponseUsP90) descending""" + quantiles_timeToResponseUsP90_DESC + + """quantiles(timeToResponseUsP95) ascending""" + quantiles_timeToResponseUsP95_ASC + + """quantiles(timeToResponseUsP95) descending""" + quantiles_timeToResponseUsP95_DESC + + """quantiles(timeToResponseUsP999) ascending""" + quantiles_timeToResponseUsP999_ASC + + """quantiles(timeToResponseUsP999) descending""" + quantiles_timeToResponseUsP999_DESC + + """quantiles(timeToResponseUsP99) ascending""" + quantiles_timeToResponseUsP99_ASC + + """quantiles(timeToResponseUsP99) descending""" + quantiles_timeToResponseUsP99_DESC + + """requestOutcome ascending""" + requestOutcome_ASC + + """requestOutcome descending""" + requestOutcome_DESC + + """scriptName ascending""" + scriptName_ASC + + """scriptName descending""" + scriptName_DESC + + """scriptVersion ascending""" + scriptVersion_ASC + + """scriptVersion descending""" + scriptVersion_DESC + + """stableId ascending""" + stableId_ASC + + """stableId descending""" + stableId_DESC + + """sum(requestBodySizeUncached) ascending""" + sum_requestBodySizeUncached_ASC + + """sum(requestBodySizeUncached) descending""" + sum_requestBodySizeUncached_DESC + + """sum(requestBodySize) ascending""" + sum_requestBodySize_ASC + + """sum(requestBodySize) descending""" + sum_requestBodySize_DESC + + """sum(responseBodySize) ascending""" + sum_responseBodySize_ASC + + """sum(responseBodySize) descending""" + sum_responseBodySize_DESC + + """sum(subrequests) ascending""" + sum_subrequests_ASC + + """sum(subrequests) descending""" + sum_subrequests_DESC + + """sum(timeToResponseDrainedUs) ascending""" + sum_timeToResponseDrainedUs_ASC + + """sum(timeToResponseDrainedUs) descending""" + sum_timeToResponseDrainedUs_DESC + + """sum(timeToResponseUs) ascending""" + sum_timeToResponseUs_ASC + + """sum(timeToResponseUs) descending""" + sum_timeToResponseUs_DESC + + """usageModel ascending""" + usageModel_ASC + + """usageModel descending""" + usageModel_DESC +} + +"""""" +type AccountWorkersSubrequestsAdaptiveGroupsQuantiles { + """Response drained time 25th percentile - microseconds""" + timeToResponseDrainedUsP25: float32! + + """Response drained time 50th percentile - microseconds""" + timeToResponseDrainedUsP50: float32! + + """Response drained time 75th percentile - microseconds""" + timeToResponseDrainedUsP75: float32! + + """Response drained time 90th percentile - microseconds""" + timeToResponseDrainedUsP90: float32! + + """Response drained time 95th percentile - microseconds""" + timeToResponseDrainedUsP95: float32! + + """Response drained time 99th percentile - microseconds""" + timeToResponseDrainedUsP99: float32! + + """Response drained time 999th percentile - microseconds""" + timeToResponseDrainedUsP999: float32! + + """Response time 25th percentile - microseconds""" + timeToResponseUsP25: float32! + + """Response time 50th percentile - microseconds""" + timeToResponseUsP50: float32! + + """Response time 75th percentile - microseconds""" + timeToResponseUsP75: float32! + + """Response time 90th percentile - microseconds""" + timeToResponseUsP90: float32! + + """Response time 95th percentile - microseconds""" + timeToResponseUsP95: float32! + + """Response time 99th percentile - microseconds""" + timeToResponseUsP99: float32! + + """Response time 999th percentile - microseconds""" + timeToResponseUsP999: float32! +} + +"""""" +type AccountWorkersSubrequestsAdaptiveGroupsSum { + """Workers fetch request body size in bytes""" + requestBodySize: uint64! + + """ + Workers fetch request body size in bytes where the request was not cached + """ + requestBodySizeUncached: uint64! + + """Workers fetch response body size in bytes""" + responseBodySize: uint64! + + """Number of subrequests""" + subrequests: uint64! + + """Sum of time to response in us""" + timeToResponseDrainedUs: uint64! + + """Sum of time to response in us""" + timeToResponseUs: uint64! +} + +"""""" +type AccountWorkersSubrequestsAdaptiveGroupsSumConfidence { + """Confidence interval for the corresponding point estimate""" + requestBodySize: Confidence! + + """Confidence interval for the corresponding point estimate""" + requestBodySizeUncached: Confidence! + + """Confidence interval for the corresponding point estimate""" + responseBodySize: Confidence! + + """Confidence interval for the corresponding point estimate""" + subrequests: Confidence! + + """Confidence interval for the corresponding point estimate""" + timeToResponseDrainedUs: Confidence! + + """Confidence interval for the corresponding point estimate""" + timeToResponseUs: Confidence! +} + +"""Workers VPC connections with adaptive sampling.""" +type AccountWorkersVpcConnectionAdaptiveGroups { + """The average value for a metric per dimension""" + avg: AccountWorkersVpcConnectionAdaptiveGroupsAvg + + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountWorkersVpcConnectionAdaptiveGroupsConfidence! + + """Total number of Workers VPC Connections""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountWorkersVpcConnectionAdaptiveGroupsDimensions + + """The sum of values for a metric per dimension""" + sum: AccountWorkersVpcConnectionAdaptiveGroupsSum +} + +"""""" +type AccountWorkersVpcConnectionAdaptiveGroupsAvg { + """ + Average latency (in milliseconds) of retrieving a connection to the origin database + """ + connectionLatency: uint64! + + """ + Average latency (in milliseconds) of resolving the hostname of the origin + """ + dnsLatency: uint64! + + """The average value used for sample interval""" + sampleInterval: float64! +} + +"""""" +type AccountWorkersVpcConnectionAdaptiveGroupsConfidence { + """Total number of Workers VPC Connections, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! + + """ + The sum of values for a metric per dimension, with confidence intervals + """ + sum: AccountWorkersVpcConnectionAdaptiveGroupsSumConfidence +} + +"""""" +type AccountWorkersVpcConnectionAdaptiveGroupsDimensions { + """ + IATA airport code for the Cloudflare datacenter where the connection originated. + """ + coloCode: string! + + """Workers VPC Connection timestamp, truncated to start of a day""" + date: Date! + + """Workers VPC Connection timestamp""" + datetime: Time! + + """Workers VPC Connection timestamp, truncated to start of hour""" + datetimeHour: Time! + + """Workers VPC Connection timestamp, truncated to start of minute""" + datetimeMinute: Time! + + """Set for error statuses, contains a user-facing error message.""" + errorCode: string! + + """ + The result status of the connection: 'success' or 'error'. Error events may not have complete data. + """ + status: string! + + """The ID of the Workers VPC Resource""" + targetId: string! +} + +"""""" +input AccountWorkersVpcConnectionAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountWorkersVpcConnectionAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountWorkersVpcConnectionAdaptiveGroupsFilter_InputObject!] + + """""" + coloCode: string + + """""" + coloCode_geq: string + + """""" + coloCode_gt: string + + """""" + coloCode_in: [string!] + + """""" + coloCode_leq: string + + """""" + coloCode_like: string + + """""" + coloCode_lt: string + + """""" + coloCode_neq: string + + """""" + coloCode_notin: [string!] + + """""" + coloCode_notlike: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + errorCode: string + + """""" + errorCode_geq: string + + """""" + errorCode_gt: string + + """""" + errorCode_in: [string!] + + """""" + errorCode_leq: string + + """""" + errorCode_like: string + + """""" + errorCode_lt: string + + """""" + errorCode_neq: string + + """""" + errorCode_notin: [string!] + + """""" + errorCode_notlike: string + + """""" + status: string + + """""" + status_geq: string + + """""" + status_gt: string + + """""" + status_in: [string!] + + """""" + status_leq: string + + """""" + status_like: string + + """""" + status_lt: string + + """""" + status_neq: string + + """""" + status_notin: [string!] + + """""" + status_notlike: string + + """""" + targetId: string + + """""" + targetId_geq: string + + """""" + targetId_gt: string + + """""" + targetId_in: [string!] + + """""" + targetId_leq: string + + """""" + targetId_like: string + + """""" + targetId_lt: string + + """""" + targetId_neq: string + + """""" + targetId_notin: [string!] + + """""" + targetId_notlike: string +} + +"""""" +enum AccountWorkersVpcConnectionAdaptiveGroupsOrderBy { + """avg(connectionLatency) ascending""" + avg_connectionLatency_ASC + + """avg(connectionLatency) descending""" + avg_connectionLatency_DESC + + """avg(dnsLatency) ascending""" + avg_dnsLatency_ASC + + """avg(dnsLatency) descending""" + avg_dnsLatency_DESC + + """avg(sampleInterval) ascending""" + avg_sampleInterval_ASC + + """avg(sampleInterval) descending""" + avg_sampleInterval_DESC + + """coloCode ascending""" + coloCode_ASC + + """coloCode descending""" + coloCode_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """errorCode ascending""" + errorCode_ASC + + """errorCode descending""" + errorCode_DESC + + """status ascending""" + status_ASC + + """status descending""" + status_DESC + + """sum(connectionLatency) ascending""" + sum_connectionLatency_ASC + + """sum(connectionLatency) descending""" + sum_connectionLatency_DESC + + """sum(dnsLatency) ascending""" + sum_dnsLatency_ASC + + """sum(dnsLatency) descending""" + sum_dnsLatency_DESC + + """targetId ascending""" + targetId_ASC + + """targetId descending""" + targetId_DESC +} + +"""""" +type AccountWorkersVpcConnectionAdaptiveGroupsSum { + """ + Total latency (in milliseconds) of establishing a connection to the origin, including DNS resolution and TLS session establishment. + """ + connectionLatency: uint64! + + """ + Total Latency (in milliseconds) of resolving the hostname of the origin + """ + dnsLatency: uint64! +} + +"""""" +type AccountWorkersVpcConnectionAdaptiveGroupsSumConfidence { + """Confidence interval for the corresponding point estimate""" + connectionLatency: Confidence! + + """Confidence interval for the corresponding point estimate""" + dnsLatency: Confidence! +} + +"""Workflows analytics""" +type AccountWorkflowsAdaptive { + """CPU time in timestamp (ms)""" + cpuTime: uint32! + + """The date when trigger was triggered""" + datetime: Time! + + """Instance end timestamp(seconds)""" + endTimestamp: uint64! + + """Event type""" + eventType: string! + + """Execution duration in timestamp (GB*s)""" + executionDuration: uint32! + + """Instance Id""" + instanceId: string! + + """Number of retries in timestamp""" + retryCount: uint32! + + """ABR sample interval""" + sampleInterval: uint32! + + """Instance start timestamp(seconds)""" + startTimestamp: uint64! + + """Steps ran in timestamp""" + stepCount: uint32! + + """Instance storage size growth in timestamp (bytes)""" + storageRate: uint32! + + """Wall time in seconds""" + wallTime: uint32! + + """Workflow name""" + workflowName: string! +} + +"""""" +input AccountWorkflowsAdaptiveFilter_InputObject { + """""" + AND: [AccountWorkflowsAdaptiveFilter_InputObject!] + + """""" + OR: [AccountWorkflowsAdaptiveFilter_InputObject!] + + """""" + cpuTime: uint32 + + """""" + cpuTime_geq: uint32 + + """""" + cpuTime_gt: uint32 + + """""" + cpuTime_in: [uint32!] + + """""" + cpuTime_leq: uint32 + + """""" + cpuTime_lt: uint32 + + """""" + cpuTime_neq: uint32 + + """""" + cpuTime_notin: [uint32!] + + """""" + datetime: Time + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + endTimestamp: uint64 + + """""" + endTimestamp_geq: uint64 + + """""" + endTimestamp_gt: uint64 + + """""" + endTimestamp_in: [uint64!] + + """""" + endTimestamp_leq: uint64 + + """""" + endTimestamp_lt: uint64 + + """""" + endTimestamp_neq: uint64 + + """""" + endTimestamp_notin: [uint64!] + + """""" + eventType: string + + """""" + eventType_geq: string + + """""" + eventType_gt: string + + """""" + eventType_in: [string!] + + """""" + eventType_leq: string + + """""" + eventType_like: string + + """""" + eventType_lt: string + + """""" + eventType_neq: string + + """""" + eventType_notin: [string!] + + """""" + eventType_notlike: string + + """""" + executionDuration: uint32 + + """""" + executionDuration_geq: uint32 + + """""" + executionDuration_gt: uint32 + + """""" + executionDuration_in: [uint32!] + + """""" + executionDuration_leq: uint32 + + """""" + executionDuration_lt: uint32 + + """""" + executionDuration_neq: uint32 + + """""" + executionDuration_notin: [uint32!] + + """""" + instanceId: string + + """""" + instanceId_geq: string + + """""" + instanceId_gt: string + + """""" + instanceId_in: [string!] + + """""" + instanceId_leq: string + + """""" + instanceId_like: string + + """""" + instanceId_lt: string + + """""" + instanceId_neq: string + + """""" + instanceId_notin: [string!] + + """""" + instanceId_notlike: string + + """""" + retryCount: uint32 + + """""" + retryCount_geq: uint32 + + """""" + retryCount_gt: uint32 + + """""" + retryCount_in: [uint32!] + + """""" + retryCount_leq: uint32 + + """""" + retryCount_lt: uint32 + + """""" + retryCount_neq: uint32 + + """""" + retryCount_notin: [uint32!] + + """""" + sampleInterval: uint32 + + """""" + sampleInterval_geq: uint32 + + """""" + sampleInterval_gt: uint32 + + """""" + sampleInterval_in: [uint32!] + + """""" + sampleInterval_leq: uint32 + + """""" + sampleInterval_lt: uint32 + + """""" + sampleInterval_neq: uint32 + + """""" + sampleInterval_notin: [uint32!] + + """""" + startTimestamp: uint64 + + """""" + startTimestamp_geq: uint64 + + """""" + startTimestamp_gt: uint64 + + """""" + startTimestamp_in: [uint64!] + + """""" + startTimestamp_leq: uint64 + + """""" + startTimestamp_lt: uint64 + + """""" + startTimestamp_neq: uint64 + + """""" + startTimestamp_notin: [uint64!] + + """""" + stepCount: uint32 + + """""" + stepCount_geq: uint32 + + """""" + stepCount_gt: uint32 + + """""" + stepCount_in: [uint32!] + + """""" + stepCount_leq: uint32 + + """""" + stepCount_lt: uint32 + + """""" + stepCount_neq: uint32 + + """""" + stepCount_notin: [uint32!] + + """""" + storageRate: uint32 + + """""" + storageRate_geq: uint32 + + """""" + storageRate_gt: uint32 + + """""" + storageRate_in: [uint32!] + + """""" + storageRate_leq: uint32 + + """""" + storageRate_lt: uint32 + + """""" + storageRate_neq: uint32 + + """""" + storageRate_notin: [uint32!] + + """""" + wallTime: uint32 + + """""" + wallTime_geq: uint32 + + """""" + wallTime_gt: uint32 + + """""" + wallTime_in: [uint32!] + + """""" + wallTime_leq: uint32 + + """""" + wallTime_lt: uint32 + + """""" + wallTime_neq: uint32 + + """""" + wallTime_notin: [uint32!] + + """""" + workflowName: string + + """""" + workflowName_geq: string + + """""" + workflowName_gt: string + + """""" + workflowName_in: [string!] + + """""" + workflowName_leq: string + + """""" + workflowName_like: string + + """""" + workflowName_lt: string + + """""" + workflowName_neq: string + + """""" + workflowName_notin: [string!] + + """""" + workflowName_notlike: string +} + +"""Workflows analytics""" +type AccountWorkflowsAdaptiveGroups { + """""" + avg: AccountWorkflowsAdaptiveGroupsAvg + + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountWorkflowsAdaptiveGroupsConfidence! + + """Number of events(workflow invocations) per dimension""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountWorkflowsAdaptiveGroupsDimensions + + """""" + sum: AccountWorkflowsAdaptiveGroupsSum +} + +"""""" +type AccountWorkflowsAdaptiveGroupsAvg { + """Average CPU time per dimension""" + cpuTime: float32! + + """Average wall time per dimension""" + wallTime: float32! +} + +"""""" +type AccountWorkflowsAdaptiveGroupsConfidence { + """ + Number of events(workflow invocations) per dimension, with confidence intervals + """ + count: Confidence! + + """Confidence level that was requested""" + level: float64! + + """""" + sum: AccountWorkflowsAdaptiveGroupsSumConfidence +} + +"""""" +type AccountWorkflowsAdaptiveGroupsDimensions { + """The date when instance was triggered""" + date: Date! + + """The date and time truncated to fifteen minutes""" + datetimeFifteenMinutes: Time! + + """The date and time truncated to five minutes""" + datetimeFiveMinutes: Time! + + """The date and time truncated to the hour""" + datetimeHour: Time! + + """The date and time truncated to the minute""" + datetimeMinute: Time! + + """Event type""" + eventType: string! + + """Instance Id""" + instanceId: string! + + """Workflow name""" + workflowName: string! +} + +"""""" +input AccountWorkflowsAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountWorkflowsAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountWorkflowsAdaptiveGroupsFilter_InputObject!] + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + eventType: string + + """""" + eventType_geq: string + + """""" + eventType_gt: string + + """""" + eventType_in: [string!] + + """""" + eventType_leq: string + + """""" + eventType_like: string + + """""" + eventType_lt: string + + """""" + eventType_neq: string + + """""" + eventType_notin: [string!] + + """""" + eventType_notlike: string + + """""" + instanceId: string + + """""" + instanceId_geq: string + + """""" + instanceId_gt: string + + """""" + instanceId_in: [string!] + + """""" + instanceId_leq: string + + """""" + instanceId_like: string + + """""" + instanceId_lt: string + + """""" + instanceId_neq: string + + """""" + instanceId_notin: [string!] + + """""" + instanceId_notlike: string + + """""" + workflowName: string + + """""" + workflowName_geq: string + + """""" + workflowName_gt: string + + """""" + workflowName_in: [string!] + + """""" + workflowName_leq: string + + """""" + workflowName_like: string + + """""" + workflowName_lt: string + + """""" + workflowName_neq: string + + """""" + workflowName_notin: [string!] + + """""" + workflowName_notlike: string +} + +"""""" +enum AccountWorkflowsAdaptiveGroupsOrderBy { + """avg(cpuTime) ascending""" + avg_cpuTime_ASC + + """avg(cpuTime) descending""" + avg_cpuTime_DESC + + """avg(wallTime) ascending""" + avg_wallTime_ASC + + """avg(wallTime) descending""" + avg_wallTime_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """eventType ascending""" + eventType_ASC + + """eventType descending""" + eventType_DESC + + """instanceId ascending""" + instanceId_ASC + + """instanceId descending""" + instanceId_DESC + + """sum(cpuTime) ascending""" + sum_cpuTime_ASC + + """sum(cpuTime) descending""" + sum_cpuTime_DESC + + """sum(executionDuration) ascending""" + sum_executionDuration_ASC + + """sum(executionDuration) descending""" + sum_executionDuration_DESC + + """sum(retryCount) ascending""" + sum_retryCount_ASC + + """sum(retryCount) descending""" + sum_retryCount_DESC + + """sum(stepCount) ascending""" + sum_stepCount_ASC + + """sum(stepCount) descending""" + sum_stepCount_DESC + + """sum(storageRate) ascending""" + sum_storageRate_ASC + + """sum(storageRate) descending""" + sum_storageRate_DESC + + """sum(wallTime) ascending""" + sum_wallTime_ASC + + """sum(wallTime) descending""" + sum_wallTime_DESC + + """workflowName ascending""" + workflowName_ASC + + """workflowName descending""" + workflowName_DESC +} + +"""""" +type AccountWorkflowsAdaptiveGroupsSum { + """CPU time per dimension (ms)""" + cpuTime: uint32! + + """Execution duration per dimension (GB*s)""" + executionDuration: uint32! + + """Number of retries per dimension""" + retryCount: uint32! + + """Total steps per dimension""" + stepCount: uint32! + + """Total instance storage growth rate per dimension""" + storageRate: uint64! + + """Total wall time per dimension""" + wallTime: uint64! +} + +"""""" +type AccountWorkflowsAdaptiveGroupsSumConfidence { + """Confidence interval for the corresponding point estimate""" + cpuTime: Confidence! + + """Confidence interval for the corresponding point estimate""" + executionDuration: Confidence! + + """Confidence interval for the corresponding point estimate""" + retryCount: Confidence! + + """Confidence interval for the corresponding point estimate""" + stepCount: Confidence! + + """Confidence interval for the corresponding point estimate""" + storageRate: Confidence! + + """Confidence interval for the corresponding point estimate""" + wallTime: Confidence! +} + +"""""" +enum AccountWorkflowsAdaptiveOrderBy { + """cpuTime ascending""" + cpuTime_ASC + + """cpuTime descending""" + cpuTime_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """endTimestamp ascending""" + endTimestamp_ASC + + """endTimestamp descending""" + endTimestamp_DESC + + """eventType ascending""" + eventType_ASC + + """eventType descending""" + eventType_DESC + + """executionDuration ascending""" + executionDuration_ASC + + """executionDuration descending""" + executionDuration_DESC + + """instanceId ascending""" + instanceId_ASC + + """instanceId descending""" + instanceId_DESC + + """retryCount ascending""" + retryCount_ASC + + """retryCount descending""" + retryCount_DESC + + """sampleInterval ascending""" + sampleInterval_ASC + + """sampleInterval descending""" + sampleInterval_DESC + + """startTimestamp ascending""" + startTimestamp_ASC + + """startTimestamp descending""" + startTimestamp_DESC + + """stepCount ascending""" + stepCount_ASC + + """stepCount descending""" + stepCount_DESC + + """storageRate ascending""" + storageRate_ASC + + """storageRate descending""" + storageRate_DESC + + """wallTime ascending""" + wallTime_ASC + + """wallTime descending""" + wallTime_DESC + + """workflowName ascending""" + workflowName_ASC + + """workflowName descending""" + workflowName_DESC +} + +"""Zaraz Track Analytics - counts zaraz.track calls""" +type AccountZarazTrackAdaptiveGroups { + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountZarazTrackAdaptiveGroupsConfidence! + + """Number of processed Zaraz Track requests""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountZarazTrackAdaptiveGroupsDimensions +} + +"""""" +type AccountZarazTrackAdaptiveGroupsConfidence { + """Number of processed Zaraz Track requests, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! +} + +"""""" +type AccountZarazTrackAdaptiveGroupsDimensions { + """Date when track was called""" + date: Date! + + """The date and time truncated to fifteen minutes""" + datetimeFifteenMinutes: Time! + + """The date and time truncated to five minutes""" + datetimeFiveMinutes: Time! + + """The date and time truncated to the hour""" + datetimeHour: Time! + + """The date and time truncated to the minute""" + datetimeMinute: Time! + + """Track Name""" + trackName: string! + + """The URL from where Track was called""" + urlPath: string! +} + +"""""" +input AccountZarazTrackAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountZarazTrackAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountZarazTrackAdaptiveGroupsFilter_InputObject!] + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + trackName: string + + """""" + trackName_geq: string + + """""" + trackName_gt: string + + """""" + trackName_in: [string!] + + """""" + trackName_leq: string + + """""" + trackName_like: string + + """""" + trackName_lt: string + + """""" + trackName_neq: string + + """""" + trackName_notin: [string!] + + """""" + trackName_notlike: string + + """""" + urlPath: string + + """""" + urlPath_geq: string + + """""" + urlPath_gt: string + + """""" + urlPath_in: [string!] + + """""" + urlPath_leq: string + + """""" + urlPath_like: string + + """""" + urlPath_lt: string + + """""" + urlPath_neq: string + + """""" + urlPath_notin: [string!] + + """""" + urlPath_notlike: string +} + +"""""" +enum AccountZarazTrackAdaptiveGroupsOrderBy { + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """trackName ascending""" + trackName_ASC + + """trackName descending""" + trackName_DESC + + """urlPath ascending""" + urlPath_ASC + + """urlPath descending""" + urlPath_DESC +} + +""" +Zaraz Triggers Analytics (a trigger is a set of rules that can trigger a zaraz action) +""" +type AccountZarazTriggersAdaptiveGroups { + """ALPHA - DO NOT USE""" + confidence(level: float64!): AccountZarazTriggersAdaptiveGroupsConfidence! + + """Number of processed Zaraz Triggers""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountZarazTriggersAdaptiveGroupsDimensions +} + +"""""" +type AccountZarazTriggersAdaptiveGroupsConfidence { + """Number of processed Zaraz Triggers, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! +} + +"""""" +type AccountZarazTriggersAdaptiveGroupsDimensions { + """The date when trigger was triggerd""" + date: Date! + + """The date and time truncated to fifteen minutes""" + datetimeFifteenMinutes: Time! + + """The date and time truncated to five minutes""" + datetimeFiveMinutes: Time! + + """The date and time truncated to the hour""" + datetimeHour: Time! + + """The date and time truncated to the minute""" + datetimeMinute: Time! + + """Trigger Name""" + triggerName: string! +} + +"""""" +input AccountZarazTriggersAdaptiveGroupsFilter_InputObject { + """""" + AND: [AccountZarazTriggersAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [AccountZarazTriggersAdaptiveGroupsFilter_InputObject!] + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + triggerName: string + + """""" + triggerName_geq: string + + """""" + triggerName_gt: string + + """""" + triggerName_in: [string!] + + """""" + triggerName_leq: string + + """""" + triggerName_like: string + + """""" + triggerName_lt: string + + """""" + triggerName_neq: string + + """""" + triggerName_notin: [string!] + + """""" + triggerName_notlike: string +} + +"""""" +enum AccountZarazTriggersAdaptiveGroupsOrderBy { + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """triggerName ascending""" + triggerName_ASC + + """triggerName descending""" + triggerName_DESC +} + +""" +Beta - Unique origins, applications, and users discovered for Zero Trust private networks +""" +type AccountZeroTrustPrivateNetworkDiscoveryGroups { + """Sum of network access during the select range""" + count: uint64! + + """List of dimensions to group by""" + dimensions: AccountZeroTrustPrivateNetworkDiscoveryGroupsDimensions + + """""" + max: AccountZeroTrustPrivateNetworkDiscoveryGroupsMax + + """""" + uniq: AccountZeroTrustPrivateNetworkDiscoveryGroupsUniq +} + +"""""" +type AccountZeroTrustPrivateNetworkDiscoveryGroupsDimensions { + """Request date""" + date: Date! + + """Request datetime and start of the hour""" + datetimeHour: Time! + + """Destination IPv4 or IPv6""" + destinationIP: string! + + """Destination port""" + destinationPort: uint16! + + """The email address of the user who accessed the resource""" + email: string! + + """SNI hostname of the origin if TLS intercept is enabled""" + hostname: string! + + """UUID of the origin if it has been identified before""" + originId: string! + + """ + status of the origin, one of unreviewed, in_review, approved, unapproved + """ + status: string! + + """ + The transport protocol used in the session, one of (0, tcp) (1, quic) (2, udp) + """ + transport: string! + + """The ID of the user who accessed the resource""" + userId: string! +} + +"""""" +input AccountZeroTrustPrivateNetworkDiscoveryGroupsFilter_InputObject { + """""" + AND: [AccountZeroTrustPrivateNetworkDiscoveryGroupsFilter_InputObject!] + + """""" + OR: [AccountZeroTrustPrivateNetworkDiscoveryGroupsFilter_InputObject!] + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + destinationIP: string + + """""" + destinationIP_geq: string + + """""" + destinationIP_gt: string + + """""" + destinationIP_in: [string!] + + """""" + destinationIP_leq: string + + """""" + destinationIP_like: string + + """""" + destinationIP_lt: string + + """""" + destinationIP_neq: string + + """""" + destinationIP_notin: [string!] + + """""" + destinationIP_notlike: string + + """""" + destinationPort: uint16 + + """""" + destinationPort_geq: uint16 + + """""" + destinationPort_gt: uint16 + + """""" + destinationPort_in: [uint16!] + + """""" + destinationPort_leq: uint16 + + """""" + destinationPort_lt: uint16 + + """""" + destinationPort_neq: uint16 + + """""" + destinationPort_notin: [uint16!] + + """""" + email: string + + """""" + email_geq: string + + """""" + email_gt: string + + """""" + email_in: [string!] + + """""" + email_leq: string + + """""" + email_like: string + + """""" + email_lt: string + + """""" + email_neq: string + + """""" + email_notin: [string!] + + """""" + email_notlike: string + + """""" + hostname: string + + """""" + hostname_geq: string + + """""" + hostname_gt: string + + """""" + hostname_in: [string!] + + """""" + hostname_leq: string + + """""" + hostname_like: string + + """""" + hostname_lt: string + + """""" + hostname_neq: string + + """""" + hostname_notin: [string!] + + """""" + hostname_notlike: string + + """""" + originId: string + + """""" + originId_geq: string + + """""" + originId_gt: string + + """""" + originId_in: [string!] + + """""" + originId_leq: string + + """""" + originId_like: string + + """""" + originId_lt: string + + """""" + originId_neq: string + + """""" + originId_notin: [string!] + + """""" + originId_notlike: string + + """""" + status: string + + """""" + status_geq: string + + """""" + status_gt: string + + """""" + status_in: [string!] + + """""" + status_leq: string + + """""" + status_like: string + + """""" + status_lt: string + + """""" + status_neq: string + + """""" + status_notin: [string!] + + """""" + status_notlike: string + + """""" + transport: string + + """""" + transport_geq: string + + """""" + transport_gt: string + + """""" + transport_in: [string!] + + """""" + transport_leq: string + + """""" + transport_like: string + + """""" + transport_lt: string + + """""" + transport_neq: string + + """""" + transport_notin: [string!] + + """""" + transport_notlike: string + + """""" + userId: string + + """""" + userId_geq: string + + """""" + userId_gt: string + + """""" + userId_in: [string!] + + """""" + userId_leq: string + + """""" + userId_like: string + + """""" + userId_lt: string + + """""" + userId_neq: string + + """""" + userId_notin: [string!] + + """""" + userId_notlike: string +} + +"""""" +type AccountZeroTrustPrivateNetworkDiscoveryGroupsMax { + """Latest access time of a user""" + dateTime: Time! +} + +"""""" +enum AccountZeroTrustPrivateNetworkDiscoveryGroupsOrderBy { + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """destinationIP ascending""" + destinationIP_ASC + + """destinationIP descending""" + destinationIP_DESC + + """destinationPort ascending""" + destinationPort_ASC + + """destinationPort descending""" + destinationPort_DESC + + """email ascending""" + email_ASC + + """email descending""" + email_DESC + + """hostname ascending""" + hostname_ASC + + """hostname descending""" + hostname_DESC + + """max(dateTime) ascending""" + max_dateTime_ASC + + """max(dateTime) descending""" + max_dateTime_DESC + + """originId ascending""" + originId_ASC + + """originId descending""" + originId_DESC + + """status ascending""" + status_ASC + + """status descending""" + status_DESC + + """transport ascending""" + transport_ASC + + """transport descending""" + transport_DESC + + """uniq(emails) ascending""" + uniq_emails_ASC + + """uniq(emails) descending""" + uniq_emails_DESC + + """uniq(origins) ascending""" + uniq_origins_ASC + + """uniq(origins) descending""" + uniq_origins_DESC + + """uniq(userIds) ascending""" + uniq_userIds_ASC + + """uniq(userIds) descending""" + uniq_userIds_DESC + + """userId ascending""" + userId_ASC + + """userId descending""" + userId_DESC +} + +"""""" +type AccountZeroTrustPrivateNetworkDiscoveryGroupsUniq { + """Approximate count of unique emails""" + emails: uint64! + + """ + Approximate count of unique origins. An origin is a (transport, destinationIP, destinationPort) + """ + origins: uint64! + + """Approximate count of unique users""" + userIds: uint64! +} + +"""""" +type Confidence { + """Estimated value of this metric""" + estimate: float64! + + """ + True if the confidence interval is valid, i.e. there is enough samples at low enough sample interval + """ + isValid: bool! + + """Lower bound of confidence interval""" + lower: float64! + + """Number of samples that contributed to the estimate""" + sampleSize: int64! + + """Upper bound of confidence interval""" + upper: float64! +} + +"""Scalar type types.Date""" +scalar Date + +"""Mutations are not supported""" +type Mutation { + """""" + do(nothing: bool!): string! +} + +"""""" +input OrganizationFilter_InputObject { + """""" + organizationTag: string! +} + +"""Aggregated HTTP requests data with adaptive sampling""" +type OrganizationHttpRequestsAdaptiveGroups { + """The average value used for sample interval""" + avg: OrganizationHttpRequestsAdaptiveGroupsAvg + + """ALPHA - DO NOT USE""" + confidence(level: float64!): OrganizationHttpRequestsAdaptiveGroupsConfidence! + + """The number of values for a metric per dimension""" + count: uint64! + + """List of dimensions to group by""" + dimensions: OrganizationHttpRequestsAdaptiveGroupsDimensions + + """Quantiles of a metric per dimension""" + quantiles: OrganizationHttpRequestsAdaptiveGroupsQuantiles + + """The ratio of a range of status codes, between 0 and 1""" + ratio: OrganizationHttpRequestsAdaptiveGroupsRatio + + """The sum of values for a metric per dimension""" + sum: OrganizationHttpRequestsAdaptiveGroupsSum +} + +"""""" +type OrganizationHttpRequestsAdaptiveGroupsAvg { + """ + The proportion of requests that were inititiated by a Cloudflare Worker on another zone + """ + crossZoneSubrequests: float64! + + """""" + edgeDnsResponseTimeMs: float64! + + """""" + edgeTimeToFirstByteMs: float64! + + """ + The average originResponseDuration, in milliseconds, excluding 0 values (i.e. cached ones) + """ + originResponseDurationMs: float64! + + """""" + sampleInterval: float64! +} + +"""""" +type OrganizationHttpRequestsAdaptiveGroupsConfidence { + """ + The number of values for a metric per dimension, with confidence intervals + """ + count: Confidence! + + """Confidence level that was requested""" + level: float64! + + """ + The sum of values for a metric per dimension, with confidence intervals + """ + sum: OrganizationHttpRequestsAdaptiveGroupsSumConfidence +} + +"""""" +type OrganizationHttpRequestsAdaptiveGroupsDimensions { + """Associated account""" + accountTag: string! + + """API Gateway endpoint matched at the edge""" + apiGatewayMatchedEndpoint: string! + + """API Gateway host matched at the edge""" + apiGatewayMatchedHost: string! + + """ + 1-D array of the categories associated with the rules ref in attackSignatureRefs + """ + attackSignatureCategories: [string!]! + + """ + cf.waf.attack_signature.refs Ruleset field truncated to maximum 10 elements. + """ + attackSignatureRefs: [string!]! + + """Judgement of the bot management system""" + botManagementDecision: string! + + """The final score originated from bot management detections.""" + botScore: uint8! + + """Range of the bot management score""" + botScoreBucketBy10: uint8! + + """Name of the source detection which generated the bot management score.""" + botScoreSrcName: string! + + """Used Cache Reserve to serve the response""" + cacheReserveUsed: uint8! + + """""" + cacheStatus: string! + + """The ASN of the visitor as string""" + clientASNDescription: string! + + """""" + clientAsn: string! + + """Country from which request originated""" + clientCountryName: string! + + """""" + clientDeviceType: string! + + """""" + clientIP: string! + + """The referrer host""" + clientRefererHost: string! + + """Host requested by the client""" + clientRequestHTTPHost: string! + + """HTTP method of client request""" + clientRequestHTTPMethodName: string! + + """HTTP protocol version""" + clientRequestHTTPProtocol: string! + + """Path of client request""" + clientRequestPath: string! + + """Query parameters of client request""" + clientRequestQuery: string! + + """HTTP request referrer""" + clientRequestReferer: string! + + """HTTP request URI scheme (http/https)""" + clientRequestScheme: string! + + """SSL protocol version""" + clientSSLProtocol: string! + + """""" + coloCode: string! + + """ + 1 if not all contents for this request where successfully scanned, else 0 + """ + contentScanHasFailed: uint8! + + """Number of scannable content objects that are malicious""" + contentScanNumMaliciousObj: uint8! + + """Number of scannable content objects""" + contentScanNumObj: uint8! + + """Array of scan results in order of detection""" + contentScanObjResults: [string!]! + + """Array of scan sizes in order of detection""" + contentScanObjSizes: [uint32!]! + + """Array of content types in order of detection""" + contentScanObjTypes: [string!]! + + """The date the event occurred at the edge""" + date: Date! + + """The date and time the event occurred at the edge""" + datetime: Time! + + """ + The date and time the event occurred at the edge truncated to a multiple of 15 minutes + """ + datetimeFifteenMinutes: Time! + + """ + The date and time the event occurred at the edge truncated to a multiple of 5 minutes + """ + datetimeFiveMinutes: Time! + + """The date and time the event occurred at the edge truncated to hours""" + datetimeHour: Time! + + """ + The date and time the event occurred at the edge truncated to the minute + """ + datetimeMinute: Time! + + """ + The time elapsed resolving a CNAME if it was required to reach your origin + """ + edgeDnsResponseTimeMs: uint16! + + """""" + edgeResponseContentTypeName: string! + + """""" + edgeResponseStatus: uint16! + + """ + The time elapsed between processing the first byte of the request until when we started sending a response + """ + edgeTimeToFirstByteMs: uint16! + + """ + Whether firewallForAiPiiCategories is non empty. 0 if empty, 1 if not empty. + """ + firewallForAiAnyPiiCategory: int8! + + """Corresponds to the Ruleset field cf.llm.prompt.injection_score.""" + firewallForAiInjectionScore: int8! + + """Corresponds to the Ruleset field cf.llm.prompt.pii_categories.""" + firewallForAiPiiCategories: [string!]! + + """Corresponds to the Ruleset field cf.llm.prompt.unsafe_data_categories.""" + firewallForAiUnsafeTopicCategories: [string!]! + + """ + The primary attack or use case detected in the request by Fraud detections + """ + fraudAttack: string! + + """Array of fraud detections ids that matched this request""" + fraudDetectionIds: [uint32!]! + + """Array of fraud detections tags that matched this request""" + fraudDetectionTags: [string!]! + + """Risk of a specific email address in account signup attempts""" + fraudEmailRisk: string! + + """Version associated with HTTP Application""" + httpApplicationVersion: uint64! @deprecated(reason: "Field is replaced with zoneVersion") + + """ + '1' if a request was inititiated by a Cloudflare Worker on another zone; '0' otherwise. + """ + isCrossZoneSubrequest: uint8! + + """MD5 hash of the JA3 TLS fingerprint""" + ja3Hash: string! + + """JA4 TLS fingerprint""" + ja4: string! + + """Whether the request passed background JavaScript Detection""" + jsDetectionPassed: string! + + """The distinct result of checking for leaked credentials""" + leakedCredentialCheckResult: string! + + """""" + originASN: uint32! + + """ASN associated with origin""" + originASNDescription: string! + + """""" + originIP: string! + + """""" + originResponseDurationMs: uint64! + + """HTTP response status code returned by the origin""" + originResponseStatus: uint16! + + """ + Pay Per Crawl outcome, when applicable (e.g. request enabled for charging and not blocked by a WAF rule) + """ + payPerCrawlStatus: string! + + """""" + requestSource: string! + + """ABR sample interval""" + sampleInterval: uint32! + + """ + The code of the first-class action the Cloudflare Firewall took on this request + """ + securityAction: string! + + """The Cloudflare security product triggered by this request""" + securitySource: string! + + """API Security Session ID hash""" + sessionIdHash: string! + + """""" + upperTierColoName: string! + + """""" + userAgent: string! + + """Browser parsed from the user agent""" + userAgentBrowser: string! + + """OS parsed from the user agent""" + userAgentOS: string! + + """The category of verified bot""" + verifiedBotCategory: string! + + """Beta. Overall request score generated by the WAF detection module""" + wafAttackScore: uint8! + + """ + Beta. Overall request score class generated by the WAF detection module + """ + wafAttackScoreClass: string! + + """Beta. WAF score for a RCE attack""" + wafRceAttackScore: uint8! + + """Beta. WAF score for a SQLi attack""" + wafSqliAttackScore: uint8! + + """Beta. WAF score for a XSS attack""" + wafXssAttackScore: uint8! + + """The X-Requested-With header of the client request""" + xRequestedWith: string! + + """Associated zone""" + zoneTag: string! + + """The version of a zone""" + zoneVersion: uint64! +} + +"""""" +input OrganizationHttpRequestsAdaptiveGroupsFilter_InputObject { + """""" + AND: [OrganizationHttpRequestsAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [OrganizationHttpRequestsAdaptiveGroupsFilter_InputObject!] + + """""" + apiGatewayMatchedEndpoint: string + + """""" + apiGatewayMatchedEndpoint_geq: string + + """""" + apiGatewayMatchedEndpoint_gt: string + + """""" + apiGatewayMatchedEndpoint_in: [string!] + + """""" + apiGatewayMatchedEndpoint_leq: string + + """""" + apiGatewayMatchedEndpoint_like: string + + """""" + apiGatewayMatchedEndpoint_lt: string + + """""" + apiGatewayMatchedEndpoint_neq: string + + """""" + apiGatewayMatchedEndpoint_notin: [string!] + + """""" + apiGatewayMatchedEndpoint_notlike: string + + """""" + apiGatewayMatchedHost: string + + """""" + apiGatewayMatchedHost_geq: string + + """""" + apiGatewayMatchedHost_gt: string + + """""" + apiGatewayMatchedHost_in: [string!] + + """""" + apiGatewayMatchedHost_leq: string + + """""" + apiGatewayMatchedHost_like: string + + """""" + apiGatewayMatchedHost_lt: string + + """""" + apiGatewayMatchedHost_neq: string + + """""" + apiGatewayMatchedHost_notin: [string!] + + """""" + apiGatewayMatchedHost_notlike: string + + """""" + attackSignatureCategories_has: string + + """""" + attackSignatureCategories_hasall: [string!] + + """""" + attackSignatureCategories_hasany: [string!] + + """""" + attackSignatureCategories_isempty: bool + + """""" + attackSignatureCategories_nothas: string + + """""" + attackSignatureRefs_has: string + + """""" + attackSignatureRefs_hasall: [string!] + + """""" + attackSignatureRefs_hasany: [string!] + + """""" + attackSignatureRefs_isempty: bool + + """""" + attackSignatureRefs_nothas: string + + """""" + botManagementDecision: string + + """""" + botManagementDecision_geq: string + + """""" + botManagementDecision_gt: string + + """""" + botManagementDecision_in: [string!] + + """""" + botManagementDecision_leq: string + + """""" + botManagementDecision_like: string + + """""" + botManagementDecision_lt: string + + """""" + botManagementDecision_neq: string + + """""" + botManagementDecision_notin: [string!] + + """""" + botManagementDecision_notlike: string + + """""" + botScore: uint8 + + """""" + botScoreBucketBy10: uint8 + + """""" + botScoreBucketBy10_geq: uint8 + + """""" + botScoreBucketBy10_gt: uint8 + + """""" + botScoreBucketBy10_in: bytes + + """""" + botScoreBucketBy10_leq: uint8 + + """""" + botScoreBucketBy10_lt: uint8 + + """""" + botScoreBucketBy10_neq: uint8 + + """""" + botScoreBucketBy10_notin: bytes + + """""" + botScoreSrcName: string + + """""" + botScoreSrcName_geq: string + + """""" + botScoreSrcName_gt: string + + """""" + botScoreSrcName_in: [string!] + + """""" + botScoreSrcName_leq: string + + """""" + botScoreSrcName_like: string + + """""" + botScoreSrcName_lt: string + + """""" + botScoreSrcName_neq: string + + """""" + botScoreSrcName_notin: [string!] + + """""" + botScoreSrcName_notlike: string + + """""" + botScore_geq: uint8 + + """""" + botScore_gt: uint8 + + """""" + botScore_in: bytes + + """""" + botScore_leq: uint8 + + """""" + botScore_lt: uint8 + + """""" + botScore_neq: uint8 + + """""" + botScore_notin: bytes + + """""" + cacheReserveUsed: uint8 + + """""" + cacheReserveUsed_geq: uint8 + + """""" + cacheReserveUsed_gt: uint8 + + """""" + cacheReserveUsed_in: bytes + + """""" + cacheReserveUsed_leq: uint8 + + """""" + cacheReserveUsed_lt: uint8 + + """""" + cacheReserveUsed_neq: uint8 + + """""" + cacheReserveUsed_notin: bytes + + """""" + cacheStatus: string + + """""" + cacheStatus_geq: string + + """""" + cacheStatus_gt: string + + """""" + cacheStatus_in: [string!] + + """""" + cacheStatus_leq: string + + """""" + cacheStatus_like: string + + """""" + cacheStatus_lt: string + + """""" + cacheStatus_neq: string + + """""" + cacheStatus_notin: [string!] + + """""" + cacheStatus_notlike: string + + """""" + clientASNDescription: string + + """""" + clientASNDescription_geq: string + + """""" + clientASNDescription_gt: string + + """""" + clientASNDescription_in: [string!] + + """""" + clientASNDescription_leq: string + + """""" + clientASNDescription_like: string + + """""" + clientASNDescription_lt: string + + """""" + clientASNDescription_neq: string + + """""" + clientASNDescription_notin: [string!] + + """""" + clientASNDescription_notlike: string + + """""" + clientAsn: string + + """""" + clientAsn_geq: string + + """""" + clientAsn_gt: string + + """""" + clientAsn_in: [string!] + + """""" + clientAsn_leq: string + + """""" + clientAsn_like: string + + """""" + clientAsn_lt: string + + """""" + clientAsn_neq: string + + """""" + clientAsn_notin: [string!] + + """""" + clientAsn_notlike: string + + """""" + clientCountryName: string + + """""" + clientCountryName_geq: string + + """""" + clientCountryName_gt: string + + """""" + clientCountryName_in: [string!] + + """""" + clientCountryName_leq: string + + """""" + clientCountryName_like: string + + """""" + clientCountryName_lt: string + + """""" + clientCountryName_neq: string + + """""" + clientCountryName_notin: [string!] + + """""" + clientCountryName_notlike: string + + """""" + clientDeviceType: string + + """""" + clientDeviceType_geq: string + + """""" + clientDeviceType_gt: string + + """""" + clientDeviceType_in: [string!] + + """""" + clientDeviceType_leq: string + + """""" + clientDeviceType_like: string + + """""" + clientDeviceType_lt: string + + """""" + clientDeviceType_neq: string + + """""" + clientDeviceType_notin: [string!] + + """""" + clientDeviceType_notlike: string + + """""" + clientIP: string + + """""" + clientIP_geq: string + + """""" + clientIP_gt: string + + """""" + clientIP_in: [string!] + + """""" + clientIP_leq: string + + """""" + clientIP_like: string + + """""" + clientIP_lt: string + + """""" + clientIP_neq: string + + """""" + clientIP_notin: [string!] + + """""" + clientIP_notlike: string + + """""" + clientRefererHost: string + + """""" + clientRefererHost_geq: string + + """""" + clientRefererHost_gt: string + + """""" + clientRefererHost_in: [string!] + + """""" + clientRefererHost_leq: string + + """""" + clientRefererHost_like: string + + """""" + clientRefererHost_lt: string + + """""" + clientRefererHost_neq: string + + """""" + clientRefererHost_notin: [string!] + + """""" + clientRefererHost_notlike: string + + """""" + clientRequestHTTPHost: string + + """""" + clientRequestHTTPHost_geq: string + + """""" + clientRequestHTTPHost_gt: string + + """""" + clientRequestHTTPHost_in: [string!] + + """""" + clientRequestHTTPHost_leq: string + + """""" + clientRequestHTTPHost_like: string + + """""" + clientRequestHTTPHost_lt: string + + """""" + clientRequestHTTPHost_neq: string + + """""" + clientRequestHTTPHost_notin: [string!] + + """""" + clientRequestHTTPHost_notlike: string + + """""" + clientRequestHTTPMethodName: string + + """""" + clientRequestHTTPMethodName_geq: string + + """""" + clientRequestHTTPMethodName_gt: string + + """""" + clientRequestHTTPMethodName_in: [string!] + + """""" + clientRequestHTTPMethodName_leq: string + + """""" + clientRequestHTTPMethodName_like: string + + """""" + clientRequestHTTPMethodName_lt: string + + """""" + clientRequestHTTPMethodName_neq: string + + """""" + clientRequestHTTPMethodName_notin: [string!] + + """""" + clientRequestHTTPMethodName_notlike: string + + """""" + clientRequestHTTPProtocol: string + + """""" + clientRequestHTTPProtocol_geq: string + + """""" + clientRequestHTTPProtocol_gt: string + + """""" + clientRequestHTTPProtocol_in: [string!] + + """""" + clientRequestHTTPProtocol_leq: string + + """""" + clientRequestHTTPProtocol_like: string + + """""" + clientRequestHTTPProtocol_lt: string + + """""" + clientRequestHTTPProtocol_neq: string + + """""" + clientRequestHTTPProtocol_notin: [string!] + + """""" + clientRequestHTTPProtocol_notlike: string + + """""" + clientRequestPath: string + + """""" + clientRequestPath_geq: string + + """""" + clientRequestPath_gt: string + + """""" + clientRequestPath_in: [string!] + + """""" + clientRequestPath_leq: string + + """""" + clientRequestPath_like: string + + """""" + clientRequestPath_lt: string + + """""" + clientRequestPath_neq: string + + """""" + clientRequestPath_notin: [string!] + + """""" + clientRequestPath_notlike: string + + """""" + clientRequestQuery: string + + """""" + clientRequestQuery_geq: string + + """""" + clientRequestQuery_gt: string + + """""" + clientRequestQuery_in: [string!] + + """""" + clientRequestQuery_leq: string + + """""" + clientRequestQuery_like: string + + """""" + clientRequestQuery_lt: string + + """""" + clientRequestQuery_neq: string + + """""" + clientRequestQuery_notin: [string!] + + """""" + clientRequestQuery_notlike: string + + """""" + clientRequestReferer: string + + """""" + clientRequestReferer_geq: string + + """""" + clientRequestReferer_gt: string + + """""" + clientRequestReferer_in: [string!] + + """""" + clientRequestReferer_leq: string + + """""" + clientRequestReferer_like: string + + """""" + clientRequestReferer_lt: string + + """""" + clientRequestReferer_neq: string + + """""" + clientRequestReferer_notin: [string!] + + """""" + clientRequestReferer_notlike: string + + """""" + clientRequestScheme: string + + """""" + clientRequestScheme_geq: string + + """""" + clientRequestScheme_gt: string + + """""" + clientRequestScheme_in: [string!] + + """""" + clientRequestScheme_leq: string + + """""" + clientRequestScheme_like: string + + """""" + clientRequestScheme_lt: string + + """""" + clientRequestScheme_neq: string + + """""" + clientRequestScheme_notin: [string!] + + """""" + clientRequestScheme_notlike: string + + """""" + clientSSLProtocol: string + + """""" + clientSSLProtocol_geq: string + + """""" + clientSSLProtocol_gt: string + + """""" + clientSSLProtocol_in: [string!] + + """""" + clientSSLProtocol_leq: string + + """""" + clientSSLProtocol_like: string + + """""" + clientSSLProtocol_lt: string + + """""" + clientSSLProtocol_neq: string + + """""" + clientSSLProtocol_notin: [string!] + + """""" + clientSSLProtocol_notlike: string + + """""" + coloCode: string + + """""" + coloCode_geq: string + + """""" + coloCode_gt: string + + """""" + coloCode_in: [string!] + + """""" + coloCode_leq: string + + """""" + coloCode_like: string + + """""" + coloCode_lt: string + + """""" + coloCode_neq: string + + """""" + coloCode_notin: [string!] + + """""" + coloCode_notlike: string + + """""" + contentScanHasFailed: uint8 + + """""" + contentScanHasFailed_geq: uint8 + + """""" + contentScanHasFailed_gt: uint8 + + """""" + contentScanHasFailed_in: bytes + + """""" + contentScanHasFailed_leq: uint8 + + """""" + contentScanHasFailed_lt: uint8 + + """""" + contentScanHasFailed_neq: uint8 + + """""" + contentScanHasFailed_notin: bytes + + """""" + contentScanNumMaliciousObj: uint8 + + """""" + contentScanNumMaliciousObj_geq: uint8 + + """""" + contentScanNumMaliciousObj_gt: uint8 + + """""" + contentScanNumMaliciousObj_in: bytes + + """""" + contentScanNumMaliciousObj_leq: uint8 + + """""" + contentScanNumMaliciousObj_lt: uint8 + + """""" + contentScanNumMaliciousObj_neq: uint8 + + """""" + contentScanNumMaliciousObj_notin: bytes + + """""" + contentScanNumObj: uint8 + + """""" + contentScanNumObj_geq: uint8 + + """""" + contentScanNumObj_gt: uint8 + + """""" + contentScanNumObj_in: bytes + + """""" + contentScanNumObj_leq: uint8 + + """""" + contentScanNumObj_lt: uint8 + + """""" + contentScanNumObj_neq: uint8 + + """""" + contentScanNumObj_notin: bytes + + """""" + contentScanObjResults_has: string + + """""" + contentScanObjResults_hasall: [string!] + + """""" + contentScanObjResults_hasany: [string!] + + """""" + contentScanObjResults_isempty: bool + + """""" + contentScanObjResults_nothas: string + + """""" + contentScanObjSizes_has: uint32 + + """""" + contentScanObjSizes_hasall: [uint32!] + + """""" + contentScanObjSizes_hasany: [uint32!] + + """""" + contentScanObjSizes_isempty: bool + + """""" + contentScanObjSizes_nothas: uint32 + + """""" + contentScanObjTypes_has: string + + """""" + contentScanObjTypes_hasall: [string!] + + """""" + contentScanObjTypes_hasany: [string!] + + """""" + contentScanObjTypes_isempty: bool + + """""" + contentScanObjTypes_nothas: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + edgeDnsResponseTimeMs: uint16 + + """""" + edgeDnsResponseTimeMs_geq: uint16 + + """""" + edgeDnsResponseTimeMs_gt: uint16 + + """""" + edgeDnsResponseTimeMs_in: [uint16!] + + """""" + edgeDnsResponseTimeMs_leq: uint16 + + """""" + edgeDnsResponseTimeMs_lt: uint16 + + """""" + edgeDnsResponseTimeMs_neq: uint16 + + """""" + edgeDnsResponseTimeMs_notin: [uint16!] + + """""" + edgeResponseContentTypeName: string + + """""" + edgeResponseContentTypeName_geq: string + + """""" + edgeResponseContentTypeName_gt: string + + """""" + edgeResponseContentTypeName_in: [string!] + + """""" + edgeResponseContentTypeName_leq: string + + """""" + edgeResponseContentTypeName_like: string + + """""" + edgeResponseContentTypeName_lt: string + + """""" + edgeResponseContentTypeName_neq: string + + """""" + edgeResponseContentTypeName_notin: [string!] + + """""" + edgeResponseContentTypeName_notlike: string + + """""" + edgeResponseStatus: uint16 + + """""" + edgeResponseStatus_geq: uint16 + + """""" + edgeResponseStatus_gt: uint16 + + """""" + edgeResponseStatus_in: [uint16!] + + """""" + edgeResponseStatus_leq: uint16 + + """""" + edgeResponseStatus_lt: uint16 + + """""" + edgeResponseStatus_neq: uint16 + + """""" + edgeResponseStatus_notin: [uint16!] + + """""" + edgeTimeToFirstByteMs: uint16 + + """""" + edgeTimeToFirstByteMs_geq: uint16 + + """""" + edgeTimeToFirstByteMs_gt: uint16 + + """""" + edgeTimeToFirstByteMs_in: [uint16!] + + """""" + edgeTimeToFirstByteMs_leq: uint16 + + """""" + edgeTimeToFirstByteMs_lt: uint16 + + """""" + edgeTimeToFirstByteMs_neq: uint16 + + """""" + edgeTimeToFirstByteMs_notin: [uint16!] + + """""" + firewallForAiAnyPiiCategory: int8 + + """""" + firewallForAiAnyPiiCategory_geq: int8 + + """""" + firewallForAiAnyPiiCategory_gt: int8 + + """""" + firewallForAiAnyPiiCategory_in: [int8!] + + """""" + firewallForAiAnyPiiCategory_leq: int8 + + """""" + firewallForAiAnyPiiCategory_lt: int8 + + """""" + firewallForAiAnyPiiCategory_neq: int8 + + """""" + firewallForAiAnyPiiCategory_notin: [int8!] + + """""" + firewallForAiInjectionScore: int8 + + """""" + firewallForAiInjectionScore_geq: int8 + + """""" + firewallForAiInjectionScore_gt: int8 + + """""" + firewallForAiInjectionScore_in: [int8!] + + """""" + firewallForAiInjectionScore_leq: int8 + + """""" + firewallForAiInjectionScore_lt: int8 + + """""" + firewallForAiInjectionScore_neq: int8 + + """""" + firewallForAiInjectionScore_notin: [int8!] + + """""" + firewallForAiPiiCategories_has: string + + """""" + firewallForAiPiiCategories_hasall: [string!] + + """""" + firewallForAiPiiCategories_hasany: [string!] + + """""" + firewallForAiPiiCategories_isempty: bool + + """""" + firewallForAiPiiCategories_nothas: string + + """""" + firewallForAiUnsafeTopicCategories_has: string + + """""" + firewallForAiUnsafeTopicCategories_hasall: [string!] + + """""" + firewallForAiUnsafeTopicCategories_hasany: [string!] + + """""" + firewallForAiUnsafeTopicCategories_isempty: bool + + """""" + firewallForAiUnsafeTopicCategories_nothas: string + + """""" + fraudAttack: string + + """""" + fraudAttack_geq: string + + """""" + fraudAttack_gt: string + + """""" + fraudAttack_in: [string!] + + """""" + fraudAttack_leq: string + + """""" + fraudAttack_like: string + + """""" + fraudAttack_lt: string + + """""" + fraudAttack_neq: string + + """""" + fraudAttack_notin: [string!] + + """""" + fraudAttack_notlike: string + + """""" + fraudDetectionIds_has: uint32 + + """""" + fraudDetectionIds_hasall: [uint32!] + + """""" + fraudDetectionIds_hasany: [uint32!] + + """""" + fraudDetectionIds_isempty: bool + + """""" + fraudDetectionIds_nothas: uint32 + + """""" + fraudDetectionTags_has: string + + """""" + fraudDetectionTags_hasall: [string!] + + """""" + fraudDetectionTags_hasany: [string!] + + """""" + fraudDetectionTags_isempty: bool + + """""" + fraudDetectionTags_nothas: string + + """""" + fraudEmailRisk: string + + """""" + fraudEmailRisk_geq: string + + """""" + fraudEmailRisk_gt: string + + """""" + fraudEmailRisk_in: [string!] + + """""" + fraudEmailRisk_leq: string + + """""" + fraudEmailRisk_like: string + + """""" + fraudEmailRisk_lt: string + + """""" + fraudEmailRisk_neq: string + + """""" + fraudEmailRisk_notin: [string!] + + """""" + fraudEmailRisk_notlike: string + + """""" + httpApplicationVersion: uint64 + + """""" + httpApplicationVersion_geq: uint64 + + """""" + httpApplicationVersion_gt: uint64 + + """""" + httpApplicationVersion_in: [uint64!] + + """""" + httpApplicationVersion_leq: uint64 + + """""" + httpApplicationVersion_lt: uint64 + + """""" + httpApplicationVersion_neq: uint64 + + """""" + httpApplicationVersion_notin: [uint64!] + + """""" + isCrossZoneSubrequest: uint8 + + """""" + isCrossZoneSubrequest_geq: uint8 + + """""" + isCrossZoneSubrequest_gt: uint8 + + """""" + isCrossZoneSubrequest_in: bytes + + """""" + isCrossZoneSubrequest_leq: uint8 + + """""" + isCrossZoneSubrequest_lt: uint8 + + """""" + isCrossZoneSubrequest_neq: uint8 + + """""" + isCrossZoneSubrequest_notin: bytes + + """""" + ja3Hash: string + + """""" + ja3Hash_geq: string + + """""" + ja3Hash_gt: string + + """""" + ja3Hash_in: [string!] + + """""" + ja3Hash_leq: string + + """""" + ja3Hash_like: string + + """""" + ja3Hash_lt: string + + """""" + ja3Hash_neq: string + + """""" + ja3Hash_notin: [string!] + + """""" + ja3Hash_notlike: string + + """""" + ja4: string + + """""" + ja4_geq: string + + """""" + ja4_gt: string + + """""" + ja4_in: [string!] + + """""" + ja4_leq: string + + """""" + ja4_like: string + + """""" + ja4_lt: string + + """""" + ja4_neq: string + + """""" + ja4_notin: [string!] + + """""" + ja4_notlike: string + + """""" + jsDetectionPassed: string + + """""" + jsDetectionPassed_geq: string + + """""" + jsDetectionPassed_gt: string + + """""" + jsDetectionPassed_in: [string!] + + """""" + jsDetectionPassed_leq: string + + """""" + jsDetectionPassed_like: string + + """""" + jsDetectionPassed_lt: string + + """""" + jsDetectionPassed_neq: string + + """""" + jsDetectionPassed_notin: [string!] + + """""" + jsDetectionPassed_notlike: string + + """""" + leakedCredentialCheckResult: string + + """""" + leakedCredentialCheckResult_geq: string + + """""" + leakedCredentialCheckResult_gt: string + + """""" + leakedCredentialCheckResult_in: [string!] + + """""" + leakedCredentialCheckResult_leq: string + + """""" + leakedCredentialCheckResult_like: string + + """""" + leakedCredentialCheckResult_lt: string + + """""" + leakedCredentialCheckResult_neq: string + + """""" + leakedCredentialCheckResult_notin: [string!] + + """""" + leakedCredentialCheckResult_notlike: string + + """""" + originASN: uint32 + + """""" + originASNDescription: string + + """""" + originASNDescription_geq: string + + """""" + originASNDescription_gt: string + + """""" + originASNDescription_in: [string!] + + """""" + originASNDescription_leq: string + + """""" + originASNDescription_like: string + + """""" + originASNDescription_lt: string + + """""" + originASNDescription_neq: string + + """""" + originASNDescription_notin: [string!] + + """""" + originASNDescription_notlike: string + + """""" + originASN_geq: uint32 + + """""" + originASN_gt: uint32 + + """""" + originASN_in: [uint32!] + + """""" + originASN_leq: uint32 + + """""" + originASN_lt: uint32 + + """""" + originASN_neq: uint32 + + """""" + originASN_notin: [uint32!] + + """""" + originIP: string + + """""" + originIP_geq: string + + """""" + originIP_gt: string + + """""" + originIP_in: [string!] + + """""" + originIP_leq: string + + """""" + originIP_like: string + + """""" + originIP_lt: string + + """""" + originIP_neq: string + + """""" + originIP_notin: [string!] + + """""" + originIP_notlike: string + + """""" + originResponseDurationMs: uint64 + + """""" + originResponseDurationMs_geq: uint64 + + """""" + originResponseDurationMs_gt: uint64 + + """""" + originResponseDurationMs_in: [uint64!] + + """""" + originResponseDurationMs_leq: uint64 + + """""" + originResponseDurationMs_lt: uint64 + + """""" + originResponseDurationMs_neq: uint64 + + """""" + originResponseDurationMs_notin: [uint64!] + + """""" + originResponseStatus: uint16 + + """""" + originResponseStatus_geq: uint16 + + """""" + originResponseStatus_gt: uint16 + + """""" + originResponseStatus_in: [uint16!] + + """""" + originResponseStatus_leq: uint16 + + """""" + originResponseStatus_lt: uint16 + + """""" + originResponseStatus_neq: uint16 + + """""" + originResponseStatus_notin: [uint16!] + + """""" + payPerCrawlStatus: string + + """""" + payPerCrawlStatus_geq: string + + """""" + payPerCrawlStatus_gt: string + + """""" + payPerCrawlStatus_in: [string!] + + """""" + payPerCrawlStatus_leq: string + + """""" + payPerCrawlStatus_like: string + + """""" + payPerCrawlStatus_lt: string + + """""" + payPerCrawlStatus_neq: string + + """""" + payPerCrawlStatus_notin: [string!] + + """""" + payPerCrawlStatus_notlike: string + + """""" + rayName: string + + """""" + rayName_geq: string + + """""" + rayName_gt: string + + """""" + rayName_in: [string!] + + """""" + rayName_leq: string + + """""" + rayName_like: string + + """""" + rayName_lt: string + + """""" + rayName_neq: string + + """""" + rayName_notin: [string!] + + """""" + rayName_notlike: string + + """""" + requestSource: string + + """""" + requestSource_geq: string + + """""" + requestSource_gt: string + + """""" + requestSource_in: [string!] + + """""" + requestSource_leq: string + + """""" + requestSource_like: string + + """""" + requestSource_lt: string + + """""" + requestSource_neq: string + + """""" + requestSource_notin: [string!] + + """""" + requestSource_notlike: string + + """""" + sampleInterval: uint32 + + """""" + sampleInterval_geq: uint32 + + """""" + sampleInterval_gt: uint32 + + """""" + sampleInterval_in: [uint32!] + + """""" + sampleInterval_leq: uint32 + + """""" + sampleInterval_lt: uint32 + + """""" + sampleInterval_neq: uint32 + + """""" + sampleInterval_notin: [uint32!] + + """""" + securityAction: string + + """""" + securityAction_geq: string + + """""" + securityAction_gt: string + + """""" + securityAction_in: [string!] + + """""" + securityAction_leq: string + + """""" + securityAction_like: string + + """""" + securityAction_lt: string + + """""" + securityAction_neq: string + + """""" + securityAction_notin: [string!] + + """""" + securityAction_notlike: string + + """""" + securitySource: string + + """""" + securitySource_geq: string + + """""" + securitySource_gt: string + + """""" + securitySource_in: [string!] + + """""" + securitySource_leq: string + + """""" + securitySource_like: string + + """""" + securitySource_lt: string + + """""" + securitySource_neq: string + + """""" + securitySource_notin: [string!] + + """""" + securitySource_notlike: string + + """""" + sessionIdHash: string + + """""" + sessionIdHash_geq: string + + """""" + sessionIdHash_gt: string + + """""" + sessionIdHash_in: [string!] + + """""" + sessionIdHash_leq: string + + """""" + sessionIdHash_like: string + + """""" + sessionIdHash_lt: string + + """""" + sessionIdHash_neq: string + + """""" + sessionIdHash_notin: [string!] + + """""" + sessionIdHash_notlike: string + + """""" + upperTierColoName: string + + """""" + upperTierColoName_geq: string + + """""" + upperTierColoName_gt: string + + """""" + upperTierColoName_in: [string!] + + """""" + upperTierColoName_leq: string + + """""" + upperTierColoName_like: string + + """""" + upperTierColoName_lt: string + + """""" + upperTierColoName_neq: string + + """""" + upperTierColoName_notin: [string!] + + """""" + upperTierColoName_notlike: string + + """""" + userAgent: string + + """""" + userAgentBrowser: string + + """""" + userAgentBrowser_geq: string + + """""" + userAgentBrowser_gt: string + + """""" + userAgentBrowser_in: [string!] + + """""" + userAgentBrowser_leq: string + + """""" + userAgentBrowser_like: string + + """""" + userAgentBrowser_lt: string + + """""" + userAgentBrowser_neq: string + + """""" + userAgentBrowser_notin: [string!] + + """""" + userAgentBrowser_notlike: string + + """""" + userAgentOS: string + + """""" + userAgentOS_geq: string + + """""" + userAgentOS_gt: string + + """""" + userAgentOS_in: [string!] + + """""" + userAgentOS_leq: string + + """""" + userAgentOS_like: string + + """""" + userAgentOS_lt: string + + """""" + userAgentOS_neq: string + + """""" + userAgentOS_notin: [string!] + + """""" + userAgentOS_notlike: string + + """""" + userAgent_geq: string + + """""" + userAgent_gt: string + + """""" + userAgent_in: [string!] + + """""" + userAgent_leq: string + + """""" + userAgent_like: string + + """""" + userAgent_lt: string + + """""" + userAgent_neq: string + + """""" + userAgent_notin: [string!] + + """""" + userAgent_notlike: string + + """""" + verifiedBotCategory: string + + """""" + verifiedBotCategory_geq: string + + """""" + verifiedBotCategory_gt: string + + """""" + verifiedBotCategory_in: [string!] + + """""" + verifiedBotCategory_leq: string + + """""" + verifiedBotCategory_like: string + + """""" + verifiedBotCategory_lt: string + + """""" + verifiedBotCategory_neq: string + + """""" + verifiedBotCategory_notin: [string!] + + """""" + verifiedBotCategory_notlike: string + + """""" + wafAttackScore: uint8 + + """""" + wafAttackScoreClass: string + + """""" + wafAttackScoreClass_geq: string + + """""" + wafAttackScoreClass_gt: string + + """""" + wafAttackScoreClass_in: [string!] + + """""" + wafAttackScoreClass_leq: string + + """""" + wafAttackScoreClass_like: string + + """""" + wafAttackScoreClass_lt: string + + """""" + wafAttackScoreClass_neq: string + + """""" + wafAttackScoreClass_notin: [string!] + + """""" + wafAttackScoreClass_notlike: string + + """""" + wafAttackScore_geq: uint8 + + """""" + wafAttackScore_gt: uint8 + + """""" + wafAttackScore_in: bytes + + """""" + wafAttackScore_leq: uint8 + + """""" + wafAttackScore_lt: uint8 + + """""" + wafAttackScore_neq: uint8 + + """""" + wafAttackScore_notin: bytes + + """""" + wafRceAttackScore: uint8 + + """""" + wafRceAttackScore_geq: uint8 + + """""" + wafRceAttackScore_gt: uint8 + + """""" + wafRceAttackScore_in: bytes + + """""" + wafRceAttackScore_leq: uint8 + + """""" + wafRceAttackScore_lt: uint8 + + """""" + wafRceAttackScore_neq: uint8 + + """""" + wafRceAttackScore_notin: bytes + + """""" + wafSqliAttackScore: uint8 + + """""" + wafSqliAttackScore_geq: uint8 + + """""" + wafSqliAttackScore_gt: uint8 + + """""" + wafSqliAttackScore_in: bytes + + """""" + wafSqliAttackScore_leq: uint8 + + """""" + wafSqliAttackScore_lt: uint8 + + """""" + wafSqliAttackScore_neq: uint8 + + """""" + wafSqliAttackScore_notin: bytes + + """""" + wafXssAttackScore: uint8 + + """""" + wafXssAttackScore_geq: uint8 + + """""" + wafXssAttackScore_gt: uint8 + + """""" + wafXssAttackScore_in: bytes + + """""" + wafXssAttackScore_leq: uint8 + + """""" + wafXssAttackScore_lt: uint8 + + """""" + wafXssAttackScore_neq: uint8 + + """""" + wafXssAttackScore_notin: bytes + + """""" + xRequestedWith: string + + """""" + xRequestedWith_geq: string + + """""" + xRequestedWith_gt: string + + """""" + xRequestedWith_in: [string!] + + """""" + xRequestedWith_leq: string + + """""" + xRequestedWith_like: string + + """""" + xRequestedWith_lt: string + + """""" + xRequestedWith_neq: string + + """""" + xRequestedWith_notin: [string!] + + """""" + xRequestedWith_notlike: string + + """""" + zoneVersion: uint64 + + """""" + zoneVersion_geq: uint64 + + """""" + zoneVersion_gt: uint64 + + """""" + zoneVersion_in: [uint64!] + + """""" + zoneVersion_leq: uint64 + + """""" + zoneVersion_lt: uint64 + + """""" + zoneVersion_neq: uint64 + + """""" + zoneVersion_notin: [uint64!] +} + +"""""" +enum OrganizationHttpRequestsAdaptiveGroupsOrderBy { + """apiGatewayMatchedEndpoint ascending""" + apiGatewayMatchedEndpoint_ASC + + """apiGatewayMatchedEndpoint descending""" + apiGatewayMatchedEndpoint_DESC + + """apiGatewayMatchedHost ascending""" + apiGatewayMatchedHost_ASC + + """apiGatewayMatchedHost descending""" + apiGatewayMatchedHost_DESC + + """attackSignatureCategories ascending""" + attackSignatureCategories_ASC + + """attackSignatureCategories descending""" + attackSignatureCategories_DESC + + """attackSignatureRefs ascending""" + attackSignatureRefs_ASC + + """attackSignatureRefs descending""" + attackSignatureRefs_DESC + + """avg(crossZoneSubrequests) ascending""" + avg_crossZoneSubrequests_ASC + + """avg(crossZoneSubrequests) descending""" + avg_crossZoneSubrequests_DESC + + """avg(edgeDnsResponseTimeMs) ascending""" + avg_edgeDnsResponseTimeMs_ASC + + """avg(edgeDnsResponseTimeMs) descending""" + avg_edgeDnsResponseTimeMs_DESC + + """avg(edgeTimeToFirstByteMs) ascending""" + avg_edgeTimeToFirstByteMs_ASC + + """avg(edgeTimeToFirstByteMs) descending""" + avg_edgeTimeToFirstByteMs_DESC + + """avg(originResponseDurationMs) ascending""" + avg_originResponseDurationMs_ASC + + """avg(originResponseDurationMs) descending""" + avg_originResponseDurationMs_DESC + + """avg(sampleInterval) ascending""" + avg_sampleInterval_ASC + + """avg(sampleInterval) descending""" + avg_sampleInterval_DESC + + """botManagementDecision ascending""" + botManagementDecision_ASC + + """botManagementDecision descending""" + botManagementDecision_DESC + + """botScoreBucketBy10 ascending""" + botScoreBucketBy10_ASC + + """botScoreBucketBy10 descending""" + botScoreBucketBy10_DESC + + """botScoreSrcName ascending""" + botScoreSrcName_ASC + + """botScoreSrcName descending""" + botScoreSrcName_DESC + + """botScore ascending""" + botScore_ASC + + """botScore descending""" + botScore_DESC + + """cacheReserveUsed ascending""" + cacheReserveUsed_ASC + + """cacheReserveUsed descending""" + cacheReserveUsed_DESC + + """cacheStatus ascending""" + cacheStatus_ASC + + """cacheStatus descending""" + cacheStatus_DESC + + """clientASNDescription ascending""" + clientASNDescription_ASC + + """clientASNDescription descending""" + clientASNDescription_DESC + + """clientAsn ascending""" + clientAsn_ASC + + """clientAsn descending""" + clientAsn_DESC + + """clientCountryName ascending""" + clientCountryName_ASC + + """clientCountryName descending""" + clientCountryName_DESC + + """clientDeviceType ascending""" + clientDeviceType_ASC + + """clientDeviceType descending""" + clientDeviceType_DESC + + """clientIP ascending""" + clientIP_ASC + + """clientIP descending""" + clientIP_DESC + + """clientRefererHost ascending""" + clientRefererHost_ASC + + """clientRefererHost descending""" + clientRefererHost_DESC + + """clientRequestHTTPHost ascending""" + clientRequestHTTPHost_ASC + + """clientRequestHTTPHost descending""" + clientRequestHTTPHost_DESC + + """clientRequestHTTPMethodName ascending""" + clientRequestHTTPMethodName_ASC + + """clientRequestHTTPMethodName descending""" + clientRequestHTTPMethodName_DESC + + """clientRequestHTTPProtocol ascending""" + clientRequestHTTPProtocol_ASC + + """clientRequestHTTPProtocol descending""" + clientRequestHTTPProtocol_DESC + + """clientRequestPath ascending""" + clientRequestPath_ASC + + """clientRequestPath descending""" + clientRequestPath_DESC + + """clientRequestQuery ascending""" + clientRequestQuery_ASC + + """clientRequestQuery descending""" + clientRequestQuery_DESC + + """clientRequestReferer ascending""" + clientRequestReferer_ASC + + """clientRequestReferer descending""" + clientRequestReferer_DESC + + """clientRequestScheme ascending""" + clientRequestScheme_ASC + + """clientRequestScheme descending""" + clientRequestScheme_DESC + + """clientSSLProtocol ascending""" + clientSSLProtocol_ASC + + """clientSSLProtocol descending""" + clientSSLProtocol_DESC + + """coloCode ascending""" + coloCode_ASC + + """coloCode descending""" + coloCode_DESC + + """contentScanHasFailed ascending""" + contentScanHasFailed_ASC + + """contentScanHasFailed descending""" + contentScanHasFailed_DESC + + """contentScanNumMaliciousObj ascending""" + contentScanNumMaliciousObj_ASC + + """contentScanNumMaliciousObj descending""" + contentScanNumMaliciousObj_DESC + + """contentScanNumObj ascending""" + contentScanNumObj_ASC + + """contentScanNumObj descending""" + contentScanNumObj_DESC + + """contentScanObjResults ascending""" + contentScanObjResults_ASC + + """contentScanObjResults descending""" + contentScanObjResults_DESC + + """contentScanObjSizes ascending""" + contentScanObjSizes_ASC + + """contentScanObjSizes descending""" + contentScanObjSizes_DESC + + """contentScanObjTypes ascending""" + contentScanObjTypes_ASC + + """contentScanObjTypes descending""" + contentScanObjTypes_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """edgeDnsResponseTimeMs ascending""" + edgeDnsResponseTimeMs_ASC + + """edgeDnsResponseTimeMs descending""" + edgeDnsResponseTimeMs_DESC + + """edgeResponseContentTypeName ascending""" + edgeResponseContentTypeName_ASC + + """edgeResponseContentTypeName descending""" + edgeResponseContentTypeName_DESC + + """edgeResponseStatus ascending""" + edgeResponseStatus_ASC + + """edgeResponseStatus descending""" + edgeResponseStatus_DESC + + """edgeTimeToFirstByteMs ascending""" + edgeTimeToFirstByteMs_ASC + + """edgeTimeToFirstByteMs descending""" + edgeTimeToFirstByteMs_DESC + + """firewallForAiAnyPiiCategory ascending""" + firewallForAiAnyPiiCategory_ASC + + """firewallForAiAnyPiiCategory descending""" + firewallForAiAnyPiiCategory_DESC + + """firewallForAiInjectionScore ascending""" + firewallForAiInjectionScore_ASC + + """firewallForAiInjectionScore descending""" + firewallForAiInjectionScore_DESC + + """firewallForAiPiiCategories ascending""" + firewallForAiPiiCategories_ASC + + """firewallForAiPiiCategories descending""" + firewallForAiPiiCategories_DESC + + """firewallForAiUnsafeTopicCategories ascending""" + firewallForAiUnsafeTopicCategories_ASC + + """firewallForAiUnsafeTopicCategories descending""" + firewallForAiUnsafeTopicCategories_DESC + + """fraudAttack ascending""" + fraudAttack_ASC + + """fraudAttack descending""" + fraudAttack_DESC + + """fraudDetectionIds ascending""" + fraudDetectionIds_ASC + + """fraudDetectionIds descending""" + fraudDetectionIds_DESC + + """fraudDetectionTags ascending""" + fraudDetectionTags_ASC + + """fraudDetectionTags descending""" + fraudDetectionTags_DESC + + """fraudEmailRisk ascending""" + fraudEmailRisk_ASC + + """fraudEmailRisk descending""" + fraudEmailRisk_DESC + + """httpApplicationVersion ascending""" + httpApplicationVersion_ASC + + """httpApplicationVersion descending""" + httpApplicationVersion_DESC + + """isCrossZoneSubrequest ascending""" + isCrossZoneSubrequest_ASC + + """isCrossZoneSubrequest descending""" + isCrossZoneSubrequest_DESC + + """ja3Hash ascending""" + ja3Hash_ASC + + """ja3Hash descending""" + ja3Hash_DESC + + """ja4 ascending""" + ja4_ASC + + """ja4 descending""" + ja4_DESC + + """jsDetectionPassed ascending""" + jsDetectionPassed_ASC + + """jsDetectionPassed descending""" + jsDetectionPassed_DESC + + """leakedCredentialCheckResult ascending""" + leakedCredentialCheckResult_ASC + + """leakedCredentialCheckResult descending""" + leakedCredentialCheckResult_DESC + + """originASNDescription ascending""" + originASNDescription_ASC + + """originASNDescription descending""" + originASNDescription_DESC + + """originASN ascending""" + originASN_ASC + + """originASN descending""" + originASN_DESC + + """originIP ascending""" + originIP_ASC + + """originIP descending""" + originIP_DESC + + """originResponseDurationMs ascending""" + originResponseDurationMs_ASC + + """originResponseDurationMs descending""" + originResponseDurationMs_DESC + + """originResponseStatus ascending""" + originResponseStatus_ASC + + """originResponseStatus descending""" + originResponseStatus_DESC + + """payPerCrawlStatus ascending""" + payPerCrawlStatus_ASC + + """payPerCrawlStatus descending""" + payPerCrawlStatus_DESC + + """quantiles(edgeDnsResponseTimeMsP50) ascending""" + quantiles_edgeDnsResponseTimeMsP50_ASC + + """quantiles(edgeDnsResponseTimeMsP50) descending""" + quantiles_edgeDnsResponseTimeMsP50_DESC + + """quantiles(edgeDnsResponseTimeMsP95) ascending""" + quantiles_edgeDnsResponseTimeMsP95_ASC + + """quantiles(edgeDnsResponseTimeMsP95) descending""" + quantiles_edgeDnsResponseTimeMsP95_DESC + + """quantiles(edgeDnsResponseTimeMsP99) ascending""" + quantiles_edgeDnsResponseTimeMsP99_ASC + + """quantiles(edgeDnsResponseTimeMsP99) descending""" + quantiles_edgeDnsResponseTimeMsP99_DESC + + """quantiles(edgeTimeToFirstByteMsP50) ascending""" + quantiles_edgeTimeToFirstByteMsP50_ASC + + """quantiles(edgeTimeToFirstByteMsP50) descending""" + quantiles_edgeTimeToFirstByteMsP50_DESC + + """quantiles(edgeTimeToFirstByteMsP95) ascending""" + quantiles_edgeTimeToFirstByteMsP95_ASC + + """quantiles(edgeTimeToFirstByteMsP95) descending""" + quantiles_edgeTimeToFirstByteMsP95_DESC + + """quantiles(edgeTimeToFirstByteMsP99) ascending""" + quantiles_edgeTimeToFirstByteMsP99_ASC + + """quantiles(edgeTimeToFirstByteMsP99) descending""" + quantiles_edgeTimeToFirstByteMsP99_DESC + + """quantiles(originResponseDurationMsP50) ascending""" + quantiles_originResponseDurationMsP50_ASC + + """quantiles(originResponseDurationMsP50) descending""" + quantiles_originResponseDurationMsP50_DESC + + """quantiles(originResponseDurationMsP95) ascending""" + quantiles_originResponseDurationMsP95_ASC + + """quantiles(originResponseDurationMsP95) descending""" + quantiles_originResponseDurationMsP95_DESC + + """quantiles(originResponseDurationMsP99) ascending""" + quantiles_originResponseDurationMsP99_ASC + + """quantiles(originResponseDurationMsP99) descending""" + quantiles_originResponseDurationMsP99_DESC + + """ratio(status4xx) ascending""" + ratio_status4xx_ASC + + """ratio(status4xx) descending""" + ratio_status4xx_DESC + + """ratio(status5xx) ascending""" + ratio_status5xx_ASC + + """ratio(status5xx) descending""" + ratio_status5xx_DESC + + """requestSource ascending""" + requestSource_ASC + + """requestSource descending""" + requestSource_DESC + + """sampleInterval ascending""" + sampleInterval_ASC + + """sampleInterval descending""" + sampleInterval_DESC + + """securityAction ascending""" + securityAction_ASC + + """securityAction descending""" + securityAction_DESC + + """securitySource ascending""" + securitySource_ASC + + """securitySource descending""" + securitySource_DESC + + """sessionIdHash ascending""" + sessionIdHash_ASC + + """sessionIdHash descending""" + sessionIdHash_DESC + + """sum(crossZoneSubrequests) ascending""" + sum_crossZoneSubrequests_ASC + + """sum(crossZoneSubrequests) descending""" + sum_crossZoneSubrequests_DESC + + """sum(edgeDnsResponseTimeMs) ascending""" + sum_edgeDnsResponseTimeMs_ASC + + """sum(edgeDnsResponseTimeMs) descending""" + sum_edgeDnsResponseTimeMs_DESC + + """sum(edgeResponseBytes) ascending""" + sum_edgeResponseBytes_ASC + + """sum(edgeResponseBytes) descending""" + sum_edgeResponseBytes_DESC + + """sum(edgeTimeToFirstByteMs) ascending""" + sum_edgeTimeToFirstByteMs_ASC + + """sum(edgeTimeToFirstByteMs) descending""" + sum_edgeTimeToFirstByteMs_DESC + + """sum(fraudDetectionIdArray) ascending""" + sum_fraudDetectionIdArray_ASC + + """sum(fraudDetectionIdArray) descending""" + sum_fraudDetectionIdArray_DESC + + """sum(fraudDetectionIdCountArray) ascending""" + sum_fraudDetectionIdCountArray_ASC + + """sum(fraudDetectionIdCountArray) descending""" + sum_fraudDetectionIdCountArray_DESC + + """sum(fraudDetectionTagArray) ascending""" + sum_fraudDetectionTagArray_ASC + + """sum(fraudDetectionTagArray) descending""" + sum_fraudDetectionTagArray_DESC + + """sum(fraudDetectionTagCountArray) ascending""" + sum_fraudDetectionTagCountArray_ASC + + """sum(fraudDetectionTagCountArray) descending""" + sum_fraudDetectionTagCountArray_DESC + + """sum(originResponseDurationMs) ascending""" + sum_originResponseDurationMs_ASC + + """sum(originResponseDurationMs) descending""" + sum_originResponseDurationMs_DESC + + """sum(visits) ascending""" + sum_visits_ASC + + """sum(visits) descending""" + sum_visits_DESC + + """upperTierColoName ascending""" + upperTierColoName_ASC + + """upperTierColoName descending""" + upperTierColoName_DESC + + """userAgentBrowser ascending""" + userAgentBrowser_ASC + + """userAgentBrowser descending""" + userAgentBrowser_DESC + + """userAgentOS ascending""" + userAgentOS_ASC + + """userAgentOS descending""" + userAgentOS_DESC + + """userAgent ascending""" + userAgent_ASC + + """userAgent descending""" + userAgent_DESC + + """verifiedBotCategory ascending""" + verifiedBotCategory_ASC + + """verifiedBotCategory descending""" + verifiedBotCategory_DESC + + """wafAttackScoreClass ascending""" + wafAttackScoreClass_ASC + + """wafAttackScoreClass descending""" + wafAttackScoreClass_DESC + + """wafAttackScore ascending""" + wafAttackScore_ASC + + """wafAttackScore descending""" + wafAttackScore_DESC + + """wafRceAttackScore ascending""" + wafRceAttackScore_ASC + + """wafRceAttackScore descending""" + wafRceAttackScore_DESC + + """wafSqliAttackScore ascending""" + wafSqliAttackScore_ASC + + """wafSqliAttackScore descending""" + wafSqliAttackScore_DESC + + """wafXssAttackScore ascending""" + wafXssAttackScore_ASC + + """wafXssAttackScore descending""" + wafXssAttackScore_DESC + + """xRequestedWith ascending""" + xRequestedWith_ASC + + """xRequestedWith descending""" + xRequestedWith_DESC + + """zoneVersion ascending""" + zoneVersion_ASC + + """zoneVersion descending""" + zoneVersion_DESC +} + +"""""" +type OrganizationHttpRequestsAdaptiveGroupsQuantiles { + """50th percentile DNS Response Time (milliseconds)""" + edgeDnsResponseTimeMsP50: float64! + + """95th percentile DNS Response Time (milliseconds)""" + edgeDnsResponseTimeMsP95: float64! + + """99th percentile DNS Response Time (milliseconds)""" + edgeDnsResponseTimeMsP99: float64! + + """50th percentile Time To First Byte (milliseconds)""" + edgeTimeToFirstByteMsP50: float64! + + """95th percentile Time To First Byte (milliseconds)""" + edgeTimeToFirstByteMsP95: float64! + + """99th percentile Time To First Byte (milliseconds)""" + edgeTimeToFirstByteMsP99: float64! + + """50th percentile Origin Response Duration (milliseconds)""" + originResponseDurationMsP50: float64! + + """95th percentile Origin Response Duration (milliseconds)""" + originResponseDurationMsP95: float64! + + """99th percentile Origin Response Duration (milliseconds)""" + originResponseDurationMsP99: float64! +} + +"""""" +type OrganizationHttpRequestsAdaptiveGroupsRatio { + """""" + status4xx: float64! + + """""" + status5xx: float64! +} + +"""""" +type OrganizationHttpRequestsAdaptiveGroupsSum { + """ + The number of requests that were inititiated by a Cloudflare Worker on another zone + """ + crossZoneSubrequests: uint64! + + """""" + edgeDnsResponseTimeMs: uint64! + + """""" + edgeResponseBytes: uint64! + + """""" + edgeTimeToFirstByteMs: uint64! + + """Array of fraud detection ids""" + fraudDetectionIdArray: [uint32!]! + + """ + Count array of fraud detection ids. Elements in this array correspond to elements in fraudDetectionIdArray by index. + """ + fraudDetectionIdCountArray: [uint32!]! + + """Array of fraud detection tags""" + fraudDetectionTagArray: [string!]! + + """ + Count array of fraud detection tags. Elements in this array correspond to elements in fraudDetectionTagArray by index. + """ + fraudDetectionTagCountArray: [uint32!]! + + """""" + originResponseDurationMs: uint64! + + """ + The number of requests by end-users that were initiated from a different website (i.e. where the request HTTP Referer header does not match the host in the HTTP Host header) + """ + visits: uint64! +} + +"""""" +type OrganizationHttpRequestsAdaptiveGroupsSumConfidence { + """Confidence interval for the corresponding point estimate""" + crossZoneSubrequests: Confidence! + + """Confidence interval for the corresponding point estimate""" + edgeDnsResponseTimeMs: Confidence! + + """Confidence interval for the corresponding point estimate""" + edgeResponseBytes: Confidence! + + """Confidence interval for the corresponding point estimate""" + edgeTimeToFirstByteMs: Confidence! + + """Confidence interval for the corresponding point estimate""" + originResponseDurationMs: Confidence! + + """Confidence interval for the corresponding point estimate""" + visits: Confidence! +} + +"""Access and limitations for an organization""" +type OrganizationSettings { + """""" + httpRequestsAdaptiveGroups: Settings! +} + +"""""" +type Query { + """""" + cost: uint64! + + """""" + viewer: viewer +} + +"""Access and limitations""" +type Settings { + """The list of available fields to query""" + availableFields: [string!]! + + """""" + enabled: bool! + + """Requested time range should not be wider than this (seconds)""" + maxDuration: int64! + + """Maximum number of fields to request at once""" + maxNumberOfFields: int64! + + """Maximum allowed value for 'limit'""" + maxPageSize: int64! + + """Cannot reach for data beyond this distance in the past (seconds)""" + notOlderThan: int64! +} + +"""Scalar type time.Time""" +scalar Time + +"""GraphQL query attributes and trends""" +type ZoneApiGatewayGraphqlQueryAnalyticsGroups { + """""" + avg: ZoneApiGatewayGraphqlQueryAnalyticsGroupsAvg + + """ALPHA - DO NOT USE""" + confidence(level: float64!): ZoneApiGatewayGraphqlQueryAnalyticsGroupsConfidence! + + """Number of events with GraphQL query attributes computed""" + count: uint64! + + """List of dimensions to group by""" + dimensions: ZoneApiGatewayGraphqlQueryAnalyticsGroupsDimensions +} + +"""""" +type ZoneApiGatewayGraphqlQueryAnalyticsGroupsAvg { + """Average sample interval""" + sampleInterval: float64! +} + +"""""" +type ZoneApiGatewayGraphqlQueryAnalyticsGroupsConfidence { + """ + Number of events with GraphQL query attributes computed, with confidence intervals + """ + count: Confidence! + + """Confidence level that was requested""" + level: float64! +} + +"""""" +type ZoneApiGatewayGraphqlQueryAnalyticsGroupsDimensions { + """Maximum depth level of a terminal (leaf) field in the query""" + apiGatewayGraphqlQueryDepth: int8! + + """Number of terminal (leaf) fields in the query""" + apiGatewayGraphqlQuerySize: int16! + + """""" + date: Date! + + """""" + datetime: Time! + + """""" + datetimeDay: Time! + + """""" + datetimeFifteenMinutes: Time! + + """""" + datetimeFiveMinutes: Time! + + """""" + datetimeHalfOfHour: Time! + + """""" + datetimeHour: Time! + + """""" + datetimeMinute: Time! +} + +"""""" +input ZoneApiGatewayGraphqlQueryAnalyticsGroupsFilter_InputObject { + """""" + AND: [ZoneApiGatewayGraphqlQueryAnalyticsGroupsFilter_InputObject!] + + """""" + OR: [ZoneApiGatewayGraphqlQueryAnalyticsGroupsFilter_InputObject!] + + """""" + apiGatewayGraphqlQueryDepth: int8 + + """""" + apiGatewayGraphqlQueryDepth_geq: int8 + + """""" + apiGatewayGraphqlQueryDepth_gt: int8 + + """""" + apiGatewayGraphqlQueryDepth_in: [int8!] + + """""" + apiGatewayGraphqlQueryDepth_leq: int8 + + """""" + apiGatewayGraphqlQueryDepth_lt: int8 + + """""" + apiGatewayGraphqlQueryDepth_neq: int8 + + """""" + apiGatewayGraphqlQueryDepth_notin: [int8!] + + """""" + apiGatewayGraphqlQuerySize: int16 + + """""" + apiGatewayGraphqlQuerySize_geq: int16 + + """""" + apiGatewayGraphqlQuerySize_gt: int16 + + """""" + apiGatewayGraphqlQuerySize_in: [int16!] + + """""" + apiGatewayGraphqlQuerySize_leq: int16 + + """""" + apiGatewayGraphqlQuerySize_lt: int16 + + """""" + apiGatewayGraphqlQuerySize_neq: int16 + + """""" + apiGatewayGraphqlQuerySize_notin: [int16!] + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeDay: Time + + """""" + datetimeDay_geq: Time + + """""" + datetimeDay_gt: Time + + """""" + datetimeDay_in: [Time!] + + """""" + datetimeDay_leq: Time + + """""" + datetimeDay_lt: Time + + """""" + datetimeDay_neq: Time + + """""" + datetimeDay_notin: [Time!] + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHalfOfHour: Time + + """""" + datetimeHalfOfHour_geq: Time + + """""" + datetimeHalfOfHour_gt: Time + + """""" + datetimeHalfOfHour_in: [Time!] + + """""" + datetimeHalfOfHour_leq: Time + + """""" + datetimeHalfOfHour_lt: Time + + """""" + datetimeHalfOfHour_neq: Time + + """""" + datetimeHalfOfHour_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] +} + +"""""" +enum ZoneApiGatewayGraphqlQueryAnalyticsGroupsOrderBy { + """apiGatewayGraphqlQueryDepth ascending""" + apiGatewayGraphqlQueryDepth_ASC + + """apiGatewayGraphqlQueryDepth descending""" + apiGatewayGraphqlQueryDepth_DESC + + """apiGatewayGraphqlQuerySize ascending""" + apiGatewayGraphqlQuerySize_ASC + + """apiGatewayGraphqlQuerySize descending""" + apiGatewayGraphqlQuerySize_DESC + + """avg(sampleInterval) ascending""" + avg_sampleInterval_ASC + + """avg(sampleInterval) descending""" + avg_sampleInterval_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeDay ascending""" + datetimeDay_ASC + + """datetimeDay descending""" + datetimeDay_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHalfOfHour ascending""" + datetimeHalfOfHour_ASC + + """datetimeHalfOfHour descending""" + datetimeHalfOfHour_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC +} + +"""Beta. Aggregated count of Session Identifier matches""" +type ZoneApiGatewayMatchedSessionIDsAdaptiveGroups { + """""" + avg: ZoneApiGatewayMatchedSessionIDsAdaptiveGroupsAvg + + """ALPHA - DO NOT USE""" + confidence(level: float64!): ZoneApiGatewayMatchedSessionIDsAdaptiveGroupsConfidence! + + """Number of events with Session Identifiers""" + count: uint64! + + """List of dimensions to group by""" + dimensions: ZoneApiGatewayMatchedSessionIDsAdaptiveGroupsDimensions +} + +"""""" +type ZoneApiGatewayMatchedSessionIDsAdaptiveGroupsAvg { + """Average sample interval""" + sampleInterval: float64! +} + +"""""" +type ZoneApiGatewayMatchedSessionIDsAdaptiveGroupsConfidence { + """Number of events with Session Identifiers, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! +} + +"""""" +type ZoneApiGatewayMatchedSessionIDsAdaptiveGroupsDimensions { + """Name of session identifier""" + apiGatewayMatchedSessionIdentifierName: string! + + """Type of session identifier. Possible values are header | cookie""" + apiGatewayMatchedSessionIdentifierType: string! + + """""" + date: Date! + + """""" + datetime: Time! + + """""" + datetimeDay: Time! + + """""" + datetimeFifteenMinutes: Time! + + """""" + datetimeFiveMinutes: Time! + + """""" + datetimeHalfOfHour: Time! + + """""" + datetimeHour: Time! + + """""" + datetimeMinute: Time! +} + +"""""" +input ZoneApiGatewayMatchedSessionIDsAdaptiveGroupsFilter_InputObject { + """""" + AND: [ZoneApiGatewayMatchedSessionIDsAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [ZoneApiGatewayMatchedSessionIDsAdaptiveGroupsFilter_InputObject!] + + """""" + apiGatewayMatchedSessionIdentifierName: string + + """""" + apiGatewayMatchedSessionIdentifierName_geq: string + + """""" + apiGatewayMatchedSessionIdentifierName_gt: string + + """""" + apiGatewayMatchedSessionIdentifierName_in: [string!] + + """""" + apiGatewayMatchedSessionIdentifierName_leq: string + + """""" + apiGatewayMatchedSessionIdentifierName_like: string + + """""" + apiGatewayMatchedSessionIdentifierName_lt: string + + """""" + apiGatewayMatchedSessionIdentifierName_neq: string + + """""" + apiGatewayMatchedSessionIdentifierName_notin: [string!] + + """""" + apiGatewayMatchedSessionIdentifierName_notlike: string + + """""" + apiGatewayMatchedSessionIdentifierType: string + + """""" + apiGatewayMatchedSessionIdentifierType_geq: string + + """""" + apiGatewayMatchedSessionIdentifierType_gt: string + + """""" + apiGatewayMatchedSessionIdentifierType_in: [string!] + + """""" + apiGatewayMatchedSessionIdentifierType_leq: string + + """""" + apiGatewayMatchedSessionIdentifierType_like: string + + """""" + apiGatewayMatchedSessionIdentifierType_lt: string + + """""" + apiGatewayMatchedSessionIdentifierType_neq: string + + """""" + apiGatewayMatchedSessionIdentifierType_notin: [string!] + + """""" + apiGatewayMatchedSessionIdentifierType_notlike: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeDay: Time + + """""" + datetimeDay_geq: Time + + """""" + datetimeDay_gt: Time + + """""" + datetimeDay_in: [Time!] + + """""" + datetimeDay_leq: Time + + """""" + datetimeDay_lt: Time + + """""" + datetimeDay_neq: Time + + """""" + datetimeDay_notin: [Time!] + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHalfOfHour: Time + + """""" + datetimeHalfOfHour_geq: Time + + """""" + datetimeHalfOfHour_gt: Time + + """""" + datetimeHalfOfHour_in: [Time!] + + """""" + datetimeHalfOfHour_leq: Time + + """""" + datetimeHalfOfHour_lt: Time + + """""" + datetimeHalfOfHour_neq: Time + + """""" + datetimeHalfOfHour_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] +} + +"""""" +enum ZoneApiGatewayMatchedSessionIDsAdaptiveGroupsOrderBy { + """apiGatewayMatchedSessionIdentifierName ascending""" + apiGatewayMatchedSessionIdentifierName_ASC + + """apiGatewayMatchedSessionIdentifierName descending""" + apiGatewayMatchedSessionIdentifierName_DESC + + """apiGatewayMatchedSessionIdentifierType ascending""" + apiGatewayMatchedSessionIdentifierType_ASC + + """apiGatewayMatchedSessionIdentifierType descending""" + apiGatewayMatchedSessionIdentifierType_DESC + + """avg(sampleInterval) ascending""" + avg_sampleInterval_ASC + + """avg(sampleInterval) descending""" + avg_sampleInterval_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeDay ascending""" + datetimeDay_ASC + + """datetimeDay descending""" + datetimeDay_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHalfOfHour ascending""" + datetimeHalfOfHour_ASC + + """datetimeHalfOfHour descending""" + datetimeHalfOfHour_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC +} + +"""Beta. Aggregated count of Session Identifier matches per endpoint""" +type ZoneApiGatewayMatchedSessionIDsPerEndpointAdaptiveGroups { + """""" + avg: ZoneApiGatewayMatchedSessionIDsPerEndpointAdaptiveGroupsAvg + + """ALPHA - DO NOT USE""" + confidence(level: float64!): ZoneApiGatewayMatchedSessionIDsPerEndpointAdaptiveGroupsConfidence! + + """Number of events per dimension""" + count: uint64! + + """List of dimensions to group by""" + dimensions: ZoneApiGatewayMatchedSessionIDsPerEndpointAdaptiveGroupsDimensions +} + +"""""" +type ZoneApiGatewayMatchedSessionIDsPerEndpointAdaptiveGroupsAvg { + """Average sample interval""" + sampleInterval: float64! +} + +"""""" +type ZoneApiGatewayMatchedSessionIDsPerEndpointAdaptiveGroupsConfidence { + """Number of events per dimension, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! +} + +"""""" +type ZoneApiGatewayMatchedSessionIDsPerEndpointAdaptiveGroupsDimensions { + """Id of the matched API endpoint""" + apiGatewayMatchedEndpointId: string! + + """ + Array of observed tuples consisting of session identifier types and names. Possible types are header | cookie | jwt + """ + apiGatewayMatchedSessionIdentifier: [string!]! + + """""" + date: Date! + + """""" + datetime: Time! + + """""" + datetimeDay: Time! + + """""" + datetimeFifteenMinutes: Time! + + """""" + datetimeFiveMinutes: Time! + + """""" + datetimeHalfOfHour: Time! + + """""" + datetimeHour: Time! + + """""" + datetimeMinute: Time! + + """HTTP status code returned by edge""" + responseStatusCode: uint16! +} + +"""""" +input ZoneApiGatewayMatchedSessionIDsPerEndpointAdaptiveGroupsFilter_InputObject { + """""" + AND: [ZoneApiGatewayMatchedSessionIDsPerEndpointAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [ZoneApiGatewayMatchedSessionIDsPerEndpointAdaptiveGroupsFilter_InputObject!] + + """""" + apiGatewayMatchedEndpointId: string + + """""" + apiGatewayMatchedEndpointId_geq: string + + """""" + apiGatewayMatchedEndpointId_gt: string + + """""" + apiGatewayMatchedEndpointId_in: [string!] + + """""" + apiGatewayMatchedEndpointId_leq: string + + """""" + apiGatewayMatchedEndpointId_like: string + + """""" + apiGatewayMatchedEndpointId_lt: string + + """""" + apiGatewayMatchedEndpointId_neq: string + + """""" + apiGatewayMatchedEndpointId_notin: [string!] + + """""" + apiGatewayMatchedEndpointId_notlike: string + + """""" + apiGatewayMatchedSessionIdentifier_has: string + + """""" + apiGatewayMatchedSessionIdentifier_hasall: [string!] + + """""" + apiGatewayMatchedSessionIdentifier_hasany: [string!] + + """""" + apiGatewayMatchedSessionIdentifier_isempty: bool + + """""" + apiGatewayMatchedSessionIdentifier_nothas: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeDay: Time + + """""" + datetimeDay_geq: Time + + """""" + datetimeDay_gt: Time + + """""" + datetimeDay_in: [Time!] + + """""" + datetimeDay_leq: Time + + """""" + datetimeDay_lt: Time + + """""" + datetimeDay_neq: Time + + """""" + datetimeDay_notin: [Time!] + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHalfOfHour: Time + + """""" + datetimeHalfOfHour_geq: Time + + """""" + datetimeHalfOfHour_gt: Time + + """""" + datetimeHalfOfHour_in: [Time!] + + """""" + datetimeHalfOfHour_leq: Time + + """""" + datetimeHalfOfHour_lt: Time + + """""" + datetimeHalfOfHour_neq: Time + + """""" + datetimeHalfOfHour_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + responseStatusCode: uint16 + + """""" + responseStatusCode_geq: uint16 + + """""" + responseStatusCode_gt: uint16 + + """""" + responseStatusCode_in: [uint16!] + + """""" + responseStatusCode_leq: uint16 + + """""" + responseStatusCode_lt: uint16 + + """""" + responseStatusCode_neq: uint16 + + """""" + responseStatusCode_notin: [uint16!] +} + +"""""" +enum ZoneApiGatewayMatchedSessionIDsPerEndpointAdaptiveGroupsOrderBy { + """apiGatewayMatchedEndpointId ascending""" + apiGatewayMatchedEndpointId_ASC + + """apiGatewayMatchedEndpointId descending""" + apiGatewayMatchedEndpointId_DESC + + """apiGatewayMatchedSessionIdentifier ascending""" + apiGatewayMatchedSessionIdentifier_ASC + + """apiGatewayMatchedSessionIdentifier descending""" + apiGatewayMatchedSessionIdentifier_DESC + + """avg(sampleInterval) ascending""" + avg_sampleInterval_ASC + + """avg(sampleInterval) descending""" + avg_sampleInterval_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeDay ascending""" + datetimeDay_ASC + + """datetimeDay descending""" + datetimeDay_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHalfOfHour ascending""" + datetimeHalfOfHour_ASC + + """datetimeHalfOfHour descending""" + datetimeHalfOfHour_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """responseStatusCode ascending""" + responseStatusCode_ASC + + """responseStatusCode descending""" + responseStatusCode_DESC +} + +"""Beta. Aggregated count of Session Identifier matches""" +type ZoneApiGatewayMatchedSessionIDsPerEndpointFlattenedAdaptiveGroups { + """""" + avg: ZoneApiGatewayMatchedSessionIDsPerEndpointFlattenedAdaptiveGroupsAvg + + """ALPHA - DO NOT USE""" + confidence(level: float64!): ZoneApiGatewayMatchedSessionIDsPerEndpointFlattenedAdaptiveGroupsConfidence! + + """Number of events with Session Identifiers""" + count: uint64! + + """List of dimensions to group by""" + dimensions: ZoneApiGatewayMatchedSessionIDsPerEndpointFlattenedAdaptiveGroupsDimensions +} + +"""""" +type ZoneApiGatewayMatchedSessionIDsPerEndpointFlattenedAdaptiveGroupsAvg { + """Average sample interval""" + sampleInterval: float64! +} + +"""""" +type ZoneApiGatewayMatchedSessionIDsPerEndpointFlattenedAdaptiveGroupsConfidence { + """Number of events with Session Identifiers, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! +} + +"""""" +type ZoneApiGatewayMatchedSessionIDsPerEndpointFlattenedAdaptiveGroupsDimensions { + """Id of the matched API endpoint""" + apiGatewayMatchedEndpointId: string! + + """Name of session identifier""" + apiGatewayMatchedSessionIdentifierName: string! + + """Type of session identifier. Possible values are header | cookie | jwt""" + apiGatewayMatchedSessionIdentifierType: string! + + """""" + date: Date! + + """""" + datetime: Time! + + """""" + datetimeDay: Time! + + """""" + datetimeFifteenMinutes: Time! + + """""" + datetimeFiveMinutes: Time! + + """""" + datetimeHalfOfHour: Time! + + """""" + datetimeHour: Time! + + """""" + datetimeMinute: Time! + + """HTTP status code returned by edge""" + responseStatusCode: uint16! +} + +"""""" +input ZoneApiGatewayMatchedSessionIDsPerEndpointFlattenedAdaptiveGroupsFilter_InputObject { + """""" + AND: [ZoneApiGatewayMatchedSessionIDsPerEndpointFlattenedAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [ZoneApiGatewayMatchedSessionIDsPerEndpointFlattenedAdaptiveGroupsFilter_InputObject!] + + """""" + apiGatewayMatchedEndpointId: string + + """""" + apiGatewayMatchedEndpointId_geq: string + + """""" + apiGatewayMatchedEndpointId_gt: string + + """""" + apiGatewayMatchedEndpointId_in: [string!] + + """""" + apiGatewayMatchedEndpointId_leq: string + + """""" + apiGatewayMatchedEndpointId_like: string + + """""" + apiGatewayMatchedEndpointId_lt: string + + """""" + apiGatewayMatchedEndpointId_neq: string + + """""" + apiGatewayMatchedEndpointId_notin: [string!] + + """""" + apiGatewayMatchedEndpointId_notlike: string + + """""" + apiGatewayMatchedSessionIdentifierName: string + + """""" + apiGatewayMatchedSessionIdentifierName_geq: string + + """""" + apiGatewayMatchedSessionIdentifierName_gt: string + + """""" + apiGatewayMatchedSessionIdentifierName_in: [string!] + + """""" + apiGatewayMatchedSessionIdentifierName_leq: string + + """""" + apiGatewayMatchedSessionIdentifierName_like: string + + """""" + apiGatewayMatchedSessionIdentifierName_lt: string + + """""" + apiGatewayMatchedSessionIdentifierName_neq: string + + """""" + apiGatewayMatchedSessionIdentifierName_notin: [string!] + + """""" + apiGatewayMatchedSessionIdentifierName_notlike: string + + """""" + apiGatewayMatchedSessionIdentifierType: string + + """""" + apiGatewayMatchedSessionIdentifierType_geq: string + + """""" + apiGatewayMatchedSessionIdentifierType_gt: string + + """""" + apiGatewayMatchedSessionIdentifierType_in: [string!] + + """""" + apiGatewayMatchedSessionIdentifierType_leq: string + + """""" + apiGatewayMatchedSessionIdentifierType_like: string + + """""" + apiGatewayMatchedSessionIdentifierType_lt: string + + """""" + apiGatewayMatchedSessionIdentifierType_neq: string + + """""" + apiGatewayMatchedSessionIdentifierType_notin: [string!] + + """""" + apiGatewayMatchedSessionIdentifierType_notlike: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeDay: Time + + """""" + datetimeDay_geq: Time + + """""" + datetimeDay_gt: Time + + """""" + datetimeDay_in: [Time!] + + """""" + datetimeDay_leq: Time + + """""" + datetimeDay_lt: Time + + """""" + datetimeDay_neq: Time + + """""" + datetimeDay_notin: [Time!] + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHalfOfHour: Time + + """""" + datetimeHalfOfHour_geq: Time + + """""" + datetimeHalfOfHour_gt: Time + + """""" + datetimeHalfOfHour_in: [Time!] + + """""" + datetimeHalfOfHour_leq: Time + + """""" + datetimeHalfOfHour_lt: Time + + """""" + datetimeHalfOfHour_neq: Time + + """""" + datetimeHalfOfHour_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + responseStatusCode: uint16 + + """""" + responseStatusCode_geq: uint16 + + """""" + responseStatusCode_gt: uint16 + + """""" + responseStatusCode_in: [uint16!] + + """""" + responseStatusCode_leq: uint16 + + """""" + responseStatusCode_lt: uint16 + + """""" + responseStatusCode_neq: uint16 + + """""" + responseStatusCode_notin: [uint16!] +} + +"""""" +enum ZoneApiGatewayMatchedSessionIDsPerEndpointFlattenedAdaptiveGroupsOrderBy { + """apiGatewayMatchedEndpointId ascending""" + apiGatewayMatchedEndpointId_ASC + + """apiGatewayMatchedEndpointId descending""" + apiGatewayMatchedEndpointId_DESC + + """apiGatewayMatchedSessionIdentifierName ascending""" + apiGatewayMatchedSessionIdentifierName_ASC + + """apiGatewayMatchedSessionIdentifierName descending""" + apiGatewayMatchedSessionIdentifierName_DESC + + """apiGatewayMatchedSessionIdentifierType ascending""" + apiGatewayMatchedSessionIdentifierType_ASC + + """apiGatewayMatchedSessionIdentifierType descending""" + apiGatewayMatchedSessionIdentifierType_DESC + + """avg(sampleInterval) ascending""" + avg_sampleInterval_ASC + + """avg(sampleInterval) descending""" + avg_sampleInterval_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeDay ascending""" + datetimeDay_ASC + + """datetimeDay descending""" + datetimeDay_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHalfOfHour ascending""" + datetimeHalfOfHour_ASC + + """datetimeHalfOfHour descending""" + datetimeHalfOfHour_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """responseStatusCode ascending""" + responseStatusCode_ASC + + """responseStatusCode descending""" + responseStatusCode_DESC +} + +""" +Sequences of API endpoint operations. Sequences are learned by grouping requests by AuthID. Correlation scores are estimated over a 24 hour window and are current to within 10 minutes +""" +type ZoneApiRequestSequencesGroups { + """""" + aggArgMax: ZoneApiRequestSequencesGroupsAggArgMax + + """""" + aggMax: ZoneApiRequestSequencesGroupsAggMax + + """List of dimensions to group by""" + dimensions: ZoneApiRequestSequencesGroupsDimensions + + """""" + uniq: ZoneApiRequestSequencesGroupsUniq +} + +"""""" +type ZoneApiRequestSequencesGroupsAggArgMax { + """ + Correlation score estimated over a 24 hour window. The correlation score is the probability that the last operation in the sequence is preceded by the remaining operations in the sequence, assuming that the last operation in the sequence occurred + """ + correlation: float64! + + """ + Estimated number of occurrences of this sequence of endpoint operations + """ + numOccurrences: float64! + + """ + Estimated number of occurrences of the last operation in this sequence of endpoint operations + """ + numOccurrencesLast: float64! + + """ + Estimated number of occurrences of this sequence of endpoint operations, disregarding the last operation + """ + numOccurrencesPrefix: float64! + + """ + Estimated number of occurrences of this sequence of endpoint operations, disregarding the first operation + """ + numOccurrencesSuffix: float64! @deprecated(reason: "Field is not guaranteed to be always populated for sequences of length greater than 2. Use numOccurrencesLast instead") + + """ + API endpoints in the sequence of operations. Individual endpoints are delimited by # symbols + """ + operationsApiEndpoints: string! + + """ + HTTP request methods in the sequence of operations. Individual request method names are delimited by # symbols + """ + operationsClientRequestHTTPMethods: string! + + """Fraction of requests sampled""" + samplingFraction: float64! +} + +"""""" +type ZoneApiRequestSequencesGroupsAggMax { + """ + Time of the most recent occurrence of this sequence of endpoint operations (based on the timestamp of the first request in the sequence) + """ + timeLastSeen: Time! + + """The time at which Cloudflare last refreshed this data""" + timeLastUpdated: Time! +} + +"""""" +type ZoneApiRequestSequencesGroupsDimensions { + """The host associated with this sequence of endpoint operations""" + apiHost: string! + + """The host associated with this sequence of endpoint operations""" + clientRequestHTTPHost: string! @deprecated(reason: "Field is replaced with apiHost") + + """Sequence generation timeslot, truncated to 10 minutes""" + datetime: Time! + + """First API endpoint in the sequence of operations""" + operationsFirstApiEndpoint: string! + + """First HTTP request method in the sequence of operations""" + operationsFirstClientRequestHTTPMethod: string! + + """Last API endpoint in the sequence of operations""" + operationsLastApiEndpoint: string! + + """Last HTTP request method in the sequence of operations""" + operationsLastClientRequestHTTPMethod: string! + + """Length of the sequence of operations""" + operationsLength: uint8! + + """ + API endpoints in the sequence of operations, disregarding the last operation. Individual endpoints are delimited by # symbols + """ + operationsPrefixApiEndpoints: string! + + """ + HTTP request methods in the sequence of operations, disregarding the last operation. Individual request method names are delimited by # symbols + """ + operationsPrefixClientRequestHTTPMethods: string! + + """Sequence rank based on ordering sequences by correlation""" + rank: uint32! @deprecated(reason: "Field is replaced with sequenceHash serving as unique sequence identifier") + + """ + Unique sequence identifier obtained by hashing operationsApiEndpoints and operationsClientRequestHTTPMethods + """ + sequenceHash: string! +} + +"""""" +input ZoneApiRequestSequencesGroupsFilter_InputObject { + """""" + AND: [ZoneApiRequestSequencesGroupsFilter_InputObject!] + + """""" + OR: [ZoneApiRequestSequencesGroupsFilter_InputObject!] + + """""" + apiHost: string + + """""" + apiHost_geq: string + + """""" + apiHost_gt: string + + """""" + apiHost_in: [string!] + + """""" + apiHost_leq: string + + """""" + apiHost_like: string + + """""" + apiHost_lt: string + + """""" + apiHost_neq: string + + """""" + apiHost_notin: [string!] + + """""" + apiHost_notlike: string + + """""" + clientRequestHTTPHost: string + + """""" + clientRequestHTTPHost_geq: string + + """""" + clientRequestHTTPHost_gt: string + + """""" + clientRequestHTTPHost_in: [string!] + + """""" + clientRequestHTTPHost_leq: string + + """""" + clientRequestHTTPHost_like: string + + """""" + clientRequestHTTPHost_lt: string + + """""" + clientRequestHTTPHost_neq: string + + """""" + clientRequestHTTPHost_notin: [string!] + + """""" + clientRequestHTTPHost_notlike: string + + """""" + datetime: Time + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + operationsFirstApiEndpoint: string + + """""" + operationsFirstApiEndpoint_geq: string + + """""" + operationsFirstApiEndpoint_gt: string + + """""" + operationsFirstApiEndpoint_in: [string!] + + """""" + operationsFirstApiEndpoint_leq: string + + """""" + operationsFirstApiEndpoint_like: string + + """""" + operationsFirstApiEndpoint_lt: string + + """""" + operationsFirstApiEndpoint_neq: string + + """""" + operationsFirstApiEndpoint_notin: [string!] + + """""" + operationsFirstApiEndpoint_notlike: string + + """""" + operationsFirstClientRequestHTTPMethod: string + + """""" + operationsFirstClientRequestHTTPMethod_geq: string + + """""" + operationsFirstClientRequestHTTPMethod_gt: string + + """""" + operationsFirstClientRequestHTTPMethod_in: [string!] + + """""" + operationsFirstClientRequestHTTPMethod_leq: string + + """""" + operationsFirstClientRequestHTTPMethod_like: string + + """""" + operationsFirstClientRequestHTTPMethod_lt: string + + """""" + operationsFirstClientRequestHTTPMethod_neq: string + + """""" + operationsFirstClientRequestHTTPMethod_notin: [string!] + + """""" + operationsFirstClientRequestHTTPMethod_notlike: string + + """""" + operationsLastApiEndpoint: string + + """""" + operationsLastApiEndpoint_geq: string + + """""" + operationsLastApiEndpoint_gt: string + + """""" + operationsLastApiEndpoint_in: [string!] + + """""" + operationsLastApiEndpoint_leq: string + + """""" + operationsLastApiEndpoint_like: string + + """""" + operationsLastApiEndpoint_lt: string + + """""" + operationsLastApiEndpoint_neq: string + + """""" + operationsLastApiEndpoint_notin: [string!] + + """""" + operationsLastApiEndpoint_notlike: string + + """""" + operationsLastClientRequestHTTPMethod: string + + """""" + operationsLastClientRequestHTTPMethod_geq: string + + """""" + operationsLastClientRequestHTTPMethod_gt: string + + """""" + operationsLastClientRequestHTTPMethod_in: [string!] + + """""" + operationsLastClientRequestHTTPMethod_leq: string + + """""" + operationsLastClientRequestHTTPMethod_like: string + + """""" + operationsLastClientRequestHTTPMethod_lt: string + + """""" + operationsLastClientRequestHTTPMethod_neq: string + + """""" + operationsLastClientRequestHTTPMethod_notin: [string!] + + """""" + operationsLastClientRequestHTTPMethod_notlike: string + + """""" + operationsLength: uint8 + + """""" + operationsLength_geq: uint8 + + """""" + operationsLength_gt: uint8 + + """""" + operationsLength_in: bytes + + """""" + operationsLength_leq: uint8 + + """""" + operationsLength_lt: uint8 + + """""" + operationsLength_neq: uint8 + + """""" + operationsLength_notin: bytes + + """""" + operationsPrefixApiEndpoints: string + + """""" + operationsPrefixApiEndpoints_geq: string + + """""" + operationsPrefixApiEndpoints_gt: string + + """""" + operationsPrefixApiEndpoints_in: [string!] + + """""" + operationsPrefixApiEndpoints_leq: string + + """""" + operationsPrefixApiEndpoints_like: string + + """""" + operationsPrefixApiEndpoints_lt: string + + """""" + operationsPrefixApiEndpoints_neq: string + + """""" + operationsPrefixApiEndpoints_notin: [string!] + + """""" + operationsPrefixApiEndpoints_notlike: string + + """""" + operationsPrefixClientRequestHTTPMethods: string + + """""" + operationsPrefixClientRequestHTTPMethods_geq: string + + """""" + operationsPrefixClientRequestHTTPMethods_gt: string + + """""" + operationsPrefixClientRequestHTTPMethods_in: [string!] + + """""" + operationsPrefixClientRequestHTTPMethods_leq: string + + """""" + operationsPrefixClientRequestHTTPMethods_like: string + + """""" + operationsPrefixClientRequestHTTPMethods_lt: string + + """""" + operationsPrefixClientRequestHTTPMethods_neq: string + + """""" + operationsPrefixClientRequestHTTPMethods_notin: [string!] + + """""" + operationsPrefixClientRequestHTTPMethods_notlike: string + + """""" + rank: uint32 + + """""" + rank_geq: uint32 + + """""" + rank_gt: uint32 + + """""" + rank_in: [uint32!] + + """""" + rank_leq: uint32 + + """""" + rank_lt: uint32 + + """""" + rank_neq: uint32 + + """""" + rank_notin: [uint32!] + + """""" + sequenceHash: string + + """""" + sequenceHash_geq: string + + """""" + sequenceHash_gt: string + + """""" + sequenceHash_in: [string!] + + """""" + sequenceHash_leq: string + + """""" + sequenceHash_like: string + + """""" + sequenceHash_lt: string + + """""" + sequenceHash_neq: string + + """""" + sequenceHash_notin: [string!] + + """""" + sequenceHash_notlike: string +} + +"""""" +enum ZoneApiRequestSequencesGroupsOrderBy { + """aggArgMax(correlation) ascending""" + aggArgMax_correlation_ASC + + """aggArgMax(correlation) descending""" + aggArgMax_correlation_DESC + + """aggArgMax(numOccurrencesLast) ascending""" + aggArgMax_numOccurrencesLast_ASC + + """aggArgMax(numOccurrencesLast) descending""" + aggArgMax_numOccurrencesLast_DESC + + """aggArgMax(numOccurrencesPrefix) ascending""" + aggArgMax_numOccurrencesPrefix_ASC + + """aggArgMax(numOccurrencesPrefix) descending""" + aggArgMax_numOccurrencesPrefix_DESC + + """aggArgMax(numOccurrencesSuffix) ascending""" + aggArgMax_numOccurrencesSuffix_ASC + + """aggArgMax(numOccurrencesSuffix) descending""" + aggArgMax_numOccurrencesSuffix_DESC + + """aggArgMax(numOccurrences) ascending""" + aggArgMax_numOccurrences_ASC + + """aggArgMax(numOccurrences) descending""" + aggArgMax_numOccurrences_DESC + + """aggArgMax(operationsApiEndpoints) ascending""" + aggArgMax_operationsApiEndpoints_ASC + + """aggArgMax(operationsApiEndpoints) descending""" + aggArgMax_operationsApiEndpoints_DESC + + """aggArgMax(operationsClientRequestHTTPMethods) ascending""" + aggArgMax_operationsClientRequestHTTPMethods_ASC + + """aggArgMax(operationsClientRequestHTTPMethods) descending""" + aggArgMax_operationsClientRequestHTTPMethods_DESC + + """aggArgMax(samplingFraction) ascending""" + aggArgMax_samplingFraction_ASC + + """aggArgMax(samplingFraction) descending""" + aggArgMax_samplingFraction_DESC + + """aggMax(timeLastSeen) ascending""" + aggMax_timeLastSeen_ASC + + """aggMax(timeLastSeen) descending""" + aggMax_timeLastSeen_DESC + + """aggMax(timeLastUpdated) ascending""" + aggMax_timeLastUpdated_ASC + + """aggMax(timeLastUpdated) descending""" + aggMax_timeLastUpdated_DESC + + """apiHost ascending""" + apiHost_ASC + + """apiHost descending""" + apiHost_DESC + + """clientRequestHTTPHost ascending""" + clientRequestHTTPHost_ASC + + """clientRequestHTTPHost descending""" + clientRequestHTTPHost_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """operationsFirstApiEndpoint ascending""" + operationsFirstApiEndpoint_ASC + + """operationsFirstApiEndpoint descending""" + operationsFirstApiEndpoint_DESC + + """operationsFirstClientRequestHTTPMethod ascending""" + operationsFirstClientRequestHTTPMethod_ASC + + """operationsFirstClientRequestHTTPMethod descending""" + operationsFirstClientRequestHTTPMethod_DESC + + """operationsLastApiEndpoint ascending""" + operationsLastApiEndpoint_ASC + + """operationsLastApiEndpoint descending""" + operationsLastApiEndpoint_DESC + + """operationsLastClientRequestHTTPMethod ascending""" + operationsLastClientRequestHTTPMethod_ASC + + """operationsLastClientRequestHTTPMethod descending""" + operationsLastClientRequestHTTPMethod_DESC + + """operationsLength ascending""" + operationsLength_ASC + + """operationsLength descending""" + operationsLength_DESC + + """operationsPrefixApiEndpoints ascending""" + operationsPrefixApiEndpoints_ASC + + """operationsPrefixApiEndpoints descending""" + operationsPrefixApiEndpoints_DESC + + """operationsPrefixClientRequestHTTPMethods ascending""" + operationsPrefixClientRequestHTTPMethods_ASC + + """operationsPrefixClientRequestHTTPMethods descending""" + operationsPrefixClientRequestHTTPMethods_DESC + + """rank ascending""" + rank_ASC + + """rank descending""" + rank_DESC + + """sequenceHash ascending""" + sequenceHash_ASC + + """sequenceHash descending""" + sequenceHash_DESC + + """uniq(rankCount) ascending""" + uniq_rankCount_ASC + + """uniq(rankCount) descending""" + uniq_rankCount_DESC + + """uniq(sequenceHashCount) ascending""" + uniq_sequenceHashCount_ASC + + """uniq(sequenceHashCount) descending""" + uniq_sequenceHashCount_DESC +} + +"""""" +type ZoneApiRequestSequencesGroupsUniq { + """Number of unique rank values""" + rankCount: uint32! + + """Number of unique sequenceHash values""" + sequenceHashCount: uint32! +} + +"""Beta. Cache Reserve operations with adaptive sampling""" +type ZoneCacheReserveOperationsAdaptiveGroups { + """The average value used for sample interval""" + avg: ZoneCacheReserveOperationsAdaptiveGroupsAvg + + """ALPHA - DO NOT USE""" + confidence(level: float64!): ZoneCacheReserveOperationsAdaptiveGroupsConfidence! + + """List of dimensions to group by""" + dimensions: ZoneCacheReserveOperationsAdaptiveGroupsDimensions + + """The sum of values for a metric per dimension""" + sum: ZoneCacheReserveOperationsAdaptiveGroupsSum +} + +"""""" +type ZoneCacheReserveOperationsAdaptiveGroupsAvg { + """""" + sampleInterval: float64! +} + +"""""" +type ZoneCacheReserveOperationsAdaptiveGroupsConfidence { + """Confidence level that was requested""" + level: float64! + + """ + The sum of values for a metric per dimension, with confidence intervals + """ + sum: ZoneCacheReserveOperationsAdaptiveGroupsSumConfidence +} + +"""""" +type ZoneCacheReserveOperationsAdaptiveGroupsDimensions { + """Status of the R2 operation""" + actionStatus: string! + + """Name of bucket containing stored objects""" + bucketName: string! + + """Request timestamp, truncated to start of a day""" + date: Date! + + """Request timestamp""" + datetime: Time! + + """Request timestamp, truncated to multiple of 15 minutes""" + datetimeFifteenMinutes: Time! + + """Request timestamp, truncated to multiple of 5 minutes""" + datetimeFiveMinutes: Time! + + """Request timestamp, truncated to start of an hour""" + datetimeHour: Time! + + """Request timestamp, truncated to start of an minute""" + datetimeMinute: Time! + + """Jurisdiction of the R2 bucket, or 'default' if unrestricted""" + jurisdiction: string! + + """Billable class of storage operation""" + operationClass: string! +} + +"""""" +input ZoneCacheReserveOperationsAdaptiveGroupsFilter_InputObject { + """""" + AND: [ZoneCacheReserveOperationsAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [ZoneCacheReserveOperationsAdaptiveGroupsFilter_InputObject!] + + """""" + actionStatus: string + + """""" + actionStatus_geq: string + + """""" + actionStatus_gt: string + + """""" + actionStatus_in: [string!] + + """""" + actionStatus_leq: string + + """""" + actionStatus_like: string + + """""" + actionStatus_lt: string + + """""" + actionStatus_neq: string + + """""" + actionStatus_notin: [string!] + + """""" + actionStatus_notlike: string + + """""" + bucketName: string + + """""" + bucketName_geq: string + + """""" + bucketName_gt: string + + """""" + bucketName_in: [string!] + + """""" + bucketName_leq: string + + """""" + bucketName_like: string + + """""" + bucketName_lt: string + + """""" + bucketName_neq: string + + """""" + bucketName_notin: [string!] + + """""" + bucketName_notlike: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + jurisdiction: string + + """""" + jurisdiction_geq: string + + """""" + jurisdiction_gt: string + + """""" + jurisdiction_in: [string!] + + """""" + jurisdiction_leq: string + + """""" + jurisdiction_like: string + + """""" + jurisdiction_lt: string + + """""" + jurisdiction_neq: string + + """""" + jurisdiction_notin: [string!] + + """""" + jurisdiction_notlike: string + + """""" + operationClass: string + + """""" + operationClass_geq: string + + """""" + operationClass_gt: string + + """""" + operationClass_in: [string!] + + """""" + operationClass_leq: string + + """""" + operationClass_like: string + + """""" + operationClass_lt: string + + """""" + operationClass_neq: string + + """""" + operationClass_notin: [string!] + + """""" + operationClass_notlike: string +} + +"""""" +enum ZoneCacheReserveOperationsAdaptiveGroupsOrderBy { + """actionStatus ascending""" + actionStatus_ASC + + """actionStatus descending""" + actionStatus_DESC + + """avg(sampleInterval) ascending""" + avg_sampleInterval_ASC + + """avg(sampleInterval) descending""" + avg_sampleInterval_DESC + + """bucketName ascending""" + bucketName_ASC + + """bucketName descending""" + bucketName_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """jurisdiction ascending""" + jurisdiction_ASC + + """jurisdiction descending""" + jurisdiction_DESC + + """operationClass ascending""" + operationClass_ASC + + """operationClass descending""" + operationClass_DESC + + """sum(requests) ascending""" + sum_requests_ASC + + """sum(requests) descending""" + sum_requests_DESC +} + +"""""" +type ZoneCacheReserveOperationsAdaptiveGroupsSum { + """Sum of Requests""" + requests: uint64! +} + +"""""" +type ZoneCacheReserveOperationsAdaptiveGroupsSumConfidence { + """Confidence interval for the corresponding point estimate""" + requests: Confidence! +} + +"""Cache Reserve HTTP requests data with adaptive sampling""" +type ZoneCacheReserveRequestsAdaptiveGroups { + """The average value used for sample interval""" + avg: ZoneCacheReserveRequestsAdaptiveGroupsAvg + + """ALPHA - DO NOT USE""" + confidence(level: float64!): ZoneCacheReserveRequestsAdaptiveGroupsConfidence! + + """""" + count: uint64! + + """List of dimensions to group by""" + dimensions: ZoneCacheReserveRequestsAdaptiveGroupsDimensions + + """Sum of bytes returned to client""" + sum: ZoneCacheReserveRequestsAdaptiveGroupsSum +} + +"""""" +type ZoneCacheReserveRequestsAdaptiveGroupsAvg { + """""" + sampleInterval: float64! +} + +"""""" +type ZoneCacheReserveRequestsAdaptiveGroupsConfidence { + """""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! + + """Sum of bytes returned to client, with confidence intervals""" + sum: ZoneCacheReserveRequestsAdaptiveGroupsSumConfidence +} + +"""""" +type ZoneCacheReserveRequestsAdaptiveGroupsDimensions { + """Cache status""" + cacheStatus: string! + + """The date the event occurred at the edge""" + date: Date! + + """The date and time the event occurred at the edge""" + datetime: Time! + + """ + The date and time the event occurred at the edge truncated to a multiple of 15 minutes + """ + datetimeFifteenMinutes: Time! + + """ + The date and time the event occurred at the edge truncated to a multiple of 5 minutes + """ + datetimeFiveMinutes: Time! + + """The date and time the event occurred at the edge truncated to hours""" + datetimeHour: Time! + + """ + The date and time the event occurred at the edge truncated to the minute + """ + datetimeMinute: Time! + + """Content type returned to client""" + edgeResponseContentTypeName: string! + + """HTTP response status code returned to browser""" + edgeResponseStatus: uint16! +} + +"""""" +input ZoneCacheReserveRequestsAdaptiveGroupsFilter_InputObject { + """""" + AND: [ZoneCacheReserveRequestsAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [ZoneCacheReserveRequestsAdaptiveGroupsFilter_InputObject!] + + """""" + cacheStatus: string + + """""" + cacheStatus_geq: string + + """""" + cacheStatus_gt: string + + """""" + cacheStatus_in: [string!] + + """""" + cacheStatus_leq: string + + """""" + cacheStatus_like: string + + """""" + cacheStatus_lt: string + + """""" + cacheStatus_neq: string + + """""" + cacheStatus_notin: [string!] + + """""" + cacheStatus_notlike: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + edgeResponseContentTypeName: string + + """""" + edgeResponseContentTypeName_geq: string + + """""" + edgeResponseContentTypeName_gt: string + + """""" + edgeResponseContentTypeName_in: [string!] + + """""" + edgeResponseContentTypeName_leq: string + + """""" + edgeResponseContentTypeName_like: string + + """""" + edgeResponseContentTypeName_lt: string + + """""" + edgeResponseContentTypeName_neq: string + + """""" + edgeResponseContentTypeName_notin: [string!] + + """""" + edgeResponseContentTypeName_notlike: string + + """""" + edgeResponseStatus: uint16 + + """""" + edgeResponseStatus_geq: uint16 + + """""" + edgeResponseStatus_gt: uint16 + + """""" + edgeResponseStatus_in: [uint16!] + + """""" + edgeResponseStatus_leq: uint16 + + """""" + edgeResponseStatus_lt: uint16 + + """""" + edgeResponseStatus_neq: uint16 + + """""" + edgeResponseStatus_notin: [uint16!] +} + +"""""" +enum ZoneCacheReserveRequestsAdaptiveGroupsOrderBy { + """avg(sampleInterval) ascending""" + avg_sampleInterval_ASC + + """avg(sampleInterval) descending""" + avg_sampleInterval_DESC + + """cacheReserveUsed ascending""" + cacheReserveUsed_ASC + + """cacheReserveUsed descending""" + cacheReserveUsed_DESC + + """cacheStatus ascending""" + cacheStatus_ASC + + """cacheStatus descending""" + cacheStatus_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """edgeResponseContentTypeName ascending""" + edgeResponseContentTypeName_ASC + + """edgeResponseContentTypeName descending""" + edgeResponseContentTypeName_DESC + + """edgeResponseStatus ascending""" + edgeResponseStatus_ASC + + """edgeResponseStatus descending""" + edgeResponseStatus_DESC + + """sum(edgeResponseBytes) ascending""" + sum_edgeResponseBytes_ASC + + """sum(edgeResponseBytes) descending""" + sum_edgeResponseBytes_DESC +} + +"""""" +type ZoneCacheReserveRequestsAdaptiveGroupsSum { + """""" + edgeResponseBytes: uint64! +} + +"""""" +type ZoneCacheReserveRequestsAdaptiveGroupsSumConfidence { + """Confidence interval for the corresponding point estimate""" + edgeResponseBytes: Confidence! +} + +"""Beta. Cache Reserve storage with adaptive sampling""" +type ZoneCacheReserveStorageAdaptiveGroups { + """The average value used for sample interval""" + avg: ZoneCacheReserveStorageAdaptiveGroupsAvg + + """List of dimensions to group by""" + dimensions: ZoneCacheReserveStorageAdaptiveGroupsDimensions + + """The max of values for a metric per dimension""" + max: ZoneCacheReserveStorageAdaptiveGroupsMax +} + +"""""" +type ZoneCacheReserveStorageAdaptiveGroupsAvg { + """""" + sampleInterval: float64! +} + +"""""" +type ZoneCacheReserveStorageAdaptiveGroupsDimensions { + """Hash of bucket containing stored objects""" + bucketHash: string! + + """Name of bucket containing stored objects""" + bucketName: string! + + """Storage sample timestamp, truncated to start of a day""" + date: Date! + + """Storage sample timestamp""" + datetime: Time! + + """Storage sample timestamp, truncated to multiple of 15 minutes""" + datetimeFifteenMinutes: Time! + + """Storage sample timestamp, truncated to multiple of 5 minutes""" + datetimeFiveMinutes: Time! + + """Storage sample timestamp, truncated to start of an hour""" + datetimeHour: Time! + + """Storage sample timestamp, truncated to start of an minute""" + datetimeMinute: Time! + + """Jurisdiction of the R2 bucket, or 'default' if unrestricted""" + jurisdiction: string! +} + +"""""" +input ZoneCacheReserveStorageAdaptiveGroupsFilter_InputObject { + """""" + AND: [ZoneCacheReserveStorageAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [ZoneCacheReserveStorageAdaptiveGroupsFilter_InputObject!] + + """""" + bucketHash: string + + """""" + bucketHash_geq: string + + """""" + bucketHash_gt: string + + """""" + bucketHash_in: [string!] + + """""" + bucketHash_leq: string + + """""" + bucketHash_like: string + + """""" + bucketHash_lt: string + + """""" + bucketHash_neq: string + + """""" + bucketHash_notin: [string!] + + """""" + bucketHash_notlike: string + + """""" + bucketName: string + + """""" + bucketName_geq: string + + """""" + bucketName_gt: string + + """""" + bucketName_in: [string!] + + """""" + bucketName_leq: string + + """""" + bucketName_like: string + + """""" + bucketName_lt: string + + """""" + bucketName_neq: string + + """""" + bucketName_notin: [string!] + + """""" + bucketName_notlike: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + jurisdiction: string + + """""" + jurisdiction_geq: string + + """""" + jurisdiction_gt: string + + """""" + jurisdiction_in: [string!] + + """""" + jurisdiction_leq: string + + """""" + jurisdiction_like: string + + """""" + jurisdiction_lt: string + + """""" + jurisdiction_neq: string + + """""" + jurisdiction_notin: [string!] + + """""" + jurisdiction_notlike: string +} + +"""""" +type ZoneCacheReserveStorageAdaptiveGroupsMax { + """Max of object count""" + objectCount: uint64! + + """Payload and metadata size of objects in bucket""" + storedBytes: uint64! +} + +"""""" +enum ZoneCacheReserveStorageAdaptiveGroupsOrderBy { + """avg(sampleInterval) ascending""" + avg_sampleInterval_ASC + + """avg(sampleInterval) descending""" + avg_sampleInterval_DESC + + """bucketHash ascending""" + bucketHash_ASC + + """bucketHash descending""" + bucketHash_DESC + + """bucketName ascending""" + bucketName_ASC + + """bucketName descending""" + bucketName_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """jurisdiction ascending""" + jurisdiction_ASC + + """jurisdiction descending""" + jurisdiction_DESC + + """max(objectCount) ascending""" + max_objectCount_ASC + + """max(objectCount) descending""" + max_objectCount_DESC + + """max(storedBytes) ascending""" + max_storedBytes_ASC + + """max(storedBytes) descending""" + max_storedBytes_DESC +} + +"""Dmarc report records with adaptive sampling""" +type ZoneDmarcReportsAdaptive { + """The date and time the source email was received""" + datetime: Time! + + """DMARC policy disposition""" + disposition: string! + + """DKIM result""" + dkim: string! + + """Domain to which this report refers to""" + domain: string! + + """Envelope From of emails""" + envelopeFrom: string! + + """Envelope To of emails""" + envelopeTo: string! + + """Reason (if any) why the record was evaluated""" + evaluatedReason: string! + + """Header From of emails""" + headerFrom: string! + + """Number of messages that matched""" + matchingMessages: uint32! + + """Organization that generated report""" + orgName: string! + + """DKIM alignment mode specified in the policy""" + policyDKIMAlignmentMode: string! + + """DMARC policy of the domain""" + policyDomain: string! + + """Percentage of emails that should be checked""" + policyPercentage: uint8! + + """SPF alignment mode specified in the policy""" + policySPFAlignmentMode: string! + + """DMARC policy of subdomains""" + policySubDomain: string! + + """Unique identifier of this record""" + recordId: string! + + """Index of this record within the report""" + recordIndex: uint32! + + """Start of the reporting period""" + reportBegin: Time! + + """End of the reporting period""" + reportEnd: Time! + + """Error message (if any)""" + reportError: string! + + """Unique identifier of the report to which this record belongs""" + reportId: string! + + """ABR sample interval""" + sampleInterval: uint32! + + """Source IP address of the email""" + sourceIP: string! + + """Country name from source IP""" + sourceLocationName: string! + + """Source IP address organisation name""" + sourceOrgName: string! + + """Source IP address organisation slug""" + sourceOrgSlug: string! + + """Source Domain from IP address""" + sourcePTR: string! + + """SPF result""" + spf: string! + + """Checked domain from scope mfrom""" + spfMFromDomain: string! +} + +"""""" +input ZoneDmarcReportsAdaptiveFilter_InputObject { + """""" + AND: [ZoneDmarcReportsAdaptiveFilter_InputObject!] + + """""" + OR: [ZoneDmarcReportsAdaptiveFilter_InputObject!] + + """""" + datetime: Time + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + disposition: string + + """""" + disposition_geq: string + + """""" + disposition_gt: string + + """""" + disposition_in: [string!] + + """""" + disposition_leq: string + + """""" + disposition_like: string + + """""" + disposition_lt: string + + """""" + disposition_neq: string + + """""" + disposition_notin: [string!] + + """""" + disposition_notlike: string + + """""" + dkim: string + + """""" + dkim_geq: string + + """""" + dkim_gt: string + + """""" + dkim_in: [string!] + + """""" + dkim_leq: string + + """""" + dkim_like: string + + """""" + dkim_lt: string + + """""" + dkim_neq: string + + """""" + dkim_notin: [string!] + + """""" + dkim_notlike: string + + """""" + domain: string + + """""" + domain_geq: string + + """""" + domain_gt: string + + """""" + domain_in: [string!] + + """""" + domain_leq: string + + """""" + domain_like: string + + """""" + domain_lt: string + + """""" + domain_neq: string + + """""" + domain_notin: [string!] + + """""" + domain_notlike: string + + """""" + envelopeFrom: string + + """""" + envelopeFrom_geq: string + + """""" + envelopeFrom_gt: string + + """""" + envelopeFrom_in: [string!] + + """""" + envelopeFrom_leq: string + + """""" + envelopeFrom_like: string + + """""" + envelopeFrom_lt: string + + """""" + envelopeFrom_neq: string + + """""" + envelopeFrom_notin: [string!] + + """""" + envelopeFrom_notlike: string + + """""" + envelopeTo: string + + """""" + envelopeTo_geq: string + + """""" + envelopeTo_gt: string + + """""" + envelopeTo_in: [string!] + + """""" + envelopeTo_leq: string + + """""" + envelopeTo_like: string + + """""" + envelopeTo_lt: string + + """""" + envelopeTo_neq: string + + """""" + envelopeTo_notin: [string!] + + """""" + envelopeTo_notlike: string + + """""" + evaluatedReason: string + + """""" + evaluatedReason_geq: string + + """""" + evaluatedReason_gt: string + + """""" + evaluatedReason_in: [string!] + + """""" + evaluatedReason_leq: string + + """""" + evaluatedReason_like: string + + """""" + evaluatedReason_lt: string + + """""" + evaluatedReason_neq: string + + """""" + evaluatedReason_notin: [string!] + + """""" + evaluatedReason_notlike: string + + """""" + headerFrom: string + + """""" + headerFrom_geq: string + + """""" + headerFrom_gt: string + + """""" + headerFrom_in: [string!] + + """""" + headerFrom_leq: string + + """""" + headerFrom_like: string + + """""" + headerFrom_lt: string + + """""" + headerFrom_neq: string + + """""" + headerFrom_notin: [string!] + + """""" + headerFrom_notlike: string + + """""" + matchingMessages: uint32 + + """""" + matchingMessages_geq: uint32 + + """""" + matchingMessages_gt: uint32 + + """""" + matchingMessages_in: [uint32!] + + """""" + matchingMessages_leq: uint32 + + """""" + matchingMessages_lt: uint32 + + """""" + matchingMessages_neq: uint32 + + """""" + matchingMessages_notin: [uint32!] + + """""" + orgName: string + + """""" + orgName_geq: string + + """""" + orgName_gt: string + + """""" + orgName_in: [string!] + + """""" + orgName_leq: string + + """""" + orgName_like: string + + """""" + orgName_lt: string + + """""" + orgName_neq: string + + """""" + orgName_notin: [string!] + + """""" + orgName_notlike: string + + """""" + policyDKIMAlignmentMode: string + + """""" + policyDKIMAlignmentMode_geq: string + + """""" + policyDKIMAlignmentMode_gt: string + + """""" + policyDKIMAlignmentMode_in: [string!] + + """""" + policyDKIMAlignmentMode_leq: string + + """""" + policyDKIMAlignmentMode_like: string + + """""" + policyDKIMAlignmentMode_lt: string + + """""" + policyDKIMAlignmentMode_neq: string + + """""" + policyDKIMAlignmentMode_notin: [string!] + + """""" + policyDKIMAlignmentMode_notlike: string + + """""" + policyDomain: string + + """""" + policyDomain_geq: string + + """""" + policyDomain_gt: string + + """""" + policyDomain_in: [string!] + + """""" + policyDomain_leq: string + + """""" + policyDomain_like: string + + """""" + policyDomain_lt: string + + """""" + policyDomain_neq: string + + """""" + policyDomain_notin: [string!] + + """""" + policyDomain_notlike: string + + """""" + policyPercentage: uint8 + + """""" + policyPercentage_geq: uint8 + + """""" + policyPercentage_gt: uint8 + + """""" + policyPercentage_in: bytes + + """""" + policyPercentage_leq: uint8 + + """""" + policyPercentage_lt: uint8 + + """""" + policyPercentage_neq: uint8 + + """""" + policyPercentage_notin: bytes + + """""" + policySPFAlignmentMode: string + + """""" + policySPFAlignmentMode_geq: string + + """""" + policySPFAlignmentMode_gt: string + + """""" + policySPFAlignmentMode_in: [string!] + + """""" + policySPFAlignmentMode_leq: string + + """""" + policySPFAlignmentMode_like: string + + """""" + policySPFAlignmentMode_lt: string + + """""" + policySPFAlignmentMode_neq: string + + """""" + policySPFAlignmentMode_notin: [string!] + + """""" + policySPFAlignmentMode_notlike: string + + """""" + policySubDomain: string + + """""" + policySubDomain_geq: string + + """""" + policySubDomain_gt: string + + """""" + policySubDomain_in: [string!] + + """""" + policySubDomain_leq: string + + """""" + policySubDomain_like: string + + """""" + policySubDomain_lt: string + + """""" + policySubDomain_neq: string + + """""" + policySubDomain_notin: [string!] + + """""" + policySubDomain_notlike: string + + """""" + recordId: string + + """""" + recordId_geq: string + + """""" + recordId_gt: string + + """""" + recordId_in: [string!] + + """""" + recordId_leq: string + + """""" + recordId_like: string + + """""" + recordId_lt: string + + """""" + recordId_neq: string + + """""" + recordId_notin: [string!] + + """""" + recordId_notlike: string + + """""" + recordIndex: uint32 + + """""" + recordIndex_geq: uint32 + + """""" + recordIndex_gt: uint32 + + """""" + recordIndex_in: [uint32!] + + """""" + recordIndex_leq: uint32 + + """""" + recordIndex_lt: uint32 + + """""" + recordIndex_neq: uint32 + + """""" + recordIndex_notin: [uint32!] + + """""" + reportBegin: Time + + """""" + reportBegin_geq: Time + + """""" + reportBegin_gt: Time + + """""" + reportBegin_in: [Time!] + + """""" + reportBegin_leq: Time + + """""" + reportBegin_lt: Time + + """""" + reportBegin_neq: Time + + """""" + reportBegin_notin: [Time!] + + """""" + reportEnd: Time + + """""" + reportEnd_geq: Time + + """""" + reportEnd_gt: Time + + """""" + reportEnd_in: [Time!] + + """""" + reportEnd_leq: Time + + """""" + reportEnd_lt: Time + + """""" + reportEnd_neq: Time + + """""" + reportEnd_notin: [Time!] + + """""" + reportError: string + + """""" + reportError_geq: string + + """""" + reportError_gt: string + + """""" + reportError_in: [string!] + + """""" + reportError_leq: string + + """""" + reportError_like: string + + """""" + reportError_lt: string + + """""" + reportError_neq: string + + """""" + reportError_notin: [string!] + + """""" + reportError_notlike: string + + """""" + reportId: string + + """""" + reportId_geq: string + + """""" + reportId_gt: string + + """""" + reportId_in: [string!] + + """""" + reportId_leq: string + + """""" + reportId_like: string + + """""" + reportId_lt: string + + """""" + reportId_neq: string + + """""" + reportId_notin: [string!] + + """""" + reportId_notlike: string + + """""" + sampleInterval: uint32 + + """""" + sampleInterval_geq: uint32 + + """""" + sampleInterval_gt: uint32 + + """""" + sampleInterval_in: [uint32!] + + """""" + sampleInterval_leq: uint32 + + """""" + sampleInterval_lt: uint32 + + """""" + sampleInterval_neq: uint32 + + """""" + sampleInterval_notin: [uint32!] + + """""" + sourceIP: string + + """""" + sourceIP_geq: string + + """""" + sourceIP_gt: string + + """""" + sourceIP_in: [string!] + + """""" + sourceIP_leq: string + + """""" + sourceIP_like: string + + """""" + sourceIP_lt: string + + """""" + sourceIP_neq: string + + """""" + sourceIP_notin: [string!] + + """""" + sourceIP_notlike: string + + """""" + sourceLocationName: string + + """""" + sourceLocationName_geq: string + + """""" + sourceLocationName_gt: string + + """""" + sourceLocationName_in: [string!] + + """""" + sourceLocationName_leq: string + + """""" + sourceLocationName_like: string + + """""" + sourceLocationName_lt: string + + """""" + sourceLocationName_neq: string + + """""" + sourceLocationName_notin: [string!] + + """""" + sourceLocationName_notlike: string + + """""" + sourceOrgName: string + + """""" + sourceOrgName_geq: string + + """""" + sourceOrgName_gt: string + + """""" + sourceOrgName_in: [string!] + + """""" + sourceOrgName_leq: string + + """""" + sourceOrgName_like: string + + """""" + sourceOrgName_lt: string + + """""" + sourceOrgName_neq: string + + """""" + sourceOrgName_notin: [string!] + + """""" + sourceOrgName_notlike: string + + """""" + sourceOrgSlug: string + + """""" + sourceOrgSlug_geq: string + + """""" + sourceOrgSlug_gt: string + + """""" + sourceOrgSlug_in: [string!] + + """""" + sourceOrgSlug_leq: string + + """""" + sourceOrgSlug_like: string + + """""" + sourceOrgSlug_lt: string + + """""" + sourceOrgSlug_neq: string + + """""" + sourceOrgSlug_notin: [string!] + + """""" + sourceOrgSlug_notlike: string + + """""" + sourcePTR: string + + """""" + sourcePTR_geq: string + + """""" + sourcePTR_gt: string + + """""" + sourcePTR_in: [string!] + + """""" + sourcePTR_leq: string + + """""" + sourcePTR_like: string + + """""" + sourcePTR_lt: string + + """""" + sourcePTR_neq: string + + """""" + sourcePTR_notin: [string!] + + """""" + sourcePTR_notlike: string + + """""" + spf: string + + """""" + spfMFromDomain: string + + """""" + spfMFromDomain_geq: string + + """""" + spfMFromDomain_gt: string + + """""" + spfMFromDomain_in: [string!] + + """""" + spfMFromDomain_leq: string + + """""" + spfMFromDomain_like: string + + """""" + spfMFromDomain_lt: string + + """""" + spfMFromDomain_neq: string + + """""" + spfMFromDomain_notin: [string!] + + """""" + spfMFromDomain_notlike: string + + """""" + spf_geq: string + + """""" + spf_gt: string + + """""" + spf_in: [string!] + + """""" + spf_leq: string + + """""" + spf_like: string + + """""" + spf_lt: string + + """""" + spf_neq: string + + """""" + spf_notin: [string!] + + """""" + spf_notlike: string +} + +"""""" +enum ZoneDmarcReportsAdaptiveOrderBy { + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """disposition ascending""" + disposition_ASC + + """disposition descending""" + disposition_DESC + + """dkim ascending""" + dkim_ASC + + """dkim descending""" + dkim_DESC + + """domain ascending""" + domain_ASC + + """domain descending""" + domain_DESC + + """envelopeFrom ascending""" + envelopeFrom_ASC + + """envelopeFrom descending""" + envelopeFrom_DESC + + """envelopeTo ascending""" + envelopeTo_ASC + + """envelopeTo descending""" + envelopeTo_DESC + + """evaluatedReason ascending""" + evaluatedReason_ASC + + """evaluatedReason descending""" + evaluatedReason_DESC + + """headerFrom ascending""" + headerFrom_ASC + + """headerFrom descending""" + headerFrom_DESC + + """matchingMessages ascending""" + matchingMessages_ASC + + """matchingMessages descending""" + matchingMessages_DESC + + """orgName ascending""" + orgName_ASC + + """orgName descending""" + orgName_DESC + + """policyDKIMAlignmentMode ascending""" + policyDKIMAlignmentMode_ASC + + """policyDKIMAlignmentMode descending""" + policyDKIMAlignmentMode_DESC + + """policyDomain ascending""" + policyDomain_ASC + + """policyDomain descending""" + policyDomain_DESC + + """policyPercentage ascending""" + policyPercentage_ASC + + """policyPercentage descending""" + policyPercentage_DESC + + """policySPFAlignmentMode ascending""" + policySPFAlignmentMode_ASC + + """policySPFAlignmentMode descending""" + policySPFAlignmentMode_DESC + + """policySubDomain ascending""" + policySubDomain_ASC + + """policySubDomain descending""" + policySubDomain_DESC + + """recordId ascending""" + recordId_ASC + + """recordId descending""" + recordId_DESC + + """recordIndex ascending""" + recordIndex_ASC + + """recordIndex descending""" + recordIndex_DESC + + """reportBegin ascending""" + reportBegin_ASC + + """reportBegin descending""" + reportBegin_DESC + + """reportEnd ascending""" + reportEnd_ASC + + """reportEnd descending""" + reportEnd_DESC + + """reportError ascending""" + reportError_ASC + + """reportError descending""" + reportError_DESC + + """reportId ascending""" + reportId_ASC + + """reportId descending""" + reportId_DESC + + """sampleInterval ascending""" + sampleInterval_ASC + + """sampleInterval descending""" + sampleInterval_DESC + + """sourceIP ascending""" + sourceIP_ASC + + """sourceIP descending""" + sourceIP_DESC + + """sourceLocationName ascending""" + sourceLocationName_ASC + + """sourceLocationName descending""" + sourceLocationName_DESC + + """sourceOrgName ascending""" + sourceOrgName_ASC + + """sourceOrgName descending""" + sourceOrgName_DESC + + """sourceOrgSlug ascending""" + sourceOrgSlug_ASC + + """sourceOrgSlug descending""" + sourceOrgSlug_DESC + + """sourcePTR ascending""" + sourcePTR_ASC + + """sourcePTR descending""" + sourcePTR_DESC + + """spfMFromDomain ascending""" + spfMFromDomain_ASC + + """spfMFromDomain descending""" + spfMFromDomain_DESC + + """spf ascending""" + spf_ASC + + """spf descending""" + spf_DESC +} + +"""Aggregated dmarc reports by sources logs with adaptive sampling""" +type ZoneDmarcReportsSourcesAdaptiveGroups { + """Beta. The avg of values for a metric per dimension""" + avg: ZoneDmarcReportsSourcesAdaptiveGroupsAvg + + """ALPHA - DO NOT USE""" + confidence(level: float64!): ZoneDmarcReportsSourcesAdaptiveGroupsConfidence! + + """List of dimensions to group by""" + dimensions: ZoneDmarcReportsSourcesAdaptiveGroupsDimensions + + """""" + sum: ZoneDmarcReportsSourcesAdaptiveGroupsSum + + """""" + uniq: ZoneDmarcReportsSourcesAdaptiveGroupsUniq +} + +"""""" +type ZoneDmarcReportsSourcesAdaptiveGroupsAvg { + """Percentage of dkim messages pass""" + dkimPass: float64! + + """Percentage of dmarc messages pass""" + dmarc: float64! + + """Percentage of spf messages pass""" + spfPass: float64! +} + +"""""" +type ZoneDmarcReportsSourcesAdaptiveGroupsConfidence { + """Confidence level that was requested""" + level: float64! + + """""" + sum: ZoneDmarcReportsSourcesAdaptiveGroupsSumConfidence +} + +"""""" +type ZoneDmarcReportsSourcesAdaptiveGroupsDimensions { + """The date the source email was received""" + date: Date! + + """The date and time the source email was received truncated to the day""" + datetimeDay: Time! + + """The date and time the source email was received truncated to the hour""" + datetimeHour: Time! + + """ + The date and time the source email was received truncated to the last 31 days + """ + datetimeLast31Days: Time! + + """The date and time the source email was received truncated to the month""" + datetimeMonth: Time! + + """The date and time the source email was received truncated to the week""" + datetimeWeek: Time! + + """DMARC policy disposition""" + disposition: string! + + """DKIM result""" + dkim: string! + + """Domain to which this report refers to""" + domain: string! + + """Envelope From of emails""" + envelopeFrom: string! + + """Envelope To of emails""" + envelopeTo: string! + + """Reason (if any) why the record was evaluated""" + evaluatedReason: string! + + """Header From of emails""" + headerFrom: string! + + """Organization that generated report""" + orgName: string! + + """ABR sample interval""" + sampleInterval: uint32! + + """Source IP address of the email""" + sourceIP: string! + + """Country name from source IP""" + sourceLocationName: string! + + """Source IP address organisation name""" + sourceOrgName: string! + + """Source IP address organisation slug""" + sourceOrgSlug: string! + + """Source Domain from IP address""" + sourcePTR: string! + + """SPF result""" + spf: string! + + """Checked domain from scope mfrom""" + spfMFromDomain: string! +} + +"""""" +input ZoneDmarcReportsSourcesAdaptiveGroupsFilter_InputObject { + """""" + AND: [ZoneDmarcReportsSourcesAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [ZoneDmarcReportsSourcesAdaptiveGroupsFilter_InputObject!] + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetimeDay: Time + + """""" + datetimeDay_geq: Time + + """""" + datetimeDay_gt: Time + + """""" + datetimeDay_in: [Time!] + + """""" + datetimeDay_leq: Time + + """""" + datetimeDay_lt: Time + + """""" + datetimeDay_neq: Time + + """""" + datetimeDay_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeLast31Days: Time + + """""" + datetimeLast31Days_geq: Time + + """""" + datetimeLast31Days_gt: Time + + """""" + datetimeLast31Days_in: [Time!] + + """""" + datetimeLast31Days_leq: Time + + """""" + datetimeLast31Days_lt: Time + + """""" + datetimeLast31Days_neq: Time + + """""" + datetimeLast31Days_notin: [Time!] + + """""" + datetimeMonth: Time + + """""" + datetimeMonth_geq: Time + + """""" + datetimeMonth_gt: Time + + """""" + datetimeMonth_in: [Time!] + + """""" + datetimeMonth_leq: Time + + """""" + datetimeMonth_lt: Time + + """""" + datetimeMonth_neq: Time + + """""" + datetimeMonth_notin: [Time!] + + """""" + datetimeWeek: Time + + """""" + datetimeWeek_geq: Time + + """""" + datetimeWeek_gt: Time + + """""" + datetimeWeek_in: [Time!] + + """""" + datetimeWeek_leq: Time + + """""" + datetimeWeek_lt: Time + + """""" + datetimeWeek_neq: Time + + """""" + datetimeWeek_notin: [Time!] + + """""" + disposition: string + + """""" + disposition_geq: string + + """""" + disposition_gt: string + + """""" + disposition_in: [string!] + + """""" + disposition_leq: string + + """""" + disposition_like: string + + """""" + disposition_lt: string + + """""" + disposition_neq: string + + """""" + disposition_notin: [string!] + + """""" + disposition_notlike: string + + """""" + dkim: string + + """""" + dkim_geq: string + + """""" + dkim_gt: string + + """""" + dkim_in: [string!] + + """""" + dkim_leq: string + + """""" + dkim_like: string + + """""" + dkim_lt: string + + """""" + dkim_neq: string + + """""" + dkim_notin: [string!] + + """""" + dkim_notlike: string + + """""" + domain: string + + """""" + domain_geq: string + + """""" + domain_gt: string + + """""" + domain_in: [string!] + + """""" + domain_leq: string + + """""" + domain_like: string + + """""" + domain_lt: string + + """""" + domain_neq: string + + """""" + domain_notin: [string!] + + """""" + domain_notlike: string + + """""" + envelopeFrom: string + + """""" + envelopeFrom_geq: string + + """""" + envelopeFrom_gt: string + + """""" + envelopeFrom_in: [string!] + + """""" + envelopeFrom_leq: string + + """""" + envelopeFrom_like: string + + """""" + envelopeFrom_lt: string + + """""" + envelopeFrom_neq: string + + """""" + envelopeFrom_notin: [string!] + + """""" + envelopeFrom_notlike: string + + """""" + envelopeTo: string + + """""" + envelopeTo_geq: string + + """""" + envelopeTo_gt: string + + """""" + envelopeTo_in: [string!] + + """""" + envelopeTo_leq: string + + """""" + envelopeTo_like: string + + """""" + envelopeTo_lt: string + + """""" + envelopeTo_neq: string + + """""" + envelopeTo_notin: [string!] + + """""" + envelopeTo_notlike: string + + """""" + evaluatedReason: string + + """""" + evaluatedReason_geq: string + + """""" + evaluatedReason_gt: string + + """""" + evaluatedReason_in: [string!] + + """""" + evaluatedReason_leq: string + + """""" + evaluatedReason_like: string + + """""" + evaluatedReason_lt: string + + """""" + evaluatedReason_neq: string + + """""" + evaluatedReason_notin: [string!] + + """""" + evaluatedReason_notlike: string + + """""" + headerFrom: string + + """""" + headerFrom_geq: string + + """""" + headerFrom_gt: string + + """""" + headerFrom_in: [string!] + + """""" + headerFrom_leq: string + + """""" + headerFrom_like: string + + """""" + headerFrom_lt: string + + """""" + headerFrom_neq: string + + """""" + headerFrom_notin: [string!] + + """""" + headerFrom_notlike: string + + """""" + orgName: string + + """""" + orgName_geq: string + + """""" + orgName_gt: string + + """""" + orgName_in: [string!] + + """""" + orgName_leq: string + + """""" + orgName_like: string + + """""" + orgName_lt: string + + """""" + orgName_neq: string + + """""" + orgName_notin: [string!] + + """""" + orgName_notlike: string + + """""" + sampleInterval: uint32 + + """""" + sampleInterval_geq: uint32 + + """""" + sampleInterval_gt: uint32 + + """""" + sampleInterval_in: [uint32!] + + """""" + sampleInterval_leq: uint32 + + """""" + sampleInterval_lt: uint32 + + """""" + sampleInterval_neq: uint32 + + """""" + sampleInterval_notin: [uint32!] + + """""" + sourceIP: string + + """""" + sourceIP_geq: string + + """""" + sourceIP_gt: string + + """""" + sourceIP_in: [string!] + + """""" + sourceIP_leq: string + + """""" + sourceIP_like: string + + """""" + sourceIP_lt: string + + """""" + sourceIP_neq: string + + """""" + sourceIP_notin: [string!] + + """""" + sourceIP_notlike: string + + """""" + sourceLocationName: string + + """""" + sourceLocationName_geq: string + + """""" + sourceLocationName_gt: string + + """""" + sourceLocationName_in: [string!] + + """""" + sourceLocationName_leq: string + + """""" + sourceLocationName_like: string + + """""" + sourceLocationName_lt: string + + """""" + sourceLocationName_neq: string + + """""" + sourceLocationName_notin: [string!] + + """""" + sourceLocationName_notlike: string + + """""" + sourceOrgName: string + + """""" + sourceOrgName_geq: string + + """""" + sourceOrgName_gt: string + + """""" + sourceOrgName_in: [string!] + + """""" + sourceOrgName_leq: string + + """""" + sourceOrgName_like: string + + """""" + sourceOrgName_lt: string + + """""" + sourceOrgName_neq: string + + """""" + sourceOrgName_notin: [string!] + + """""" + sourceOrgName_notlike: string + + """""" + sourceOrgSlug: string + + """""" + sourceOrgSlug_geq: string + + """""" + sourceOrgSlug_gt: string + + """""" + sourceOrgSlug_in: [string!] + + """""" + sourceOrgSlug_leq: string + + """""" + sourceOrgSlug_like: string + + """""" + sourceOrgSlug_lt: string + + """""" + sourceOrgSlug_neq: string + + """""" + sourceOrgSlug_notin: [string!] + + """""" + sourceOrgSlug_notlike: string + + """""" + sourcePTR: string + + """""" + sourcePTR_geq: string + + """""" + sourcePTR_gt: string + + """""" + sourcePTR_in: [string!] + + """""" + sourcePTR_leq: string + + """""" + sourcePTR_like: string + + """""" + sourcePTR_lt: string + + """""" + sourcePTR_neq: string + + """""" + sourcePTR_notin: [string!] + + """""" + sourcePTR_notlike: string + + """""" + spf: string + + """""" + spfMFromDomain: string + + """""" + spfMFromDomain_geq: string + + """""" + spfMFromDomain_gt: string + + """""" + spfMFromDomain_in: [string!] + + """""" + spfMFromDomain_leq: string + + """""" + spfMFromDomain_like: string + + """""" + spfMFromDomain_lt: string + + """""" + spfMFromDomain_neq: string + + """""" + spfMFromDomain_notin: [string!] + + """""" + spfMFromDomain_notlike: string + + """""" + spf_geq: string + + """""" + spf_gt: string + + """""" + spf_in: [string!] + + """""" + spf_leq: string + + """""" + spf_like: string + + """""" + spf_lt: string + + """""" + spf_neq: string + + """""" + spf_notin: [string!] + + """""" + spf_notlike: string +} + +"""""" +enum ZoneDmarcReportsSourcesAdaptiveGroupsOrderBy { + """avg(dkimPass) ascending""" + avg_dkimPass_ASC + + """avg(dkimPass) descending""" + avg_dkimPass_DESC + + """avg(dmarc) ascending""" + avg_dmarc_ASC + + """avg(dmarc) descending""" + avg_dmarc_DESC + + """avg(spfPass) ascending""" + avg_spfPass_ASC + + """avg(spfPass) descending""" + avg_spfPass_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeDay ascending""" + datetimeDay_ASC + + """datetimeDay descending""" + datetimeDay_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeLast31Days ascending""" + datetimeLast31Days_ASC + + """datetimeLast31Days descending""" + datetimeLast31Days_DESC + + """datetimeMonth ascending""" + datetimeMonth_ASC + + """datetimeMonth descending""" + datetimeMonth_DESC + + """datetimeWeek ascending""" + datetimeWeek_ASC + + """datetimeWeek descending""" + datetimeWeek_DESC + + """disposition ascending""" + disposition_ASC + + """disposition descending""" + disposition_DESC + + """dkim ascending""" + dkim_ASC + + """dkim descending""" + dkim_DESC + + """domain ascending""" + domain_ASC + + """domain descending""" + domain_DESC + + """envelopeFrom ascending""" + envelopeFrom_ASC + + """envelopeFrom descending""" + envelopeFrom_DESC + + """envelopeTo ascending""" + envelopeTo_ASC + + """envelopeTo descending""" + envelopeTo_DESC + + """evaluatedReason ascending""" + evaluatedReason_ASC + + """evaluatedReason descending""" + evaluatedReason_DESC + + """headerFrom ascending""" + headerFrom_ASC + + """headerFrom descending""" + headerFrom_DESC + + """orgName ascending""" + orgName_ASC + + """orgName descending""" + orgName_DESC + + """sampleInterval ascending""" + sampleInterval_ASC + + """sampleInterval descending""" + sampleInterval_DESC + + """sourceIP ascending""" + sourceIP_ASC + + """sourceIP descending""" + sourceIP_DESC + + """sourceLocationName ascending""" + sourceLocationName_ASC + + """sourceLocationName descending""" + sourceLocationName_DESC + + """sourceOrgName ascending""" + sourceOrgName_ASC + + """sourceOrgName descending""" + sourceOrgName_DESC + + """sourceOrgSlug ascending""" + sourceOrgSlug_ASC + + """sourceOrgSlug descending""" + sourceOrgSlug_DESC + + """sourcePTR ascending""" + sourcePTR_ASC + + """sourcePTR descending""" + sourcePTR_DESC + + """spfMFromDomain ascending""" + spfMFromDomain_ASC + + """spfMFromDomain descending""" + spfMFromDomain_DESC + + """spf ascending""" + spf_ASC + + """spf descending""" + spf_DESC + + """sum(dkimPass) ascending""" + sum_dkimPass_ASC + + """sum(dkimPass) descending""" + sum_dkimPass_DESC + + """sum(dmarc) ascending""" + sum_dmarc_ASC + + """sum(dmarc) descending""" + sum_dmarc_DESC + + """sum(spfPass) ascending""" + sum_spfPass_ASC + + """sum(spfPass) descending""" + sum_spfPass_DESC + + """sum(totalMatchingMessages) ascending""" + sum_totalMatchingMessages_ASC + + """sum(totalMatchingMessages) descending""" + sum_totalMatchingMessages_DESC + + """uniq(ipCount) ascending""" + uniq_ipCount_ASC + + """uniq(ipCount) descending""" + uniq_ipCount_DESC +} + +"""""" +type ZoneDmarcReportsSourcesAdaptiveGroupsSum { + """Total of dkim messages pass""" + dkimPass: uint64! + + """Total of dmarc messages pass""" + dmarc: uint64! + + """Total of spf messages pass""" + spfPass: uint64! + + """Total matching messages""" + totalMatchingMessages: uint64! +} + +"""""" +type ZoneDmarcReportsSourcesAdaptiveGroupsSumConfidence { + """Confidence interval for the corresponding point estimate""" + dkimPass: Confidence! + + """Confidence interval for the corresponding point estimate""" + dmarc: Confidence! + + """Confidence interval for the corresponding point estimate""" + spfPass: Confidence! + + """Confidence interval for the corresponding point estimate""" + totalMatchingMessages: Confidence! +} + +"""""" +type ZoneDmarcReportsSourcesAdaptiveGroupsUniq { + """Number of distinct IPs""" + ipCount: uint64! +} + +"""Analytics data for DNS queries""" +type ZoneDnsAnalyticsAdaptive { + """IATA airport code of the data center that processed the query""" + coloName: string! + + """Date on which the query was received""" + date: Date! + + """Time at which the query was received""" + datetime: Time! + + """Cloudflare edge IP address that the query was received at""" + destinationIP: string! + + """Internet Protocol version over which the query was received""" + ipVersion: uint8! + + """Transport protocol over which the query was received""" + protocol: string! + + """DNS query name without trailing dot""" + queryName: string! + + """Size of the DNS query in bytes""" + querySize: uint16! + + """DNS query type""" + queryType: string! + + """Whether the DNS response was served from cache""" + responseCached: uint8! + + """DNS response code""" + responseCode: string! + + """Size of the DNS response in bytes""" + responseSize: uint16! + + """Whether a stale DNS response was served from cache""" + responseStale: uint8! + + """ABR sample interval""" + sampleInterval: uint32! + + """ + IP address of the client that sent the query (usually this is the resolver's IP address) + """ + sourceIP: string! + + """Upstream server that the query was forwarded to""" + upstreamIP: string! +} + +"""""" +input ZoneDnsAnalyticsAdaptiveFilter_InputObject { + """""" + AND: [ZoneDnsAnalyticsAdaptiveFilter_InputObject!] + + """""" + OR: [ZoneDnsAnalyticsAdaptiveFilter_InputObject!] + + """""" + coloName: string + + """""" + coloName_geq: string + + """""" + coloName_gt: string + + """""" + coloName_in: [string!] + + """""" + coloName_leq: string + + """""" + coloName_like: string + + """""" + coloName_lt: string + + """""" + coloName_neq: string + + """""" + coloName_notin: [string!] + + """""" + coloName_notlike: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + destinationIP: string + + """""" + destinationIP_geq: string + + """""" + destinationIP_gt: string + + """""" + destinationIP_in: [string!] + + """""" + destinationIP_leq: string + + """""" + destinationIP_like: string + + """""" + destinationIP_lt: string + + """""" + destinationIP_neq: string + + """""" + destinationIP_notin: [string!] + + """""" + destinationIP_notlike: string + + """""" + ipVersion: uint8 + + """""" + ipVersion_geq: uint8 + + """""" + ipVersion_gt: uint8 + + """""" + ipVersion_in: bytes + + """""" + ipVersion_leq: uint8 + + """""" + ipVersion_lt: uint8 + + """""" + ipVersion_neq: uint8 + + """""" + ipVersion_notin: bytes + + """""" + protocol: string + + """""" + protocol_geq: string + + """""" + protocol_gt: string + + """""" + protocol_in: [string!] + + """""" + protocol_leq: string + + """""" + protocol_like: string + + """""" + protocol_lt: string + + """""" + protocol_neq: string + + """""" + protocol_notin: [string!] + + """""" + protocol_notlike: string + + """""" + queryName: string + + """""" + queryName_geq: string + + """""" + queryName_gt: string + + """""" + queryName_in: [string!] + + """""" + queryName_leq: string + + """""" + queryName_like: string + + """""" + queryName_lt: string + + """""" + queryName_neq: string + + """""" + queryName_notin: [string!] + + """""" + queryName_notlike: string + + """""" + querySize: uint16 + + """""" + querySize_geq: uint16 + + """""" + querySize_gt: uint16 + + """""" + querySize_in: [uint16!] + + """""" + querySize_leq: uint16 + + """""" + querySize_lt: uint16 + + """""" + querySize_neq: uint16 + + """""" + querySize_notin: [uint16!] + + """""" + queryType: string + + """""" + queryType_geq: string + + """""" + queryType_gt: string + + """""" + queryType_in: [string!] + + """""" + queryType_leq: string + + """""" + queryType_like: string + + """""" + queryType_lt: string + + """""" + queryType_neq: string + + """""" + queryType_notin: [string!] + + """""" + queryType_notlike: string + + """""" + responseCached: uint8 + + """""" + responseCached_geq: uint8 + + """""" + responseCached_gt: uint8 + + """""" + responseCached_in: bytes + + """""" + responseCached_leq: uint8 + + """""" + responseCached_lt: uint8 + + """""" + responseCached_neq: uint8 + + """""" + responseCached_notin: bytes + + """""" + responseCode: string + + """""" + responseCode_geq: string + + """""" + responseCode_gt: string + + """""" + responseCode_in: [string!] + + """""" + responseCode_leq: string + + """""" + responseCode_like: string + + """""" + responseCode_lt: string + + """""" + responseCode_neq: string + + """""" + responseCode_notin: [string!] + + """""" + responseCode_notlike: string + + """""" + responseSize: uint16 + + """""" + responseSize_geq: uint16 + + """""" + responseSize_gt: uint16 + + """""" + responseSize_in: [uint16!] + + """""" + responseSize_leq: uint16 + + """""" + responseSize_lt: uint16 + + """""" + responseSize_neq: uint16 + + """""" + responseSize_notin: [uint16!] + + """""" + responseStale: uint8 + + """""" + responseStale_geq: uint8 + + """""" + responseStale_gt: uint8 + + """""" + responseStale_in: bytes + + """""" + responseStale_leq: uint8 + + """""" + responseStale_lt: uint8 + + """""" + responseStale_neq: uint8 + + """""" + responseStale_notin: bytes + + """""" + sampleInterval: uint32 + + """""" + sampleInterval_geq: uint32 + + """""" + sampleInterval_gt: uint32 + + """""" + sampleInterval_in: [uint32!] + + """""" + sampleInterval_leq: uint32 + + """""" + sampleInterval_lt: uint32 + + """""" + sampleInterval_neq: uint32 + + """""" + sampleInterval_notin: [uint32!] + + """""" + sourceIP: string + + """""" + sourceIP_geq: string + + """""" + sourceIP_gt: string + + """""" + sourceIP_in: [string!] + + """""" + sourceIP_leq: string + + """""" + sourceIP_like: string + + """""" + sourceIP_lt: string + + """""" + sourceIP_neq: string + + """""" + sourceIP_notin: [string!] + + """""" + sourceIP_notlike: string + + """""" + upstreamIP: string + + """""" + upstreamIP_geq: string + + """""" + upstreamIP_gt: string + + """""" + upstreamIP_in: [string!] + + """""" + upstreamIP_leq: string + + """""" + upstreamIP_like: string + + """""" + upstreamIP_lt: string + + """""" + upstreamIP_neq: string + + """""" + upstreamIP_notin: [string!] + + """""" + upstreamIP_notlike: string +} + +"""Analytics data for DNS queries""" +type ZoneDnsAnalyticsAdaptiveGroups { + """Average of a metric per dimension""" + avg: ZoneDnsAnalyticsAdaptiveGroupsAvg + + """ALPHA - DO NOT USE""" + confidence(level: float64!): ZoneDnsAnalyticsAdaptiveGroupsConfidence! + + """Number of queries per dimension""" + count: uint64! + + """List of dimensions to group by""" + dimensions: ZoneDnsAnalyticsAdaptiveGroupsDimensions + + """Quantiles of a metric per dimension""" + quantiles: ZoneDnsAnalyticsAdaptiveGroupsQuantiles +} + +"""""" +type ZoneDnsAnalyticsAdaptiveGroupsAvg { + """Average processing time in microseconds""" + processingTimeUs: float64! + + """Average sample interval""" + sampleInterval: float64! +} + +"""""" +type ZoneDnsAnalyticsAdaptiveGroupsConfidence { + """Number of queries per dimension, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! +} + +"""""" +type ZoneDnsAnalyticsAdaptiveGroupsDimensions { + """IATA airport code of the data center that processed the query""" + coloName: string! + + """Date on which the query was received""" + date: Date! + + """Time at which the query was received""" + datetime: Time! + + """ + Time at which the query was received, truncated to multiple of 15 minutes + """ + datetimeFifteenMinutes: Time! + + """ + Time at which the query was received, truncated to multiple of 5 minutes + """ + datetimeFiveMinutes: Time! + + """ + Time at which the query was received, truncated to multiple of 30 minutes + """ + datetimeHalfOfHour: Time! + + """Time at which the query was received, truncated to the hour""" + datetimeHour: Time! + + """Time at which the query was received, truncated to the minute""" + datetimeMinute: Time! + + """Cloudflare edge IP address that the query was received at""" + destinationIP: string! + + """Internet Protocol version over which the query was received""" + ipVersion: uint8! + + """Transport protocol over which the query was received""" + protocol: string! + + """DNS query name without trailing dot""" + queryName: string! + + """Size of the DNS query in bytes (in multiples of 16)""" + querySizeBucket: string! + + """DNS query type""" + queryType: string! + + """Whether the DNS response was served from cache""" + responseCached: uint8! + + """DNS response code""" + responseCode: string! + + """Size of the DNS response in bytes (in multiples of 16)""" + responseSizeBucket: string! + + """Whether a stale DNS response was served from cache""" + responseStale: uint8! + + """ + IP address of the client that sent the query (usually this is the resolver's IP address) + """ + sourceIP: string! + + """Upstream server that the query was forwarded to""" + upstreamIP: string! +} + +"""""" +input ZoneDnsAnalyticsAdaptiveGroupsFilter_InputObject { + """""" + AND: [ZoneDnsAnalyticsAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [ZoneDnsAnalyticsAdaptiveGroupsFilter_InputObject!] + + """""" + coloName: string + + """""" + coloName_geq: string + + """""" + coloName_gt: string + + """""" + coloName_in: [string!] + + """""" + coloName_leq: string + + """""" + coloName_like: string + + """""" + coloName_lt: string + + """""" + coloName_neq: string + + """""" + coloName_notin: [string!] + + """""" + coloName_notlike: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHalfOfHour: Time + + """""" + datetimeHalfOfHour_geq: Time + + """""" + datetimeHalfOfHour_gt: Time + + """""" + datetimeHalfOfHour_in: [Time!] + + """""" + datetimeHalfOfHour_leq: Time + + """""" + datetimeHalfOfHour_lt: Time + + """""" + datetimeHalfOfHour_neq: Time + + """""" + datetimeHalfOfHour_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + destinationIP: string + + """""" + destinationIP_geq: string + + """""" + destinationIP_gt: string + + """""" + destinationIP_in: [string!] + + """""" + destinationIP_leq: string + + """""" + destinationIP_like: string + + """""" + destinationIP_lt: string + + """""" + destinationIP_neq: string + + """""" + destinationIP_notin: [string!] + + """""" + destinationIP_notlike: string + + """""" + ipVersion: uint8 + + """""" + ipVersion_geq: uint8 + + """""" + ipVersion_gt: uint8 + + """""" + ipVersion_in: bytes + + """""" + ipVersion_leq: uint8 + + """""" + ipVersion_lt: uint8 + + """""" + ipVersion_neq: uint8 + + """""" + ipVersion_notin: bytes + + """""" + protocol: string + + """""" + protocol_geq: string + + """""" + protocol_gt: string + + """""" + protocol_in: [string!] + + """""" + protocol_leq: string + + """""" + protocol_like: string + + """""" + protocol_lt: string + + """""" + protocol_neq: string + + """""" + protocol_notin: [string!] + + """""" + protocol_notlike: string + + """""" + queryName: string + + """""" + queryName_geq: string + + """""" + queryName_gt: string + + """""" + queryName_in: [string!] + + """""" + queryName_leq: string + + """""" + queryName_like: string + + """""" + queryName_lt: string + + """""" + queryName_neq: string + + """""" + queryName_notin: [string!] + + """""" + queryName_notlike: string + + """""" + querySizeBucket: string + + """""" + querySizeBucket_geq: string + + """""" + querySizeBucket_gt: string + + """""" + querySizeBucket_in: [string!] + + """""" + querySizeBucket_leq: string + + """""" + querySizeBucket_like: string + + """""" + querySizeBucket_lt: string + + """""" + querySizeBucket_neq: string + + """""" + querySizeBucket_notin: [string!] + + """""" + querySizeBucket_notlike: string + + """""" + queryType: string + + """""" + queryType_geq: string + + """""" + queryType_gt: string + + """""" + queryType_in: [string!] + + """""" + queryType_leq: string + + """""" + queryType_like: string + + """""" + queryType_lt: string + + """""" + queryType_neq: string + + """""" + queryType_notin: [string!] + + """""" + queryType_notlike: string + + """""" + responseCached: uint8 + + """""" + responseCached_geq: uint8 + + """""" + responseCached_gt: uint8 + + """""" + responseCached_in: bytes + + """""" + responseCached_leq: uint8 + + """""" + responseCached_lt: uint8 + + """""" + responseCached_neq: uint8 + + """""" + responseCached_notin: bytes + + """""" + responseCode: string + + """""" + responseCode_geq: string + + """""" + responseCode_gt: string + + """""" + responseCode_in: [string!] + + """""" + responseCode_leq: string + + """""" + responseCode_like: string + + """""" + responseCode_lt: string + + """""" + responseCode_neq: string + + """""" + responseCode_notin: [string!] + + """""" + responseCode_notlike: string + + """""" + responseSizeBucket: string + + """""" + responseSizeBucket_geq: string + + """""" + responseSizeBucket_gt: string + + """""" + responseSizeBucket_in: [string!] + + """""" + responseSizeBucket_leq: string + + """""" + responseSizeBucket_like: string + + """""" + responseSizeBucket_lt: string + + """""" + responseSizeBucket_neq: string + + """""" + responseSizeBucket_notin: [string!] + + """""" + responseSizeBucket_notlike: string + + """""" + responseStale: uint8 + + """""" + responseStale_geq: uint8 + + """""" + responseStale_gt: uint8 + + """""" + responseStale_in: bytes + + """""" + responseStale_leq: uint8 + + """""" + responseStale_lt: uint8 + + """""" + responseStale_neq: uint8 + + """""" + responseStale_notin: bytes + + """""" + sourceIP: string + + """""" + sourceIP_geq: string + + """""" + sourceIP_gt: string + + """""" + sourceIP_in: [string!] + + """""" + sourceIP_leq: string + + """""" + sourceIP_like: string + + """""" + sourceIP_lt: string + + """""" + sourceIP_neq: string + + """""" + sourceIP_notin: [string!] + + """""" + sourceIP_notlike: string + + """""" + upstreamIP: string + + """""" + upstreamIP_geq: string + + """""" + upstreamIP_gt: string + + """""" + upstreamIP_in: [string!] + + """""" + upstreamIP_leq: string + + """""" + upstreamIP_like: string + + """""" + upstreamIP_lt: string + + """""" + upstreamIP_neq: string + + """""" + upstreamIP_notin: [string!] + + """""" + upstreamIP_notlike: string +} + +"""""" +enum ZoneDnsAnalyticsAdaptiveGroupsOrderBy { + """avg(processingTimeUs) ascending""" + avg_processingTimeUs_ASC + + """avg(processingTimeUs) descending""" + avg_processingTimeUs_DESC + + """avg(sampleInterval) ascending""" + avg_sampleInterval_ASC + + """avg(sampleInterval) descending""" + avg_sampleInterval_DESC + + """coloName ascending""" + coloName_ASC + + """coloName descending""" + coloName_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHalfOfHour ascending""" + datetimeHalfOfHour_ASC + + """datetimeHalfOfHour descending""" + datetimeHalfOfHour_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """destinationIP ascending""" + destinationIP_ASC + + """destinationIP descending""" + destinationIP_DESC + + """instanceCode ascending""" + instanceCode_ASC + + """instanceCode descending""" + instanceCode_DESC + + """ipVersion ascending""" + ipVersion_ASC + + """ipVersion descending""" + ipVersion_DESC + + """protocol ascending""" + protocol_ASC + + """protocol descending""" + protocol_DESC + + """quantiles(processingTimeUsP50) ascending""" + quantiles_processingTimeUsP50_ASC + + """quantiles(processingTimeUsP50) descending""" + quantiles_processingTimeUsP50_DESC + + """quantiles(processingTimeUsP90) ascending""" + quantiles_processingTimeUsP90_ASC + + """quantiles(processingTimeUsP90) descending""" + quantiles_processingTimeUsP90_DESC + + """quantiles(processingTimeUsP99) ascending""" + quantiles_processingTimeUsP99_ASC + + """quantiles(processingTimeUsP99) descending""" + quantiles_processingTimeUsP99_DESC + + """queryName ascending""" + queryName_ASC + + """queryName descending""" + queryName_DESC + + """querySizeBucket ascending""" + querySizeBucket_ASC + + """querySizeBucket descending""" + querySizeBucket_DESC + + """queryType ascending""" + queryType_ASC + + """queryType descending""" + queryType_DESC + + """responseCached ascending""" + responseCached_ASC + + """responseCached descending""" + responseCached_DESC + + """responseCode ascending""" + responseCode_ASC + + """responseCode descending""" + responseCode_DESC + + """responseSizeBucket ascending""" + responseSizeBucket_ASC + + """responseSizeBucket descending""" + responseSizeBucket_DESC + + """responseStale ascending""" + responseStale_ASC + + """responseStale descending""" + responseStale_DESC + + """sourceIP ascending""" + sourceIP_ASC + + """sourceIP descending""" + sourceIP_DESC + + """upstreamIP ascending""" + upstreamIP_ASC + + """upstreamIP descending""" + upstreamIP_DESC +} + +"""""" +type ZoneDnsAnalyticsAdaptiveGroupsQuantiles { + """50th percentile processing time in microseconds (median)""" + processingTimeUsP50: float64! + + """90th percentile processing time in microseconds""" + processingTimeUsP90: float64! + + """99th percentile processing time in microseconds""" + processingTimeUsP99: float64! +} + +"""""" +enum ZoneDnsAnalyticsAdaptiveOrderBy { + """coloName ascending""" + coloName_ASC + + """coloName descending""" + coloName_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """destinationIP ascending""" + destinationIP_ASC + + """destinationIP descending""" + destinationIP_DESC + + """instanceCode ascending""" + instanceCode_ASC + + """instanceCode descending""" + instanceCode_DESC + + """ipVersion ascending""" + ipVersion_ASC + + """ipVersion descending""" + ipVersion_DESC + + """protocol ascending""" + protocol_ASC + + """protocol descending""" + protocol_DESC + + """queryName ascending""" + queryName_ASC + + """queryName descending""" + queryName_DESC + + """querySize ascending""" + querySize_ASC + + """querySize descending""" + querySize_DESC + + """queryType ascending""" + queryType_ASC + + """queryType descending""" + queryType_DESC + + """responseCached ascending""" + responseCached_ASC + + """responseCached descending""" + responseCached_DESC + + """responseCode ascending""" + responseCode_ASC + + """responseCode descending""" + responseCode_DESC + + """responseSize ascending""" + responseSize_ASC + + """responseSize descending""" + responseSize_DESC + + """responseStale ascending""" + responseStale_ASC + + """responseStale descending""" + responseStale_DESC + + """sampleInterval ascending""" + sampleInterval_ASC + + """sampleInterval descending""" + sampleInterval_DESC + + """sourceIP ascending""" + sourceIP_ASC + + """sourceIP descending""" + sourceIP_DESC + + """upstreamIP ascending""" + upstreamIP_ASC + + """upstreamIP descending""" + upstreamIP_DESC +} + +"""Beta. Raw email routing logs with adaptive sampling""" +type ZoneEmailRoutingAdaptive { + """Action routing rule apply into source email""" + action: string! + + """ARC check status of the source email""" + arc: string! + + """The date and time the source email was received""" + datetime: Time! + + """DKIM check status of the source email""" + dkim: string! + + """DMARC check status of the source email""" + dmarc: string! + + """Detailed error message (if any)""" + errorDetail: string! + + """Origin of email (incoming|forward|reply|newEmail)""" + eventType: string! + + """The sender email address of the source email""" + from: string! + + """Is this event related to a NDR (bounce) email?""" + isNDR: uint8! + + """Source email is spam""" + isSpam: uint8! + + """The Message-ID header of the source email (if present)""" + messageId: string! + + """The UUID of the routing rule matched by the source email""" + ruleMatched: string! + + """ABR sample interval""" + sampleInterval: uint32! + + """ + Unique identifier for the email log entry (note: retries for the same email may result in multiple log entries) + """ + sessionId: string! + + """Spam score value""" + spamScore: uint32! + + """Spam threshold value""" + spamThreshold: uint32! + + """SPF check status of the source email""" + spf: string! + + """The resulting outcome (action) for the email""" + status: string! + + """The subject of the source email""" + subject: string! + + """The recipient email address of the source email""" + to: string! +} + +"""""" +input ZoneEmailRoutingAdaptiveFilter_InputObject { + """""" + AND: [ZoneEmailRoutingAdaptiveFilter_InputObject!] + + """""" + OR: [ZoneEmailRoutingAdaptiveFilter_InputObject!] + + """""" + action: string + + """""" + action_geq: string + + """""" + action_gt: string + + """""" + action_in: [string!] + + """""" + action_leq: string + + """""" + action_like: string + + """""" + action_lt: string + + """""" + action_neq: string + + """""" + action_notin: [string!] + + """""" + action_notlike: string + + """""" + arc: string + + """""" + arc_geq: string + + """""" + arc_gt: string + + """""" + arc_in: [string!] + + """""" + arc_leq: string + + """""" + arc_like: string + + """""" + arc_lt: string + + """""" + arc_neq: string + + """""" + arc_notin: [string!] + + """""" + arc_notlike: string + + """""" + datetime: Time + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + dkim: string + + """""" + dkim_geq: string + + """""" + dkim_gt: string + + """""" + dkim_in: [string!] + + """""" + dkim_leq: string + + """""" + dkim_like: string + + """""" + dkim_lt: string + + """""" + dkim_neq: string + + """""" + dkim_notin: [string!] + + """""" + dkim_notlike: string + + """""" + dmarc: string + + """""" + dmarc_geq: string + + """""" + dmarc_gt: string + + """""" + dmarc_in: [string!] + + """""" + dmarc_leq: string + + """""" + dmarc_like: string + + """""" + dmarc_lt: string + + """""" + dmarc_neq: string + + """""" + dmarc_notin: [string!] + + """""" + dmarc_notlike: string + + """""" + errorDetail: string + + """""" + errorDetail_geq: string + + """""" + errorDetail_gt: string + + """""" + errorDetail_in: [string!] + + """""" + errorDetail_leq: string + + """""" + errorDetail_like: string + + """""" + errorDetail_lt: string + + """""" + errorDetail_neq: string + + """""" + errorDetail_notin: [string!] + + """""" + errorDetail_notlike: string + + """""" + eventType: string + + """""" + eventType_geq: string + + """""" + eventType_gt: string + + """""" + eventType_in: [string!] + + """""" + eventType_leq: string + + """""" + eventType_like: string + + """""" + eventType_lt: string + + """""" + eventType_neq: string + + """""" + eventType_notin: [string!] + + """""" + eventType_notlike: string + + """""" + from: string + + """""" + from_geq: string + + """""" + from_gt: string + + """""" + from_in: [string!] + + """""" + from_leq: string + + """""" + from_like: string + + """""" + from_lt: string + + """""" + from_neq: string + + """""" + from_notin: [string!] + + """""" + from_notlike: string + + """""" + isNDR: uint8 + + """""" + isNDR_geq: uint8 + + """""" + isNDR_gt: uint8 + + """""" + isNDR_in: bytes + + """""" + isNDR_leq: uint8 + + """""" + isNDR_lt: uint8 + + """""" + isNDR_neq: uint8 + + """""" + isNDR_notin: bytes + + """""" + isSpam: uint8 + + """""" + isSpam_geq: uint8 + + """""" + isSpam_gt: uint8 + + """""" + isSpam_in: bytes + + """""" + isSpam_leq: uint8 + + """""" + isSpam_lt: uint8 + + """""" + isSpam_neq: uint8 + + """""" + isSpam_notin: bytes + + """""" + messageId: string + + """""" + messageId_geq: string + + """""" + messageId_gt: string + + """""" + messageId_in: [string!] + + """""" + messageId_leq: string + + """""" + messageId_like: string + + """""" + messageId_lt: string + + """""" + messageId_neq: string + + """""" + messageId_notin: [string!] + + """""" + messageId_notlike: string + + """""" + ruleMatched: string + + """""" + ruleMatched_geq: string + + """""" + ruleMatched_gt: string + + """""" + ruleMatched_in: [string!] + + """""" + ruleMatched_leq: string + + """""" + ruleMatched_like: string + + """""" + ruleMatched_lt: string + + """""" + ruleMatched_neq: string + + """""" + ruleMatched_notin: [string!] + + """""" + ruleMatched_notlike: string + + """""" + sampleInterval: uint32 + + """""" + sampleInterval_geq: uint32 + + """""" + sampleInterval_gt: uint32 + + """""" + sampleInterval_in: [uint32!] + + """""" + sampleInterval_leq: uint32 + + """""" + sampleInterval_lt: uint32 + + """""" + sampleInterval_neq: uint32 + + """""" + sampleInterval_notin: [uint32!] + + """""" + sessionId: string + + """""" + sessionId_geq: string + + """""" + sessionId_gt: string + + """""" + sessionId_in: [string!] + + """""" + sessionId_leq: string + + """""" + sessionId_like: string + + """""" + sessionId_lt: string + + """""" + sessionId_neq: string + + """""" + sessionId_notin: [string!] + + """""" + sessionId_notlike: string + + """""" + spamScore: uint32 + + """""" + spamScore_geq: uint32 + + """""" + spamScore_gt: uint32 + + """""" + spamScore_in: [uint32!] + + """""" + spamScore_leq: uint32 + + """""" + spamScore_lt: uint32 + + """""" + spamScore_neq: uint32 + + """""" + spamScore_notin: [uint32!] + + """""" + spamThreshold: uint32 + + """""" + spamThreshold_geq: uint32 + + """""" + spamThreshold_gt: uint32 + + """""" + spamThreshold_in: [uint32!] + + """""" + spamThreshold_leq: uint32 + + """""" + spamThreshold_lt: uint32 + + """""" + spamThreshold_neq: uint32 + + """""" + spamThreshold_notin: [uint32!] + + """""" + spf: string + + """""" + spf_geq: string + + """""" + spf_gt: string + + """""" + spf_in: [string!] + + """""" + spf_leq: string + + """""" + spf_like: string + + """""" + spf_lt: string + + """""" + spf_neq: string + + """""" + spf_notin: [string!] + + """""" + spf_notlike: string + + """""" + status: string + + """""" + status_geq: string + + """""" + status_gt: string + + """""" + status_in: [string!] + + """""" + status_leq: string + + """""" + status_like: string + + """""" + status_lt: string + + """""" + status_neq: string + + """""" + status_notin: [string!] + + """""" + status_notlike: string + + """""" + subject: string + + """""" + subject_geq: string + + """""" + subject_gt: string + + """""" + subject_in: [string!] + + """""" + subject_leq: string + + """""" + subject_like: string + + """""" + subject_lt: string + + """""" + subject_neq: string + + """""" + subject_notin: [string!] + + """""" + subject_notlike: string + + """""" + to: string + + """""" + to_geq: string + + """""" + to_gt: string + + """""" + to_in: [string!] + + """""" + to_leq: string + + """""" + to_like: string + + """""" + to_lt: string + + """""" + to_neq: string + + """""" + to_notin: [string!] + + """""" + to_notlike: string +} + +"""Beta. Aggregated email routing logs with adaptive sampling""" +type ZoneEmailRoutingAdaptiveGroups { + """ALPHA - DO NOT USE""" + confidence(level: float64!): ZoneEmailRoutingAdaptiveGroupsConfidence! + + """Number of emails processed""" + count: uint64! + + """List of dimensions to group by""" + dimensions: ZoneEmailRoutingAdaptiveGroupsDimensions +} + +"""""" +type ZoneEmailRoutingAdaptiveGroupsConfidence { + """Number of emails processed, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! +} + +"""""" +type ZoneEmailRoutingAdaptiveGroupsDimensions { + """Action routing rule apply into source email""" + action: string! + + """ARC check status of the source email""" + arc: string! + + """The date the source email was received""" + date: Date! + + """ + The date and time the source email was received truncated to fifteen minutes + """ + datetimeFifteenMinutes: Time! + + """ + The date and time the source email was received truncated to five minutes + """ + datetimeFiveMinutes: Time! + + """The date and time the source email was received truncated to the hour""" + datetimeHour: Time! + + """ + The date and time the source email was received truncated to the minute + """ + datetimeMinute: Time! + + """DKIM check status of the source email""" + dkim: string! + + """DMARC check status of the source email""" + dmarc: string! + + """Origin of email (incoming|forward|reply|newEmail)""" + eventType: string! + + """Is this event related to a NDR (bounce) email?""" + isNDR: uint8! + + """Source email is spam""" + isSpam: uint8! + + """The UUID of the routing rule matched by the source email""" + ruleMatched: string! + + """ABR sample interval""" + sampleInterval: uint32! + + """Spam score value""" + spamScore: uint32! + + """Spam threshold value""" + spamThreshold: uint32! + + """SPF check status of the source email""" + spf: string! + + """The resulting outcome (action) for the email""" + status: string! +} + +"""""" +input ZoneEmailRoutingAdaptiveGroupsFilter_InputObject { + """""" + AND: [ZoneEmailRoutingAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [ZoneEmailRoutingAdaptiveGroupsFilter_InputObject!] + + """""" + action: string + + """""" + action_geq: string + + """""" + action_gt: string + + """""" + action_in: [string!] + + """""" + action_leq: string + + """""" + action_like: string + + """""" + action_lt: string + + """""" + action_neq: string + + """""" + action_notin: [string!] + + """""" + action_notlike: string + + """""" + arc: string + + """""" + arc_geq: string + + """""" + arc_gt: string + + """""" + arc_in: [string!] + + """""" + arc_leq: string + + """""" + arc_like: string + + """""" + arc_lt: string + + """""" + arc_neq: string + + """""" + arc_notin: [string!] + + """""" + arc_notlike: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + dkim: string + + """""" + dkim_geq: string + + """""" + dkim_gt: string + + """""" + dkim_in: [string!] + + """""" + dkim_leq: string + + """""" + dkim_like: string + + """""" + dkim_lt: string + + """""" + dkim_neq: string + + """""" + dkim_notin: [string!] + + """""" + dkim_notlike: string + + """""" + dmarc: string + + """""" + dmarc_geq: string + + """""" + dmarc_gt: string + + """""" + dmarc_in: [string!] + + """""" + dmarc_leq: string + + """""" + dmarc_like: string + + """""" + dmarc_lt: string + + """""" + dmarc_neq: string + + """""" + dmarc_notin: [string!] + + """""" + dmarc_notlike: string + + """""" + eventType: string + + """""" + eventType_geq: string + + """""" + eventType_gt: string + + """""" + eventType_in: [string!] + + """""" + eventType_leq: string + + """""" + eventType_like: string + + """""" + eventType_lt: string + + """""" + eventType_neq: string + + """""" + eventType_notin: [string!] + + """""" + eventType_notlike: string + + """""" + isNDR: uint8 + + """""" + isNDR_geq: uint8 + + """""" + isNDR_gt: uint8 + + """""" + isNDR_in: bytes + + """""" + isNDR_leq: uint8 + + """""" + isNDR_lt: uint8 + + """""" + isNDR_neq: uint8 + + """""" + isNDR_notin: bytes + + """""" + isSpam: uint8 + + """""" + isSpam_geq: uint8 + + """""" + isSpam_gt: uint8 + + """""" + isSpam_in: bytes + + """""" + isSpam_leq: uint8 + + """""" + isSpam_lt: uint8 + + """""" + isSpam_neq: uint8 + + """""" + isSpam_notin: bytes + + """""" + ruleMatched: string + + """""" + ruleMatched_geq: string + + """""" + ruleMatched_gt: string + + """""" + ruleMatched_in: [string!] + + """""" + ruleMatched_leq: string + + """""" + ruleMatched_like: string + + """""" + ruleMatched_lt: string + + """""" + ruleMatched_neq: string + + """""" + ruleMatched_notin: [string!] + + """""" + ruleMatched_notlike: string + + """""" + sampleInterval: uint32 + + """""" + sampleInterval_geq: uint32 + + """""" + sampleInterval_gt: uint32 + + """""" + sampleInterval_in: [uint32!] + + """""" + sampleInterval_leq: uint32 + + """""" + sampleInterval_lt: uint32 + + """""" + sampleInterval_neq: uint32 + + """""" + sampleInterval_notin: [uint32!] + + """""" + spamScore: uint32 + + """""" + spamScore_geq: uint32 + + """""" + spamScore_gt: uint32 + + """""" + spamScore_in: [uint32!] + + """""" + spamScore_leq: uint32 + + """""" + spamScore_lt: uint32 + + """""" + spamScore_neq: uint32 + + """""" + spamScore_notin: [uint32!] + + """""" + spamThreshold: uint32 + + """""" + spamThreshold_geq: uint32 + + """""" + spamThreshold_gt: uint32 + + """""" + spamThreshold_in: [uint32!] + + """""" + spamThreshold_leq: uint32 + + """""" + spamThreshold_lt: uint32 + + """""" + spamThreshold_neq: uint32 + + """""" + spamThreshold_notin: [uint32!] + + """""" + spf: string + + """""" + spf_geq: string + + """""" + spf_gt: string + + """""" + spf_in: [string!] + + """""" + spf_leq: string + + """""" + spf_like: string + + """""" + spf_lt: string + + """""" + spf_neq: string + + """""" + spf_notin: [string!] + + """""" + spf_notlike: string + + """""" + status: string + + """""" + status_geq: string + + """""" + status_gt: string + + """""" + status_in: [string!] + + """""" + status_leq: string + + """""" + status_like: string + + """""" + status_lt: string + + """""" + status_neq: string + + """""" + status_notin: [string!] + + """""" + status_notlike: string +} + +"""""" +enum ZoneEmailRoutingAdaptiveGroupsOrderBy { + """action ascending""" + action_ASC + + """action descending""" + action_DESC + + """arc ascending""" + arc_ASC + + """arc descending""" + arc_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """dkim ascending""" + dkim_ASC + + """dkim descending""" + dkim_DESC + + """dmarc ascending""" + dmarc_ASC + + """dmarc descending""" + dmarc_DESC + + """eventType ascending""" + eventType_ASC + + """eventType descending""" + eventType_DESC + + """isEmailSending ascending""" + isEmailSending_ASC + + """isEmailSending descending""" + isEmailSending_DESC + + """isNDR ascending""" + isNDR_ASC + + """isNDR descending""" + isNDR_DESC + + """isSpam ascending""" + isSpam_ASC + + """isSpam descending""" + isSpam_DESC + + """ruleMatched ascending""" + ruleMatched_ASC + + """ruleMatched descending""" + ruleMatched_DESC + + """sampleInterval ascending""" + sampleInterval_ASC + + """sampleInterval descending""" + sampleInterval_DESC + + """spamScore ascending""" + spamScore_ASC + + """spamScore descending""" + spamScore_DESC + + """spamThreshold ascending""" + spamThreshold_ASC + + """spamThreshold descending""" + spamThreshold_DESC + + """spf ascending""" + spf_ASC + + """spf descending""" + spf_DESC + + """status ascending""" + status_ASC + + """status descending""" + status_DESC +} + +"""""" +enum ZoneEmailRoutingAdaptiveOrderBy { + """action ascending""" + action_ASC + + """action descending""" + action_DESC + + """arc ascending""" + arc_ASC + + """arc descending""" + arc_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """dkim ascending""" + dkim_ASC + + """dkim descending""" + dkim_DESC + + """dmarc ascending""" + dmarc_ASC + + """dmarc descending""" + dmarc_DESC + + """errorDetail ascending""" + errorDetail_ASC + + """errorDetail descending""" + errorDetail_DESC + + """eventType ascending""" + eventType_ASC + + """eventType descending""" + eventType_DESC + + """from ascending""" + from_ASC + + """from descending""" + from_DESC + + """isEmailSending ascending""" + isEmailSending_ASC + + """isEmailSending descending""" + isEmailSending_DESC + + """isNDR ascending""" + isNDR_ASC + + """isNDR descending""" + isNDR_DESC + + """isSpam ascending""" + isSpam_ASC + + """isSpam descending""" + isSpam_DESC + + """messageId ascending""" + messageId_ASC + + """messageId descending""" + messageId_DESC + + """ruleMatched ascending""" + ruleMatched_ASC + + """ruleMatched descending""" + ruleMatched_DESC + + """sampleInterval ascending""" + sampleInterval_ASC + + """sampleInterval descending""" + sampleInterval_DESC + + """sessionId ascending""" + sessionId_ASC + + """sessionId descending""" + sessionId_DESC + + """spamScore ascending""" + spamScore_ASC + + """spamScore descending""" + spamScore_DESC + + """spamThreshold ascending""" + spamThreshold_ASC + + """spamThreshold descending""" + spamThreshold_DESC + + """spf ascending""" + spf_ASC + + """spf descending""" + spf_DESC + + """status ascending""" + status_ASC + + """status descending""" + status_DESC + + """subject ascending""" + subject_ASC + + """subject descending""" + subject_DESC + + """to ascending""" + to_ASC + + """to descending""" + to_DESC +} + +"""Raw email sending logs with adaptive sampling""" +type ZoneEmailSendingAdaptive { + """ARC check status of the source email""" + arc: string! + + """The date and time the source email was received""" + datetime: Time! + + """DKIM check status of the source email""" + dkim: string! + + """DMARC check status of the source email""" + dmarc: string! + + """Detailed error message (if any)""" + errorDetail: string! + + """Origin of email (incoming|forward|reply|newEmail)""" + eventType: string! + + """The sender email address of the source email""" + from: string! + + """Is this event related to a NDR (bounce) email?""" + isNDR: uint8! + + """Source email is spam""" + isSpam: uint8! + + """The Message-ID header of the source email (if present)""" + messageId: string! + + """ABR sample interval""" + sampleInterval: uint32! + + """ + Unique identifier for the email log entry (note: retries for the same email may result in multiple log entries) + """ + sessionId: string! + + """Spam score value""" + spamScore: uint32! + + """Spam threshold value""" + spamThreshold: uint32! + + """SPF check status of the source email""" + spf: string! + + """The resulting outcome (action) for the email""" + status: string! + + """The subject of the source email""" + subject: string! + + """The recipient email address of the source email""" + to: string! +} + +"""""" +input ZoneEmailSendingAdaptiveFilter_InputObject { + """""" + AND: [ZoneEmailSendingAdaptiveFilter_InputObject!] + + """""" + OR: [ZoneEmailSendingAdaptiveFilter_InputObject!] + + """""" + arc: string + + """""" + arc_geq: string + + """""" + arc_gt: string + + """""" + arc_in: [string!] + + """""" + arc_leq: string + + """""" + arc_like: string + + """""" + arc_lt: string + + """""" + arc_neq: string + + """""" + arc_notin: [string!] + + """""" + arc_notlike: string + + """""" + datetime: Time + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + dkim: string + + """""" + dkim_geq: string + + """""" + dkim_gt: string + + """""" + dkim_in: [string!] + + """""" + dkim_leq: string + + """""" + dkim_like: string + + """""" + dkim_lt: string + + """""" + dkim_neq: string + + """""" + dkim_notin: [string!] + + """""" + dkim_notlike: string + + """""" + dmarc: string + + """""" + dmarc_geq: string + + """""" + dmarc_gt: string + + """""" + dmarc_in: [string!] + + """""" + dmarc_leq: string + + """""" + dmarc_like: string + + """""" + dmarc_lt: string + + """""" + dmarc_neq: string + + """""" + dmarc_notin: [string!] + + """""" + dmarc_notlike: string + + """""" + errorDetail: string + + """""" + errorDetail_geq: string + + """""" + errorDetail_gt: string + + """""" + errorDetail_in: [string!] + + """""" + errorDetail_leq: string + + """""" + errorDetail_like: string + + """""" + errorDetail_lt: string + + """""" + errorDetail_neq: string + + """""" + errorDetail_notin: [string!] + + """""" + errorDetail_notlike: string + + """""" + eventType: string + + """""" + eventType_geq: string + + """""" + eventType_gt: string + + """""" + eventType_in: [string!] + + """""" + eventType_leq: string + + """""" + eventType_like: string + + """""" + eventType_lt: string + + """""" + eventType_neq: string + + """""" + eventType_notin: [string!] + + """""" + eventType_notlike: string + + """""" + from: string + + """""" + from_geq: string + + """""" + from_gt: string + + """""" + from_in: [string!] + + """""" + from_leq: string + + """""" + from_like: string + + """""" + from_lt: string + + """""" + from_neq: string + + """""" + from_notin: [string!] + + """""" + from_notlike: string + + """""" + isNDR: uint8 + + """""" + isNDR_geq: uint8 + + """""" + isNDR_gt: uint8 + + """""" + isNDR_in: bytes + + """""" + isNDR_leq: uint8 + + """""" + isNDR_lt: uint8 + + """""" + isNDR_neq: uint8 + + """""" + isNDR_notin: bytes + + """""" + isSpam: uint8 + + """""" + isSpam_geq: uint8 + + """""" + isSpam_gt: uint8 + + """""" + isSpam_in: bytes + + """""" + isSpam_leq: uint8 + + """""" + isSpam_lt: uint8 + + """""" + isSpam_neq: uint8 + + """""" + isSpam_notin: bytes + + """""" + messageId: string + + """""" + messageId_geq: string + + """""" + messageId_gt: string + + """""" + messageId_in: [string!] + + """""" + messageId_leq: string + + """""" + messageId_like: string + + """""" + messageId_lt: string + + """""" + messageId_neq: string + + """""" + messageId_notin: [string!] + + """""" + messageId_notlike: string + + """""" + sampleInterval: uint32 + + """""" + sampleInterval_geq: uint32 + + """""" + sampleInterval_gt: uint32 + + """""" + sampleInterval_in: [uint32!] + + """""" + sampleInterval_leq: uint32 + + """""" + sampleInterval_lt: uint32 + + """""" + sampleInterval_neq: uint32 + + """""" + sampleInterval_notin: [uint32!] + + """""" + sessionId: string + + """""" + sessionId_geq: string + + """""" + sessionId_gt: string + + """""" + sessionId_in: [string!] + + """""" + sessionId_leq: string + + """""" + sessionId_like: string + + """""" + sessionId_lt: string + + """""" + sessionId_neq: string + + """""" + sessionId_notin: [string!] + + """""" + sessionId_notlike: string + + """""" + spamScore: uint32 + + """""" + spamScore_geq: uint32 + + """""" + spamScore_gt: uint32 + + """""" + spamScore_in: [uint32!] + + """""" + spamScore_leq: uint32 + + """""" + spamScore_lt: uint32 + + """""" + spamScore_neq: uint32 + + """""" + spamScore_notin: [uint32!] + + """""" + spamThreshold: uint32 + + """""" + spamThreshold_geq: uint32 + + """""" + spamThreshold_gt: uint32 + + """""" + spamThreshold_in: [uint32!] + + """""" + spamThreshold_leq: uint32 + + """""" + spamThreshold_lt: uint32 + + """""" + spamThreshold_neq: uint32 + + """""" + spamThreshold_notin: [uint32!] + + """""" + spf: string + + """""" + spf_geq: string + + """""" + spf_gt: string + + """""" + spf_in: [string!] + + """""" + spf_leq: string + + """""" + spf_like: string + + """""" + spf_lt: string + + """""" + spf_neq: string + + """""" + spf_notin: [string!] + + """""" + spf_notlike: string + + """""" + status: string + + """""" + status_geq: string + + """""" + status_gt: string + + """""" + status_in: [string!] + + """""" + status_leq: string + + """""" + status_like: string + + """""" + status_lt: string + + """""" + status_neq: string + + """""" + status_notin: [string!] + + """""" + status_notlike: string + + """""" + subject: string + + """""" + subject_geq: string + + """""" + subject_gt: string + + """""" + subject_in: [string!] + + """""" + subject_leq: string + + """""" + subject_like: string + + """""" + subject_lt: string + + """""" + subject_neq: string + + """""" + subject_notin: [string!] + + """""" + subject_notlike: string + + """""" + to: string + + """""" + to_geq: string + + """""" + to_gt: string + + """""" + to_in: [string!] + + """""" + to_leq: string + + """""" + to_like: string + + """""" + to_lt: string + + """""" + to_neq: string + + """""" + to_notin: [string!] + + """""" + to_notlike: string +} + +"""Aggregated email sending logs with adaptive sampling""" +type ZoneEmailSendingAdaptiveGroups { + """ALPHA - DO NOT USE""" + confidence(level: float64!): ZoneEmailSendingAdaptiveGroupsConfidence! + + """Number of emails processed""" + count: uint64! + + """List of dimensions to group by""" + dimensions: ZoneEmailSendingAdaptiveGroupsDimensions +} + +"""""" +type ZoneEmailSendingAdaptiveGroupsConfidence { + """Number of emails processed, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! +} + +"""""" +type ZoneEmailSendingAdaptiveGroupsDimensions { + """ARC check status of the source email""" + arc: string! + + """The date the source email was received""" + date: Date! + + """ + The date and time the source email was received truncated to fifteen minutes + """ + datetimeFifteenMinutes: Time! + + """ + The date and time the source email was received truncated to five minutes + """ + datetimeFiveMinutes: Time! + + """The date and time the source email was received truncated to the hour""" + datetimeHour: Time! + + """ + The date and time the source email was received truncated to the minute + """ + datetimeMinute: Time! + + """DKIM check status of the source email""" + dkim: string! + + """DMARC check status of the source email""" + dmarc: string! + + """Origin of email (incoming|forward|reply|newEmail)""" + eventType: string! + + """Is this event related to a NDR (bounce) email?""" + isNDR: uint8! + + """Source email is spam""" + isSpam: uint8! + + """ABR sample interval""" + sampleInterval: uint32! + + """Spam score value""" + spamScore: uint32! + + """Spam threshold value""" + spamThreshold: uint32! + + """SPF check status of the source email""" + spf: string! + + """The resulting outcome (action) for the email""" + status: string! +} + +"""""" +input ZoneEmailSendingAdaptiveGroupsFilter_InputObject { + """""" + AND: [ZoneEmailSendingAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [ZoneEmailSendingAdaptiveGroupsFilter_InputObject!] + + """""" + arc: string + + """""" + arc_geq: string + + """""" + arc_gt: string + + """""" + arc_in: [string!] + + """""" + arc_leq: string + + """""" + arc_like: string + + """""" + arc_lt: string + + """""" + arc_neq: string + + """""" + arc_notin: [string!] + + """""" + arc_notlike: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + dkim: string + + """""" + dkim_geq: string + + """""" + dkim_gt: string + + """""" + dkim_in: [string!] + + """""" + dkim_leq: string + + """""" + dkim_like: string + + """""" + dkim_lt: string + + """""" + dkim_neq: string + + """""" + dkim_notin: [string!] + + """""" + dkim_notlike: string + + """""" + dmarc: string + + """""" + dmarc_geq: string + + """""" + dmarc_gt: string + + """""" + dmarc_in: [string!] + + """""" + dmarc_leq: string + + """""" + dmarc_like: string + + """""" + dmarc_lt: string + + """""" + dmarc_neq: string + + """""" + dmarc_notin: [string!] + + """""" + dmarc_notlike: string + + """""" + eventType: string + + """""" + eventType_geq: string + + """""" + eventType_gt: string + + """""" + eventType_in: [string!] + + """""" + eventType_leq: string + + """""" + eventType_like: string + + """""" + eventType_lt: string + + """""" + eventType_neq: string + + """""" + eventType_notin: [string!] + + """""" + eventType_notlike: string + + """""" + isNDR: uint8 + + """""" + isNDR_geq: uint8 + + """""" + isNDR_gt: uint8 + + """""" + isNDR_in: bytes + + """""" + isNDR_leq: uint8 + + """""" + isNDR_lt: uint8 + + """""" + isNDR_neq: uint8 + + """""" + isNDR_notin: bytes + + """""" + isSpam: uint8 + + """""" + isSpam_geq: uint8 + + """""" + isSpam_gt: uint8 + + """""" + isSpam_in: bytes + + """""" + isSpam_leq: uint8 + + """""" + isSpam_lt: uint8 + + """""" + isSpam_neq: uint8 + + """""" + isSpam_notin: bytes + + """""" + sampleInterval: uint32 + + """""" + sampleInterval_geq: uint32 + + """""" + sampleInterval_gt: uint32 + + """""" + sampleInterval_in: [uint32!] + + """""" + sampleInterval_leq: uint32 + + """""" + sampleInterval_lt: uint32 + + """""" + sampleInterval_neq: uint32 + + """""" + sampleInterval_notin: [uint32!] + + """""" + spamScore: uint32 + + """""" + spamScore_geq: uint32 + + """""" + spamScore_gt: uint32 + + """""" + spamScore_in: [uint32!] + + """""" + spamScore_leq: uint32 + + """""" + spamScore_lt: uint32 + + """""" + spamScore_neq: uint32 + + """""" + spamScore_notin: [uint32!] + + """""" + spamThreshold: uint32 + + """""" + spamThreshold_geq: uint32 + + """""" + spamThreshold_gt: uint32 + + """""" + spamThreshold_in: [uint32!] + + """""" + spamThreshold_leq: uint32 + + """""" + spamThreshold_lt: uint32 + + """""" + spamThreshold_neq: uint32 + + """""" + spamThreshold_notin: [uint32!] + + """""" + spf: string + + """""" + spf_geq: string + + """""" + spf_gt: string + + """""" + spf_in: [string!] + + """""" + spf_leq: string + + """""" + spf_like: string + + """""" + spf_lt: string + + """""" + spf_neq: string + + """""" + spf_notin: [string!] + + """""" + spf_notlike: string + + """""" + status: string + + """""" + status_geq: string + + """""" + status_gt: string + + """""" + status_in: [string!] + + """""" + status_leq: string + + """""" + status_like: string + + """""" + status_lt: string + + """""" + status_neq: string + + """""" + status_notin: [string!] + + """""" + status_notlike: string +} + +"""""" +enum ZoneEmailSendingAdaptiveGroupsOrderBy { + """arc ascending""" + arc_ASC + + """arc descending""" + arc_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """dkim ascending""" + dkim_ASC + + """dkim descending""" + dkim_DESC + + """dmarc ascending""" + dmarc_ASC + + """dmarc descending""" + dmarc_DESC + + """eventType ascending""" + eventType_ASC + + """eventType descending""" + eventType_DESC + + """isEmailSending ascending""" + isEmailSending_ASC + + """isEmailSending descending""" + isEmailSending_DESC + + """isNDR ascending""" + isNDR_ASC + + """isNDR descending""" + isNDR_DESC + + """isSpam ascending""" + isSpam_ASC + + """isSpam descending""" + isSpam_DESC + + """sampleInterval ascending""" + sampleInterval_ASC + + """sampleInterval descending""" + sampleInterval_DESC + + """spamScore ascending""" + spamScore_ASC + + """spamScore descending""" + spamScore_DESC + + """spamThreshold ascending""" + spamThreshold_ASC + + """spamThreshold descending""" + spamThreshold_DESC + + """spf ascending""" + spf_ASC + + """spf descending""" + spf_DESC + + """status ascending""" + status_ASC + + """status descending""" + status_DESC +} + +"""""" +enum ZoneEmailSendingAdaptiveOrderBy { + """arc ascending""" + arc_ASC + + """arc descending""" + arc_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """dkim ascending""" + dkim_ASC + + """dkim descending""" + dkim_DESC + + """dmarc ascending""" + dmarc_ASC + + """dmarc descending""" + dmarc_DESC + + """errorDetail ascending""" + errorDetail_ASC + + """errorDetail descending""" + errorDetail_DESC + + """eventType ascending""" + eventType_ASC + + """eventType descending""" + eventType_DESC + + """from ascending""" + from_ASC + + """from descending""" + from_DESC + + """isEmailSending ascending""" + isEmailSending_ASC + + """isEmailSending descending""" + isEmailSending_DESC + + """isNDR ascending""" + isNDR_ASC + + """isNDR descending""" + isNDR_DESC + + """isSpam ascending""" + isSpam_ASC + + """isSpam descending""" + isSpam_DESC + + """messageId ascending""" + messageId_ASC + + """messageId descending""" + messageId_DESC + + """sampleInterval ascending""" + sampleInterval_ASC + + """sampleInterval descending""" + sampleInterval_DESC + + """sessionId ascending""" + sessionId_ASC + + """sessionId descending""" + sessionId_DESC + + """spamScore ascending""" + spamScore_ASC + + """spamScore descending""" + spamScore_DESC + + """spamThreshold ascending""" + spamThreshold_ASC + + """spamThreshold descending""" + spamThreshold_DESC + + """spf ascending""" + spf_ASC + + """spf descending""" + spf_DESC + + """status ascending""" + status_ASC + + """status descending""" + status_DESC + + """subject ascending""" + subject_ASC + + """subject descending""" + subject_DESC + + """to ascending""" + to_ASC + + """to descending""" + to_DESC +} + +"""""" +input ZoneFilter_InputObject { + """""" + zoneTag: string + + """""" + zoneTag_gt: string + + """""" + zoneTag_in: [string!] +} + +"""Raw Firewall events with adaptive sampling""" +type ZoneFirewallEventsAdaptive { + """ + The code of the first-class action the Cloudflare Firewall took on this request + """ + action: string! + + """API Gateway endpoint matched at the edge""" + apiGatewayMatchedEndpoint: string! + + """API Gateway host matched at the edge""" + apiGatewayMatchedHost: string! + + """ + 1-D array of the categories associated with the rules ref in attackSignatureRefs + """ + attackSignatureCategories: [string!]! + + """ + cf.waf.attack_signature.refs Ruleset field truncated to maximum 10 elements. + """ + attackSignatureRefs: [string!]! + + """Array of detections ids that matched this request""" + botDetectionIds: [uint32!]! + + """Array of detections tags that matched this request""" + botDetectionTags: [string!]! + + """The final score originated from bot management detections.""" + botScore: uint8! + + """Name of the source detection which generated the bot management score.""" + botScoreSrcName: string! + + """The ASN of the visitor as string""" + clientASNDescription: string! + + """The ASN number of the visitor""" + clientAsn: string! + + """Country from which request originated""" + clientCountryName: string! + + """The visitor's IP address (IPv4 or IPv6)""" + clientIP: string! + + """ + The classification of the visitor's IP address, possible values are: unknown | clean | badHost | searchEngine | allowlist | greylist | monitoringService | securityScanner | noRecord | scan | backupService | mobilePlatform | tor + """ + clientIPClass: string! + + """The referer host""" + clientRefererHost: string! + + """The referer path requested by visitor""" + clientRefererPath: string! + + """The referer query-string was requested by the visitor""" + clientRefererQuery: string! + + """The referer url scheme requested by the visitor""" + clientRefererScheme: string! + + """The HTTP hostname requested by the visitor""" + clientRequestHTTPHost: string! + + """The HTTP method used by the visitor""" + clientRequestHTTPMethodName: string! + + """The version of HTTP protocol requested by the visitor""" + clientRequestHTTPProtocol: string! + + """The path requested by visitor""" + clientRequestPath: string! + + """The query-string was requested by the visitor""" + clientRequestQuery: string! + + """The url scheme requested by the visitor""" + clientRequestScheme: string! + + """ + 1 if not all contents for this request where successfully scanned, else 0 + """ + contentScanHasFailed: uint8! + + """Number of scannable content objects that are malicious""" + contentScanNumMaliciousObj: uint8! + + """Number of scannable content objects""" + contentScanNumObj: uint8! + + """Array of scan results in order of detection""" + contentScanObjResults: [string!]! + + """Array of scan sizes in order of detection""" + contentScanObjSizes: [uint32!]! + + """Array of content types in order of detection""" + contentScanObjTypes: [string!]! + + """The date the event occurred at the edge""" + date: Date! + + """The date and time the event occurred at the edge""" + datetime: Time! + + """ + The date and time the event occurred at the edge truncated to a multiple of 15 minutes + """ + datetimeFifteenMinutes: Time! + + """ + The date and time the event occurred at the edge truncated to a multiple of 5 minutes + """ + datetimeFiveMinutes: Time! + + """The date and time the event occurred at the edge truncated to hours""" + datetimeHour: Time! + + """ + The date and time the event occurred at the edge truncated to the minute + """ + datetimeMinute: Time! + + """The description of the rule triggered by this request""" + description: string! + + """The airport code of the Cloudflare datacenter that served this request""" + edgeColoName: string! + + """HTTP response status code returned to browser""" + edgeResponseStatus: uint16! + + """ + Whether firewallForAiPiiCategories is non empty. 0 if empty, 1 if not empty. + """ + firewallForAiAnyPiiCategory: int8! + + """Corresponds to the Ruleset field cf.llm.prompt.injection_score.""" + firewallForAiInjectionScore: int8! + + """Corresponds to the Ruleset field cf.llm.prompt.pii_categories.""" + firewallForAiPiiCategories: [string!]! + + """Corresponds to the Ruleset field cf.llm.prompt.unsafe_data_categories.""" + firewallForAiUnsafeTopicCategories: [string!]! + + """ + The primary attack or use case detected in the request by Fraud detections + """ + fraudAttack: string! + + """Array of fraud detections ids that matched this request""" + fraudDetectionIds: [uint32!]! + + """Array of fraud detections tags that matched this request""" + fraudDetectionTags: [string!]! + + """Risk of a specific email address in account signup attempts""" + fraudEmailRisk: string! + + """Version associated with HTTP Application""" + httpApplicationVersion: uint64! @deprecated(reason: "Field is replaced with zoneVersion") + + """MD5 hash of the JA3 TLS fingerprint""" + ja3Hash: string! + + """JA4 TLS fingerprint""" + ja4: string! + + """ + Inter-request statistics computed for this JA4 across Cloudflare's entire global edge network + """ + ja4Signals: [ZoneFirewallEventsAdaptiveJa4SignalsElem!]! + + """Whether the request passed background JavaScript Detection""" + jsDetectionPassed: string! + + """The kind of event, currently only possible values are: firewall""" + kind: string! + + """The distinct result of checking for leaked credentials""" + leakedCredentialCheckResult: string! + + """Rules match index in the chain""" + matchIndex: uint16! + + """ + Additional product-specific information. Metadata is organized in key:value pairs + """ + metadata: [ZoneFirewallEventsAdaptiveMetadataElem!]! + + """HTTP origin response status code returned to browser""" + originResponseStatus: uint16! + + """The RayId of the request that issued the challenge/jschallenge""" + originatorRayName: string! + + """The RayId of the request""" + rayName: string! + + """ + The ref-field is a user-defined rule identifier that can be set via the API for some firewall products and allows users to label their rules individually alongside cloudflare provided identifiers (only available to entitled customers) + """ + ref: string! + + """ + The Cloudflare security product-specific RuleId triggered by this request + """ + ruleId: string! + + """ + The Cloudflare security product-specific RulesetId triggered by this request + """ + rulesetId: string! + + """ABR sample interval""" + sampleInterval: uint32! + + """The Cloudflare security product triggered by this request""" + source: string! + + """visitor's user-agent string""" + userAgent: string! + + """The category of verified bot""" + verifiedBotCategory: string! + + """Beta. Overall request score generated by the WAF detection module""" + wafAttackScore: uint8! + + """ + Beta. Overall request score class generated by the WAF detection module + """ + wafAttackScoreClass: string! + + """Beta. Overall request score generated by the WAF detection module""" + wafMlAttackScore: uint8! @deprecated(reason: "Field is replaced with wafAttackScore") + + """Beta. WAF ML score for an SQLi attack""" + wafMlSqliAttackScore: uint8! @deprecated(reason: "Field is replaced with wafSqliAttackScore") + + """Beta. WAF ML score for an XSS attack""" + wafMlXssAttackScore: uint8! @deprecated(reason: "Field is replaced with wafXssAttackScore") + + """Beta. WAF score for a RCE attack""" + wafRceAttackScore: uint8! + + """Beta. WAF score for a SQLi attack""" + wafSqliAttackScore: uint8! + + """Beta. WAF score for a XSS attack""" + wafXssAttackScore: uint8! + + """The version of a zone""" + zoneVersion: uint64! +} + +"""Aggregated Firewall events with adaptive sampling grouped by time""" +type ZoneFirewallEventsAdaptiveByTimeGroups { + """The average value used for sample interval""" + avg: ZoneFirewallEventsAdaptiveByTimeGroupsAvg + + """ALPHA - DO NOT USE""" + confidence(level: float64!): ZoneFirewallEventsAdaptiveByTimeGroupsConfidence! + + """The sum of sample interval values""" + count: uint64! + + """List of dimensions to group by""" + dimensions: ZoneFirewallEventsAdaptiveByTimeGroupsDimensions + + """""" + sum: ZoneFirewallEventsAdaptiveByTimeGroupsSum +} + +"""""" +type ZoneFirewallEventsAdaptiveByTimeGroupsAvg { + """""" + sampleInterval: float64! +} + +"""""" +type ZoneFirewallEventsAdaptiveByTimeGroupsConfidence { + """The sum of sample interval values, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! +} + +"""""" +type ZoneFirewallEventsAdaptiveByTimeGroupsDimensions { + """API Gateway endpoint matched at the edge""" + apiGatewayMatchedEndpoint: string! + + """API Gateway host matched at the edge""" + apiGatewayMatchedHost: string! + + """ + 1-D array of the categories associated with the rules ref in attackSignatureRefs + """ + attackSignatureCategories: [string!]! + + """ + cf.waf.attack_signature.refs Ruleset field truncated to maximum 10 elements. + """ + attackSignatureRefs: [string!]! + + """Array of detections ids that matched this request""" + botDetectionIds: [uint32!]! + + """Array of detections tags that matched this request""" + botDetectionTags: [string!]! + + """The final score originated from bot management detections.""" + botScore: uint8! + + """Name of the source detection which generated the bot management score.""" + botScoreSrcName: string! + + """The date the event occurred at the edge""" + date: Date! + + """The date and time the event occurred at the edge""" + datetime: Time! + + """ + The date and time the event occurred at the edge truncated to a multiple of 15 minutes + """ + datetimeFifteenMinutes: Time! + + """ + The date and time the event occurred at the edge truncated to a multiple of 5 minutes + """ + datetimeFiveMinutes: Time! + + """The date and time the event occurred at the edge truncated to hours""" + datetimeHour: Time! + + """ + The date and time the event occurred at the edge truncated to the minute + """ + datetimeMinute: Time! + + """The description of the rule triggered by this request""" + description: string! + + """ + Whether firewallForAiPiiCategories is non empty. 0 if empty, 1 if not empty. + """ + firewallForAiAnyPiiCategory: int8! + + """Corresponds to the Ruleset field cf.llm.prompt.injection_score.""" + firewallForAiInjectionScore: int8! + + """Corresponds to the Ruleset field cf.llm.prompt.pii_categories.""" + firewallForAiPiiCategories: [string!]! + + """Corresponds to the Ruleset field cf.llm.prompt.unsafe_data_categories.""" + firewallForAiUnsafeTopicCategories: [string!]! + + """ + The primary attack or use case detected in the request by Fraud detections + """ + fraudAttack: string! + + """Array of fraud detections ids that matched this request""" + fraudDetectionIds: [uint32!]! + + """Array of fraud detections tags that matched this request""" + fraudDetectionTags: [string!]! + + """Risk of a specific email address in account signup attempts""" + fraudEmailRisk: string! + + """Version associated with HTTP Application""" + httpApplicationVersion: uint64! @deprecated(reason: "Field is replaced with zoneVersion") + + """MD5 hash of the JA3 TLS fingerprint""" + ja3Hash: string! + + """JA4 TLS fingerprint""" + ja4: string! + + """Whether the request passed background JavaScript Detection""" + jsDetectionPassed: string! + + """The category of verified bot""" + verifiedBotCategory: string! + + """Beta. Overall request score generated by the WAF detection module""" + wafAttackScore: uint8! + + """ + Beta. Overall request score class generated by the WAF detection module + """ + wafAttackScoreClass: string! + + """Beta. Overall request score generated by the WAF ML detection module""" + wafMlAttackScore: uint8! @deprecated(reason: "Field is replaced with wafAttackScore") + + """Beta. WAF ML score for an SQLi attack""" + wafMlSqliAttackScore: uint8! @deprecated(reason: "Field is replaced with wafSqliAttackScore") + + """Beta. WAF ML score for an XSS attack""" + wafMlXssAttackScore: uint8! @deprecated(reason: "Field is replaced with wafXssAttackScore") + + """Beta. WAF score for a RCE attack""" + wafRceAttackScore: uint8! + + """Beta. WAF score for a SQLi attack""" + wafSqliAttackScore: uint8! + + """Beta. WAF score for a XSS attack""" + wafXssAttackScore: uint8! + + """The version of a zone""" + zoneVersion: uint64! +} + +"""""" +input ZoneFirewallEventsAdaptiveByTimeGroupsFilter_InputObject { + """""" + AND: [ZoneFirewallEventsAdaptiveByTimeGroupsFilter_InputObject!] + + """""" + OR: [ZoneFirewallEventsAdaptiveByTimeGroupsFilter_InputObject!] + + """""" + action: string + + """""" + action_geq: string + + """""" + action_gt: string + + """""" + action_in: [string!] + + """""" + action_leq: string + + """""" + action_like: string + + """""" + action_lt: string + + """""" + action_neq: string + + """""" + action_notin: [string!] + + """""" + action_notlike: string + + """""" + apiGatewayMatchedEndpoint: string + + """""" + apiGatewayMatchedEndpoint_geq: string + + """""" + apiGatewayMatchedEndpoint_gt: string + + """""" + apiGatewayMatchedEndpoint_in: [string!] + + """""" + apiGatewayMatchedEndpoint_leq: string + + """""" + apiGatewayMatchedEndpoint_like: string + + """""" + apiGatewayMatchedEndpoint_lt: string + + """""" + apiGatewayMatchedEndpoint_neq: string + + """""" + apiGatewayMatchedEndpoint_notin: [string!] + + """""" + apiGatewayMatchedEndpoint_notlike: string + + """""" + apiGatewayMatchedHost: string + + """""" + apiGatewayMatchedHost_geq: string + + """""" + apiGatewayMatchedHost_gt: string + + """""" + apiGatewayMatchedHost_in: [string!] + + """""" + apiGatewayMatchedHost_leq: string + + """""" + apiGatewayMatchedHost_like: string + + """""" + apiGatewayMatchedHost_lt: string + + """""" + apiGatewayMatchedHost_neq: string + + """""" + apiGatewayMatchedHost_notin: [string!] + + """""" + apiGatewayMatchedHost_notlike: string + + """""" + attackSignatureCategories_has: string + + """""" + attackSignatureCategories_hasall: [string!] + + """""" + attackSignatureCategories_hasany: [string!] + + """""" + attackSignatureCategories_isempty: bool + + """""" + attackSignatureCategories_nothas: string + + """""" + attackSignatureRefs_has: string + + """""" + attackSignatureRefs_hasall: [string!] + + """""" + attackSignatureRefs_hasany: [string!] + + """""" + attackSignatureRefs_isempty: bool + + """""" + attackSignatureRefs_nothas: string + + """""" + botDetectionIds_has: uint32 + + """""" + botDetectionIds_hasall: [uint32!] + + """""" + botDetectionIds_hasany: [uint32!] + + """""" + botDetectionIds_isempty: bool + + """""" + botDetectionIds_nothas: uint32 + + """""" + botDetectionTags_has: string + + """""" + botDetectionTags_hasall: [string!] + + """""" + botDetectionTags_hasany: [string!] + + """""" + botDetectionTags_isempty: bool + + """""" + botDetectionTags_nothas: string + + """""" + botScore: uint8 + + """""" + botScoreSrcName: string + + """""" + botScoreSrcName_geq: string + + """""" + botScoreSrcName_gt: string + + """""" + botScoreSrcName_in: [string!] + + """""" + botScoreSrcName_leq: string + + """""" + botScoreSrcName_like: string + + """""" + botScoreSrcName_lt: string + + """""" + botScoreSrcName_neq: string + + """""" + botScoreSrcName_notin: [string!] + + """""" + botScoreSrcName_notlike: string + + """""" + botScore_geq: uint8 + + """""" + botScore_gt: uint8 + + """""" + botScore_in: bytes + + """""" + botScore_leq: uint8 + + """""" + botScore_lt: uint8 + + """""" + botScore_neq: uint8 + + """""" + botScore_notin: bytes + + """""" + clientASNDescription: string + + """""" + clientASNDescription_geq: string + + """""" + clientASNDescription_gt: string + + """""" + clientASNDescription_in: [string!] + + """""" + clientASNDescription_leq: string + + """""" + clientASNDescription_like: string + + """""" + clientASNDescription_lt: string + + """""" + clientASNDescription_neq: string + + """""" + clientASNDescription_notin: [string!] + + """""" + clientASNDescription_notlike: string + + """""" + clientAsn: string + + """""" + clientAsn_geq: string + + """""" + clientAsn_gt: string + + """""" + clientAsn_in: [string!] + + """""" + clientAsn_leq: string + + """""" + clientAsn_like: string + + """""" + clientAsn_lt: string + + """""" + clientAsn_neq: string + + """""" + clientAsn_notin: [string!] + + """""" + clientAsn_notlike: string + + """""" + clientCountryName: string + + """""" + clientCountryName_geq: string + + """""" + clientCountryName_gt: string + + """""" + clientCountryName_in: [string!] + + """""" + clientCountryName_leq: string + + """""" + clientCountryName_like: string + + """""" + clientCountryName_lt: string + + """""" + clientCountryName_neq: string + + """""" + clientCountryName_notin: [string!] + + """""" + clientCountryName_notlike: string + + """""" + clientIP: string + + """""" + clientIPClass: string + + """""" + clientIPClass_geq: string + + """""" + clientIPClass_gt: string + + """""" + clientIPClass_in: [string!] + + """""" + clientIPClass_leq: string + + """""" + clientIPClass_like: string + + """""" + clientIPClass_lt: string + + """""" + clientIPClass_neq: string + + """""" + clientIPClass_notin: [string!] + + """""" + clientIPClass_notlike: string + + """""" + clientIP_geq: string + + """""" + clientIP_gt: string + + """""" + clientIP_in: [string!] + + """""" + clientIP_leq: string + + """""" + clientIP_like: string + + """""" + clientIP_lt: string + + """""" + clientIP_neq: string + + """""" + clientIP_notin: [string!] + + """""" + clientIP_notlike: string + + """""" + clientRefererHost: string + + """""" + clientRefererHost_geq: string + + """""" + clientRefererHost_gt: string + + """""" + clientRefererHost_in: [string!] + + """""" + clientRefererHost_leq: string + + """""" + clientRefererHost_like: string + + """""" + clientRefererHost_lt: string + + """""" + clientRefererHost_neq: string + + """""" + clientRefererHost_notin: [string!] + + """""" + clientRefererHost_notlike: string + + """""" + clientRefererPath: string + + """""" + clientRefererPath_geq: string + + """""" + clientRefererPath_gt: string + + """""" + clientRefererPath_in: [string!] + + """""" + clientRefererPath_leq: string + + """""" + clientRefererPath_like: string + + """""" + clientRefererPath_lt: string + + """""" + clientRefererPath_neq: string + + """""" + clientRefererPath_notin: [string!] + + """""" + clientRefererPath_notlike: string + + """""" + clientRefererQuery: string + + """""" + clientRefererQuery_geq: string + + """""" + clientRefererQuery_gt: string + + """""" + clientRefererQuery_in: [string!] + + """""" + clientRefererQuery_leq: string + + """""" + clientRefererQuery_like: string + + """""" + clientRefererQuery_lt: string + + """""" + clientRefererQuery_neq: string + + """""" + clientRefererQuery_notin: [string!] + + """""" + clientRefererQuery_notlike: string + + """""" + clientRefererScheme: string + + """""" + clientRefererScheme_geq: string + + """""" + clientRefererScheme_gt: string + + """""" + clientRefererScheme_in: [string!] + + """""" + clientRefererScheme_leq: string + + """""" + clientRefererScheme_like: string + + """""" + clientRefererScheme_lt: string + + """""" + clientRefererScheme_neq: string + + """""" + clientRefererScheme_notin: [string!] + + """""" + clientRefererScheme_notlike: string + + """""" + clientRequestHTTPHost: string + + """""" + clientRequestHTTPHost_geq: string + + """""" + clientRequestHTTPHost_gt: string + + """""" + clientRequestHTTPHost_in: [string!] + + """""" + clientRequestHTTPHost_leq: string + + """""" + clientRequestHTTPHost_like: string + + """""" + clientRequestHTTPHost_lt: string + + """""" + clientRequestHTTPHost_neq: string + + """""" + clientRequestHTTPHost_notin: [string!] + + """""" + clientRequestHTTPHost_notlike: string + + """""" + clientRequestHTTPMethodName: string + + """""" + clientRequestHTTPMethodName_geq: string + + """""" + clientRequestHTTPMethodName_gt: string + + """""" + clientRequestHTTPMethodName_in: [string!] + + """""" + clientRequestHTTPMethodName_leq: string + + """""" + clientRequestHTTPMethodName_like: string + + """""" + clientRequestHTTPMethodName_lt: string + + """""" + clientRequestHTTPMethodName_neq: string + + """""" + clientRequestHTTPMethodName_notin: [string!] + + """""" + clientRequestHTTPMethodName_notlike: string + + """""" + clientRequestHTTPProtocol: string + + """""" + clientRequestHTTPProtocol_geq: string + + """""" + clientRequestHTTPProtocol_gt: string + + """""" + clientRequestHTTPProtocol_in: [string!] + + """""" + clientRequestHTTPProtocol_leq: string + + """""" + clientRequestHTTPProtocol_like: string + + """""" + clientRequestHTTPProtocol_lt: string + + """""" + clientRequestHTTPProtocol_neq: string + + """""" + clientRequestHTTPProtocol_notin: [string!] + + """""" + clientRequestHTTPProtocol_notlike: string + + """""" + clientRequestPath: string + + """""" + clientRequestPath_geq: string + + """""" + clientRequestPath_gt: string + + """""" + clientRequestPath_in: [string!] + + """""" + clientRequestPath_leq: string + + """""" + clientRequestPath_like: string + + """""" + clientRequestPath_lt: string + + """""" + clientRequestPath_neq: string + + """""" + clientRequestPath_notin: [string!] + + """""" + clientRequestPath_notlike: string + + """""" + clientRequestQuery: string + + """""" + clientRequestQuery_geq: string + + """""" + clientRequestQuery_gt: string + + """""" + clientRequestQuery_in: [string!] + + """""" + clientRequestQuery_leq: string + + """""" + clientRequestQuery_like: string + + """""" + clientRequestQuery_lt: string + + """""" + clientRequestQuery_neq: string + + """""" + clientRequestQuery_notin: [string!] + + """""" + clientRequestQuery_notlike: string + + """""" + clientRequestScheme: string + + """""" + clientRequestScheme_geq: string + + """""" + clientRequestScheme_gt: string + + """""" + clientRequestScheme_in: [string!] + + """""" + clientRequestScheme_leq: string + + """""" + clientRequestScheme_like: string + + """""" + clientRequestScheme_lt: string + + """""" + clientRequestScheme_neq: string + + """""" + clientRequestScheme_notin: [string!] + + """""" + clientRequestScheme_notlike: string + + """""" + contentScanHasFailed: uint8 + + """""" + contentScanHasFailed_geq: uint8 + + """""" + contentScanHasFailed_gt: uint8 + + """""" + contentScanHasFailed_in: bytes + + """""" + contentScanHasFailed_leq: uint8 + + """""" + contentScanHasFailed_lt: uint8 + + """""" + contentScanHasFailed_neq: uint8 + + """""" + contentScanHasFailed_notin: bytes + + """""" + contentScanNumMaliciousObj: uint8 + + """""" + contentScanNumMaliciousObj_geq: uint8 + + """""" + contentScanNumMaliciousObj_gt: uint8 + + """""" + contentScanNumMaliciousObj_in: bytes + + """""" + contentScanNumMaliciousObj_leq: uint8 + + """""" + contentScanNumMaliciousObj_lt: uint8 + + """""" + contentScanNumMaliciousObj_neq: uint8 + + """""" + contentScanNumMaliciousObj_notin: bytes + + """""" + contentScanNumObj: uint8 + + """""" + contentScanNumObj_geq: uint8 + + """""" + contentScanNumObj_gt: uint8 + + """""" + contentScanNumObj_in: bytes + + """""" + contentScanNumObj_leq: uint8 + + """""" + contentScanNumObj_lt: uint8 + + """""" + contentScanNumObj_neq: uint8 + + """""" + contentScanNumObj_notin: bytes + + """""" + contentScanObjResults_has: string + + """""" + contentScanObjResults_hasall: [string!] + + """""" + contentScanObjResults_hasany: [string!] + + """""" + contentScanObjResults_isempty: bool + + """""" + contentScanObjResults_nothas: string + + """""" + contentScanObjSizes_has: uint32 + + """""" + contentScanObjSizes_hasall: [uint32!] + + """""" + contentScanObjSizes_hasany: [uint32!] + + """""" + contentScanObjSizes_isempty: bool + + """""" + contentScanObjSizes_nothas: uint32 + + """""" + contentScanObjTypes_has: string + + """""" + contentScanObjTypes_hasall: [string!] + + """""" + contentScanObjTypes_hasany: [string!] + + """""" + contentScanObjTypes_isempty: bool + + """""" + contentScanObjTypes_nothas: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + description: string + + """""" + description_geq: string + + """""" + description_gt: string + + """""" + description_in: [string!] + + """""" + description_leq: string + + """""" + description_like: string + + """""" + description_lt: string + + """""" + description_neq: string + + """""" + description_notin: [string!] + + """""" + description_notlike: string + + """""" + edgeColoName: string + + """""" + edgeColoName_geq: string + + """""" + edgeColoName_gt: string + + """""" + edgeColoName_in: [string!] + + """""" + edgeColoName_leq: string + + """""" + edgeColoName_like: string + + """""" + edgeColoName_lt: string + + """""" + edgeColoName_neq: string + + """""" + edgeColoName_notin: [string!] + + """""" + edgeColoName_notlike: string + + """""" + edgeResponseStatus: uint16 + + """""" + edgeResponseStatus_geq: uint16 + + """""" + edgeResponseStatus_gt: uint16 + + """""" + edgeResponseStatus_in: [uint16!] + + """""" + edgeResponseStatus_leq: uint16 + + """""" + edgeResponseStatus_lt: uint16 + + """""" + edgeResponseStatus_neq: uint16 + + """""" + edgeResponseStatus_notin: [uint16!] + + """""" + firewallForAiAnyPiiCategory: int8 + + """""" + firewallForAiAnyPiiCategory_geq: int8 + + """""" + firewallForAiAnyPiiCategory_gt: int8 + + """""" + firewallForAiAnyPiiCategory_in: [int8!] + + """""" + firewallForAiAnyPiiCategory_leq: int8 + + """""" + firewallForAiAnyPiiCategory_lt: int8 + + """""" + firewallForAiAnyPiiCategory_neq: int8 + + """""" + firewallForAiAnyPiiCategory_notin: [int8!] + + """""" + firewallForAiInjectionScore: int8 + + """""" + firewallForAiInjectionScore_geq: int8 + + """""" + firewallForAiInjectionScore_gt: int8 + + """""" + firewallForAiInjectionScore_in: [int8!] + + """""" + firewallForAiInjectionScore_leq: int8 + + """""" + firewallForAiInjectionScore_lt: int8 + + """""" + firewallForAiInjectionScore_neq: int8 + + """""" + firewallForAiInjectionScore_notin: [int8!] + + """""" + firewallForAiPiiCategories_has: string + + """""" + firewallForAiPiiCategories_hasall: [string!] + + """""" + firewallForAiPiiCategories_hasany: [string!] + + """""" + firewallForAiPiiCategories_isempty: bool + + """""" + firewallForAiPiiCategories_nothas: string + + """""" + firewallForAiUnsafeTopicCategories_has: string + + """""" + firewallForAiUnsafeTopicCategories_hasall: [string!] + + """""" + firewallForAiUnsafeTopicCategories_hasany: [string!] + + """""" + firewallForAiUnsafeTopicCategories_isempty: bool + + """""" + firewallForAiUnsafeTopicCategories_nothas: string + + """""" + fraudAttack: string + + """""" + fraudAttack_geq: string + + """""" + fraudAttack_gt: string + + """""" + fraudAttack_in: [string!] + + """""" + fraudAttack_leq: string + + """""" + fraudAttack_like: string + + """""" + fraudAttack_lt: string + + """""" + fraudAttack_neq: string + + """""" + fraudAttack_notin: [string!] + + """""" + fraudAttack_notlike: string + + """""" + fraudDetectionIds_has: uint32 + + """""" + fraudDetectionIds_hasall: [uint32!] + + """""" + fraudDetectionIds_hasany: [uint32!] + + """""" + fraudDetectionIds_isempty: bool + + """""" + fraudDetectionIds_nothas: uint32 + + """""" + fraudDetectionTags_has: string + + """""" + fraudDetectionTags_hasall: [string!] + + """""" + fraudDetectionTags_hasany: [string!] + + """""" + fraudDetectionTags_isempty: bool + + """""" + fraudDetectionTags_nothas: string + + """""" + fraudEmailRisk: string + + """""" + fraudEmailRisk_geq: string + + """""" + fraudEmailRisk_gt: string + + """""" + fraudEmailRisk_in: [string!] + + """""" + fraudEmailRisk_leq: string + + """""" + fraudEmailRisk_like: string + + """""" + fraudEmailRisk_lt: string + + """""" + fraudEmailRisk_neq: string + + """""" + fraudEmailRisk_notin: [string!] + + """""" + fraudEmailRisk_notlike: string + + """""" + httpApplicationVersion: uint64 + + """""" + httpApplicationVersion_geq: uint64 + + """""" + httpApplicationVersion_gt: uint64 + + """""" + httpApplicationVersion_in: [uint64!] + + """""" + httpApplicationVersion_leq: uint64 + + """""" + httpApplicationVersion_lt: uint64 + + """""" + httpApplicationVersion_neq: uint64 + + """""" + httpApplicationVersion_notin: [uint64!] + + """""" + ja3Hash: string + + """""" + ja3Hash_geq: string + + """""" + ja3Hash_gt: string + + """""" + ja3Hash_in: [string!] + + """""" + ja3Hash_leq: string + + """""" + ja3Hash_like: string + + """""" + ja3Hash_lt: string + + """""" + ja3Hash_neq: string + + """""" + ja3Hash_notin: [string!] + + """""" + ja3Hash_notlike: string + + """""" + ja4: string + + """""" + ja4_geq: string + + """""" + ja4_gt: string + + """""" + ja4_in: [string!] + + """""" + ja4_leq: string + + """""" + ja4_like: string + + """""" + ja4_lt: string + + """""" + ja4_neq: string + + """""" + ja4_notin: [string!] + + """""" + ja4_notlike: string + + """""" + jsDetectionPassed: string + + """""" + jsDetectionPassed_geq: string + + """""" + jsDetectionPassed_gt: string + + """""" + jsDetectionPassed_in: [string!] + + """""" + jsDetectionPassed_leq: string + + """""" + jsDetectionPassed_like: string + + """""" + jsDetectionPassed_lt: string + + """""" + jsDetectionPassed_neq: string + + """""" + jsDetectionPassed_notin: [string!] + + """""" + jsDetectionPassed_notlike: string + + """""" + kind: string + + """""" + kind_geq: string + + """""" + kind_gt: string + + """""" + kind_in: [string!] + + """""" + kind_leq: string + + """""" + kind_like: string + + """""" + kind_lt: string + + """""" + kind_neq: string + + """""" + kind_notin: [string!] + + """""" + kind_notlike: string + + """""" + matchIndex: uint16 + + """""" + matchIndex_geq: uint16 + + """""" + matchIndex_gt: uint16 + + """""" + matchIndex_in: [uint16!] + + """""" + matchIndex_leq: uint16 + + """""" + matchIndex_lt: uint16 + + """""" + matchIndex_neq: uint16 + + """""" + matchIndex_notin: [uint16!] + + """""" + originResponseStatus: uint16 + + """""" + originResponseStatus_geq: uint16 + + """""" + originResponseStatus_gt: uint16 + + """""" + originResponseStatus_in: [uint16!] + + """""" + originResponseStatus_leq: uint16 + + """""" + originResponseStatus_lt: uint16 + + """""" + originResponseStatus_neq: uint16 + + """""" + originResponseStatus_notin: [uint16!] + + """""" + originatorRayName: string + + """""" + originatorRayName_geq: string + + """""" + originatorRayName_gt: string + + """""" + originatorRayName_in: [string!] + + """""" + originatorRayName_leq: string + + """""" + originatorRayName_like: string + + """""" + originatorRayName_lt: string + + """""" + originatorRayName_neq: string + + """""" + originatorRayName_notin: [string!] + + """""" + originatorRayName_notlike: string + + """""" + rayName: string + + """""" + rayName_geq: string + + """""" + rayName_gt: string + + """""" + rayName_in: [string!] + + """""" + rayName_leq: string + + """""" + rayName_like: string + + """""" + rayName_lt: string + + """""" + rayName_neq: string + + """""" + rayName_notin: [string!] + + """""" + rayName_notlike: string + + """""" + ref: string + + """""" + ref_geq: string + + """""" + ref_gt: string + + """""" + ref_in: [string!] + + """""" + ref_leq: string + + """""" + ref_like: string + + """""" + ref_lt: string + + """""" + ref_neq: string + + """""" + ref_notin: [string!] + + """""" + ref_notlike: string + + """""" + ruleId: string + + """""" + ruleId_geq: string + + """""" + ruleId_gt: string + + """""" + ruleId_in: [string!] + + """""" + ruleId_leq: string + + """""" + ruleId_like: string + + """""" + ruleId_lt: string + + """""" + ruleId_neq: string + + """""" + ruleId_notin: [string!] + + """""" + ruleId_notlike: string + + """""" + rulesetId: string + + """""" + rulesetId_geq: string + + """""" + rulesetId_gt: string + + """""" + rulesetId_in: [string!] + + """""" + rulesetId_leq: string + + """""" + rulesetId_like: string + + """""" + rulesetId_lt: string + + """""" + rulesetId_neq: string + + """""" + rulesetId_notin: [string!] + + """""" + rulesetId_notlike: string + + """""" + sampleInterval: uint32 + + """""" + sampleInterval_geq: uint32 + + """""" + sampleInterval_gt: uint32 + + """""" + sampleInterval_in: [uint32!] + + """""" + sampleInterval_leq: uint32 + + """""" + sampleInterval_lt: uint32 + + """""" + sampleInterval_neq: uint32 + + """""" + sampleInterval_notin: [uint32!] + + """""" + source: string + + """""" + source_geq: string + + """""" + source_gt: string + + """""" + source_in: [string!] + + """""" + source_leq: string + + """""" + source_like: string + + """""" + source_lt: string + + """""" + source_neq: string + + """""" + source_notin: [string!] + + """""" + source_notlike: string + + """""" + userAgent: string + + """""" + userAgent_geq: string + + """""" + userAgent_gt: string + + """""" + userAgent_in: [string!] + + """""" + userAgent_leq: string + + """""" + userAgent_like: string + + """""" + userAgent_lt: string + + """""" + userAgent_neq: string + + """""" + userAgent_notin: [string!] + + """""" + userAgent_notlike: string + + """""" + verifiedBotCategory: string + + """""" + verifiedBotCategory_geq: string + + """""" + verifiedBotCategory_gt: string + + """""" + verifiedBotCategory_in: [string!] + + """""" + verifiedBotCategory_leq: string + + """""" + verifiedBotCategory_like: string + + """""" + verifiedBotCategory_lt: string + + """""" + verifiedBotCategory_neq: string + + """""" + verifiedBotCategory_notin: [string!] + + """""" + verifiedBotCategory_notlike: string + + """""" + wafAttackScore: uint8 + + """""" + wafAttackScoreClass: string + + """""" + wafAttackScoreClass_geq: string + + """""" + wafAttackScoreClass_gt: string + + """""" + wafAttackScoreClass_in: [string!] + + """""" + wafAttackScoreClass_leq: string + + """""" + wafAttackScoreClass_like: string + + """""" + wafAttackScoreClass_lt: string + + """""" + wafAttackScoreClass_neq: string + + """""" + wafAttackScoreClass_notin: [string!] + + """""" + wafAttackScoreClass_notlike: string + + """""" + wafAttackScore_geq: uint8 + + """""" + wafAttackScore_gt: uint8 + + """""" + wafAttackScore_in: bytes + + """""" + wafAttackScore_leq: uint8 + + """""" + wafAttackScore_lt: uint8 + + """""" + wafAttackScore_neq: uint8 + + """""" + wafAttackScore_notin: bytes + + """""" + wafMlAttackScore: uint8 + + """""" + wafMlAttackScore_geq: uint8 + + """""" + wafMlAttackScore_gt: uint8 + + """""" + wafMlAttackScore_in: bytes + + """""" + wafMlAttackScore_leq: uint8 + + """""" + wafMlAttackScore_lt: uint8 + + """""" + wafMlAttackScore_neq: uint8 + + """""" + wafMlAttackScore_notin: bytes + + """""" + wafMlSqliAttackScore: uint8 + + """""" + wafMlSqliAttackScore_geq: uint8 + + """""" + wafMlSqliAttackScore_gt: uint8 + + """""" + wafMlSqliAttackScore_in: bytes + + """""" + wafMlSqliAttackScore_leq: uint8 + + """""" + wafMlSqliAttackScore_lt: uint8 + + """""" + wafMlSqliAttackScore_neq: uint8 + + """""" + wafMlSqliAttackScore_notin: bytes + + """""" + wafMlXssAttackScore: uint8 + + """""" + wafMlXssAttackScore_geq: uint8 + + """""" + wafMlXssAttackScore_gt: uint8 + + """""" + wafMlXssAttackScore_in: bytes + + """""" + wafMlXssAttackScore_leq: uint8 + + """""" + wafMlXssAttackScore_lt: uint8 + + """""" + wafMlXssAttackScore_neq: uint8 + + """""" + wafMlXssAttackScore_notin: bytes + + """""" + wafRceAttackScore: uint8 + + """""" + wafRceAttackScore_geq: uint8 + + """""" + wafRceAttackScore_gt: uint8 + + """""" + wafRceAttackScore_in: bytes + + """""" + wafRceAttackScore_leq: uint8 + + """""" + wafRceAttackScore_lt: uint8 + + """""" + wafRceAttackScore_neq: uint8 + + """""" + wafRceAttackScore_notin: bytes + + """""" + wafSqliAttackScore: uint8 + + """""" + wafSqliAttackScore_geq: uint8 + + """""" + wafSqliAttackScore_gt: uint8 + + """""" + wafSqliAttackScore_in: bytes + + """""" + wafSqliAttackScore_leq: uint8 + + """""" + wafSqliAttackScore_lt: uint8 + + """""" + wafSqliAttackScore_neq: uint8 + + """""" + wafSqliAttackScore_notin: bytes + + """""" + wafXssAttackScore: uint8 + + """""" + wafXssAttackScore_geq: uint8 + + """""" + wafXssAttackScore_gt: uint8 + + """""" + wafXssAttackScore_in: bytes + + """""" + wafXssAttackScore_leq: uint8 + + """""" + wafXssAttackScore_lt: uint8 + + """""" + wafXssAttackScore_neq: uint8 + + """""" + wafXssAttackScore_notin: bytes + + """""" + zoneVersion: uint64 + + """""" + zoneVersion_geq: uint64 + + """""" + zoneVersion_gt: uint64 + + """""" + zoneVersion_in: [uint64!] + + """""" + zoneVersion_leq: uint64 + + """""" + zoneVersion_lt: uint64 + + """""" + zoneVersion_neq: uint64 + + """""" + zoneVersion_notin: [uint64!] +} + +"""""" +enum ZoneFirewallEventsAdaptiveByTimeGroupsOrderBy { + """apiGatewayMatchedEndpoint ascending""" + apiGatewayMatchedEndpoint_ASC + + """apiGatewayMatchedEndpoint descending""" + apiGatewayMatchedEndpoint_DESC + + """apiGatewayMatchedHost ascending""" + apiGatewayMatchedHost_ASC + + """apiGatewayMatchedHost descending""" + apiGatewayMatchedHost_DESC + + """attackSignatureCategories ascending""" + attackSignatureCategories_ASC + + """attackSignatureCategories descending""" + attackSignatureCategories_DESC + + """attackSignatureRefs ascending""" + attackSignatureRefs_ASC + + """attackSignatureRefs descending""" + attackSignatureRefs_DESC + + """avg(sampleInterval) ascending""" + avg_sampleInterval_ASC + + """avg(sampleInterval) descending""" + avg_sampleInterval_DESC + + """botDetectionIds ascending""" + botDetectionIds_ASC + + """botDetectionIds descending""" + botDetectionIds_DESC + + """botDetectionTags ascending""" + botDetectionTags_ASC + + """botDetectionTags descending""" + botDetectionTags_DESC + + """botScoreSrcName ascending""" + botScoreSrcName_ASC + + """botScoreSrcName descending""" + botScoreSrcName_DESC + + """botScore ascending""" + botScore_ASC + + """botScore descending""" + botScore_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """description ascending""" + description_ASC + + """description descending""" + description_DESC + + """firewallForAiAnyPiiCategory ascending""" + firewallForAiAnyPiiCategory_ASC + + """firewallForAiAnyPiiCategory descending""" + firewallForAiAnyPiiCategory_DESC + + """firewallForAiInjectionScore ascending""" + firewallForAiInjectionScore_ASC + + """firewallForAiInjectionScore descending""" + firewallForAiInjectionScore_DESC + + """firewallForAiPiiCategories ascending""" + firewallForAiPiiCategories_ASC + + """firewallForAiPiiCategories descending""" + firewallForAiPiiCategories_DESC + + """firewallForAiUnsafeTopicCategories ascending""" + firewallForAiUnsafeTopicCategories_ASC + + """firewallForAiUnsafeTopicCategories descending""" + firewallForAiUnsafeTopicCategories_DESC + + """fraudAttack ascending""" + fraudAttack_ASC + + """fraudAttack descending""" + fraudAttack_DESC + + """fraudDetectionIds ascending""" + fraudDetectionIds_ASC + + """fraudDetectionIds descending""" + fraudDetectionIds_DESC + + """fraudDetectionTags ascending""" + fraudDetectionTags_ASC + + """fraudDetectionTags descending""" + fraudDetectionTags_DESC + + """fraudEmailRisk ascending""" + fraudEmailRisk_ASC + + """fraudEmailRisk descending""" + fraudEmailRisk_DESC + + """httpApplicationVersion ascending""" + httpApplicationVersion_ASC + + """httpApplicationVersion descending""" + httpApplicationVersion_DESC + + """ja3Hash ascending""" + ja3Hash_ASC + + """ja3Hash descending""" + ja3Hash_DESC + + """ja4 ascending""" + ja4_ASC + + """ja4 descending""" + ja4_DESC + + """jsDetectionPassed ascending""" + jsDetectionPassed_ASC + + """jsDetectionPassed descending""" + jsDetectionPassed_DESC + + """sum(botDetectionIdArray) ascending""" + sum_botDetectionIdArray_ASC + + """sum(botDetectionIdArray) descending""" + sum_botDetectionIdArray_DESC + + """sum(botDetectionIdCountArray) ascending""" + sum_botDetectionIdCountArray_ASC + + """sum(botDetectionIdCountArray) descending""" + sum_botDetectionIdCountArray_DESC + + """sum(botDetectionTagArray) ascending""" + sum_botDetectionTagArray_ASC + + """sum(botDetectionTagArray) descending""" + sum_botDetectionTagArray_DESC + + """sum(botDetectionTagCountArray) ascending""" + sum_botDetectionTagCountArray_ASC + + """sum(botDetectionTagCountArray) descending""" + sum_botDetectionTagCountArray_DESC + + """sum(fraudDetectionIdArray) ascending""" + sum_fraudDetectionIdArray_ASC + + """sum(fraudDetectionIdArray) descending""" + sum_fraudDetectionIdArray_DESC + + """sum(fraudDetectionIdCountArray) ascending""" + sum_fraudDetectionIdCountArray_ASC + + """sum(fraudDetectionIdCountArray) descending""" + sum_fraudDetectionIdCountArray_DESC + + """sum(fraudDetectionTagArray) ascending""" + sum_fraudDetectionTagArray_ASC + + """sum(fraudDetectionTagArray) descending""" + sum_fraudDetectionTagArray_DESC + + """sum(fraudDetectionTagCountArray) ascending""" + sum_fraudDetectionTagCountArray_ASC + + """sum(fraudDetectionTagCountArray) descending""" + sum_fraudDetectionTagCountArray_DESC + + """verifiedBotCategory ascending""" + verifiedBotCategory_ASC + + """verifiedBotCategory descending""" + verifiedBotCategory_DESC + + """visibility ascending""" + visibility_ASC + + """visibility descending""" + visibility_DESC + + """wafAttackScoreClass ascending""" + wafAttackScoreClass_ASC + + """wafAttackScoreClass descending""" + wafAttackScoreClass_DESC + + """wafAttackScore ascending""" + wafAttackScore_ASC + + """wafAttackScore descending""" + wafAttackScore_DESC + + """wafMlAttackScore ascending""" + wafMlAttackScore_ASC + + """wafMlAttackScore descending""" + wafMlAttackScore_DESC + + """wafMlSqliAttackScore ascending""" + wafMlSqliAttackScore_ASC + + """wafMlSqliAttackScore descending""" + wafMlSqliAttackScore_DESC + + """wafMlXssAttackScore ascending""" + wafMlXssAttackScore_ASC + + """wafMlXssAttackScore descending""" + wafMlXssAttackScore_DESC + + """wafRceAttackScore ascending""" + wafRceAttackScore_ASC + + """wafRceAttackScore descending""" + wafRceAttackScore_DESC + + """wafSqliAttackScore ascending""" + wafSqliAttackScore_ASC + + """wafSqliAttackScore descending""" + wafSqliAttackScore_DESC + + """wafXssAttackScore ascending""" + wafXssAttackScore_ASC + + """wafXssAttackScore descending""" + wafXssAttackScore_DESC + + """zoneVersion ascending""" + zoneVersion_ASC + + """zoneVersion descending""" + zoneVersion_DESC +} + +"""""" +type ZoneFirewallEventsAdaptiveByTimeGroupsSum { + """Array of bot management detection ids""" + botDetectionIdArray: [uint32!]! + + """ + Count array of bot management detection ids. Elements in this array correspond to elements in botDetectionIdArray by index. + """ + botDetectionIdCountArray: [uint32!]! + + """Array of bot management detection tags""" + botDetectionTagArray: [string!]! + + """ + Count array of bot management detection tags. Elements in this array correspond to elements in botDetectionTagArray by index. + """ + botDetectionTagCountArray: [uint32!]! + + """Array of fraud detection ids""" + fraudDetectionIdArray: [uint32!]! + + """ + Count array of fraud detection ids. Elements in this array correspond to elements in fraudDetectionIdArray by index. + """ + fraudDetectionIdCountArray: [uint32!]! + + """Array of fraud detection tags""" + fraudDetectionTagArray: [string!]! + + """ + Count array of fraud detection tags. Elements in this array correspond to elements in fraudDetectionTagArray by index. + """ + fraudDetectionTagCountArray: [uint32!]! +} + +"""""" +input ZoneFirewallEventsAdaptiveFilter_InputObject { + """""" + AND: [ZoneFirewallEventsAdaptiveFilter_InputObject!] + + """""" + OR: [ZoneFirewallEventsAdaptiveFilter_InputObject!] + + """""" + action: string + + """""" + action_geq: string + + """""" + action_gt: string + + """""" + action_in: [string!] + + """""" + action_leq: string + + """""" + action_like: string + + """""" + action_lt: string + + """""" + action_neq: string + + """""" + action_notin: [string!] + + """""" + action_notlike: string + + """""" + apiGatewayMatchedEndpoint: string + + """""" + apiGatewayMatchedEndpoint_geq: string + + """""" + apiGatewayMatchedEndpoint_gt: string + + """""" + apiGatewayMatchedEndpoint_in: [string!] + + """""" + apiGatewayMatchedEndpoint_leq: string + + """""" + apiGatewayMatchedEndpoint_like: string + + """""" + apiGatewayMatchedEndpoint_lt: string + + """""" + apiGatewayMatchedEndpoint_neq: string + + """""" + apiGatewayMatchedEndpoint_notin: [string!] + + """""" + apiGatewayMatchedEndpoint_notlike: string + + """""" + apiGatewayMatchedHost: string + + """""" + apiGatewayMatchedHost_geq: string + + """""" + apiGatewayMatchedHost_gt: string + + """""" + apiGatewayMatchedHost_in: [string!] + + """""" + apiGatewayMatchedHost_leq: string + + """""" + apiGatewayMatchedHost_like: string + + """""" + apiGatewayMatchedHost_lt: string + + """""" + apiGatewayMatchedHost_neq: string + + """""" + apiGatewayMatchedHost_notin: [string!] + + """""" + apiGatewayMatchedHost_notlike: string + + """""" + attackSignatureCategories_has: string + + """""" + attackSignatureCategories_hasall: [string!] + + """""" + attackSignatureCategories_hasany: [string!] + + """""" + attackSignatureCategories_isempty: bool + + """""" + attackSignatureCategories_nothas: string + + """""" + attackSignatureRefs_has: string + + """""" + attackSignatureRefs_hasall: [string!] + + """""" + attackSignatureRefs_hasany: [string!] + + """""" + attackSignatureRefs_isempty: bool + + """""" + attackSignatureRefs_nothas: string + + """""" + botDetectionIds_has: uint32 + + """""" + botDetectionIds_hasall: [uint32!] + + """""" + botDetectionIds_hasany: [uint32!] + + """""" + botDetectionIds_isempty: bool + + """""" + botDetectionIds_nothas: uint32 + + """""" + botDetectionTags_has: string + + """""" + botDetectionTags_hasall: [string!] + + """""" + botDetectionTags_hasany: [string!] + + """""" + botDetectionTags_isempty: bool + + """""" + botDetectionTags_nothas: string + + """""" + botScore: uint8 + + """""" + botScoreSrcName: string + + """""" + botScoreSrcName_geq: string + + """""" + botScoreSrcName_gt: string + + """""" + botScoreSrcName_in: [string!] + + """""" + botScoreSrcName_leq: string + + """""" + botScoreSrcName_like: string + + """""" + botScoreSrcName_lt: string + + """""" + botScoreSrcName_neq: string + + """""" + botScoreSrcName_notin: [string!] + + """""" + botScoreSrcName_notlike: string + + """""" + botScore_geq: uint8 + + """""" + botScore_gt: uint8 + + """""" + botScore_in: bytes + + """""" + botScore_leq: uint8 + + """""" + botScore_lt: uint8 + + """""" + botScore_neq: uint8 + + """""" + botScore_notin: bytes + + """""" + clientASNDescription: string + + """""" + clientASNDescription_geq: string + + """""" + clientASNDescription_gt: string + + """""" + clientASNDescription_in: [string!] + + """""" + clientASNDescription_leq: string + + """""" + clientASNDescription_like: string + + """""" + clientASNDescription_lt: string + + """""" + clientASNDescription_neq: string + + """""" + clientASNDescription_notin: [string!] + + """""" + clientASNDescription_notlike: string + + """""" + clientAsn: string + + """""" + clientAsn_geq: string + + """""" + clientAsn_gt: string + + """""" + clientAsn_in: [string!] + + """""" + clientAsn_leq: string + + """""" + clientAsn_like: string + + """""" + clientAsn_lt: string + + """""" + clientAsn_neq: string + + """""" + clientAsn_notin: [string!] + + """""" + clientAsn_notlike: string + + """""" + clientCountryName: string + + """""" + clientCountryName_geq: string + + """""" + clientCountryName_gt: string + + """""" + clientCountryName_in: [string!] + + """""" + clientCountryName_leq: string + + """""" + clientCountryName_like: string + + """""" + clientCountryName_lt: string + + """""" + clientCountryName_neq: string + + """""" + clientCountryName_notin: [string!] + + """""" + clientCountryName_notlike: string + + """""" + clientIP: string + + """""" + clientIPClass: string + + """""" + clientIPClass_geq: string + + """""" + clientIPClass_gt: string + + """""" + clientIPClass_in: [string!] + + """""" + clientIPClass_leq: string + + """""" + clientIPClass_like: string + + """""" + clientIPClass_lt: string + + """""" + clientIPClass_neq: string + + """""" + clientIPClass_notin: [string!] + + """""" + clientIPClass_notlike: string + + """""" + clientIP_geq: string + + """""" + clientIP_gt: string + + """""" + clientIP_in: [string!] + + """""" + clientIP_leq: string + + """""" + clientIP_like: string + + """""" + clientIP_lt: string + + """""" + clientIP_neq: string + + """""" + clientIP_notin: [string!] + + """""" + clientIP_notlike: string + + """""" + clientRefererHost: string + + """""" + clientRefererHost_geq: string + + """""" + clientRefererHost_gt: string + + """""" + clientRefererHost_in: [string!] + + """""" + clientRefererHost_leq: string + + """""" + clientRefererHost_like: string + + """""" + clientRefererHost_lt: string + + """""" + clientRefererHost_neq: string + + """""" + clientRefererHost_notin: [string!] + + """""" + clientRefererHost_notlike: string + + """""" + clientRefererPath: string + + """""" + clientRefererPath_geq: string + + """""" + clientRefererPath_gt: string + + """""" + clientRefererPath_in: [string!] + + """""" + clientRefererPath_leq: string + + """""" + clientRefererPath_like: string + + """""" + clientRefererPath_lt: string + + """""" + clientRefererPath_neq: string + + """""" + clientRefererPath_notin: [string!] + + """""" + clientRefererPath_notlike: string + + """""" + clientRefererQuery: string + + """""" + clientRefererQuery_geq: string + + """""" + clientRefererQuery_gt: string + + """""" + clientRefererQuery_in: [string!] + + """""" + clientRefererQuery_leq: string + + """""" + clientRefererQuery_like: string + + """""" + clientRefererQuery_lt: string + + """""" + clientRefererQuery_neq: string + + """""" + clientRefererQuery_notin: [string!] + + """""" + clientRefererQuery_notlike: string + + """""" + clientRefererScheme: string + + """""" + clientRefererScheme_geq: string + + """""" + clientRefererScheme_gt: string + + """""" + clientRefererScheme_in: [string!] + + """""" + clientRefererScheme_leq: string + + """""" + clientRefererScheme_like: string + + """""" + clientRefererScheme_lt: string + + """""" + clientRefererScheme_neq: string + + """""" + clientRefererScheme_notin: [string!] + + """""" + clientRefererScheme_notlike: string + + """""" + clientRequestHTTPHost: string + + """""" + clientRequestHTTPHost_geq: string + + """""" + clientRequestHTTPHost_gt: string + + """""" + clientRequestHTTPHost_in: [string!] + + """""" + clientRequestHTTPHost_leq: string + + """""" + clientRequestHTTPHost_like: string + + """""" + clientRequestHTTPHost_lt: string + + """""" + clientRequestHTTPHost_neq: string + + """""" + clientRequestHTTPHost_notin: [string!] + + """""" + clientRequestHTTPHost_notlike: string + + """""" + clientRequestHTTPMethodName: string + + """""" + clientRequestHTTPMethodName_geq: string + + """""" + clientRequestHTTPMethodName_gt: string + + """""" + clientRequestHTTPMethodName_in: [string!] + + """""" + clientRequestHTTPMethodName_leq: string + + """""" + clientRequestHTTPMethodName_like: string + + """""" + clientRequestHTTPMethodName_lt: string + + """""" + clientRequestHTTPMethodName_neq: string + + """""" + clientRequestHTTPMethodName_notin: [string!] + + """""" + clientRequestHTTPMethodName_notlike: string + + """""" + clientRequestHTTPProtocol: string + + """""" + clientRequestHTTPProtocol_geq: string + + """""" + clientRequestHTTPProtocol_gt: string + + """""" + clientRequestHTTPProtocol_in: [string!] + + """""" + clientRequestHTTPProtocol_leq: string + + """""" + clientRequestHTTPProtocol_like: string + + """""" + clientRequestHTTPProtocol_lt: string + + """""" + clientRequestHTTPProtocol_neq: string + + """""" + clientRequestHTTPProtocol_notin: [string!] + + """""" + clientRequestHTTPProtocol_notlike: string + + """""" + clientRequestPath: string + + """""" + clientRequestPath_geq: string + + """""" + clientRequestPath_gt: string + + """""" + clientRequestPath_in: [string!] + + """""" + clientRequestPath_leq: string + + """""" + clientRequestPath_like: string + + """""" + clientRequestPath_lt: string + + """""" + clientRequestPath_neq: string + + """""" + clientRequestPath_notin: [string!] + + """""" + clientRequestPath_notlike: string + + """""" + clientRequestQuery: string + + """""" + clientRequestQuery_geq: string + + """""" + clientRequestQuery_gt: string + + """""" + clientRequestQuery_in: [string!] + + """""" + clientRequestQuery_leq: string + + """""" + clientRequestQuery_like: string + + """""" + clientRequestQuery_lt: string + + """""" + clientRequestQuery_neq: string + + """""" + clientRequestQuery_notin: [string!] + + """""" + clientRequestQuery_notlike: string + + """""" + clientRequestScheme: string + + """""" + clientRequestScheme_geq: string + + """""" + clientRequestScheme_gt: string + + """""" + clientRequestScheme_in: [string!] + + """""" + clientRequestScheme_leq: string + + """""" + clientRequestScheme_like: string + + """""" + clientRequestScheme_lt: string + + """""" + clientRequestScheme_neq: string + + """""" + clientRequestScheme_notin: [string!] + + """""" + clientRequestScheme_notlike: string + + """""" + contentScanHasFailed: uint8 + + """""" + contentScanHasFailed_geq: uint8 + + """""" + contentScanHasFailed_gt: uint8 + + """""" + contentScanHasFailed_in: bytes + + """""" + contentScanHasFailed_leq: uint8 + + """""" + contentScanHasFailed_lt: uint8 + + """""" + contentScanHasFailed_neq: uint8 + + """""" + contentScanHasFailed_notin: bytes + + """""" + contentScanNumMaliciousObj: uint8 + + """""" + contentScanNumMaliciousObj_geq: uint8 + + """""" + contentScanNumMaliciousObj_gt: uint8 + + """""" + contentScanNumMaliciousObj_in: bytes + + """""" + contentScanNumMaliciousObj_leq: uint8 + + """""" + contentScanNumMaliciousObj_lt: uint8 + + """""" + contentScanNumMaliciousObj_neq: uint8 + + """""" + contentScanNumMaliciousObj_notin: bytes + + """""" + contentScanNumObj: uint8 + + """""" + contentScanNumObj_geq: uint8 + + """""" + contentScanNumObj_gt: uint8 + + """""" + contentScanNumObj_in: bytes + + """""" + contentScanNumObj_leq: uint8 + + """""" + contentScanNumObj_lt: uint8 + + """""" + contentScanNumObj_neq: uint8 + + """""" + contentScanNumObj_notin: bytes + + """""" + contentScanObjResults_has: string + + """""" + contentScanObjResults_hasall: [string!] + + """""" + contentScanObjResults_hasany: [string!] + + """""" + contentScanObjResults_isempty: bool + + """""" + contentScanObjResults_nothas: string + + """""" + contentScanObjSizes_has: uint32 + + """""" + contentScanObjSizes_hasall: [uint32!] + + """""" + contentScanObjSizes_hasany: [uint32!] + + """""" + contentScanObjSizes_isempty: bool + + """""" + contentScanObjSizes_nothas: uint32 + + """""" + contentScanObjTypes_has: string + + """""" + contentScanObjTypes_hasall: [string!] + + """""" + contentScanObjTypes_hasany: [string!] + + """""" + contentScanObjTypes_isempty: bool + + """""" + contentScanObjTypes_nothas: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + description: string + + """""" + description_geq: string + + """""" + description_gt: string + + """""" + description_in: [string!] + + """""" + description_leq: string + + """""" + description_like: string + + """""" + description_lt: string + + """""" + description_neq: string + + """""" + description_notin: [string!] + + """""" + description_notlike: string + + """""" + edgeColoName: string + + """""" + edgeColoName_geq: string + + """""" + edgeColoName_gt: string + + """""" + edgeColoName_in: [string!] + + """""" + edgeColoName_leq: string + + """""" + edgeColoName_like: string + + """""" + edgeColoName_lt: string + + """""" + edgeColoName_neq: string + + """""" + edgeColoName_notin: [string!] + + """""" + edgeColoName_notlike: string + + """""" + edgeResponseStatus: uint16 + + """""" + edgeResponseStatus_geq: uint16 + + """""" + edgeResponseStatus_gt: uint16 + + """""" + edgeResponseStatus_in: [uint16!] + + """""" + edgeResponseStatus_leq: uint16 + + """""" + edgeResponseStatus_lt: uint16 + + """""" + edgeResponseStatus_neq: uint16 + + """""" + edgeResponseStatus_notin: [uint16!] + + """""" + firewallForAiAnyPiiCategory: int8 + + """""" + firewallForAiAnyPiiCategory_geq: int8 + + """""" + firewallForAiAnyPiiCategory_gt: int8 + + """""" + firewallForAiAnyPiiCategory_in: [int8!] + + """""" + firewallForAiAnyPiiCategory_leq: int8 + + """""" + firewallForAiAnyPiiCategory_lt: int8 + + """""" + firewallForAiAnyPiiCategory_neq: int8 + + """""" + firewallForAiAnyPiiCategory_notin: [int8!] + + """""" + firewallForAiInjectionScore: int8 + + """""" + firewallForAiInjectionScore_geq: int8 + + """""" + firewallForAiInjectionScore_gt: int8 + + """""" + firewallForAiInjectionScore_in: [int8!] + + """""" + firewallForAiInjectionScore_leq: int8 + + """""" + firewallForAiInjectionScore_lt: int8 + + """""" + firewallForAiInjectionScore_neq: int8 + + """""" + firewallForAiInjectionScore_notin: [int8!] + + """""" + firewallForAiPiiCategories_has: string + + """""" + firewallForAiPiiCategories_hasall: [string!] + + """""" + firewallForAiPiiCategories_hasany: [string!] + + """""" + firewallForAiPiiCategories_isempty: bool + + """""" + firewallForAiPiiCategories_nothas: string + + """""" + firewallForAiUnsafeTopicCategories_has: string + + """""" + firewallForAiUnsafeTopicCategories_hasall: [string!] + + """""" + firewallForAiUnsafeTopicCategories_hasany: [string!] + + """""" + firewallForAiUnsafeTopicCategories_isempty: bool + + """""" + firewallForAiUnsafeTopicCategories_nothas: string + + """""" + fraudAttack: string + + """""" + fraudAttack_geq: string + + """""" + fraudAttack_gt: string + + """""" + fraudAttack_in: [string!] + + """""" + fraudAttack_leq: string + + """""" + fraudAttack_like: string + + """""" + fraudAttack_lt: string + + """""" + fraudAttack_neq: string + + """""" + fraudAttack_notin: [string!] + + """""" + fraudAttack_notlike: string + + """""" + fraudDetectionIds_has: uint32 + + """""" + fraudDetectionIds_hasall: [uint32!] + + """""" + fraudDetectionIds_hasany: [uint32!] + + """""" + fraudDetectionIds_isempty: bool + + """""" + fraudDetectionIds_nothas: uint32 + + """""" + fraudDetectionTags_has: string + + """""" + fraudDetectionTags_hasall: [string!] + + """""" + fraudDetectionTags_hasany: [string!] + + """""" + fraudDetectionTags_isempty: bool + + """""" + fraudDetectionTags_nothas: string + + """""" + fraudEmailRisk: string + + """""" + fraudEmailRisk_geq: string + + """""" + fraudEmailRisk_gt: string + + """""" + fraudEmailRisk_in: [string!] + + """""" + fraudEmailRisk_leq: string + + """""" + fraudEmailRisk_like: string + + """""" + fraudEmailRisk_lt: string + + """""" + fraudEmailRisk_neq: string + + """""" + fraudEmailRisk_notin: [string!] + + """""" + fraudEmailRisk_notlike: string + + """""" + httpApplicationVersion: uint64 + + """""" + httpApplicationVersion_geq: uint64 + + """""" + httpApplicationVersion_gt: uint64 + + """""" + httpApplicationVersion_in: [uint64!] + + """""" + httpApplicationVersion_leq: uint64 + + """""" + httpApplicationVersion_lt: uint64 + + """""" + httpApplicationVersion_neq: uint64 + + """""" + httpApplicationVersion_notin: [uint64!] + + """""" + ja3Hash: string + + """""" + ja3Hash_geq: string + + """""" + ja3Hash_gt: string + + """""" + ja3Hash_in: [string!] + + """""" + ja3Hash_leq: string + + """""" + ja3Hash_like: string + + """""" + ja3Hash_lt: string + + """""" + ja3Hash_neq: string + + """""" + ja3Hash_notin: [string!] + + """""" + ja3Hash_notlike: string + + """""" + ja4: string + + """""" + ja4_geq: string + + """""" + ja4_gt: string + + """""" + ja4_in: [string!] + + """""" + ja4_leq: string + + """""" + ja4_like: string + + """""" + ja4_lt: string + + """""" + ja4_neq: string + + """""" + ja4_notin: [string!] + + """""" + ja4_notlike: string + + """""" + jsDetectionPassed: string + + """""" + jsDetectionPassed_geq: string + + """""" + jsDetectionPassed_gt: string + + """""" + jsDetectionPassed_in: [string!] + + """""" + jsDetectionPassed_leq: string + + """""" + jsDetectionPassed_like: string + + """""" + jsDetectionPassed_lt: string + + """""" + jsDetectionPassed_neq: string + + """""" + jsDetectionPassed_notin: [string!] + + """""" + jsDetectionPassed_notlike: string + + """""" + kind: string + + """""" + kind_geq: string + + """""" + kind_gt: string + + """""" + kind_in: [string!] + + """""" + kind_leq: string + + """""" + kind_like: string + + """""" + kind_lt: string + + """""" + kind_neq: string + + """""" + kind_notin: [string!] + + """""" + kind_notlike: string + + """""" + leakedCredentialCheckResult: string + + """""" + leakedCredentialCheckResult_geq: string + + """""" + leakedCredentialCheckResult_gt: string + + """""" + leakedCredentialCheckResult_in: [string!] + + """""" + leakedCredentialCheckResult_leq: string + + """""" + leakedCredentialCheckResult_like: string + + """""" + leakedCredentialCheckResult_lt: string + + """""" + leakedCredentialCheckResult_neq: string + + """""" + leakedCredentialCheckResult_notin: [string!] + + """""" + leakedCredentialCheckResult_notlike: string + + """""" + matchIndex: uint16 + + """""" + matchIndex_geq: uint16 + + """""" + matchIndex_gt: uint16 + + """""" + matchIndex_in: [uint16!] + + """""" + matchIndex_leq: uint16 + + """""" + matchIndex_lt: uint16 + + """""" + matchIndex_neq: uint16 + + """""" + matchIndex_notin: [uint16!] + + """""" + originResponseStatus: uint16 + + """""" + originResponseStatus_geq: uint16 + + """""" + originResponseStatus_gt: uint16 + + """""" + originResponseStatus_in: [uint16!] + + """""" + originResponseStatus_leq: uint16 + + """""" + originResponseStatus_lt: uint16 + + """""" + originResponseStatus_neq: uint16 + + """""" + originResponseStatus_notin: [uint16!] + + """""" + originatorRayName: string + + """""" + originatorRayName_geq: string + + """""" + originatorRayName_gt: string + + """""" + originatorRayName_in: [string!] + + """""" + originatorRayName_leq: string + + """""" + originatorRayName_like: string + + """""" + originatorRayName_lt: string + + """""" + originatorRayName_neq: string + + """""" + originatorRayName_notin: [string!] + + """""" + originatorRayName_notlike: string + + """""" + rayName: string + + """""" + rayName_geq: string + + """""" + rayName_gt: string + + """""" + rayName_in: [string!] + + """""" + rayName_leq: string + + """""" + rayName_like: string + + """""" + rayName_lt: string + + """""" + rayName_neq: string + + """""" + rayName_notin: [string!] + + """""" + rayName_notlike: string + + """""" + ref: string + + """""" + ref_geq: string + + """""" + ref_gt: string + + """""" + ref_in: [string!] + + """""" + ref_leq: string + + """""" + ref_like: string + + """""" + ref_lt: string + + """""" + ref_neq: string + + """""" + ref_notin: [string!] + + """""" + ref_notlike: string + + """""" + ruleId: string + + """""" + ruleId_geq: string + + """""" + ruleId_gt: string + + """""" + ruleId_in: [string!] + + """""" + ruleId_leq: string + + """""" + ruleId_like: string + + """""" + ruleId_lt: string + + """""" + ruleId_neq: string + + """""" + ruleId_notin: [string!] + + """""" + ruleId_notlike: string + + """""" + rulesetId: string + + """""" + rulesetId_geq: string + + """""" + rulesetId_gt: string + + """""" + rulesetId_in: [string!] + + """""" + rulesetId_leq: string + + """""" + rulesetId_like: string + + """""" + rulesetId_lt: string + + """""" + rulesetId_neq: string + + """""" + rulesetId_notin: [string!] + + """""" + rulesetId_notlike: string + + """""" + sampleInterval: uint32 + + """""" + sampleInterval_geq: uint32 + + """""" + sampleInterval_gt: uint32 + + """""" + sampleInterval_in: [uint32!] + + """""" + sampleInterval_leq: uint32 + + """""" + sampleInterval_lt: uint32 + + """""" + sampleInterval_neq: uint32 + + """""" + sampleInterval_notin: [uint32!] + + """""" + source: string + + """""" + source_geq: string + + """""" + source_gt: string + + """""" + source_in: [string!] + + """""" + source_leq: string + + """""" + source_like: string + + """""" + source_lt: string + + """""" + source_neq: string + + """""" + source_notin: [string!] + + """""" + source_notlike: string + + """""" + userAgent: string + + """""" + userAgent_geq: string + + """""" + userAgent_gt: string + + """""" + userAgent_in: [string!] + + """""" + userAgent_leq: string + + """""" + userAgent_like: string + + """""" + userAgent_lt: string + + """""" + userAgent_neq: string + + """""" + userAgent_notin: [string!] + + """""" + userAgent_notlike: string + + """""" + verifiedBotCategory: string + + """""" + verifiedBotCategory_geq: string + + """""" + verifiedBotCategory_gt: string + + """""" + verifiedBotCategory_in: [string!] + + """""" + verifiedBotCategory_leq: string + + """""" + verifiedBotCategory_like: string + + """""" + verifiedBotCategory_lt: string + + """""" + verifiedBotCategory_neq: string + + """""" + verifiedBotCategory_notin: [string!] + + """""" + verifiedBotCategory_notlike: string + + """""" + wafAttackScore: uint8 + + """""" + wafAttackScoreClass: string + + """""" + wafAttackScoreClass_geq: string + + """""" + wafAttackScoreClass_gt: string + + """""" + wafAttackScoreClass_in: [string!] + + """""" + wafAttackScoreClass_leq: string + + """""" + wafAttackScoreClass_like: string + + """""" + wafAttackScoreClass_lt: string + + """""" + wafAttackScoreClass_neq: string + + """""" + wafAttackScoreClass_notin: [string!] + + """""" + wafAttackScoreClass_notlike: string + + """""" + wafAttackScore_geq: uint8 + + """""" + wafAttackScore_gt: uint8 + + """""" + wafAttackScore_in: bytes + + """""" + wafAttackScore_leq: uint8 + + """""" + wafAttackScore_lt: uint8 + + """""" + wafAttackScore_neq: uint8 + + """""" + wafAttackScore_notin: bytes + + """""" + wafMlAttackScore: uint8 + + """""" + wafMlAttackScore_geq: uint8 + + """""" + wafMlAttackScore_gt: uint8 + + """""" + wafMlAttackScore_in: bytes + + """""" + wafMlAttackScore_leq: uint8 + + """""" + wafMlAttackScore_lt: uint8 + + """""" + wafMlAttackScore_neq: uint8 + + """""" + wafMlAttackScore_notin: bytes + + """""" + wafMlSqliAttackScore: uint8 + + """""" + wafMlSqliAttackScore_geq: uint8 + + """""" + wafMlSqliAttackScore_gt: uint8 + + """""" + wafMlSqliAttackScore_in: bytes + + """""" + wafMlSqliAttackScore_leq: uint8 + + """""" + wafMlSqliAttackScore_lt: uint8 + + """""" + wafMlSqliAttackScore_neq: uint8 + + """""" + wafMlSqliAttackScore_notin: bytes + + """""" + wafMlXssAttackScore: uint8 + + """""" + wafMlXssAttackScore_geq: uint8 + + """""" + wafMlXssAttackScore_gt: uint8 + + """""" + wafMlXssAttackScore_in: bytes + + """""" + wafMlXssAttackScore_leq: uint8 + + """""" + wafMlXssAttackScore_lt: uint8 + + """""" + wafMlXssAttackScore_neq: uint8 + + """""" + wafMlXssAttackScore_notin: bytes + + """""" + wafRceAttackScore: uint8 + + """""" + wafRceAttackScore_geq: uint8 + + """""" + wafRceAttackScore_gt: uint8 + + """""" + wafRceAttackScore_in: bytes + + """""" + wafRceAttackScore_leq: uint8 + + """""" + wafRceAttackScore_lt: uint8 + + """""" + wafRceAttackScore_neq: uint8 + + """""" + wafRceAttackScore_notin: bytes + + """""" + wafSqliAttackScore: uint8 + + """""" + wafSqliAttackScore_geq: uint8 + + """""" + wafSqliAttackScore_gt: uint8 + + """""" + wafSqliAttackScore_in: bytes + + """""" + wafSqliAttackScore_leq: uint8 + + """""" + wafSqliAttackScore_lt: uint8 + + """""" + wafSqliAttackScore_neq: uint8 + + """""" + wafSqliAttackScore_notin: bytes + + """""" + wafXssAttackScore: uint8 + + """""" + wafXssAttackScore_geq: uint8 + + """""" + wafXssAttackScore_gt: uint8 + + """""" + wafXssAttackScore_in: bytes + + """""" + wafXssAttackScore_leq: uint8 + + """""" + wafXssAttackScore_lt: uint8 + + """""" + wafXssAttackScore_neq: uint8 + + """""" + wafXssAttackScore_notin: bytes + + """""" + zoneVersion: uint64 + + """""" + zoneVersion_geq: uint64 + + """""" + zoneVersion_gt: uint64 + + """""" + zoneVersion_in: [uint64!] + + """""" + zoneVersion_leq: uint64 + + """""" + zoneVersion_lt: uint64 + + """""" + zoneVersion_neq: uint64 + + """""" + zoneVersion_notin: [uint64!] +} + +"""Aggregated Firewall events with adaptive sampling""" +type ZoneFirewallEventsAdaptiveGroups { + """The average value used for sample interval""" + avg: ZoneFirewallEventsAdaptiveGroupsAvg + + """ALPHA - DO NOT USE""" + confidence(level: float64!): ZoneFirewallEventsAdaptiveGroupsConfidence! + + """The sum of sample interval values""" + count: uint64! + + """List of dimensions to group by""" + dimensions: ZoneFirewallEventsAdaptiveGroupsDimensions + + """""" + sum: ZoneFirewallEventsAdaptiveGroupsSum +} + +"""""" +type ZoneFirewallEventsAdaptiveGroupsAvg { + """""" + sampleInterval: float64! +} + +"""""" +type ZoneFirewallEventsAdaptiveGroupsConfidence { + """The sum of sample interval values, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! +} + +"""""" +type ZoneFirewallEventsAdaptiveGroupsDimensions { + """ + The code of the first-class action the Cloudflare Firewall took on this request + """ + action: string! + + """API Gateway endpoint matched at the edge""" + apiGatewayMatchedEndpoint: string! + + """API Gateway host matched at the edge""" + apiGatewayMatchedHost: string! + + """ + 1-D array of the categories associated with the rules ref in attackSignatureRefs + """ + attackSignatureCategories: [string!]! + + """ + cf.waf.attack_signature.refs Ruleset field truncated to maximum 10 elements. + """ + attackSignatureRefs: [string!]! + + """Array of detections ids that matched this request""" + botDetectionIds: [uint32!]! + + """Array of detections tags that matched this request""" + botDetectionTags: [string!]! + + """The final score originated from bot management detections.""" + botScore: uint8! + + """Name of the source detection which generated the bot management score.""" + botScoreSrcName: string! + + """The ASN of the visitor as string""" + clientASNDescription: string! + + """The ASN number of the visitor""" + clientAsn: string! + + """Country from which request originated""" + clientCountryName: string! + + """The visitor's IP address (IPv4 or IPv6)""" + clientIP: string! + + """ + The classification of the visitor's IP address, possible values are: unknown | clean | badHost | searchEngine | allowlist | greylist | monitoringService | securityScanner | noRecord | scan | backupService | mobilePlatform | tor + """ + clientIPClass: string! + + """The referer host""" + clientRefererHost: string! + + """The referer path requested by visitor""" + clientRefererPath: string! + + """The referer query-string was requested by the visitor""" + clientRefererQuery: string! + + """The referer url scheme requested by the visitor""" + clientRefererScheme: string! + + """The HTTP hostname requested by the visitor""" + clientRequestHTTPHost: string! + + """The HTTP method used by the visitor""" + clientRequestHTTPMethodName: string! + + """The version of HTTP protocol requested by the visitor""" + clientRequestHTTPProtocol: string! + + """The path requested by visitor""" + clientRequestPath: string! + + """The query-string was requested by the visitor""" + clientRequestQuery: string! + + """The url scheme requested by the visitor""" + clientRequestScheme: string! + + """ + 1 if not all contents for this request where successfully scanned, else 0 + """ + contentScanHasFailed: uint8! + + """Number of scannable content objects that are malicious""" + contentScanNumMaliciousObj: uint8! + + """Number of scannable content objects""" + contentScanNumObj: uint8! + + """Array of scan results in order of detection""" + contentScanObjResults: [string!]! + + """Array of scan sizes in order of detection""" + contentScanObjSizes: [uint32!]! + + """Array of content types in order of detection""" + contentScanObjTypes: [string!]! + + """The date the event occurred at the edge""" + date: Date! + + """The date and time the event occurred at the edge""" + datetime: Time! + + """ + The date and time the event occurred at the edge truncated to a multiple of 15 minutes + """ + datetimeFifteenMinutes: Time! + + """ + The date and time the event occurred at the edge truncated to a multiple of 5 minutes + """ + datetimeFiveMinutes: Time! + + """The date and time the event occurred at the edge truncated to hours""" + datetimeHour: Time! + + """ + The date and time the event occurred at the edge truncated to the minute + """ + datetimeMinute: Time! + + """The description of the rule triggered by this request""" + description: string! + + """The airport code of the Cloudflare datacenter that served this request""" + edgeColoName: string! + + """HTTP response status code returned to browser""" + edgeResponseStatus: uint16! + + """ + Whether firewallForAiPiiCategories is non empty. 0 if empty, 1 if not empty. + """ + firewallForAiAnyPiiCategory: int8! + + """Corresponds to the Ruleset field cf.llm.prompt.injection_score.""" + firewallForAiInjectionScore: int8! + + """Corresponds to the Ruleset field cf.llm.prompt.pii_categories.""" + firewallForAiPiiCategories: [string!]! + + """Corresponds to the Ruleset field cf.llm.prompt.unsafe_data_categories.""" + firewallForAiUnsafeTopicCategories: [string!]! + + """ + The primary attack or use case detected in the request by Fraud detections + """ + fraudAttack: string! + + """Array of fraud detections ids that matched this request""" + fraudDetectionIds: [uint32!]! + + """Array of fraud detections tags that matched this request""" + fraudDetectionTags: [string!]! + + """Risk of a specific email address in account signup attempts""" + fraudEmailRisk: string! + + """Version associated with HTTP Application""" + httpApplicationVersion: uint64! @deprecated(reason: "Field is replaced with zoneVersion") + + """MD5 hash of the JA3 TLS fingerprint""" + ja3Hash: string! + + """JA4 TLS fingerprint""" + ja4: string! + + """Whether the request passed background JavaScript Detection""" + jsDetectionPassed: string! + + """The kind of event, currently only possible values are: firewall""" + kind: string! + + """Rules match index in the chain""" + matchIndex: uint16! + + """HTTP origin response status code returned to browser""" + originResponseStatus: uint16! + + """The RayId of the request that issued the challenge/jschallenge""" + originatorRayName: string! + + """The RayId of the request""" + rayName: string! + + """ + The ref-field is a user-defined rule identifier that can be set via the API for some firewall products and allows users to label their rules individually alongside cloudflare provided identifiers (only available to entitled customers) + """ + ref: string! + + """ + The Cloudflare security product-specific RuleId triggered by this request + """ + ruleId: string! + + """ + The Cloudflare security product-specific RulesetId triggered by this request + """ + rulesetId: string! + + """ABR sample interval""" + sampleInterval: uint32! + + """The Cloudflare security product triggered by this request""" + source: string! + + """visitor's user-agent string""" + userAgent: string! + + """The category of verified bot""" + verifiedBotCategory: string! + + """Beta. Overall request score generated by the WAF detection module""" + wafAttackScore: uint8! + + """ + Beta. Overall request score class generated by the WAF detection module + """ + wafAttackScoreClass: string! + + """Beta. Overall request score generated by the WAF ML detection module""" + wafMlAttackScore: uint8! @deprecated(reason: "Field is replaced with wafAttackScore") + + """Beta. WAF ML score for an SQLi attack""" + wafMlSqliAttackScore: uint8! @deprecated(reason: "Field is replaced with wafSqliAttackScore") + + """Beta. WAF ML score for an XSS attack""" + wafMlXssAttackScore: uint8! @deprecated(reason: "Field is replaced with wafXssAttackScore") + + """Beta. WAF score for a RCE attack""" + wafRceAttackScore: uint8! + + """Beta. WAF score for a SQLi attack""" + wafSqliAttackScore: uint8! + + """Beta. WAF score for a XSS attack""" + wafXssAttackScore: uint8! + + """The version of a zone""" + zoneVersion: uint64! +} + +"""""" +input ZoneFirewallEventsAdaptiveGroupsFilter_InputObject { + """""" + AND: [ZoneFirewallEventsAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [ZoneFirewallEventsAdaptiveGroupsFilter_InputObject!] + + """""" + action: string + + """""" + action_geq: string + + """""" + action_gt: string + + """""" + action_in: [string!] + + """""" + action_leq: string + + """""" + action_like: string + + """""" + action_lt: string + + """""" + action_neq: string + + """""" + action_notin: [string!] + + """""" + action_notlike: string + + """""" + apiGatewayMatchedEndpoint: string + + """""" + apiGatewayMatchedEndpoint_geq: string + + """""" + apiGatewayMatchedEndpoint_gt: string + + """""" + apiGatewayMatchedEndpoint_in: [string!] + + """""" + apiGatewayMatchedEndpoint_leq: string + + """""" + apiGatewayMatchedEndpoint_like: string + + """""" + apiGatewayMatchedEndpoint_lt: string + + """""" + apiGatewayMatchedEndpoint_neq: string + + """""" + apiGatewayMatchedEndpoint_notin: [string!] + + """""" + apiGatewayMatchedEndpoint_notlike: string + + """""" + apiGatewayMatchedHost: string + + """""" + apiGatewayMatchedHost_geq: string + + """""" + apiGatewayMatchedHost_gt: string + + """""" + apiGatewayMatchedHost_in: [string!] + + """""" + apiGatewayMatchedHost_leq: string + + """""" + apiGatewayMatchedHost_like: string + + """""" + apiGatewayMatchedHost_lt: string + + """""" + apiGatewayMatchedHost_neq: string + + """""" + apiGatewayMatchedHost_notin: [string!] + + """""" + apiGatewayMatchedHost_notlike: string + + """""" + attackSignatureCategories_has: string + + """""" + attackSignatureCategories_hasall: [string!] + + """""" + attackSignatureCategories_hasany: [string!] + + """""" + attackSignatureCategories_isempty: bool + + """""" + attackSignatureCategories_nothas: string + + """""" + attackSignatureRefs_has: string + + """""" + attackSignatureRefs_hasall: [string!] + + """""" + attackSignatureRefs_hasany: [string!] + + """""" + attackSignatureRefs_isempty: bool + + """""" + attackSignatureRefs_nothas: string + + """""" + botDetectionIds_has: uint32 + + """""" + botDetectionIds_hasall: [uint32!] + + """""" + botDetectionIds_hasany: [uint32!] + + """""" + botDetectionIds_isempty: bool + + """""" + botDetectionIds_nothas: uint32 + + """""" + botDetectionTags_has: string + + """""" + botDetectionTags_hasall: [string!] + + """""" + botDetectionTags_hasany: [string!] + + """""" + botDetectionTags_isempty: bool + + """""" + botDetectionTags_nothas: string + + """""" + botScore: uint8 + + """""" + botScoreSrcName: string + + """""" + botScoreSrcName_geq: string + + """""" + botScoreSrcName_gt: string + + """""" + botScoreSrcName_in: [string!] + + """""" + botScoreSrcName_leq: string + + """""" + botScoreSrcName_like: string + + """""" + botScoreSrcName_lt: string + + """""" + botScoreSrcName_neq: string + + """""" + botScoreSrcName_notin: [string!] + + """""" + botScoreSrcName_notlike: string + + """""" + botScore_geq: uint8 + + """""" + botScore_gt: uint8 + + """""" + botScore_in: bytes + + """""" + botScore_leq: uint8 + + """""" + botScore_lt: uint8 + + """""" + botScore_neq: uint8 + + """""" + botScore_notin: bytes + + """""" + clientASNDescription: string + + """""" + clientASNDescription_geq: string + + """""" + clientASNDescription_gt: string + + """""" + clientASNDescription_in: [string!] + + """""" + clientASNDescription_leq: string + + """""" + clientASNDescription_like: string + + """""" + clientASNDescription_lt: string + + """""" + clientASNDescription_neq: string + + """""" + clientASNDescription_notin: [string!] + + """""" + clientASNDescription_notlike: string + + """""" + clientAsn: string + + """""" + clientAsn_geq: string + + """""" + clientAsn_gt: string + + """""" + clientAsn_in: [string!] + + """""" + clientAsn_leq: string + + """""" + clientAsn_like: string + + """""" + clientAsn_lt: string + + """""" + clientAsn_neq: string + + """""" + clientAsn_notin: [string!] + + """""" + clientAsn_notlike: string + + """""" + clientCountryName: string + + """""" + clientCountryName_geq: string + + """""" + clientCountryName_gt: string + + """""" + clientCountryName_in: [string!] + + """""" + clientCountryName_leq: string + + """""" + clientCountryName_like: string + + """""" + clientCountryName_lt: string + + """""" + clientCountryName_neq: string + + """""" + clientCountryName_notin: [string!] + + """""" + clientCountryName_notlike: string + + """""" + clientIP: string + + """""" + clientIPClass: string + + """""" + clientIPClass_geq: string + + """""" + clientIPClass_gt: string + + """""" + clientIPClass_in: [string!] + + """""" + clientIPClass_leq: string + + """""" + clientIPClass_like: string + + """""" + clientIPClass_lt: string + + """""" + clientIPClass_neq: string + + """""" + clientIPClass_notin: [string!] + + """""" + clientIPClass_notlike: string + + """""" + clientIP_geq: string + + """""" + clientIP_gt: string + + """""" + clientIP_in: [string!] + + """""" + clientIP_leq: string + + """""" + clientIP_like: string + + """""" + clientIP_lt: string + + """""" + clientIP_neq: string + + """""" + clientIP_notin: [string!] + + """""" + clientIP_notlike: string + + """""" + clientRefererHost: string + + """""" + clientRefererHost_geq: string + + """""" + clientRefererHost_gt: string + + """""" + clientRefererHost_in: [string!] + + """""" + clientRefererHost_leq: string + + """""" + clientRefererHost_like: string + + """""" + clientRefererHost_lt: string + + """""" + clientRefererHost_neq: string + + """""" + clientRefererHost_notin: [string!] + + """""" + clientRefererHost_notlike: string + + """""" + clientRefererPath: string + + """""" + clientRefererPath_geq: string + + """""" + clientRefererPath_gt: string + + """""" + clientRefererPath_in: [string!] + + """""" + clientRefererPath_leq: string + + """""" + clientRefererPath_like: string + + """""" + clientRefererPath_lt: string + + """""" + clientRefererPath_neq: string + + """""" + clientRefererPath_notin: [string!] + + """""" + clientRefererPath_notlike: string + + """""" + clientRefererQuery: string + + """""" + clientRefererQuery_geq: string + + """""" + clientRefererQuery_gt: string + + """""" + clientRefererQuery_in: [string!] + + """""" + clientRefererQuery_leq: string + + """""" + clientRefererQuery_like: string + + """""" + clientRefererQuery_lt: string + + """""" + clientRefererQuery_neq: string + + """""" + clientRefererQuery_notin: [string!] + + """""" + clientRefererQuery_notlike: string + + """""" + clientRefererScheme: string + + """""" + clientRefererScheme_geq: string + + """""" + clientRefererScheme_gt: string + + """""" + clientRefererScheme_in: [string!] + + """""" + clientRefererScheme_leq: string + + """""" + clientRefererScheme_like: string + + """""" + clientRefererScheme_lt: string + + """""" + clientRefererScheme_neq: string + + """""" + clientRefererScheme_notin: [string!] + + """""" + clientRefererScheme_notlike: string + + """""" + clientRequestHTTPHost: string + + """""" + clientRequestHTTPHost_geq: string + + """""" + clientRequestHTTPHost_gt: string + + """""" + clientRequestHTTPHost_in: [string!] + + """""" + clientRequestHTTPHost_leq: string + + """""" + clientRequestHTTPHost_like: string + + """""" + clientRequestHTTPHost_lt: string + + """""" + clientRequestHTTPHost_neq: string + + """""" + clientRequestHTTPHost_notin: [string!] + + """""" + clientRequestHTTPHost_notlike: string + + """""" + clientRequestHTTPMethodName: string + + """""" + clientRequestHTTPMethodName_geq: string + + """""" + clientRequestHTTPMethodName_gt: string + + """""" + clientRequestHTTPMethodName_in: [string!] + + """""" + clientRequestHTTPMethodName_leq: string + + """""" + clientRequestHTTPMethodName_like: string + + """""" + clientRequestHTTPMethodName_lt: string + + """""" + clientRequestHTTPMethodName_neq: string + + """""" + clientRequestHTTPMethodName_notin: [string!] + + """""" + clientRequestHTTPMethodName_notlike: string + + """""" + clientRequestHTTPProtocol: string + + """""" + clientRequestHTTPProtocol_geq: string + + """""" + clientRequestHTTPProtocol_gt: string + + """""" + clientRequestHTTPProtocol_in: [string!] + + """""" + clientRequestHTTPProtocol_leq: string + + """""" + clientRequestHTTPProtocol_like: string + + """""" + clientRequestHTTPProtocol_lt: string + + """""" + clientRequestHTTPProtocol_neq: string + + """""" + clientRequestHTTPProtocol_notin: [string!] + + """""" + clientRequestHTTPProtocol_notlike: string + + """""" + clientRequestPath: string + + """""" + clientRequestPath_geq: string + + """""" + clientRequestPath_gt: string + + """""" + clientRequestPath_in: [string!] + + """""" + clientRequestPath_leq: string + + """""" + clientRequestPath_like: string + + """""" + clientRequestPath_lt: string + + """""" + clientRequestPath_neq: string + + """""" + clientRequestPath_notin: [string!] + + """""" + clientRequestPath_notlike: string + + """""" + clientRequestQuery: string + + """""" + clientRequestQuery_geq: string + + """""" + clientRequestQuery_gt: string + + """""" + clientRequestQuery_in: [string!] + + """""" + clientRequestQuery_leq: string + + """""" + clientRequestQuery_like: string + + """""" + clientRequestQuery_lt: string + + """""" + clientRequestQuery_neq: string + + """""" + clientRequestQuery_notin: [string!] + + """""" + clientRequestQuery_notlike: string + + """""" + clientRequestScheme: string + + """""" + clientRequestScheme_geq: string + + """""" + clientRequestScheme_gt: string + + """""" + clientRequestScheme_in: [string!] + + """""" + clientRequestScheme_leq: string + + """""" + clientRequestScheme_like: string + + """""" + clientRequestScheme_lt: string + + """""" + clientRequestScheme_neq: string + + """""" + clientRequestScheme_notin: [string!] + + """""" + clientRequestScheme_notlike: string + + """""" + contentScanHasFailed: uint8 + + """""" + contentScanHasFailed_geq: uint8 + + """""" + contentScanHasFailed_gt: uint8 + + """""" + contentScanHasFailed_in: bytes + + """""" + contentScanHasFailed_leq: uint8 + + """""" + contentScanHasFailed_lt: uint8 + + """""" + contentScanHasFailed_neq: uint8 + + """""" + contentScanHasFailed_notin: bytes + + """""" + contentScanNumMaliciousObj: uint8 + + """""" + contentScanNumMaliciousObj_geq: uint8 + + """""" + contentScanNumMaliciousObj_gt: uint8 + + """""" + contentScanNumMaliciousObj_in: bytes + + """""" + contentScanNumMaliciousObj_leq: uint8 + + """""" + contentScanNumMaliciousObj_lt: uint8 + + """""" + contentScanNumMaliciousObj_neq: uint8 + + """""" + contentScanNumMaliciousObj_notin: bytes + + """""" + contentScanNumObj: uint8 + + """""" + contentScanNumObj_geq: uint8 + + """""" + contentScanNumObj_gt: uint8 + + """""" + contentScanNumObj_in: bytes + + """""" + contentScanNumObj_leq: uint8 + + """""" + contentScanNumObj_lt: uint8 + + """""" + contentScanNumObj_neq: uint8 + + """""" + contentScanNumObj_notin: bytes + + """""" + contentScanObjResults_has: string + + """""" + contentScanObjResults_hasall: [string!] + + """""" + contentScanObjResults_hasany: [string!] + + """""" + contentScanObjResults_isempty: bool + + """""" + contentScanObjResults_nothas: string + + """""" + contentScanObjSizes_has: uint32 + + """""" + contentScanObjSizes_hasall: [uint32!] + + """""" + contentScanObjSizes_hasany: [uint32!] + + """""" + contentScanObjSizes_isempty: bool + + """""" + contentScanObjSizes_nothas: uint32 + + """""" + contentScanObjTypes_has: string + + """""" + contentScanObjTypes_hasall: [string!] + + """""" + contentScanObjTypes_hasany: [string!] + + """""" + contentScanObjTypes_isempty: bool + + """""" + contentScanObjTypes_nothas: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + description: string + + """""" + description_geq: string + + """""" + description_gt: string + + """""" + description_in: [string!] + + """""" + description_leq: string + + """""" + description_like: string + + """""" + description_lt: string + + """""" + description_neq: string + + """""" + description_notin: [string!] + + """""" + description_notlike: string + + """""" + edgeColoName: string + + """""" + edgeColoName_geq: string + + """""" + edgeColoName_gt: string + + """""" + edgeColoName_in: [string!] + + """""" + edgeColoName_leq: string + + """""" + edgeColoName_like: string + + """""" + edgeColoName_lt: string + + """""" + edgeColoName_neq: string + + """""" + edgeColoName_notin: [string!] + + """""" + edgeColoName_notlike: string + + """""" + edgeResponseStatus: uint16 + + """""" + edgeResponseStatus_geq: uint16 + + """""" + edgeResponseStatus_gt: uint16 + + """""" + edgeResponseStatus_in: [uint16!] + + """""" + edgeResponseStatus_leq: uint16 + + """""" + edgeResponseStatus_lt: uint16 + + """""" + edgeResponseStatus_neq: uint16 + + """""" + edgeResponseStatus_notin: [uint16!] + + """""" + firewallForAiAnyPiiCategory: int8 + + """""" + firewallForAiAnyPiiCategory_geq: int8 + + """""" + firewallForAiAnyPiiCategory_gt: int8 + + """""" + firewallForAiAnyPiiCategory_in: [int8!] + + """""" + firewallForAiAnyPiiCategory_leq: int8 + + """""" + firewallForAiAnyPiiCategory_lt: int8 + + """""" + firewallForAiAnyPiiCategory_neq: int8 + + """""" + firewallForAiAnyPiiCategory_notin: [int8!] + + """""" + firewallForAiInjectionScore: int8 + + """""" + firewallForAiInjectionScore_geq: int8 + + """""" + firewallForAiInjectionScore_gt: int8 + + """""" + firewallForAiInjectionScore_in: [int8!] + + """""" + firewallForAiInjectionScore_leq: int8 + + """""" + firewallForAiInjectionScore_lt: int8 + + """""" + firewallForAiInjectionScore_neq: int8 + + """""" + firewallForAiInjectionScore_notin: [int8!] + + """""" + firewallForAiPiiCategories_has: string + + """""" + firewallForAiPiiCategories_hasall: [string!] + + """""" + firewallForAiPiiCategories_hasany: [string!] + + """""" + firewallForAiPiiCategories_isempty: bool + + """""" + firewallForAiPiiCategories_nothas: string + + """""" + firewallForAiUnsafeTopicCategories_has: string + + """""" + firewallForAiUnsafeTopicCategories_hasall: [string!] + + """""" + firewallForAiUnsafeTopicCategories_hasany: [string!] + + """""" + firewallForAiUnsafeTopicCategories_isempty: bool + + """""" + firewallForAiUnsafeTopicCategories_nothas: string + + """""" + fraudAttack: string + + """""" + fraudAttack_geq: string + + """""" + fraudAttack_gt: string + + """""" + fraudAttack_in: [string!] + + """""" + fraudAttack_leq: string + + """""" + fraudAttack_like: string + + """""" + fraudAttack_lt: string + + """""" + fraudAttack_neq: string + + """""" + fraudAttack_notin: [string!] + + """""" + fraudAttack_notlike: string + + """""" + fraudDetectionIds_has: uint32 + + """""" + fraudDetectionIds_hasall: [uint32!] + + """""" + fraudDetectionIds_hasany: [uint32!] + + """""" + fraudDetectionIds_isempty: bool + + """""" + fraudDetectionIds_nothas: uint32 + + """""" + fraudDetectionTags_has: string + + """""" + fraudDetectionTags_hasall: [string!] + + """""" + fraudDetectionTags_hasany: [string!] + + """""" + fraudDetectionTags_isempty: bool + + """""" + fraudDetectionTags_nothas: string + + """""" + fraudEmailRisk: string + + """""" + fraudEmailRisk_geq: string + + """""" + fraudEmailRisk_gt: string + + """""" + fraudEmailRisk_in: [string!] + + """""" + fraudEmailRisk_leq: string + + """""" + fraudEmailRisk_like: string + + """""" + fraudEmailRisk_lt: string + + """""" + fraudEmailRisk_neq: string + + """""" + fraudEmailRisk_notin: [string!] + + """""" + fraudEmailRisk_notlike: string + + """""" + httpApplicationVersion: uint64 + + """""" + httpApplicationVersion_geq: uint64 + + """""" + httpApplicationVersion_gt: uint64 + + """""" + httpApplicationVersion_in: [uint64!] + + """""" + httpApplicationVersion_leq: uint64 + + """""" + httpApplicationVersion_lt: uint64 + + """""" + httpApplicationVersion_neq: uint64 + + """""" + httpApplicationVersion_notin: [uint64!] + + """""" + ja3Hash: string + + """""" + ja3Hash_geq: string + + """""" + ja3Hash_gt: string + + """""" + ja3Hash_in: [string!] + + """""" + ja3Hash_leq: string + + """""" + ja3Hash_like: string + + """""" + ja3Hash_lt: string + + """""" + ja3Hash_neq: string + + """""" + ja3Hash_notin: [string!] + + """""" + ja3Hash_notlike: string + + """""" + ja4: string + + """""" + ja4_geq: string + + """""" + ja4_gt: string + + """""" + ja4_in: [string!] + + """""" + ja4_leq: string + + """""" + ja4_like: string + + """""" + ja4_lt: string + + """""" + ja4_neq: string + + """""" + ja4_notin: [string!] + + """""" + ja4_notlike: string + + """""" + jsDetectionPassed: string + + """""" + jsDetectionPassed_geq: string + + """""" + jsDetectionPassed_gt: string + + """""" + jsDetectionPassed_in: [string!] + + """""" + jsDetectionPassed_leq: string + + """""" + jsDetectionPassed_like: string + + """""" + jsDetectionPassed_lt: string + + """""" + jsDetectionPassed_neq: string + + """""" + jsDetectionPassed_notin: [string!] + + """""" + jsDetectionPassed_notlike: string + + """""" + kind: string + + """""" + kind_geq: string + + """""" + kind_gt: string + + """""" + kind_in: [string!] + + """""" + kind_leq: string + + """""" + kind_like: string + + """""" + kind_lt: string + + """""" + kind_neq: string + + """""" + kind_notin: [string!] + + """""" + kind_notlike: string + + """""" + matchIndex: uint16 + + """""" + matchIndex_geq: uint16 + + """""" + matchIndex_gt: uint16 + + """""" + matchIndex_in: [uint16!] + + """""" + matchIndex_leq: uint16 + + """""" + matchIndex_lt: uint16 + + """""" + matchIndex_neq: uint16 + + """""" + matchIndex_notin: [uint16!] + + """""" + originResponseStatus: uint16 + + """""" + originResponseStatus_geq: uint16 + + """""" + originResponseStatus_gt: uint16 + + """""" + originResponseStatus_in: [uint16!] + + """""" + originResponseStatus_leq: uint16 + + """""" + originResponseStatus_lt: uint16 + + """""" + originResponseStatus_neq: uint16 + + """""" + originResponseStatus_notin: [uint16!] + + """""" + originatorRayName: string + + """""" + originatorRayName_geq: string + + """""" + originatorRayName_gt: string + + """""" + originatorRayName_in: [string!] + + """""" + originatorRayName_leq: string + + """""" + originatorRayName_like: string + + """""" + originatorRayName_lt: string + + """""" + originatorRayName_neq: string + + """""" + originatorRayName_notin: [string!] + + """""" + originatorRayName_notlike: string + + """""" + rayName: string + + """""" + rayName_geq: string + + """""" + rayName_gt: string + + """""" + rayName_in: [string!] + + """""" + rayName_leq: string + + """""" + rayName_like: string + + """""" + rayName_lt: string + + """""" + rayName_neq: string + + """""" + rayName_notin: [string!] + + """""" + rayName_notlike: string + + """""" + ref: string + + """""" + ref_geq: string + + """""" + ref_gt: string + + """""" + ref_in: [string!] + + """""" + ref_leq: string + + """""" + ref_like: string + + """""" + ref_lt: string + + """""" + ref_neq: string + + """""" + ref_notin: [string!] + + """""" + ref_notlike: string + + """""" + ruleId: string + + """""" + ruleId_geq: string + + """""" + ruleId_gt: string + + """""" + ruleId_in: [string!] + + """""" + ruleId_leq: string + + """""" + ruleId_like: string + + """""" + ruleId_lt: string + + """""" + ruleId_neq: string + + """""" + ruleId_notin: [string!] + + """""" + ruleId_notlike: string + + """""" + rulesetId: string + + """""" + rulesetId_geq: string + + """""" + rulesetId_gt: string + + """""" + rulesetId_in: [string!] + + """""" + rulesetId_leq: string + + """""" + rulesetId_like: string + + """""" + rulesetId_lt: string + + """""" + rulesetId_neq: string + + """""" + rulesetId_notin: [string!] + + """""" + rulesetId_notlike: string + + """""" + sampleInterval: uint32 + + """""" + sampleInterval_geq: uint32 + + """""" + sampleInterval_gt: uint32 + + """""" + sampleInterval_in: [uint32!] + + """""" + sampleInterval_leq: uint32 + + """""" + sampleInterval_lt: uint32 + + """""" + sampleInterval_neq: uint32 + + """""" + sampleInterval_notin: [uint32!] + + """""" + source: string + + """""" + source_geq: string + + """""" + source_gt: string + + """""" + source_in: [string!] + + """""" + source_leq: string + + """""" + source_like: string + + """""" + source_lt: string + + """""" + source_neq: string + + """""" + source_notin: [string!] + + """""" + source_notlike: string + + """""" + userAgent: string + + """""" + userAgent_geq: string + + """""" + userAgent_gt: string + + """""" + userAgent_in: [string!] + + """""" + userAgent_leq: string + + """""" + userAgent_like: string + + """""" + userAgent_lt: string + + """""" + userAgent_neq: string + + """""" + userAgent_notin: [string!] + + """""" + userAgent_notlike: string + + """""" + verifiedBotCategory: string + + """""" + verifiedBotCategory_geq: string + + """""" + verifiedBotCategory_gt: string + + """""" + verifiedBotCategory_in: [string!] + + """""" + verifiedBotCategory_leq: string + + """""" + verifiedBotCategory_like: string + + """""" + verifiedBotCategory_lt: string + + """""" + verifiedBotCategory_neq: string + + """""" + verifiedBotCategory_notin: [string!] + + """""" + verifiedBotCategory_notlike: string + + """""" + wafAttackScore: uint8 + + """""" + wafAttackScoreClass: string + + """""" + wafAttackScoreClass_geq: string + + """""" + wafAttackScoreClass_gt: string + + """""" + wafAttackScoreClass_in: [string!] + + """""" + wafAttackScoreClass_leq: string + + """""" + wafAttackScoreClass_like: string + + """""" + wafAttackScoreClass_lt: string + + """""" + wafAttackScoreClass_neq: string + + """""" + wafAttackScoreClass_notin: [string!] + + """""" + wafAttackScoreClass_notlike: string + + """""" + wafAttackScore_geq: uint8 + + """""" + wafAttackScore_gt: uint8 + + """""" + wafAttackScore_in: bytes + + """""" + wafAttackScore_leq: uint8 + + """""" + wafAttackScore_lt: uint8 + + """""" + wafAttackScore_neq: uint8 + + """""" + wafAttackScore_notin: bytes + + """""" + wafMlAttackScore: uint8 + + """""" + wafMlAttackScore_geq: uint8 + + """""" + wafMlAttackScore_gt: uint8 + + """""" + wafMlAttackScore_in: bytes + + """""" + wafMlAttackScore_leq: uint8 + + """""" + wafMlAttackScore_lt: uint8 + + """""" + wafMlAttackScore_neq: uint8 + + """""" + wafMlAttackScore_notin: bytes + + """""" + wafMlSqliAttackScore: uint8 + + """""" + wafMlSqliAttackScore_geq: uint8 + + """""" + wafMlSqliAttackScore_gt: uint8 + + """""" + wafMlSqliAttackScore_in: bytes + + """""" + wafMlSqliAttackScore_leq: uint8 + + """""" + wafMlSqliAttackScore_lt: uint8 + + """""" + wafMlSqliAttackScore_neq: uint8 + + """""" + wafMlSqliAttackScore_notin: bytes + + """""" + wafMlXssAttackScore: uint8 + + """""" + wafMlXssAttackScore_geq: uint8 + + """""" + wafMlXssAttackScore_gt: uint8 + + """""" + wafMlXssAttackScore_in: bytes + + """""" + wafMlXssAttackScore_leq: uint8 + + """""" + wafMlXssAttackScore_lt: uint8 + + """""" + wafMlXssAttackScore_neq: uint8 + + """""" + wafMlXssAttackScore_notin: bytes + + """""" + wafRceAttackScore: uint8 + + """""" + wafRceAttackScore_geq: uint8 + + """""" + wafRceAttackScore_gt: uint8 + + """""" + wafRceAttackScore_in: bytes + + """""" + wafRceAttackScore_leq: uint8 + + """""" + wafRceAttackScore_lt: uint8 + + """""" + wafRceAttackScore_neq: uint8 + + """""" + wafRceAttackScore_notin: bytes + + """""" + wafSqliAttackScore: uint8 + + """""" + wafSqliAttackScore_geq: uint8 + + """""" + wafSqliAttackScore_gt: uint8 + + """""" + wafSqliAttackScore_in: bytes + + """""" + wafSqliAttackScore_leq: uint8 + + """""" + wafSqliAttackScore_lt: uint8 + + """""" + wafSqliAttackScore_neq: uint8 + + """""" + wafSqliAttackScore_notin: bytes + + """""" + wafXssAttackScore: uint8 + + """""" + wafXssAttackScore_geq: uint8 + + """""" + wafXssAttackScore_gt: uint8 + + """""" + wafXssAttackScore_in: bytes + + """""" + wafXssAttackScore_leq: uint8 + + """""" + wafXssAttackScore_lt: uint8 + + """""" + wafXssAttackScore_neq: uint8 + + """""" + wafXssAttackScore_notin: bytes + + """""" + zoneVersion: uint64 + + """""" + zoneVersion_geq: uint64 + + """""" + zoneVersion_gt: uint64 + + """""" + zoneVersion_in: [uint64!] + + """""" + zoneVersion_leq: uint64 + + """""" + zoneVersion_lt: uint64 + + """""" + zoneVersion_neq: uint64 + + """""" + zoneVersion_notin: [uint64!] +} + +"""""" +enum ZoneFirewallEventsAdaptiveGroupsOrderBy { + """action ascending""" + action_ASC + + """action descending""" + action_DESC + + """apiGatewayMatchedEndpoint ascending""" + apiGatewayMatchedEndpoint_ASC + + """apiGatewayMatchedEndpoint descending""" + apiGatewayMatchedEndpoint_DESC + + """apiGatewayMatchedHost ascending""" + apiGatewayMatchedHost_ASC + + """apiGatewayMatchedHost descending""" + apiGatewayMatchedHost_DESC + + """attackSignatureCategories ascending""" + attackSignatureCategories_ASC + + """attackSignatureCategories descending""" + attackSignatureCategories_DESC + + """attackSignatureRefs ascending""" + attackSignatureRefs_ASC + + """attackSignatureRefs descending""" + attackSignatureRefs_DESC + + """avg(sampleInterval) ascending""" + avg_sampleInterval_ASC + + """avg(sampleInterval) descending""" + avg_sampleInterval_DESC + + """botDetectionIds ascending""" + botDetectionIds_ASC + + """botDetectionIds descending""" + botDetectionIds_DESC + + """botDetectionTags ascending""" + botDetectionTags_ASC + + """botDetectionTags descending""" + botDetectionTags_DESC + + """botScoreSrcName ascending""" + botScoreSrcName_ASC + + """botScoreSrcName descending""" + botScoreSrcName_DESC + + """botScore ascending""" + botScore_ASC + + """botScore descending""" + botScore_DESC + + """clientASNDescription ascending""" + clientASNDescription_ASC + + """clientASNDescription descending""" + clientASNDescription_DESC + + """clientAsn ascending""" + clientAsn_ASC + + """clientAsn descending""" + clientAsn_DESC + + """clientCountryName ascending""" + clientCountryName_ASC + + """clientCountryName descending""" + clientCountryName_DESC + + """clientIPClass ascending""" + clientIPClass_ASC + + """clientIPClass descending""" + clientIPClass_DESC + + """clientIP ascending""" + clientIP_ASC + + """clientIP descending""" + clientIP_DESC + + """clientRefererHost ascending""" + clientRefererHost_ASC + + """clientRefererHost descending""" + clientRefererHost_DESC + + """clientRefererPath ascending""" + clientRefererPath_ASC + + """clientRefererPath descending""" + clientRefererPath_DESC + + """clientRefererQuery ascending""" + clientRefererQuery_ASC + + """clientRefererQuery descending""" + clientRefererQuery_DESC + + """clientRefererScheme ascending""" + clientRefererScheme_ASC + + """clientRefererScheme descending""" + clientRefererScheme_DESC + + """clientRequestHTTPHost ascending""" + clientRequestHTTPHost_ASC + + """clientRequestHTTPHost descending""" + clientRequestHTTPHost_DESC + + """clientRequestHTTPMethodName ascending""" + clientRequestHTTPMethodName_ASC + + """clientRequestHTTPMethodName descending""" + clientRequestHTTPMethodName_DESC + + """clientRequestHTTPProtocol ascending""" + clientRequestHTTPProtocol_ASC + + """clientRequestHTTPProtocol descending""" + clientRequestHTTPProtocol_DESC + + """clientRequestPath ascending""" + clientRequestPath_ASC + + """clientRequestPath descending""" + clientRequestPath_DESC + + """clientRequestQuery ascending""" + clientRequestQuery_ASC + + """clientRequestQuery descending""" + clientRequestQuery_DESC + + """clientRequestScheme ascending""" + clientRequestScheme_ASC + + """clientRequestScheme descending""" + clientRequestScheme_DESC + + """contentScanHasFailed ascending""" + contentScanHasFailed_ASC + + """contentScanHasFailed descending""" + contentScanHasFailed_DESC + + """contentScanNumMaliciousObj ascending""" + contentScanNumMaliciousObj_ASC + + """contentScanNumMaliciousObj descending""" + contentScanNumMaliciousObj_DESC + + """contentScanNumObj ascending""" + contentScanNumObj_ASC + + """contentScanNumObj descending""" + contentScanNumObj_DESC + + """contentScanObjResults ascending""" + contentScanObjResults_ASC + + """contentScanObjResults descending""" + contentScanObjResults_DESC + + """contentScanObjSizes ascending""" + contentScanObjSizes_ASC + + """contentScanObjSizes descending""" + contentScanObjSizes_DESC + + """contentScanObjTypes ascending""" + contentScanObjTypes_ASC + + """contentScanObjTypes descending""" + contentScanObjTypes_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """description ascending""" + description_ASC + + """description descending""" + description_DESC + + """edgeColoName ascending""" + edgeColoName_ASC + + """edgeColoName descending""" + edgeColoName_DESC + + """edgeResponseStatus ascending""" + edgeResponseStatus_ASC + + """edgeResponseStatus descending""" + edgeResponseStatus_DESC + + """firewallForAiAnyPiiCategory ascending""" + firewallForAiAnyPiiCategory_ASC + + """firewallForAiAnyPiiCategory descending""" + firewallForAiAnyPiiCategory_DESC + + """firewallForAiInjectionScore ascending""" + firewallForAiInjectionScore_ASC + + """firewallForAiInjectionScore descending""" + firewallForAiInjectionScore_DESC + + """firewallForAiPiiCategories ascending""" + firewallForAiPiiCategories_ASC + + """firewallForAiPiiCategories descending""" + firewallForAiPiiCategories_DESC + + """firewallForAiUnsafeTopicCategories ascending""" + firewallForAiUnsafeTopicCategories_ASC + + """firewallForAiUnsafeTopicCategories descending""" + firewallForAiUnsafeTopicCategories_DESC + + """fraudAttack ascending""" + fraudAttack_ASC + + """fraudAttack descending""" + fraudAttack_DESC + + """fraudDetectionIds ascending""" + fraudDetectionIds_ASC + + """fraudDetectionIds descending""" + fraudDetectionIds_DESC + + """fraudDetectionTags ascending""" + fraudDetectionTags_ASC + + """fraudDetectionTags descending""" + fraudDetectionTags_DESC + + """fraudEmailRisk ascending""" + fraudEmailRisk_ASC + + """fraudEmailRisk descending""" + fraudEmailRisk_DESC + + """httpApplicationVersion ascending""" + httpApplicationVersion_ASC + + """httpApplicationVersion descending""" + httpApplicationVersion_DESC + + """ja3Hash ascending""" + ja3Hash_ASC + + """ja3Hash descending""" + ja3Hash_DESC + + """ja4 ascending""" + ja4_ASC + + """ja4 descending""" + ja4_DESC + + """jsDetectionPassed ascending""" + jsDetectionPassed_ASC + + """jsDetectionPassed descending""" + jsDetectionPassed_DESC + + """kind ascending""" + kind_ASC + + """kind descending""" + kind_DESC + + """matchIndex ascending""" + matchIndex_ASC + + """matchIndex descending""" + matchIndex_DESC + + """originResponseStatus ascending""" + originResponseStatus_ASC + + """originResponseStatus descending""" + originResponseStatus_DESC + + """originatorRayName ascending""" + originatorRayName_ASC + + """originatorRayName descending""" + originatorRayName_DESC + + """rayName ascending""" + rayName_ASC + + """rayName descending""" + rayName_DESC + + """ref ascending""" + ref_ASC + + """ref descending""" + ref_DESC + + """ruleId ascending""" + ruleId_ASC + + """ruleId descending""" + ruleId_DESC + + """rulesetId ascending""" + rulesetId_ASC + + """rulesetId descending""" + rulesetId_DESC + + """sampleInterval ascending""" + sampleInterval_ASC + + """sampleInterval descending""" + sampleInterval_DESC + + """source ascending""" + source_ASC + + """source descending""" + source_DESC + + """sum(botDetectionIdArray) ascending""" + sum_botDetectionIdArray_ASC + + """sum(botDetectionIdArray) descending""" + sum_botDetectionIdArray_DESC + + """sum(botDetectionIdCountArray) ascending""" + sum_botDetectionIdCountArray_ASC + + """sum(botDetectionIdCountArray) descending""" + sum_botDetectionIdCountArray_DESC + + """sum(botDetectionTagArray) ascending""" + sum_botDetectionTagArray_ASC + + """sum(botDetectionTagArray) descending""" + sum_botDetectionTagArray_DESC + + """sum(botDetectionTagCountArray) ascending""" + sum_botDetectionTagCountArray_ASC + + """sum(botDetectionTagCountArray) descending""" + sum_botDetectionTagCountArray_DESC + + """sum(fraudDetectionIdArray) ascending""" + sum_fraudDetectionIdArray_ASC + + """sum(fraudDetectionIdArray) descending""" + sum_fraudDetectionIdArray_DESC + + """sum(fraudDetectionIdCountArray) ascending""" + sum_fraudDetectionIdCountArray_ASC + + """sum(fraudDetectionIdCountArray) descending""" + sum_fraudDetectionIdCountArray_DESC + + """sum(fraudDetectionTagArray) ascending""" + sum_fraudDetectionTagArray_ASC + + """sum(fraudDetectionTagArray) descending""" + sum_fraudDetectionTagArray_DESC + + """sum(fraudDetectionTagCountArray) ascending""" + sum_fraudDetectionTagCountArray_ASC + + """sum(fraudDetectionTagCountArray) descending""" + sum_fraudDetectionTagCountArray_DESC + + """userAgent ascending""" + userAgent_ASC + + """userAgent descending""" + userAgent_DESC + + """verifiedBotCategory ascending""" + verifiedBotCategory_ASC + + """verifiedBotCategory descending""" + verifiedBotCategory_DESC + + """visibility ascending""" + visibility_ASC + + """visibility descending""" + visibility_DESC + + """wafAttackScoreClass ascending""" + wafAttackScoreClass_ASC + + """wafAttackScoreClass descending""" + wafAttackScoreClass_DESC + + """wafAttackScore ascending""" + wafAttackScore_ASC + + """wafAttackScore descending""" + wafAttackScore_DESC + + """wafMlAttackScore ascending""" + wafMlAttackScore_ASC + + """wafMlAttackScore descending""" + wafMlAttackScore_DESC + + """wafMlSqliAttackScore ascending""" + wafMlSqliAttackScore_ASC + + """wafMlSqliAttackScore descending""" + wafMlSqliAttackScore_DESC + + """wafMlXssAttackScore ascending""" + wafMlXssAttackScore_ASC + + """wafMlXssAttackScore descending""" + wafMlXssAttackScore_DESC + + """wafRceAttackScore ascending""" + wafRceAttackScore_ASC + + """wafRceAttackScore descending""" + wafRceAttackScore_DESC + + """wafSqliAttackScore ascending""" + wafSqliAttackScore_ASC + + """wafSqliAttackScore descending""" + wafSqliAttackScore_DESC + + """wafXssAttackScore ascending""" + wafXssAttackScore_ASC + + """wafXssAttackScore descending""" + wafXssAttackScore_DESC + + """zoneVersion ascending""" + zoneVersion_ASC + + """zoneVersion descending""" + zoneVersion_DESC +} + +"""""" +type ZoneFirewallEventsAdaptiveGroupsSum { + """Array of bot management detection ids""" + botDetectionIdArray: [uint32!]! + + """ + Count array of bot management detection ids. Elements in this array correspond to elements in botDetectionIdArray by index. + """ + botDetectionIdCountArray: [uint32!]! + + """Array of bot management detection tags""" + botDetectionTagArray: [string!]! + + """ + Count array of bot management detection tags. Elements in this array correspond to elements in botDetectionTagArray by index. + """ + botDetectionTagCountArray: [uint32!]! + + """Array of fraud detection ids""" + fraudDetectionIdArray: [uint32!]! + + """ + Count array of fraud detection ids. Elements in this array correspond to elements in fraudDetectionIdArray by index. + """ + fraudDetectionIdCountArray: [uint32!]! + + """Array of fraud detection tags""" + fraudDetectionTagArray: [string!]! + + """ + Count array of fraud detection tags. Elements in this array correspond to elements in fraudDetectionTagArray by index. + """ + fraudDetectionTagCountArray: [uint32!]! +} + +"""""" +type ZoneFirewallEventsAdaptiveJa4SignalsElem { + """Signal name""" + signalName: string! + + """Signal value""" + signalValue: float32! +} + +"""""" +type ZoneFirewallEventsAdaptiveMetadataElem { + """ + The key of the metadata. Key format can vary by Cloudflare security product and can change over time. + """ + key: string! + + """ + The value of the metadata. Value format can vary by Cloudflare security product and can change over time. + """ + value: string! +} + +"""""" +enum ZoneFirewallEventsAdaptiveOrderBy { + """action ascending""" + action_ASC + + """action descending""" + action_DESC + + """apiGatewayMatchedEndpoint ascending""" + apiGatewayMatchedEndpoint_ASC + + """apiGatewayMatchedEndpoint descending""" + apiGatewayMatchedEndpoint_DESC + + """apiGatewayMatchedHost ascending""" + apiGatewayMatchedHost_ASC + + """apiGatewayMatchedHost descending""" + apiGatewayMatchedHost_DESC + + """attackSignatureCategories ascending""" + attackSignatureCategories_ASC + + """attackSignatureCategories descending""" + attackSignatureCategories_DESC + + """attackSignatureRefs ascending""" + attackSignatureRefs_ASC + + """attackSignatureRefs descending""" + attackSignatureRefs_DESC + + """botDetectionIds ascending""" + botDetectionIds_ASC + + """botDetectionIds descending""" + botDetectionIds_DESC + + """botDetectionTags ascending""" + botDetectionTags_ASC + + """botDetectionTags descending""" + botDetectionTags_DESC + + """botScoreSrcName ascending""" + botScoreSrcName_ASC + + """botScoreSrcName descending""" + botScoreSrcName_DESC + + """botScore ascending""" + botScore_ASC + + """botScore descending""" + botScore_DESC + + """clientASNDescription ascending""" + clientASNDescription_ASC + + """clientASNDescription descending""" + clientASNDescription_DESC + + """clientAsn ascending""" + clientAsn_ASC + + """clientAsn descending""" + clientAsn_DESC + + """clientCountryName ascending""" + clientCountryName_ASC + + """clientCountryName descending""" + clientCountryName_DESC + + """clientIPClass ascending""" + clientIPClass_ASC + + """clientIPClass descending""" + clientIPClass_DESC + + """clientIP ascending""" + clientIP_ASC + + """clientIP descending""" + clientIP_DESC + + """clientRefererHost ascending""" + clientRefererHost_ASC + + """clientRefererHost descending""" + clientRefererHost_DESC + + """clientRefererPath ascending""" + clientRefererPath_ASC + + """clientRefererPath descending""" + clientRefererPath_DESC + + """clientRefererQuery ascending""" + clientRefererQuery_ASC + + """clientRefererQuery descending""" + clientRefererQuery_DESC + + """clientRefererScheme ascending""" + clientRefererScheme_ASC + + """clientRefererScheme descending""" + clientRefererScheme_DESC + + """clientRequestHTTPHost ascending""" + clientRequestHTTPHost_ASC + + """clientRequestHTTPHost descending""" + clientRequestHTTPHost_DESC + + """clientRequestHTTPMethodName ascending""" + clientRequestHTTPMethodName_ASC + + """clientRequestHTTPMethodName descending""" + clientRequestHTTPMethodName_DESC + + """clientRequestHTTPProtocol ascending""" + clientRequestHTTPProtocol_ASC + + """clientRequestHTTPProtocol descending""" + clientRequestHTTPProtocol_DESC + + """clientRequestPath ascending""" + clientRequestPath_ASC + + """clientRequestPath descending""" + clientRequestPath_DESC + + """clientRequestQuery ascending""" + clientRequestQuery_ASC + + """clientRequestQuery descending""" + clientRequestQuery_DESC + + """clientRequestScheme ascending""" + clientRequestScheme_ASC + + """clientRequestScheme descending""" + clientRequestScheme_DESC + + """contentScanHasFailed ascending""" + contentScanHasFailed_ASC + + """contentScanHasFailed descending""" + contentScanHasFailed_DESC + + """contentScanNumMaliciousObj ascending""" + contentScanNumMaliciousObj_ASC + + """contentScanNumMaliciousObj descending""" + contentScanNumMaliciousObj_DESC + + """contentScanNumObj ascending""" + contentScanNumObj_ASC + + """contentScanNumObj descending""" + contentScanNumObj_DESC + + """contentScanObjResults ascending""" + contentScanObjResults_ASC + + """contentScanObjResults descending""" + contentScanObjResults_DESC + + """contentScanObjSizes ascending""" + contentScanObjSizes_ASC + + """contentScanObjSizes descending""" + contentScanObjSizes_DESC + + """contentScanObjTypes ascending""" + contentScanObjTypes_ASC + + """contentScanObjTypes descending""" + contentScanObjTypes_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """description ascending""" + description_ASC + + """description descending""" + description_DESC + + """edgeColoName ascending""" + edgeColoName_ASC + + """edgeColoName descending""" + edgeColoName_DESC + + """edgeResponseStatus ascending""" + edgeResponseStatus_ASC + + """edgeResponseStatus descending""" + edgeResponseStatus_DESC + + """firewallForAiAnyPiiCategory ascending""" + firewallForAiAnyPiiCategory_ASC + + """firewallForAiAnyPiiCategory descending""" + firewallForAiAnyPiiCategory_DESC + + """firewallForAiInjectionScore ascending""" + firewallForAiInjectionScore_ASC + + """firewallForAiInjectionScore descending""" + firewallForAiInjectionScore_DESC + + """firewallForAiPiiCategories ascending""" + firewallForAiPiiCategories_ASC + + """firewallForAiPiiCategories descending""" + firewallForAiPiiCategories_DESC + + """firewallForAiUnsafeTopicCategories ascending""" + firewallForAiUnsafeTopicCategories_ASC + + """firewallForAiUnsafeTopicCategories descending""" + firewallForAiUnsafeTopicCategories_DESC + + """fraudAttack ascending""" + fraudAttack_ASC + + """fraudAttack descending""" + fraudAttack_DESC + + """fraudDetectionIds ascending""" + fraudDetectionIds_ASC + + """fraudDetectionIds descending""" + fraudDetectionIds_DESC + + """fraudDetectionTags ascending""" + fraudDetectionTags_ASC + + """fraudDetectionTags descending""" + fraudDetectionTags_DESC + + """fraudEmailRisk ascending""" + fraudEmailRisk_ASC + + """fraudEmailRisk descending""" + fraudEmailRisk_DESC + + """httpApplicationVersion ascending""" + httpApplicationVersion_ASC + + """httpApplicationVersion descending""" + httpApplicationVersion_DESC + + """ja3Hash ascending""" + ja3Hash_ASC + + """ja3Hash descending""" + ja3Hash_DESC + + """ja4 ascending""" + ja4_ASC + + """ja4 descending""" + ja4_DESC + + """jsDetectionPassed ascending""" + jsDetectionPassed_ASC + + """jsDetectionPassed descending""" + jsDetectionPassed_DESC + + """kind ascending""" + kind_ASC + + """kind descending""" + kind_DESC + + """leakedCredentialCheckResult ascending""" + leakedCredentialCheckResult_ASC + + """leakedCredentialCheckResult descending""" + leakedCredentialCheckResult_DESC + + """matchIndex ascending""" + matchIndex_ASC + + """matchIndex descending""" + matchIndex_DESC + + """originResponseStatus ascending""" + originResponseStatus_ASC + + """originResponseStatus descending""" + originResponseStatus_DESC + + """originatorRayName ascending""" + originatorRayName_ASC + + """originatorRayName descending""" + originatorRayName_DESC + + """rayName ascending""" + rayName_ASC + + """rayName descending""" + rayName_DESC + + """ref ascending""" + ref_ASC + + """ref descending""" + ref_DESC + + """ruleId ascending""" + ruleId_ASC + + """ruleId descending""" + ruleId_DESC + + """rulesetId ascending""" + rulesetId_ASC + + """rulesetId descending""" + rulesetId_DESC + + """sampleInterval ascending""" + sampleInterval_ASC + + """sampleInterval descending""" + sampleInterval_DESC + + """source ascending""" + source_ASC + + """source descending""" + source_DESC + + """userAgent ascending""" + userAgent_ASC + + """userAgent descending""" + userAgent_DESC + + """verifiedBotCategory ascending""" + verifiedBotCategory_ASC + + """verifiedBotCategory descending""" + verifiedBotCategory_DESC + + """visibility ascending""" + visibility_ASC + + """visibility descending""" + visibility_DESC + + """wafAttackScoreClass ascending""" + wafAttackScoreClass_ASC + + """wafAttackScoreClass descending""" + wafAttackScoreClass_DESC + + """wafAttackScore ascending""" + wafAttackScore_ASC + + """wafAttackScore descending""" + wafAttackScore_DESC + + """wafMlAttackScore ascending""" + wafMlAttackScore_ASC + + """wafMlAttackScore descending""" + wafMlAttackScore_DESC + + """wafMlSqliAttackScore ascending""" + wafMlSqliAttackScore_ASC + + """wafMlSqliAttackScore descending""" + wafMlSqliAttackScore_DESC + + """wafMlXssAttackScore ascending""" + wafMlXssAttackScore_ASC + + """wafMlXssAttackScore descending""" + wafMlXssAttackScore_DESC + + """wafRceAttackScore ascending""" + wafRceAttackScore_ASC + + """wafRceAttackScore descending""" + wafRceAttackScore_DESC + + """wafSqliAttackScore ascending""" + wafSqliAttackScore_ASC + + """wafSqliAttackScore descending""" + wafSqliAttackScore_DESC + + """wafXssAttackScore ascending""" + wafXssAttackScore_ASC + + """wafXssAttackScore descending""" + wafXssAttackScore_DESC + + """zoneVersion ascending""" + zoneVersion_ASC + + """zoneVersion descending""" + zoneVersion_DESC +} + +"""Raw Health Check events with adaptive sampling""" +type ZoneHealthCheckEventsAdaptive { + """The date the event was written to the database""" + date: Date! + + """The date and time the event was written to the database""" + datetime: Time! + + """The event id that created this healthcheck event""" + eventId: string! + + """The expected response codes for the health check""" + expectedResponseCodes: string! + + """Reason why the health check failed""" + failureReason: string! + + """Fully qualified domain name of the origin (if available)""" + fqdn: string! + + """ + 1 if the origin health status has changed since the last health check, 0 otherwise + """ + healthChanged: uint8! + + """A unique identifier for the health check""" + healthCheckId: string! + + """Human-identifiable health check name""" + healthCheckName: string! + + """Origin health status""" + healthStatus: string! + + """IP address of the origin""" + originIP: string! + + """HTTP status code returned by the origin""" + originResponseStatus: uint16! + + """Region where the health check occurred""" + region: string! + + """RTT (milliseconds) to reach the origin""" + rttMs: uint64! + + """ABR sample interval""" + sampleInterval: uint32! + + """Geographic aggregation level of the health status""" + scope: string! + + """Time taken for the tcp connection to be established""" + tcpConnMs: uint32! + + """ + Time taken for the first byte to be received once connection is available + """ + timeToFirstByteMs: uint32! + + """Time taken for the tls handshake to be completed""" + tlsHandshakeMs: uint32! +} + +"""""" +input ZoneHealthCheckEventsAdaptiveFilter_InputObject { + """""" + AND: [ZoneHealthCheckEventsAdaptiveFilter_InputObject!] + + """""" + OR: [ZoneHealthCheckEventsAdaptiveFilter_InputObject!] + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + eventId: string + + """""" + eventId_geq: string + + """""" + eventId_gt: string + + """""" + eventId_in: [string!] + + """""" + eventId_leq: string + + """""" + eventId_like: string + + """""" + eventId_lt: string + + """""" + eventId_neq: string + + """""" + eventId_notin: [string!] + + """""" + eventId_notlike: string + + """""" + expectedResponseCodes: string + + """""" + expectedResponseCodes_geq: string + + """""" + expectedResponseCodes_gt: string + + """""" + expectedResponseCodes_in: [string!] + + """""" + expectedResponseCodes_leq: string + + """""" + expectedResponseCodes_like: string + + """""" + expectedResponseCodes_lt: string + + """""" + expectedResponseCodes_neq: string + + """""" + expectedResponseCodes_notin: [string!] + + """""" + expectedResponseCodes_notlike: string + + """""" + failureReason: string + + """""" + failureReason_geq: string + + """""" + failureReason_gt: string + + """""" + failureReason_in: [string!] + + """""" + failureReason_leq: string + + """""" + failureReason_like: string + + """""" + failureReason_lt: string + + """""" + failureReason_neq: string + + """""" + failureReason_notin: [string!] + + """""" + failureReason_notlike: string + + """""" + fqdn: string + + """""" + fqdn_geq: string + + """""" + fqdn_gt: string + + """""" + fqdn_in: [string!] + + """""" + fqdn_leq: string + + """""" + fqdn_like: string + + """""" + fqdn_lt: string + + """""" + fqdn_neq: string + + """""" + fqdn_notin: [string!] + + """""" + fqdn_notlike: string + + """""" + healthChanged: uint8 + + """""" + healthChanged_geq: uint8 + + """""" + healthChanged_gt: uint8 + + """""" + healthChanged_in: bytes + + """""" + healthChanged_leq: uint8 + + """""" + healthChanged_lt: uint8 + + """""" + healthChanged_neq: uint8 + + """""" + healthChanged_notin: bytes + + """""" + healthCheckId: string + + """""" + healthCheckId_geq: string + + """""" + healthCheckId_gt: string + + """""" + healthCheckId_in: [string!] + + """""" + healthCheckId_leq: string + + """""" + healthCheckId_like: string + + """""" + healthCheckId_lt: string + + """""" + healthCheckId_neq: string + + """""" + healthCheckId_notin: [string!] + + """""" + healthCheckId_notlike: string + + """""" + healthCheckName: string + + """""" + healthCheckName_geq: string + + """""" + healthCheckName_gt: string + + """""" + healthCheckName_in: [string!] + + """""" + healthCheckName_leq: string + + """""" + healthCheckName_like: string + + """""" + healthCheckName_lt: string + + """""" + healthCheckName_neq: string + + """""" + healthCheckName_notin: [string!] + + """""" + healthCheckName_notlike: string + + """""" + healthStatus: string + + """""" + healthStatus_geq: string + + """""" + healthStatus_gt: string + + """""" + healthStatus_in: [string!] + + """""" + healthStatus_leq: string + + """""" + healthStatus_like: string + + """""" + healthStatus_lt: string + + """""" + healthStatus_neq: string + + """""" + healthStatus_notin: [string!] + + """""" + healthStatus_notlike: string + + """""" + originIP: string + + """""" + originIP_geq: string + + """""" + originIP_gt: string + + """""" + originIP_in: [string!] + + """""" + originIP_leq: string + + """""" + originIP_like: string + + """""" + originIP_lt: string + + """""" + originIP_neq: string + + """""" + originIP_notin: [string!] + + """""" + originIP_notlike: string + + """""" + originResponseStatus: uint16 + + """""" + originResponseStatus_geq: uint16 + + """""" + originResponseStatus_gt: uint16 + + """""" + originResponseStatus_in: [uint16!] + + """""" + originResponseStatus_leq: uint16 + + """""" + originResponseStatus_lt: uint16 + + """""" + originResponseStatus_neq: uint16 + + """""" + originResponseStatus_notin: [uint16!] + + """""" + region: string + + """""" + region_geq: string + + """""" + region_gt: string + + """""" + region_in: [string!] + + """""" + region_leq: string + + """""" + region_like: string + + """""" + region_lt: string + + """""" + region_neq: string + + """""" + region_notin: [string!] + + """""" + region_notlike: string + + """""" + rttMs: uint64 + + """""" + rttMs_geq: uint64 + + """""" + rttMs_gt: uint64 + + """""" + rttMs_in: [uint64!] + + """""" + rttMs_leq: uint64 + + """""" + rttMs_lt: uint64 + + """""" + rttMs_neq: uint64 + + """""" + rttMs_notin: [uint64!] + + """""" + sampleInterval: uint32 + + """""" + sampleInterval_geq: uint32 + + """""" + sampleInterval_gt: uint32 + + """""" + sampleInterval_in: [uint32!] + + """""" + sampleInterval_leq: uint32 + + """""" + sampleInterval_lt: uint32 + + """""" + sampleInterval_neq: uint32 + + """""" + sampleInterval_notin: [uint32!] + + """""" + scope: string + + """""" + scope_geq: string + + """""" + scope_gt: string + + """""" + scope_in: [string!] + + """""" + scope_leq: string + + """""" + scope_like: string + + """""" + scope_lt: string + + """""" + scope_neq: string + + """""" + scope_notin: [string!] + + """""" + scope_notlike: string + + """""" + tcpConnMs: uint32 + + """""" + tcpConnMs_geq: uint32 + + """""" + tcpConnMs_gt: uint32 + + """""" + tcpConnMs_in: [uint32!] + + """""" + tcpConnMs_leq: uint32 + + """""" + tcpConnMs_lt: uint32 + + """""" + tcpConnMs_neq: uint32 + + """""" + tcpConnMs_notin: [uint32!] + + """""" + timeToFirstByteMs: uint32 + + """""" + timeToFirstByteMs_geq: uint32 + + """""" + timeToFirstByteMs_gt: uint32 + + """""" + timeToFirstByteMs_in: [uint32!] + + """""" + timeToFirstByteMs_leq: uint32 + + """""" + timeToFirstByteMs_lt: uint32 + + """""" + timeToFirstByteMs_neq: uint32 + + """""" + timeToFirstByteMs_notin: [uint32!] + + """""" + tlsHandshakeMs: uint32 + + """""" + tlsHandshakeMs_geq: uint32 + + """""" + tlsHandshakeMs_gt: uint32 + + """""" + tlsHandshakeMs_in: [uint32!] + + """""" + tlsHandshakeMs_leq: uint32 + + """""" + tlsHandshakeMs_lt: uint32 + + """""" + tlsHandshakeMs_neq: uint32 + + """""" + tlsHandshakeMs_notin: [uint32!] +} + +"""Aggregated Health Check events with adaptive sampling""" +type ZoneHealthCheckEventsAdaptiveGroups { + """The average value for a metric""" + avg: ZoneHealthCheckEventsAdaptiveGroupsAvg + + """ALPHA - DO NOT USE""" + confidence(level: float64!): ZoneHealthCheckEventsAdaptiveGroupsConfidence! + + """The number of values for a metric per dimension""" + count: uint64! + + """List of dimensions to group by""" + dimensions: ZoneHealthCheckEventsAdaptiveGroupsDimensions + + """The sum of values for a metric per dimension""" + sum: ZoneHealthCheckEventsAdaptiveGroupsSum +} + +"""""" +type ZoneHealthCheckEventsAdaptiveGroupsAvg { + """Average RTT (milliseconds)""" + rttMs: uint64! + + """Average sample interval""" + sampleInterval: float64! + + """Average TCP Connection time (milliseconds)""" + tcpConnMs: uint32! + + """Average Time To First Byte (milliseconds)""" + timeToFirstByteMs: uint32! + + """Average TLS Handshake time (milliseconds)""" + tlsHandshakeMs: uint32! +} + +"""""" +type ZoneHealthCheckEventsAdaptiveGroupsConfidence { + """ + The number of values for a metric per dimension, with confidence intervals + """ + count: Confidence! + + """Confidence level that was requested""" + level: float64! + + """ + The sum of values for a metric per dimension, with confidence intervals + """ + sum: ZoneHealthCheckEventsAdaptiveGroupsSumConfidence +} + +"""""" +type ZoneHealthCheckEventsAdaptiveGroupsDimensions { + """The date the event was written to the database""" + date: Date! + + """Datetime the event was written to the database""" + datetime: Time! + + """ + Datetime the event was written to the database truncated to a multiple of 15 minutes + """ + datetimeFifteenMinutes: Time! + + """ + Datetime the event was written to the database truncated to a multiple of 5 minutes + """ + datetimeFiveMinutes: Time! + + """Datetime the event was written to the database truncated to the hour""" + datetimeHour: Time! + + """Datetime the event was written to the database truncated to the minute""" + datetimeMinute: Time! + + """Reason why the health check failed""" + failureReason: string! + + """Fully qualified domain name of the origin (if available)""" + fqdn: string! + + """ + 1 if the origin health status has changed since the last health check, 0 otherwise + """ + healthChanged: uint8! + + """A unique identifier for the health check""" + healthCheckId: string! + + """Human-identifiable health check name""" + healthCheckName: string! + + """Origin health status""" + healthStatus: string! + + """IP address of the origin""" + originIP: string! + + """HTTP status code returned by the origin""" + originResponseStatus: uint16! + + """Region where the health check occurred""" + region: string! + + """RTT (milliseconds) to reach the origin""" + rttMs: uint64! + + """ABR sample interval""" + sampleInterval: uint32! + + """Geographic aggregation level of the health status""" + scope: string! + + """Time taken for the tcp connection to be established""" + tcpConnMs: uint32! + + """ + Time taken for the first byte to be received once connection is available + """ + timeToFirstByteMs: uint32! + + """Time taken for the tls handshake to be completed""" + tlsHandshakeMs: uint32! +} + +"""""" +input ZoneHealthCheckEventsAdaptiveGroupsFilter_InputObject { + """""" + AND: [ZoneHealthCheckEventsAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [ZoneHealthCheckEventsAdaptiveGroupsFilter_InputObject!] + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + failureReason: string + + """""" + failureReason_geq: string + + """""" + failureReason_gt: string + + """""" + failureReason_in: [string!] + + """""" + failureReason_leq: string + + """""" + failureReason_like: string + + """""" + failureReason_lt: string + + """""" + failureReason_neq: string + + """""" + failureReason_notin: [string!] + + """""" + failureReason_notlike: string + + """""" + fqdn: string + + """""" + fqdn_geq: string + + """""" + fqdn_gt: string + + """""" + fqdn_in: [string!] + + """""" + fqdn_leq: string + + """""" + fqdn_like: string + + """""" + fqdn_lt: string + + """""" + fqdn_neq: string + + """""" + fqdn_notin: [string!] + + """""" + fqdn_notlike: string + + """""" + healthChanged: uint8 + + """""" + healthChanged_geq: uint8 + + """""" + healthChanged_gt: uint8 + + """""" + healthChanged_in: bytes + + """""" + healthChanged_leq: uint8 + + """""" + healthChanged_lt: uint8 + + """""" + healthChanged_neq: uint8 + + """""" + healthChanged_notin: bytes + + """""" + healthCheckId: string + + """""" + healthCheckId_geq: string + + """""" + healthCheckId_gt: string + + """""" + healthCheckId_in: [string!] + + """""" + healthCheckId_leq: string + + """""" + healthCheckId_like: string + + """""" + healthCheckId_lt: string + + """""" + healthCheckId_neq: string + + """""" + healthCheckId_notin: [string!] + + """""" + healthCheckId_notlike: string + + """""" + healthCheckName: string + + """""" + healthCheckName_geq: string + + """""" + healthCheckName_gt: string + + """""" + healthCheckName_in: [string!] + + """""" + healthCheckName_leq: string + + """""" + healthCheckName_like: string + + """""" + healthCheckName_lt: string + + """""" + healthCheckName_neq: string + + """""" + healthCheckName_notin: [string!] + + """""" + healthCheckName_notlike: string + + """""" + healthStatus: string + + """""" + healthStatus_geq: string + + """""" + healthStatus_gt: string + + """""" + healthStatus_in: [string!] + + """""" + healthStatus_leq: string + + """""" + healthStatus_like: string + + """""" + healthStatus_lt: string + + """""" + healthStatus_neq: string + + """""" + healthStatus_notin: [string!] + + """""" + healthStatus_notlike: string + + """""" + originIP: string + + """""" + originIP_geq: string + + """""" + originIP_gt: string + + """""" + originIP_in: [string!] + + """""" + originIP_leq: string + + """""" + originIP_like: string + + """""" + originIP_lt: string + + """""" + originIP_neq: string + + """""" + originIP_notin: [string!] + + """""" + originIP_notlike: string + + """""" + originResponseStatus: uint16 + + """""" + originResponseStatus_geq: uint16 + + """""" + originResponseStatus_gt: uint16 + + """""" + originResponseStatus_in: [uint16!] + + """""" + originResponseStatus_leq: uint16 + + """""" + originResponseStatus_lt: uint16 + + """""" + originResponseStatus_neq: uint16 + + """""" + originResponseStatus_notin: [uint16!] + + """""" + region: string + + """""" + region_geq: string + + """""" + region_gt: string + + """""" + region_in: [string!] + + """""" + region_leq: string + + """""" + region_like: string + + """""" + region_lt: string + + """""" + region_neq: string + + """""" + region_notin: [string!] + + """""" + region_notlike: string + + """""" + rttMs: uint64 + + """""" + rttMs_geq: uint64 + + """""" + rttMs_gt: uint64 + + """""" + rttMs_in: [uint64!] + + """""" + rttMs_leq: uint64 + + """""" + rttMs_lt: uint64 + + """""" + rttMs_neq: uint64 + + """""" + rttMs_notin: [uint64!] + + """""" + sampleInterval: uint32 + + """""" + sampleInterval_geq: uint32 + + """""" + sampleInterval_gt: uint32 + + """""" + sampleInterval_in: [uint32!] + + """""" + sampleInterval_leq: uint32 + + """""" + sampleInterval_lt: uint32 + + """""" + sampleInterval_neq: uint32 + + """""" + sampleInterval_notin: [uint32!] + + """""" + scope: string + + """""" + scope_geq: string + + """""" + scope_gt: string + + """""" + scope_in: [string!] + + """""" + scope_leq: string + + """""" + scope_like: string + + """""" + scope_lt: string + + """""" + scope_neq: string + + """""" + scope_notin: [string!] + + """""" + scope_notlike: string + + """""" + tcpConnMs: uint32 + + """""" + tcpConnMs_geq: uint32 + + """""" + tcpConnMs_gt: uint32 + + """""" + tcpConnMs_in: [uint32!] + + """""" + tcpConnMs_leq: uint32 + + """""" + tcpConnMs_lt: uint32 + + """""" + tcpConnMs_neq: uint32 + + """""" + tcpConnMs_notin: [uint32!] + + """""" + timeToFirstByteMs: uint32 + + """""" + timeToFirstByteMs_geq: uint32 + + """""" + timeToFirstByteMs_gt: uint32 + + """""" + timeToFirstByteMs_in: [uint32!] + + """""" + timeToFirstByteMs_leq: uint32 + + """""" + timeToFirstByteMs_lt: uint32 + + """""" + timeToFirstByteMs_neq: uint32 + + """""" + timeToFirstByteMs_notin: [uint32!] + + """""" + tlsHandshakeMs: uint32 + + """""" + tlsHandshakeMs_geq: uint32 + + """""" + tlsHandshakeMs_gt: uint32 + + """""" + tlsHandshakeMs_in: [uint32!] + + """""" + tlsHandshakeMs_leq: uint32 + + """""" + tlsHandshakeMs_lt: uint32 + + """""" + tlsHandshakeMs_neq: uint32 + + """""" + tlsHandshakeMs_notin: [uint32!] +} + +"""""" +enum ZoneHealthCheckEventsAdaptiveGroupsOrderBy { + """avg(rttMs) ascending""" + avg_rttMs_ASC + + """avg(rttMs) descending""" + avg_rttMs_DESC + + """avg(sampleInterval) ascending""" + avg_sampleInterval_ASC + + """avg(sampleInterval) descending""" + avg_sampleInterval_DESC + + """avg(tcpConnMs) ascending""" + avg_tcpConnMs_ASC + + """avg(tcpConnMs) descending""" + avg_tcpConnMs_DESC + + """avg(timeToFirstByteMs) ascending""" + avg_timeToFirstByteMs_ASC + + """avg(timeToFirstByteMs) descending""" + avg_timeToFirstByteMs_DESC + + """avg(tlsHandshakeMs) ascending""" + avg_tlsHandshakeMs_ASC + + """avg(tlsHandshakeMs) descending""" + avg_tlsHandshakeMs_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """failureReason ascending""" + failureReason_ASC + + """failureReason descending""" + failureReason_DESC + + """fqdn ascending""" + fqdn_ASC + + """fqdn descending""" + fqdn_DESC + + """healthChanged ascending""" + healthChanged_ASC + + """healthChanged descending""" + healthChanged_DESC + + """healthCheckId ascending""" + healthCheckId_ASC + + """healthCheckId descending""" + healthCheckId_DESC + + """healthCheckName ascending""" + healthCheckName_ASC + + """healthCheckName descending""" + healthCheckName_DESC + + """healthStatus ascending""" + healthStatus_ASC + + """healthStatus descending""" + healthStatus_DESC + + """originIP ascending""" + originIP_ASC + + """originIP descending""" + originIP_DESC + + """originResponseStatus ascending""" + originResponseStatus_ASC + + """originResponseStatus descending""" + originResponseStatus_DESC + + """region ascending""" + region_ASC + + """region descending""" + region_DESC + + """rttMs ascending""" + rttMs_ASC + + """rttMs descending""" + rttMs_DESC + + """sampleInterval ascending""" + sampleInterval_ASC + + """sampleInterval descending""" + sampleInterval_DESC + + """scope ascending""" + scope_ASC + + """scope descending""" + scope_DESC + + """sum(healthStatus) ascending""" + sum_healthStatus_ASC + + """sum(healthStatus) descending""" + sum_healthStatus_DESC + + """tcpConnMs ascending""" + tcpConnMs_ASC + + """tcpConnMs descending""" + tcpConnMs_DESC + + """timeToFirstByteMs ascending""" + timeToFirstByteMs_ASC + + """timeToFirstByteMs descending""" + timeToFirstByteMs_DESC + + """tlsHandshakeMs ascending""" + tlsHandshakeMs_ASC + + """tlsHandshakeMs descending""" + tlsHandshakeMs_DESC +} + +"""""" +type ZoneHealthCheckEventsAdaptiveGroupsSum { + """""" + healthStatus: uint64! +} + +"""""" +type ZoneHealthCheckEventsAdaptiveGroupsSumConfidence { + """Confidence interval for the corresponding point estimate""" + healthStatus: Confidence! +} + +"""""" +enum ZoneHealthCheckEventsAdaptiveOrderBy { + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """eventId ascending""" + eventId_ASC + + """eventId descending""" + eventId_DESC + + """expectedResponseCodes ascending""" + expectedResponseCodes_ASC + + """expectedResponseCodes descending""" + expectedResponseCodes_DESC + + """failureReason ascending""" + failureReason_ASC + + """failureReason descending""" + failureReason_DESC + + """fqdn ascending""" + fqdn_ASC + + """fqdn descending""" + fqdn_DESC + + """healthChanged ascending""" + healthChanged_ASC + + """healthChanged descending""" + healthChanged_DESC + + """healthCheckId ascending""" + healthCheckId_ASC + + """healthCheckId descending""" + healthCheckId_DESC + + """healthCheckName ascending""" + healthCheckName_ASC + + """healthCheckName descending""" + healthCheckName_DESC + + """healthStatus ascending""" + healthStatus_ASC + + """healthStatus descending""" + healthStatus_DESC + + """originIP ascending""" + originIP_ASC + + """originIP descending""" + originIP_DESC + + """originResponseStatus ascending""" + originResponseStatus_ASC + + """originResponseStatus descending""" + originResponseStatus_DESC + + """region ascending""" + region_ASC + + """region descending""" + region_DESC + + """rttMs ascending""" + rttMs_ASC + + """rttMs descending""" + rttMs_DESC + + """sampleInterval ascending""" + sampleInterval_ASC + + """sampleInterval descending""" + sampleInterval_DESC + + """scope ascending""" + scope_ASC + + """scope descending""" + scope_DESC + + """tcpConnMs ascending""" + tcpConnMs_ASC + + """tcpConnMs descending""" + tcpConnMs_DESC + + """timeToFirstByteMs ascending""" + timeToFirstByteMs_ASC + + """timeToFirstByteMs descending""" + timeToFirstByteMs_DESC + + """tlsHandshakeMs ascending""" + tlsHandshakeMs_ASC + + """tlsHandshakeMs descending""" + tlsHandshakeMs_DESC +} + +"""Daily rollups of request data by colo""" +type ZoneHttpRequests1dByColoGroups { + """List of dimensions to group by""" + dimensions: ZoneHttpRequests1dByColoGroupsDimensions + + """The sum of values for a metric per dimension""" + sum: ZoneHttpRequests1dByColoGroupsSum +} + +"""""" +type ZoneHttpRequests1dByColoGroupsCountryMapElem { + """Country from which request originated""" + clientCountryName: string! + + """""" + requests: uint64! + + """Requests classified as threats""" + threats: uint64! @deprecated(reason: "Replaced by more granular information in firewallEventsAdaptive* nodes") +} + +"""""" +type ZoneHttpRequests1dByColoGroupsDimensions { + """Code of edge server""" + coloCode: string! + + """Request date""" + date: Date! +} + +"""""" +input ZoneHttpRequests1dByColoGroupsFilter_InputObject { + """""" + AND: [ZoneHttpRequests1dByColoGroupsFilter_InputObject!] + + """""" + OR: [ZoneHttpRequests1dByColoGroupsFilter_InputObject!] + + """""" + coloCode: string + + """""" + coloCode_geq: string + + """""" + coloCode_gt: string + + """""" + coloCode_in: [string!] + + """""" + coloCode_leq: string + + """""" + coloCode_like: string + + """""" + coloCode_lt: string + + """""" + coloCode_neq: string + + """""" + coloCode_notin: [string!] + + """""" + coloCode_notlike: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] +} + +"""""" +enum ZoneHttpRequests1dByColoGroupsOrderBy { + """coloCode ascending""" + coloCode_ASC + + """coloCode descending""" + coloCode_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """sum(bytes) ascending""" + sum_bytes_ASC + + """sum(bytes) descending""" + sum_bytes_DESC + + """sum(cachedBytes) ascending""" + sum_cachedBytes_ASC + + """sum(cachedBytes) descending""" + sum_cachedBytes_DESC + + """sum(cachedRequests) ascending""" + sum_cachedRequests_ASC + + """sum(cachedRequests) descending""" + sum_cachedRequests_DESC + + """sum(requests) ascending""" + sum_requests_ASC + + """sum(requests) descending""" + sum_requests_DESC +} + +"""""" +type ZoneHttpRequests1dByColoGroupsResponseStatusMapElem { + """HTTP response status code returned to client""" + edgeResponseStatus: uint64! + + """""" + requests: uint64! +} + +"""""" +type ZoneHttpRequests1dByColoGroupsSum { + """Bytes returned to client""" + bytes: uint64! + + """Bytes returned to client from cache""" + cachedBytes: uint64! + + """Requests served from cache""" + cachedRequests: uint64! + + """""" + countryMap: [ZoneHttpRequests1dByColoGroupsCountryMapElem!]! + + """""" + requests: uint64! + + """""" + responseStatusMap: [ZoneHttpRequests1dByColoGroupsResponseStatusMapElem!]! + + """""" + threatPathingMap: [ZoneHttpRequests1dByColoGroupsThreatPathingMapElem!]! +} + +"""""" +type ZoneHttpRequests1dByColoGroupsThreatPathingMapElem { + """""" + requests: uint64! + + """Threat type""" + threatPathingName: string! +} + +"""Daily rollups of request data""" +type ZoneHttpRequests1dGroups { + """The average value for a metric per dimension""" + avg: ZoneHttpRequests1dGroupsAvg + + """List of dimensions to group by""" + dimensions: ZoneHttpRequests1dGroupsDimensions + + """The sum of values for a metric per dimension""" + sum: ZoneHttpRequests1dGroupsSum + + """The number of unique values for a metric per dimension""" + uniq: ZoneHttpRequests1dGroupsUniq +} + +"""""" +type ZoneHttpRequests1dGroupsAvg { + """""" + bytes: float64! + + """""" + edgeRequestBytes: float64! + + """Average sample interval""" + sampleInterval: float64! +} + +"""""" +type ZoneHttpRequests1dGroupsBrowserMapElem { + """Successful requests for HTML content""" + pageViews: uint64! + + """Browser type""" + uaBrowserFamily: string! +} + +"""""" +type ZoneHttpRequests1dGroupsClientHTTPVersionMapElem { + """HTTP version""" + clientHTTPProtocol: string! + + """""" + requests: uint64! +} + +"""""" +type ZoneHttpRequests1dGroupsClientSSLMapElem { + """Protocol version""" + clientSSLProtocol: string! + + """""" + requests: uint64! +} + +"""""" +type ZoneHttpRequests1dGroupsContentTypeMapElem { + """Bytes returned to client""" + bytes: uint64! + + """Content type returned to client""" + edgeResponseContentTypeName: string! + + """""" + requests: uint64! +} + +"""""" +type ZoneHttpRequests1dGroupsCountryMapElem { + """Bytes returned to client""" + bytes: uint64! + + """Country from which request originated""" + clientCountryName: string! + + """""" + requests: uint64! + + """Requests classified as threats""" + threats: uint64! @deprecated(reason: "Replaced by more granular information in firewallEventsAdaptive* nodes") +} + +"""""" +type ZoneHttpRequests1dGroupsDimensions { + """Request date""" + date: Date! +} + +"""""" +input ZoneHttpRequests1dGroupsFilter_InputObject { + """""" + AND: [ZoneHttpRequests1dGroupsFilter_InputObject!] + + """""" + OR: [ZoneHttpRequests1dGroupsFilter_InputObject!] + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] +} + +"""""" +type ZoneHttpRequests1dGroupsIpClassMapElem { + """IP class""" + ipType: string! + + """""" + requests: uint64! +} + +"""""" +enum ZoneHttpRequests1dGroupsOrderBy { + """avg(bytes) ascending""" + avg_bytes_ASC + + """avg(bytes) descending""" + avg_bytes_DESC + + """avg(edgeRequestBytes) ascending""" + avg_edgeRequestBytes_ASC + + """avg(edgeRequestBytes) descending""" + avg_edgeRequestBytes_DESC + + """avg(sampleInterval) ascending""" + avg_sampleInterval_ASC + + """avg(sampleInterval) descending""" + avg_sampleInterval_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """sum(bytes) ascending""" + sum_bytes_ASC + + """sum(bytes) descending""" + sum_bytes_DESC + + """sum(cachedBytes) ascending""" + sum_cachedBytes_ASC + + """sum(cachedBytes) descending""" + sum_cachedBytes_DESC + + """sum(cachedRequests) ascending""" + sum_cachedRequests_ASC + + """sum(cachedRequests) descending""" + sum_cachedRequests_DESC + + """sum(edgeRequestBytes) ascending""" + sum_edgeRequestBytes_ASC + + """sum(edgeRequestBytes) descending""" + sum_edgeRequestBytes_DESC + + """sum(encryptedBytes) ascending""" + sum_encryptedBytes_ASC + + """sum(encryptedBytes) descending""" + sum_encryptedBytes_DESC + + """sum(encryptedRequests) ascending""" + sum_encryptedRequests_ASC + + """sum(encryptedRequests) descending""" + sum_encryptedRequests_DESC + + """sum(pageViews) ascending""" + sum_pageViews_ASC + + """sum(pageViews) descending""" + sum_pageViews_DESC + + """sum(requests) ascending""" + sum_requests_ASC + + """sum(requests) descending""" + sum_requests_DESC + + """sum(threats) ascending""" + sum_threats_ASC + + """sum(threats) descending""" + sum_threats_DESC + + """uniq(uniques) ascending""" + uniq_uniques_ASC + + """uniq(uniques) descending""" + uniq_uniques_DESC +} + +"""""" +type ZoneHttpRequests1dGroupsResponseStatusMapElem { + """HTTP response status code returned to client""" + edgeResponseStatus: uint64! + + """""" + requests: uint64! +} + +"""""" +type ZoneHttpRequests1dGroupsSum { + """""" + browserMap: [ZoneHttpRequests1dGroupsBrowserMapElem!]! + + """Bytes returned to client""" + bytes: uint64! + + """Bytes returned to client from cache""" + cachedBytes: uint64! + + """Requests served from cache""" + cachedRequests: uint64! + + """""" + clientHTTPVersionMap: [ZoneHttpRequests1dGroupsClientHTTPVersionMapElem!]! + + """""" + clientSSLMap: [ZoneHttpRequests1dGroupsClientSSLMapElem!]! + + """""" + contentTypeMap: [ZoneHttpRequests1dGroupsContentTypeMapElem!]! + + """""" + countryMap: [ZoneHttpRequests1dGroupsCountryMapElem!]! + + """Bytes sent from client""" + edgeRequestBytes: uint64! + + """Bytes returned to client using SSL/TLS protocol""" + encryptedBytes: uint64! + + """Requests served using SSL/TLS protocol""" + encryptedRequests: uint64! + + """""" + ipClassMap: [ZoneHttpRequests1dGroupsIpClassMapElem!]! + + """Successful requests for HTML content""" + pageViews: uint64! + + """""" + requests: uint64! + + """""" + responseStatusMap: [ZoneHttpRequests1dGroupsResponseStatusMapElem!]! + + """""" + threatPathingMap: [ZoneHttpRequests1dGroupsThreatPathingMapElem!]! + + """Requests classified as threats""" + threats: uint64! @deprecated(reason: "Replaced by more granular information in firewallEventsAdaptive* nodes") +} + +"""""" +type ZoneHttpRequests1dGroupsThreatPathingMapElem { + """""" + requests: uint64! + + """Threat type""" + threatPathingName: string! +} + +"""""" +type ZoneHttpRequests1dGroupsUniq { + """A number of unique IPs""" + uniques: uint64! +} + +"""Hourly rollups of request data""" +type ZoneHttpRequests1hGroups { + """The average value for a metric per dimension""" + avg: ZoneHttpRequests1hGroupsAvg + + """List of dimensions to group by""" + dimensions: ZoneHttpRequests1hGroupsDimensions + + """The sum of values for a metric per dimension""" + sum: ZoneHttpRequests1hGroupsSum + + """The number of unique values for a metric per dimension""" + uniq: ZoneHttpRequests1hGroupsUniq +} + +"""""" +type ZoneHttpRequests1hGroupsAvg { + """""" + bytes: float64! + + """""" + edgeRequestBytes: float64! + + """Average sample interval""" + sampleInterval: float64! +} + +"""""" +type ZoneHttpRequests1hGroupsBrowserMapElem { + """Successful requests for HTML content""" + pageViews: uint64! + + """Browser type""" + uaBrowserFamily: string! +} + +"""""" +type ZoneHttpRequests1hGroupsClientHTTPVersionMapElem { + """HTTP version""" + clientHTTPProtocol: string! + + """""" + requests: uint64! +} + +"""""" +type ZoneHttpRequests1hGroupsClientSSLMapElem { + """Protocol version""" + clientSSLProtocol: string! + + """""" + requests: uint64! +} + +"""""" +type ZoneHttpRequests1hGroupsContentTypeMapElem { + """Bytes returned to client""" + bytes: uint64! + + """Content type returned to client""" + edgeResponseContentTypeName: string! + + """""" + requests: uint64! +} + +"""""" +type ZoneHttpRequests1hGroupsCountryMapElem { + """Bytes returned to client""" + bytes: uint64! + + """Country from which request originated""" + clientCountryName: string! + + """""" + requests: uint64! + + """Requests classified as threats""" + threats: uint64! @deprecated(reason: "Replaced by more granular information in firewallEventsAdaptive* nodes") +} + +"""""" +type ZoneHttpRequests1hGroupsDimensions { + """Request date""" + date: Date! + + """Request datetime truncated to the hour""" + datetime: Time! +} + +"""""" +input ZoneHttpRequests1hGroupsFilter_InputObject { + """""" + AND: [ZoneHttpRequests1hGroupsFilter_InputObject!] + + """""" + OR: [ZoneHttpRequests1hGroupsFilter_InputObject!] + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] +} + +"""""" +type ZoneHttpRequests1hGroupsIpClassMapElem { + """IP class""" + ipType: string! + + """""" + requests: uint64! +} + +"""""" +enum ZoneHttpRequests1hGroupsOrderBy { + """avg(bytes) ascending""" + avg_bytes_ASC + + """avg(bytes) descending""" + avg_bytes_DESC + + """avg(edgeRequestBytes) ascending""" + avg_edgeRequestBytes_ASC + + """avg(edgeRequestBytes) descending""" + avg_edgeRequestBytes_DESC + + """avg(sampleInterval) ascending""" + avg_sampleInterval_ASC + + """avg(sampleInterval) descending""" + avg_sampleInterval_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """sum(bytes) ascending""" + sum_bytes_ASC + + """sum(bytes) descending""" + sum_bytes_DESC + + """sum(cachedBytes) ascending""" + sum_cachedBytes_ASC + + """sum(cachedBytes) descending""" + sum_cachedBytes_DESC + + """sum(cachedRequests) ascending""" + sum_cachedRequests_ASC + + """sum(cachedRequests) descending""" + sum_cachedRequests_DESC + + """sum(edgeRequestBytes) ascending""" + sum_edgeRequestBytes_ASC + + """sum(edgeRequestBytes) descending""" + sum_edgeRequestBytes_DESC + + """sum(encryptedBytes) ascending""" + sum_encryptedBytes_ASC + + """sum(encryptedBytes) descending""" + sum_encryptedBytes_DESC + + """sum(encryptedRequests) ascending""" + sum_encryptedRequests_ASC + + """sum(encryptedRequests) descending""" + sum_encryptedRequests_DESC + + """sum(pageViews) ascending""" + sum_pageViews_ASC + + """sum(pageViews) descending""" + sum_pageViews_DESC + + """sum(requests) ascending""" + sum_requests_ASC + + """sum(requests) descending""" + sum_requests_DESC + + """sum(threats) ascending""" + sum_threats_ASC + + """sum(threats) descending""" + sum_threats_DESC + + """uniq(uniques) ascending""" + uniq_uniques_ASC + + """uniq(uniques) descending""" + uniq_uniques_DESC +} + +"""""" +type ZoneHttpRequests1hGroupsResponseStatusMapElem { + """HTTP response status code returned to client""" + edgeResponseStatus: uint64! + + """""" + requests: uint64! +} + +"""""" +type ZoneHttpRequests1hGroupsSum { + """""" + browserMap: [ZoneHttpRequests1hGroupsBrowserMapElem!]! + + """Bytes returned to client""" + bytes: uint64! + + """Bytes returned to client from cache""" + cachedBytes: uint64! + + """Requests served from cache""" + cachedRequests: uint64! + + """""" + clientHTTPVersionMap: [ZoneHttpRequests1hGroupsClientHTTPVersionMapElem!]! + + """""" + clientSSLMap: [ZoneHttpRequests1hGroupsClientSSLMapElem!]! + + """""" + contentTypeMap: [ZoneHttpRequests1hGroupsContentTypeMapElem!]! + + """""" + countryMap: [ZoneHttpRequests1hGroupsCountryMapElem!]! + + """Bytes sent from client""" + edgeRequestBytes: uint64! + + """Bytes returned to client using SSL/TLS protocol""" + encryptedBytes: uint64! + + """Requests served using SSL/TLS protocol""" + encryptedRequests: uint64! + + """""" + ipClassMap: [ZoneHttpRequests1hGroupsIpClassMapElem!]! + + """Successful requests for HTML content""" + pageViews: uint64! + + """""" + requests: uint64! + + """""" + responseStatusMap: [ZoneHttpRequests1hGroupsResponseStatusMapElem!]! + + """""" + threatPathingMap: [ZoneHttpRequests1hGroupsThreatPathingMapElem!]! + + """Requests classified as threats""" + threats: uint64! @deprecated(reason: "Replaced by more granular information in firewallEventsAdaptive* nodes") +} + +"""""" +type ZoneHttpRequests1hGroupsThreatPathingMapElem { + """""" + requests: uint64! + + """Threat type""" + threatPathingName: string! +} + +"""""" +type ZoneHttpRequests1hGroupsUniq { + """A number of unique IPs""" + uniques: uint64! +} + +"""Minutely rollups of request data by colo""" +type ZoneHttpRequests1mByColoGroups { + """List of dimensions to group by""" + dimensions: ZoneHttpRequests1mByColoGroupsDimensions + + """The sum of values for a metric per dimension""" + sum: ZoneHttpRequests1mByColoGroupsSum +} + +"""""" +type ZoneHttpRequests1mByColoGroupsCountryMapElem { + """Country from which request originated""" + clientCountryName: string! + + """""" + requests: uint64! + + """Requests classified as threats""" + threats: uint64! @deprecated(reason: "Replaced by more granular information in firewallEventsAdaptive* nodes") +} + +"""""" +type ZoneHttpRequests1mByColoGroupsDimensions { + """Code of edge server""" + coloCode: string! + + """Request date""" + date: Date! + + """Request datetime""" + datetime: Time! + + """Request datetime truncated to multiple of 15 minutes""" + datetimeFifteenMinutes: Time! + + """Request datetime truncated to multiple of 30 minutes""" + datetimeHalfOfHour: Time! + + """Request datetime truncated to the hour""" + datetimeHour: Time! +} + +"""""" +input ZoneHttpRequests1mByColoGroupsFilter_InputObject { + """""" + AND: [ZoneHttpRequests1mByColoGroupsFilter_InputObject!] + + """""" + OR: [ZoneHttpRequests1mByColoGroupsFilter_InputObject!] + + """""" + coloCode: string + + """""" + coloCode_geq: string + + """""" + coloCode_gt: string + + """""" + coloCode_in: [string!] + + """""" + coloCode_leq: string + + """""" + coloCode_like: string + + """""" + coloCode_lt: string + + """""" + coloCode_neq: string + + """""" + coloCode_notin: [string!] + + """""" + coloCode_notlike: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeHalfOfHour: Time + + """""" + datetimeHalfOfHour_geq: Time + + """""" + datetimeHalfOfHour_gt: Time + + """""" + datetimeHalfOfHour_in: [Time!] + + """""" + datetimeHalfOfHour_leq: Time + + """""" + datetimeHalfOfHour_lt: Time + + """""" + datetimeHalfOfHour_neq: Time + + """""" + datetimeHalfOfHour_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] +} + +"""""" +enum ZoneHttpRequests1mByColoGroupsOrderBy { + """coloCode ascending""" + coloCode_ASC + + """coloCode descending""" + coloCode_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeHalfOfHour ascending""" + datetimeHalfOfHour_ASC + + """datetimeHalfOfHour descending""" + datetimeHalfOfHour_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """sum(bytes) ascending""" + sum_bytes_ASC + + """sum(bytes) descending""" + sum_bytes_DESC + + """sum(cachedBytes) ascending""" + sum_cachedBytes_ASC + + """sum(cachedBytes) descending""" + sum_cachedBytes_DESC + + """sum(cachedRequests) ascending""" + sum_cachedRequests_ASC + + """sum(cachedRequests) descending""" + sum_cachedRequests_DESC + + """sum(requests) ascending""" + sum_requests_ASC + + """sum(requests) descending""" + sum_requests_DESC +} + +"""""" +type ZoneHttpRequests1mByColoGroupsResponseStatusMapElem { + """HTTP response status code returned to client""" + edgeResponseStatus: uint64! + + """""" + requests: uint64! +} + +"""""" +type ZoneHttpRequests1mByColoGroupsSum { + """Bytes returned to client""" + bytes: uint64! + + """Bytes returned to client from cache""" + cachedBytes: uint64! + + """Requests served from cache""" + cachedRequests: uint64! + + """""" + countryMap: [ZoneHttpRequests1mByColoGroupsCountryMapElem!]! + + """""" + requests: uint64! + + """""" + responseStatusMap: [ZoneHttpRequests1mByColoGroupsResponseStatusMapElem!]! + + """""" + threatPathingMap: [ZoneHttpRequests1mByColoGroupsThreatPathingMapElem!]! +} + +"""""" +type ZoneHttpRequests1mByColoGroupsThreatPathingMapElem { + """""" + requests: uint64! + + """Threat type""" + threatPathingName: string! +} + +"""Minutely rollups of request data""" +type ZoneHttpRequests1mGroups { + """The average value for a metric per dimension""" + avg: ZoneHttpRequests1mGroupsAvg + + """List of dimensions to group by""" + dimensions: ZoneHttpRequests1mGroupsDimensions + + """The sum of values for a metric per dimension""" + sum: ZoneHttpRequests1mGroupsSum + + """The number of unique values for a metric per dimension""" + uniq: ZoneHttpRequests1mGroupsUniq +} + +"""""" +type ZoneHttpRequests1mGroupsAvg { + """""" + bytes: float64! + + """""" + edgeRequestBytes: float64! + + """Average sample interval""" + sampleInterval: float64! +} + +"""""" +type ZoneHttpRequests1mGroupsBrowserMapElem { + """Successful requests for HTML content""" + pageViews: uint64! + + """Browser type""" + uaBrowserFamily: string! +} + +"""""" +type ZoneHttpRequests1mGroupsClientHTTPVersionMapElem { + """HTTP version""" + clientHTTPProtocol: string! + + """""" + requests: uint64! +} + +"""""" +type ZoneHttpRequests1mGroupsClientSSLMapElem { + """Protocol version""" + clientSSLProtocol: string! + + """""" + requests: uint64! +} + +"""""" +type ZoneHttpRequests1mGroupsContentTypeMapElem { + """Bytes returned to client""" + bytes: uint64! + + """Content type returned to client""" + edgeResponseContentTypeName: string! + + """""" + requests: uint64! +} + +"""""" +type ZoneHttpRequests1mGroupsCountryMapElem { + """Bytes returned to client""" + bytes: uint64! + + """Country from which request originated""" + clientCountryName: string! + + """""" + requests: uint64! + + """Requests classified as threats""" + threats: uint64! @deprecated(reason: "Replaced by more granular information in firewallEventsAdaptive* nodes") +} + +"""""" +type ZoneHttpRequests1mGroupsDimensions { + """Request date""" + date: Date! + + """Request datetime, truncated to the minute""" + datetime: Time! + + """Request datetime truncated to the day""" + datetimeDay: Time! + + """Request datetime truncated to multiple of 15 minutes""" + datetimeFifteenMinutes: Time! + + """Request datetime truncated to multiple of 5 minutes""" + datetimeFiveMinutes: Time! + + """Request datetime truncated to multiple of 30 minutes""" + datetimeHalfOfHour: Time! + + """Request datetime truncated to the hour""" + datetimeHour: Time! + + """Request datetime truncated to the minute""" + datetimeMinute: Time! @deprecated(reason: "Field is replaced with datetime") +} + +"""""" +input ZoneHttpRequests1mGroupsFilter_InputObject { + """""" + AND: [ZoneHttpRequests1mGroupsFilter_InputObject!] + + """""" + OR: [ZoneHttpRequests1mGroupsFilter_InputObject!] + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeDay: Time + + """""" + datetimeDay_geq: Time + + """""" + datetimeDay_gt: Time + + """""" + datetimeDay_in: [Time!] + + """""" + datetimeDay_leq: Time + + """""" + datetimeDay_lt: Time + + """""" + datetimeDay_neq: Time + + """""" + datetimeDay_notin: [Time!] + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHalfOfHour: Time + + """""" + datetimeHalfOfHour_geq: Time + + """""" + datetimeHalfOfHour_gt: Time + + """""" + datetimeHalfOfHour_in: [Time!] + + """""" + datetimeHalfOfHour_leq: Time + + """""" + datetimeHalfOfHour_lt: Time + + """""" + datetimeHalfOfHour_neq: Time + + """""" + datetimeHalfOfHour_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] +} + +"""""" +type ZoneHttpRequests1mGroupsIpClassMapElem { + """IP class""" + ipType: string! + + """""" + requests: uint64! +} + +"""""" +enum ZoneHttpRequests1mGroupsOrderBy { + """avg(bytes) ascending""" + avg_bytes_ASC + + """avg(bytes) descending""" + avg_bytes_DESC + + """avg(edgeRequestBytes) ascending""" + avg_edgeRequestBytes_ASC + + """avg(edgeRequestBytes) descending""" + avg_edgeRequestBytes_DESC + + """avg(sampleInterval) ascending""" + avg_sampleInterval_ASC + + """avg(sampleInterval) descending""" + avg_sampleInterval_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeDay ascending""" + datetimeDay_ASC + + """datetimeDay descending""" + datetimeDay_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHalfOfHour ascending""" + datetimeHalfOfHour_ASC + + """datetimeHalfOfHour descending""" + datetimeHalfOfHour_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """sum(bytes) ascending""" + sum_bytes_ASC + + """sum(bytes) descending""" + sum_bytes_DESC + + """sum(cachedBytes) ascending""" + sum_cachedBytes_ASC + + """sum(cachedBytes) descending""" + sum_cachedBytes_DESC + + """sum(cachedRequests) ascending""" + sum_cachedRequests_ASC + + """sum(cachedRequests) descending""" + sum_cachedRequests_DESC + + """sum(edgeRequestBytes) ascending""" + sum_edgeRequestBytes_ASC + + """sum(edgeRequestBytes) descending""" + sum_edgeRequestBytes_DESC + + """sum(encryptedBytes) ascending""" + sum_encryptedBytes_ASC + + """sum(encryptedBytes) descending""" + sum_encryptedBytes_DESC + + """sum(encryptedRequests) ascending""" + sum_encryptedRequests_ASC + + """sum(encryptedRequests) descending""" + sum_encryptedRequests_DESC + + """sum(pageViews) ascending""" + sum_pageViews_ASC + + """sum(pageViews) descending""" + sum_pageViews_DESC + + """sum(requests) ascending""" + sum_requests_ASC + + """sum(requests) descending""" + sum_requests_DESC + + """sum(threats) ascending""" + sum_threats_ASC + + """sum(threats) descending""" + sum_threats_DESC + + """uniq(uniques) ascending""" + uniq_uniques_ASC + + """uniq(uniques) descending""" + uniq_uniques_DESC +} + +"""""" +type ZoneHttpRequests1mGroupsResponseStatusMapElem { + """HTTP response status code returned to client""" + edgeResponseStatus: uint64! + + """""" + requests: uint64! +} + +"""""" +type ZoneHttpRequests1mGroupsSum { + """""" + browserMap: [ZoneHttpRequests1mGroupsBrowserMapElem!]! + + """Bytes returned to client""" + bytes: uint64! + + """Bytes returned to client from cache""" + cachedBytes: uint64! + + """Requests served from cache""" + cachedRequests: uint64! + + """""" + clientHTTPVersionMap: [ZoneHttpRequests1mGroupsClientHTTPVersionMapElem!]! + + """""" + clientSSLMap: [ZoneHttpRequests1mGroupsClientSSLMapElem!]! + + """""" + contentTypeMap: [ZoneHttpRequests1mGroupsContentTypeMapElem!]! + + """""" + countryMap: [ZoneHttpRequests1mGroupsCountryMapElem!]! + + """Bytes sent from client""" + edgeRequestBytes: uint64! + + """Bytes returned to client using SSL/TLS protocol""" + encryptedBytes: uint64! + + """Requests served using SSL/TLS protocol""" + encryptedRequests: uint64! + + """""" + ipClassMap: [ZoneHttpRequests1mGroupsIpClassMapElem!]! + + """Successful requests for HTML content""" + pageViews: uint64! + + """""" + requests: uint64! + + """""" + responseStatusMap: [ZoneHttpRequests1mGroupsResponseStatusMapElem!]! + + """""" + threatPathingMap: [ZoneHttpRequests1mGroupsThreatPathingMapElem!]! + + """Requests classified as threats""" + threats: uint64! @deprecated(reason: "Replaced by more granular information in firewallEventsAdaptive* nodes") +} + +"""""" +type ZoneHttpRequests1mGroupsThreatPathingMapElem { + """""" + requests: uint64! + + """Threat type""" + threatPathingName: string! +} + +"""""" +type ZoneHttpRequests1mGroupsUniq { + """A number of unique IPs""" + uniques: uint64! +} + +"""Raw HTTP requests with adaptive sampling""" +type ZoneHttpRequestsAdaptive { + """API Gateway endpoint matched at the edge""" + apiGatewayMatchedEndpoint: string! + + """API Gateway host matched at the edge""" + apiGatewayMatchedHost: string! + + """ + 1-D array of the categories associated with the rules ref in attackSignatureRefs + """ + attackSignatureCategories: [string!]! + + """ + cf.waf.attack_signature.refs Ruleset field truncated to maximum 10 elements. + """ + attackSignatureRefs: [string!]! + + """Array of detections ids that matched this request""" + botDetectionIds: [uint32!]! + + """Array of detections tags that matched this request""" + botDetectionTags: [string!]! + + """Judgement of the bot management system""" + botManagementDecision: string! + + """The final score originated from bot management detections.""" + botScore: uint8! + + """Range of the bot management score""" + botScoreBucketBy10: uint8! + + """Name of the source detection which generated the bot management score.""" + botScoreSrcName: string! + + """Used Cache Reserve to serve the response""" + cacheReserveUsed: uint8! + + """Cache status""" + cacheStatus: string! + + """The ASN of the visitor as string""" + clientASNDescription: string! + + """The ASN number of the visitor""" + clientAsn: string! + + """Country from which request originated""" + clientCountryName: string! + + """""" + clientDeviceType: string! + + """The visitor's IP address (IPv4 or IPv6)""" + clientIP: string! + + """The referrer host""" + clientRefererHost: string! + + """The HTTP hostname requested by the visitor""" + clientRequestHTTPHost: string! + + """HTTP method of client request""" + clientRequestHTTPMethodName: string! + + """The version of HTTP protocol requested by the visitor""" + clientRequestHTTPProtocol: string! + + """The path requested by visitor""" + clientRequestPath: string! + + """Query parameters of client request""" + clientRequestQuery: string! + + """HTTP request referrer""" + clientRequestReferer: string! + + """The url scheme requested by the visitor""" + clientRequestScheme: string! + + """SSL protocol version""" + clientSSLProtocol: string! + + """""" + coloCode: string! + + """ + 1 if not all contents for this request where successfully scanned, else 0 + """ + contentScanHasFailed: uint8! + + """Number of scannable content objects that are malicious""" + contentScanNumMaliciousObj: uint8! + + """Number of scannable content objects""" + contentScanNumObj: uint8! + + """Array of scan results in order of detection""" + contentScanObjResults: [string!]! + + """Array of scan sizes in order of detection""" + contentScanObjSizes: [uint32!]! + + """Array of content types in order of detection""" + contentScanObjTypes: [string!]! + + """The date the event occurred at the edge""" + date: Date! + + """The date and time the event occurred at the edge""" + datetime: Time! + + """ + The date and time the event occurred at the edge truncated to a multiple of 15 minutes + """ + datetimeFifteenMinutes: Time! + + """ + The date and time the event occurred at the edge truncated to a multiple of 5 minutes + """ + datetimeFiveMinutes: Time! + + """The date and time the event occurred at the edge truncated to hours""" + datetimeHour: Time! + + """ + The date and time the event occurred at the edge truncated to the minute + """ + datetimeMinute: Time! + + """ + The time elapsed resolving a CNAME if it was required to reach your origin + """ + edgeDnsResponseTimeMs: uint16! + + """""" + edgeResponseContentTypeName: string! + + """HTTP response status code returned to browser""" + edgeResponseStatus: uint16! + + """ + The time elapsed between processing the first byte of the request until when we started sending a response + """ + edgeTimeToFirstByteMs: uint16! + + """ + Whether firewallForAiPiiCategories is non empty. 0 if empty, 1 if not empty. + """ + firewallForAiAnyPiiCategory: int8! + + """Corresponds to the Ruleset field cf.llm.prompt.injection_score.""" + firewallForAiInjectionScore: int8! + + """Corresponds to the Ruleset field cf.llm.prompt.pii_categories.""" + firewallForAiPiiCategories: [string!]! + + """Corresponds to the Ruleset field cf.llm.prompt.unsafe_data_categories.""" + firewallForAiUnsafeTopicCategories: [string!]! + + """ + The primary attack or use case detected in the request by Fraud detections + """ + fraudAttack: string! + + """Array of fraud detections ids that matched this request""" + fraudDetectionIds: [uint32!]! + + """Array of fraud detections tags that matched this request""" + fraudDetectionTags: [string!]! + + """Risk of a specific email address in account signup attempts""" + fraudEmailRisk: string! + + """Version associated with HTTP Application""" + httpApplicationVersion: uint64! @deprecated(reason: "Field is replaced with zoneVersion") + + """ + '1' if a request was inititiated by a Cloudflare Worker on another zone; '0' otherwise. + """ + isCrossZoneSubrequest: uint8! + + """MD5 hash of the JA3 TLS fingerprint""" + ja3Hash: string! + + """JA4 TLS fingerprint""" + ja4: string! + + """ + Inter-request statistics computed for this JA4 across Cloudflare's entire global edge network + """ + ja4Signals: [ZoneHttpRequestsAdaptiveJa4SignalsElem!]! + + """Whether the request passed background JavaScript Detection""" + jsDetectionPassed: string! + + """The distinct result of checking for leaked credentials""" + leakedCredentialCheckResult: string! + + """""" + originASN: uint32! + + """ASN associated with origin""" + originASNDescription: string! + + """""" + originIP: string! + + """""" + originResponseDurationMs: uint64! + + """HTTP origin response status code returned to browser""" + originResponseStatus: uint16! + + """ + Pay Per Crawl outcome, when applicable (e.g. request enabled for charging and not blocked by a WAF rule) + """ + payPerCrawlStatus: string! + + """The RayId of the request""" + rayName: string! + + """""" + requestSource: string! + + """ + The code of the first-class action the Cloudflare Firewall took on this request + """ + securityAction: string! + + """The Cloudflare security product triggered by this request""" + securitySource: string! + + """API Security Session ID hash""" + sessionIdHash: string! + + """""" + upperTierColoName: string! + + """visitor's user-agent string""" + userAgent: string! + + """Browser parsed from the user agent""" + userAgentBrowser: string! + + """OS parsed from the user agent""" + userAgentOS: string! + + """The category of verified bot""" + verifiedBotCategory: string! + + """Beta. Overall request score generated by the WAF detection module""" + wafAttackScore: uint8! + + """ + Beta. Overall request score class generated by the WAF detection module + """ + wafAttackScoreClass: string! + + """Beta. WAF score for a RCE attack""" + wafRceAttackScore: uint8! + + """Beta. WAF score for a SQLi attack""" + wafSqliAttackScore: uint8! + + """Beta. WAF score for a XSS attack""" + wafXssAttackScore: uint8! + + """The X-Requested-With header of the client request""" + xRequestedWith: string! + + """The version of a zone""" + zoneVersion: uint64! +} + +"""""" +input ZoneHttpRequestsAdaptiveFilter_InputObject { + """""" + AND: [ZoneHttpRequestsAdaptiveFilter_InputObject!] + + """""" + OR: [ZoneHttpRequestsAdaptiveFilter_InputObject!] + + """""" + apiGatewayMatchedEndpoint: string + + """""" + apiGatewayMatchedEndpoint_geq: string + + """""" + apiGatewayMatchedEndpoint_gt: string + + """""" + apiGatewayMatchedEndpoint_in: [string!] + + """""" + apiGatewayMatchedEndpoint_leq: string + + """""" + apiGatewayMatchedEndpoint_like: string + + """""" + apiGatewayMatchedEndpoint_lt: string + + """""" + apiGatewayMatchedEndpoint_neq: string + + """""" + apiGatewayMatchedEndpoint_notin: [string!] + + """""" + apiGatewayMatchedEndpoint_notlike: string + + """""" + apiGatewayMatchedHost: string + + """""" + apiGatewayMatchedHost_geq: string + + """""" + apiGatewayMatchedHost_gt: string + + """""" + apiGatewayMatchedHost_in: [string!] + + """""" + apiGatewayMatchedHost_leq: string + + """""" + apiGatewayMatchedHost_like: string + + """""" + apiGatewayMatchedHost_lt: string + + """""" + apiGatewayMatchedHost_neq: string + + """""" + apiGatewayMatchedHost_notin: [string!] + + """""" + apiGatewayMatchedHost_notlike: string + + """""" + attackSignatureCategories_has: string + + """""" + attackSignatureCategories_hasall: [string!] + + """""" + attackSignatureCategories_hasany: [string!] + + """""" + attackSignatureCategories_isempty: bool + + """""" + attackSignatureCategories_nothas: string + + """""" + attackSignatureRefs_has: string + + """""" + attackSignatureRefs_hasall: [string!] + + """""" + attackSignatureRefs_hasany: [string!] + + """""" + attackSignatureRefs_isempty: bool + + """""" + attackSignatureRefs_nothas: string + + """""" + botDetectionIds_has: uint32 + + """""" + botDetectionIds_hasall: [uint32!] + + """""" + botDetectionIds_hasany: [uint32!] + + """""" + botDetectionIds_isempty: bool + + """""" + botDetectionIds_nothas: uint32 + + """""" + botDetectionTags_has: string + + """""" + botDetectionTags_hasall: [string!] + + """""" + botDetectionTags_hasany: [string!] + + """""" + botDetectionTags_isempty: bool + + """""" + botDetectionTags_nothas: string + + """""" + botManagementDecision: string + + """""" + botManagementDecision_geq: string + + """""" + botManagementDecision_gt: string + + """""" + botManagementDecision_in: [string!] + + """""" + botManagementDecision_leq: string + + """""" + botManagementDecision_like: string + + """""" + botManagementDecision_lt: string + + """""" + botManagementDecision_neq: string + + """""" + botManagementDecision_notin: [string!] + + """""" + botManagementDecision_notlike: string + + """""" + botScore: uint8 + + """""" + botScoreBucketBy10: uint8 + + """""" + botScoreBucketBy10_geq: uint8 + + """""" + botScoreBucketBy10_gt: uint8 + + """""" + botScoreBucketBy10_in: bytes + + """""" + botScoreBucketBy10_leq: uint8 + + """""" + botScoreBucketBy10_lt: uint8 + + """""" + botScoreBucketBy10_neq: uint8 + + """""" + botScoreBucketBy10_notin: bytes + + """""" + botScoreSrcName: string + + """""" + botScoreSrcName_geq: string + + """""" + botScoreSrcName_gt: string + + """""" + botScoreSrcName_in: [string!] + + """""" + botScoreSrcName_leq: string + + """""" + botScoreSrcName_like: string + + """""" + botScoreSrcName_lt: string + + """""" + botScoreSrcName_neq: string + + """""" + botScoreSrcName_notin: [string!] + + """""" + botScoreSrcName_notlike: string + + """""" + botScore_geq: uint8 + + """""" + botScore_gt: uint8 + + """""" + botScore_in: bytes + + """""" + botScore_leq: uint8 + + """""" + botScore_lt: uint8 + + """""" + botScore_neq: uint8 + + """""" + botScore_notin: bytes + + """""" + cacheReserveUsed: uint8 + + """""" + cacheReserveUsed_geq: uint8 + + """""" + cacheReserveUsed_gt: uint8 + + """""" + cacheReserveUsed_in: bytes + + """""" + cacheReserveUsed_leq: uint8 + + """""" + cacheReserveUsed_lt: uint8 + + """""" + cacheReserveUsed_neq: uint8 + + """""" + cacheReserveUsed_notin: bytes + + """""" + cacheStatus: string + + """""" + cacheStatus_geq: string + + """""" + cacheStatus_gt: string + + """""" + cacheStatus_in: [string!] + + """""" + cacheStatus_leq: string + + """""" + cacheStatus_like: string + + """""" + cacheStatus_lt: string + + """""" + cacheStatus_neq: string + + """""" + cacheStatus_notin: [string!] + + """""" + cacheStatus_notlike: string + + """""" + clientASNDescription: string + + """""" + clientASNDescription_geq: string + + """""" + clientASNDescription_gt: string + + """""" + clientASNDescription_in: [string!] + + """""" + clientASNDescription_leq: string + + """""" + clientASNDescription_like: string + + """""" + clientASNDescription_lt: string + + """""" + clientASNDescription_neq: string + + """""" + clientASNDescription_notin: [string!] + + """""" + clientASNDescription_notlike: string + + """""" + clientAsn: string + + """""" + clientAsn_geq: string + + """""" + clientAsn_gt: string + + """""" + clientAsn_in: [string!] + + """""" + clientAsn_leq: string + + """""" + clientAsn_like: string + + """""" + clientAsn_lt: string + + """""" + clientAsn_neq: string + + """""" + clientAsn_notin: [string!] + + """""" + clientAsn_notlike: string + + """""" + clientCountryName: string + + """""" + clientCountryName_geq: string + + """""" + clientCountryName_gt: string + + """""" + clientCountryName_in: [string!] + + """""" + clientCountryName_leq: string + + """""" + clientCountryName_like: string + + """""" + clientCountryName_lt: string + + """""" + clientCountryName_neq: string + + """""" + clientCountryName_notin: [string!] + + """""" + clientCountryName_notlike: string + + """""" + clientDeviceType: string + + """""" + clientDeviceType_geq: string + + """""" + clientDeviceType_gt: string + + """""" + clientDeviceType_in: [string!] + + """""" + clientDeviceType_leq: string + + """""" + clientDeviceType_like: string + + """""" + clientDeviceType_lt: string + + """""" + clientDeviceType_neq: string + + """""" + clientDeviceType_notin: [string!] + + """""" + clientDeviceType_notlike: string + + """""" + clientIP: string + + """""" + clientIP_geq: string + + """""" + clientIP_gt: string + + """""" + clientIP_in: [string!] + + """""" + clientIP_leq: string + + """""" + clientIP_like: string + + """""" + clientIP_lt: string + + """""" + clientIP_neq: string + + """""" + clientIP_notin: [string!] + + """""" + clientIP_notlike: string + + """""" + clientRefererHost: string + + """""" + clientRefererHost_geq: string + + """""" + clientRefererHost_gt: string + + """""" + clientRefererHost_in: [string!] + + """""" + clientRefererHost_leq: string + + """""" + clientRefererHost_like: string + + """""" + clientRefererHost_lt: string + + """""" + clientRefererHost_neq: string + + """""" + clientRefererHost_notin: [string!] + + """""" + clientRefererHost_notlike: string + + """""" + clientRequestHTTPHost: string + + """""" + clientRequestHTTPHost_geq: string + + """""" + clientRequestHTTPHost_gt: string + + """""" + clientRequestHTTPHost_in: [string!] + + """""" + clientRequestHTTPHost_leq: string + + """""" + clientRequestHTTPHost_like: string + + """""" + clientRequestHTTPHost_lt: string + + """""" + clientRequestHTTPHost_neq: string + + """""" + clientRequestHTTPHost_notin: [string!] + + """""" + clientRequestHTTPHost_notlike: string + + """""" + clientRequestHTTPMethodName: string + + """""" + clientRequestHTTPMethodName_geq: string + + """""" + clientRequestHTTPMethodName_gt: string + + """""" + clientRequestHTTPMethodName_in: [string!] + + """""" + clientRequestHTTPMethodName_leq: string + + """""" + clientRequestHTTPMethodName_like: string + + """""" + clientRequestHTTPMethodName_lt: string + + """""" + clientRequestHTTPMethodName_neq: string + + """""" + clientRequestHTTPMethodName_notin: [string!] + + """""" + clientRequestHTTPMethodName_notlike: string + + """""" + clientRequestHTTPProtocol: string + + """""" + clientRequestHTTPProtocol_geq: string + + """""" + clientRequestHTTPProtocol_gt: string + + """""" + clientRequestHTTPProtocol_in: [string!] + + """""" + clientRequestHTTPProtocol_leq: string + + """""" + clientRequestHTTPProtocol_like: string + + """""" + clientRequestHTTPProtocol_lt: string + + """""" + clientRequestHTTPProtocol_neq: string + + """""" + clientRequestHTTPProtocol_notin: [string!] + + """""" + clientRequestHTTPProtocol_notlike: string + + """""" + clientRequestPath: string + + """""" + clientRequestPath_geq: string + + """""" + clientRequestPath_gt: string + + """""" + clientRequestPath_in: [string!] + + """""" + clientRequestPath_leq: string + + """""" + clientRequestPath_like: string + + """""" + clientRequestPath_lt: string + + """""" + clientRequestPath_neq: string + + """""" + clientRequestPath_notin: [string!] + + """""" + clientRequestPath_notlike: string + + """""" + clientRequestQuery: string + + """""" + clientRequestQuery_geq: string + + """""" + clientRequestQuery_gt: string + + """""" + clientRequestQuery_in: [string!] + + """""" + clientRequestQuery_leq: string + + """""" + clientRequestQuery_like: string + + """""" + clientRequestQuery_lt: string + + """""" + clientRequestQuery_neq: string + + """""" + clientRequestQuery_notin: [string!] + + """""" + clientRequestQuery_notlike: string + + """""" + clientRequestReferer: string + + """""" + clientRequestReferer_geq: string + + """""" + clientRequestReferer_gt: string + + """""" + clientRequestReferer_in: [string!] + + """""" + clientRequestReferer_leq: string + + """""" + clientRequestReferer_like: string + + """""" + clientRequestReferer_lt: string + + """""" + clientRequestReferer_neq: string + + """""" + clientRequestReferer_notin: [string!] + + """""" + clientRequestReferer_notlike: string + + """""" + clientRequestScheme: string + + """""" + clientRequestScheme_geq: string + + """""" + clientRequestScheme_gt: string + + """""" + clientRequestScheme_in: [string!] + + """""" + clientRequestScheme_leq: string + + """""" + clientRequestScheme_like: string + + """""" + clientRequestScheme_lt: string + + """""" + clientRequestScheme_neq: string + + """""" + clientRequestScheme_notin: [string!] + + """""" + clientRequestScheme_notlike: string + + """""" + clientSSLProtocol: string + + """""" + clientSSLProtocol_geq: string + + """""" + clientSSLProtocol_gt: string + + """""" + clientSSLProtocol_in: [string!] + + """""" + clientSSLProtocol_leq: string + + """""" + clientSSLProtocol_like: string + + """""" + clientSSLProtocol_lt: string + + """""" + clientSSLProtocol_neq: string + + """""" + clientSSLProtocol_notin: [string!] + + """""" + clientSSLProtocol_notlike: string + + """""" + coloCode: string + + """""" + coloCode_geq: string + + """""" + coloCode_gt: string + + """""" + coloCode_in: [string!] + + """""" + coloCode_leq: string + + """""" + coloCode_like: string + + """""" + coloCode_lt: string + + """""" + coloCode_neq: string + + """""" + coloCode_notin: [string!] + + """""" + coloCode_notlike: string + + """""" + contentScanHasFailed: uint8 + + """""" + contentScanHasFailed_geq: uint8 + + """""" + contentScanHasFailed_gt: uint8 + + """""" + contentScanHasFailed_in: bytes + + """""" + contentScanHasFailed_leq: uint8 + + """""" + contentScanHasFailed_lt: uint8 + + """""" + contentScanHasFailed_neq: uint8 + + """""" + contentScanHasFailed_notin: bytes + + """""" + contentScanNumMaliciousObj: uint8 + + """""" + contentScanNumMaliciousObj_geq: uint8 + + """""" + contentScanNumMaliciousObj_gt: uint8 + + """""" + contentScanNumMaliciousObj_in: bytes + + """""" + contentScanNumMaliciousObj_leq: uint8 + + """""" + contentScanNumMaliciousObj_lt: uint8 + + """""" + contentScanNumMaliciousObj_neq: uint8 + + """""" + contentScanNumMaliciousObj_notin: bytes + + """""" + contentScanNumObj: uint8 + + """""" + contentScanNumObj_geq: uint8 + + """""" + contentScanNumObj_gt: uint8 + + """""" + contentScanNumObj_in: bytes + + """""" + contentScanNumObj_leq: uint8 + + """""" + contentScanNumObj_lt: uint8 + + """""" + contentScanNumObj_neq: uint8 + + """""" + contentScanNumObj_notin: bytes + + """""" + contentScanObjResults_has: string + + """""" + contentScanObjResults_hasall: [string!] + + """""" + contentScanObjResults_hasany: [string!] + + """""" + contentScanObjResults_isempty: bool + + """""" + contentScanObjResults_nothas: string + + """""" + contentScanObjSizes_has: uint32 + + """""" + contentScanObjSizes_hasall: [uint32!] + + """""" + contentScanObjSizes_hasany: [uint32!] + + """""" + contentScanObjSizes_isempty: bool + + """""" + contentScanObjSizes_nothas: uint32 + + """""" + contentScanObjTypes_has: string + + """""" + contentScanObjTypes_hasall: [string!] + + """""" + contentScanObjTypes_hasany: [string!] + + """""" + contentScanObjTypes_isempty: bool + + """""" + contentScanObjTypes_nothas: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + edgeDnsResponseTimeMs: uint16 + + """""" + edgeDnsResponseTimeMs_geq: uint16 + + """""" + edgeDnsResponseTimeMs_gt: uint16 + + """""" + edgeDnsResponseTimeMs_in: [uint16!] + + """""" + edgeDnsResponseTimeMs_leq: uint16 + + """""" + edgeDnsResponseTimeMs_lt: uint16 + + """""" + edgeDnsResponseTimeMs_neq: uint16 + + """""" + edgeDnsResponseTimeMs_notin: [uint16!] + + """""" + edgeResponseContentTypeName: string + + """""" + edgeResponseContentTypeName_geq: string + + """""" + edgeResponseContentTypeName_gt: string + + """""" + edgeResponseContentTypeName_in: [string!] + + """""" + edgeResponseContentTypeName_leq: string + + """""" + edgeResponseContentTypeName_like: string + + """""" + edgeResponseContentTypeName_lt: string + + """""" + edgeResponseContentTypeName_neq: string + + """""" + edgeResponseContentTypeName_notin: [string!] + + """""" + edgeResponseContentTypeName_notlike: string + + """""" + edgeResponseStatus: uint16 + + """""" + edgeResponseStatus_geq: uint16 + + """""" + edgeResponseStatus_gt: uint16 + + """""" + edgeResponseStatus_in: [uint16!] + + """""" + edgeResponseStatus_leq: uint16 + + """""" + edgeResponseStatus_lt: uint16 + + """""" + edgeResponseStatus_neq: uint16 + + """""" + edgeResponseStatus_notin: [uint16!] + + """""" + edgeTimeToFirstByteMs: uint16 + + """""" + edgeTimeToFirstByteMs_geq: uint16 + + """""" + edgeTimeToFirstByteMs_gt: uint16 + + """""" + edgeTimeToFirstByteMs_in: [uint16!] + + """""" + edgeTimeToFirstByteMs_leq: uint16 + + """""" + edgeTimeToFirstByteMs_lt: uint16 + + """""" + edgeTimeToFirstByteMs_neq: uint16 + + """""" + edgeTimeToFirstByteMs_notin: [uint16!] + + """""" + firewallForAiAnyPiiCategory: int8 + + """""" + firewallForAiAnyPiiCategory_geq: int8 + + """""" + firewallForAiAnyPiiCategory_gt: int8 + + """""" + firewallForAiAnyPiiCategory_in: [int8!] + + """""" + firewallForAiAnyPiiCategory_leq: int8 + + """""" + firewallForAiAnyPiiCategory_lt: int8 + + """""" + firewallForAiAnyPiiCategory_neq: int8 + + """""" + firewallForAiAnyPiiCategory_notin: [int8!] + + """""" + firewallForAiInjectionScore: int8 + + """""" + firewallForAiInjectionScore_geq: int8 + + """""" + firewallForAiInjectionScore_gt: int8 + + """""" + firewallForAiInjectionScore_in: [int8!] + + """""" + firewallForAiInjectionScore_leq: int8 + + """""" + firewallForAiInjectionScore_lt: int8 + + """""" + firewallForAiInjectionScore_neq: int8 + + """""" + firewallForAiInjectionScore_notin: [int8!] + + """""" + firewallForAiPiiCategories_has: string + + """""" + firewallForAiPiiCategories_hasall: [string!] + + """""" + firewallForAiPiiCategories_hasany: [string!] + + """""" + firewallForAiPiiCategories_isempty: bool + + """""" + firewallForAiPiiCategories_nothas: string + + """""" + firewallForAiUnsafeTopicCategories_has: string + + """""" + firewallForAiUnsafeTopicCategories_hasall: [string!] + + """""" + firewallForAiUnsafeTopicCategories_hasany: [string!] + + """""" + firewallForAiUnsafeTopicCategories_isempty: bool + + """""" + firewallForAiUnsafeTopicCategories_nothas: string + + """""" + fraudAttack: string + + """""" + fraudAttack_geq: string + + """""" + fraudAttack_gt: string + + """""" + fraudAttack_in: [string!] + + """""" + fraudAttack_leq: string + + """""" + fraudAttack_like: string + + """""" + fraudAttack_lt: string + + """""" + fraudAttack_neq: string + + """""" + fraudAttack_notin: [string!] + + """""" + fraudAttack_notlike: string + + """""" + fraudDetectionIds_has: uint32 + + """""" + fraudDetectionIds_hasall: [uint32!] + + """""" + fraudDetectionIds_hasany: [uint32!] + + """""" + fraudDetectionIds_isempty: bool + + """""" + fraudDetectionIds_nothas: uint32 + + """""" + fraudDetectionTags_has: string + + """""" + fraudDetectionTags_hasall: [string!] + + """""" + fraudDetectionTags_hasany: [string!] + + """""" + fraudDetectionTags_isempty: bool + + """""" + fraudDetectionTags_nothas: string + + """""" + fraudEmailRisk: string + + """""" + fraudEmailRisk_geq: string + + """""" + fraudEmailRisk_gt: string + + """""" + fraudEmailRisk_in: [string!] + + """""" + fraudEmailRisk_leq: string + + """""" + fraudEmailRisk_like: string + + """""" + fraudEmailRisk_lt: string + + """""" + fraudEmailRisk_neq: string + + """""" + fraudEmailRisk_notin: [string!] + + """""" + fraudEmailRisk_notlike: string + + """""" + httpApplicationVersion: uint64 + + """""" + httpApplicationVersion_geq: uint64 + + """""" + httpApplicationVersion_gt: uint64 + + """""" + httpApplicationVersion_in: [uint64!] + + """""" + httpApplicationVersion_leq: uint64 + + """""" + httpApplicationVersion_lt: uint64 + + """""" + httpApplicationVersion_neq: uint64 + + """""" + httpApplicationVersion_notin: [uint64!] + + """""" + isCrossZoneSubrequest: uint8 + + """""" + isCrossZoneSubrequest_geq: uint8 + + """""" + isCrossZoneSubrequest_gt: uint8 + + """""" + isCrossZoneSubrequest_in: bytes + + """""" + isCrossZoneSubrequest_leq: uint8 + + """""" + isCrossZoneSubrequest_lt: uint8 + + """""" + isCrossZoneSubrequest_neq: uint8 + + """""" + isCrossZoneSubrequest_notin: bytes + + """""" + ja3Hash: string + + """""" + ja3Hash_geq: string + + """""" + ja3Hash_gt: string + + """""" + ja3Hash_in: [string!] + + """""" + ja3Hash_leq: string + + """""" + ja3Hash_like: string + + """""" + ja3Hash_lt: string + + """""" + ja3Hash_neq: string + + """""" + ja3Hash_notin: [string!] + + """""" + ja3Hash_notlike: string + + """""" + ja4: string + + """""" + ja4_geq: string + + """""" + ja4_gt: string + + """""" + ja4_in: [string!] + + """""" + ja4_leq: string + + """""" + ja4_like: string + + """""" + ja4_lt: string + + """""" + ja4_neq: string + + """""" + ja4_notin: [string!] + + """""" + ja4_notlike: string + + """""" + jsDetectionPassed: string + + """""" + jsDetectionPassed_geq: string + + """""" + jsDetectionPassed_gt: string + + """""" + jsDetectionPassed_in: [string!] + + """""" + jsDetectionPassed_leq: string + + """""" + jsDetectionPassed_like: string + + """""" + jsDetectionPassed_lt: string + + """""" + jsDetectionPassed_neq: string + + """""" + jsDetectionPassed_notin: [string!] + + """""" + jsDetectionPassed_notlike: string + + """""" + leakedCredentialCheckResult: string + + """""" + leakedCredentialCheckResult_geq: string + + """""" + leakedCredentialCheckResult_gt: string + + """""" + leakedCredentialCheckResult_in: [string!] + + """""" + leakedCredentialCheckResult_leq: string + + """""" + leakedCredentialCheckResult_like: string + + """""" + leakedCredentialCheckResult_lt: string + + """""" + leakedCredentialCheckResult_neq: string + + """""" + leakedCredentialCheckResult_notin: [string!] + + """""" + leakedCredentialCheckResult_notlike: string + + """""" + originASN: uint32 + + """""" + originASNDescription: string + + """""" + originASNDescription_geq: string + + """""" + originASNDescription_gt: string + + """""" + originASNDescription_in: [string!] + + """""" + originASNDescription_leq: string + + """""" + originASNDescription_like: string + + """""" + originASNDescription_lt: string + + """""" + originASNDescription_neq: string + + """""" + originASNDescription_notin: [string!] + + """""" + originASNDescription_notlike: string + + """""" + originASN_geq: uint32 + + """""" + originASN_gt: uint32 + + """""" + originASN_in: [uint32!] + + """""" + originASN_leq: uint32 + + """""" + originASN_lt: uint32 + + """""" + originASN_neq: uint32 + + """""" + originASN_notin: [uint32!] + + """""" + originIP: string + + """""" + originIP_geq: string + + """""" + originIP_gt: string + + """""" + originIP_in: [string!] + + """""" + originIP_leq: string + + """""" + originIP_like: string + + """""" + originIP_lt: string + + """""" + originIP_neq: string + + """""" + originIP_notin: [string!] + + """""" + originIP_notlike: string + + """""" + originResponseDurationMs: uint64 + + """""" + originResponseDurationMs_geq: uint64 + + """""" + originResponseDurationMs_gt: uint64 + + """""" + originResponseDurationMs_in: [uint64!] + + """""" + originResponseDurationMs_leq: uint64 + + """""" + originResponseDurationMs_lt: uint64 + + """""" + originResponseDurationMs_neq: uint64 + + """""" + originResponseDurationMs_notin: [uint64!] + + """""" + originResponseStatus: uint16 + + """""" + originResponseStatus_geq: uint16 + + """""" + originResponseStatus_gt: uint16 + + """""" + originResponseStatus_in: [uint16!] + + """""" + originResponseStatus_leq: uint16 + + """""" + originResponseStatus_lt: uint16 + + """""" + originResponseStatus_neq: uint16 + + """""" + originResponseStatus_notin: [uint16!] + + """""" + payPerCrawlStatus: string + + """""" + payPerCrawlStatus_geq: string + + """""" + payPerCrawlStatus_gt: string + + """""" + payPerCrawlStatus_in: [string!] + + """""" + payPerCrawlStatus_leq: string + + """""" + payPerCrawlStatus_like: string + + """""" + payPerCrawlStatus_lt: string + + """""" + payPerCrawlStatus_neq: string + + """""" + payPerCrawlStatus_notin: [string!] + + """""" + payPerCrawlStatus_notlike: string + + """""" + rayName: string + + """""" + rayName_geq: string + + """""" + rayName_gt: string + + """""" + rayName_in: [string!] + + """""" + rayName_leq: string + + """""" + rayName_like: string + + """""" + rayName_lt: string + + """""" + rayName_neq: string + + """""" + rayName_notin: [string!] + + """""" + rayName_notlike: string + + """""" + requestSource: string + + """""" + requestSource_geq: string + + """""" + requestSource_gt: string + + """""" + requestSource_in: [string!] + + """""" + requestSource_leq: string + + """""" + requestSource_like: string + + """""" + requestSource_lt: string + + """""" + requestSource_neq: string + + """""" + requestSource_notin: [string!] + + """""" + requestSource_notlike: string + + """""" + securityAction: string + + """""" + securityAction_geq: string + + """""" + securityAction_gt: string + + """""" + securityAction_in: [string!] + + """""" + securityAction_leq: string + + """""" + securityAction_like: string + + """""" + securityAction_lt: string + + """""" + securityAction_neq: string + + """""" + securityAction_notin: [string!] + + """""" + securityAction_notlike: string + + """""" + securitySource: string + + """""" + securitySource_geq: string + + """""" + securitySource_gt: string + + """""" + securitySource_in: [string!] + + """""" + securitySource_leq: string + + """""" + securitySource_like: string + + """""" + securitySource_lt: string + + """""" + securitySource_neq: string + + """""" + securitySource_notin: [string!] + + """""" + securitySource_notlike: string + + """""" + sessionIdHash: string + + """""" + sessionIdHash_geq: string + + """""" + sessionIdHash_gt: string + + """""" + sessionIdHash_in: [string!] + + """""" + sessionIdHash_leq: string + + """""" + sessionIdHash_like: string + + """""" + sessionIdHash_lt: string + + """""" + sessionIdHash_neq: string + + """""" + sessionIdHash_notin: [string!] + + """""" + sessionIdHash_notlike: string + + """""" + upperTierColoName: string + + """""" + upperTierColoName_geq: string + + """""" + upperTierColoName_gt: string + + """""" + upperTierColoName_in: [string!] + + """""" + upperTierColoName_leq: string + + """""" + upperTierColoName_like: string + + """""" + upperTierColoName_lt: string + + """""" + upperTierColoName_neq: string + + """""" + upperTierColoName_notin: [string!] + + """""" + upperTierColoName_notlike: string + + """""" + userAgent: string + + """""" + userAgentBrowser: string + + """""" + userAgentBrowser_geq: string + + """""" + userAgentBrowser_gt: string + + """""" + userAgentBrowser_in: [string!] + + """""" + userAgentBrowser_leq: string + + """""" + userAgentBrowser_like: string + + """""" + userAgentBrowser_lt: string + + """""" + userAgentBrowser_neq: string + + """""" + userAgentBrowser_notin: [string!] + + """""" + userAgentBrowser_notlike: string + + """""" + userAgentOS: string + + """""" + userAgentOS_geq: string + + """""" + userAgentOS_gt: string + + """""" + userAgentOS_in: [string!] + + """""" + userAgentOS_leq: string + + """""" + userAgentOS_like: string + + """""" + userAgentOS_lt: string + + """""" + userAgentOS_neq: string + + """""" + userAgentOS_notin: [string!] + + """""" + userAgentOS_notlike: string + + """""" + userAgent_geq: string + + """""" + userAgent_gt: string + + """""" + userAgent_in: [string!] + + """""" + userAgent_leq: string + + """""" + userAgent_like: string + + """""" + userAgent_lt: string + + """""" + userAgent_neq: string + + """""" + userAgent_notin: [string!] + + """""" + userAgent_notlike: string + + """""" + verifiedBotCategory: string + + """""" + verifiedBotCategory_geq: string + + """""" + verifiedBotCategory_gt: string + + """""" + verifiedBotCategory_in: [string!] + + """""" + verifiedBotCategory_leq: string + + """""" + verifiedBotCategory_like: string + + """""" + verifiedBotCategory_lt: string + + """""" + verifiedBotCategory_neq: string + + """""" + verifiedBotCategory_notin: [string!] + + """""" + verifiedBotCategory_notlike: string + + """""" + wafAttackScore: uint8 + + """""" + wafAttackScoreClass: string + + """""" + wafAttackScoreClass_geq: string + + """""" + wafAttackScoreClass_gt: string + + """""" + wafAttackScoreClass_in: [string!] + + """""" + wafAttackScoreClass_leq: string + + """""" + wafAttackScoreClass_like: string + + """""" + wafAttackScoreClass_lt: string + + """""" + wafAttackScoreClass_neq: string + + """""" + wafAttackScoreClass_notin: [string!] + + """""" + wafAttackScoreClass_notlike: string + + """""" + wafAttackScore_geq: uint8 + + """""" + wafAttackScore_gt: uint8 + + """""" + wafAttackScore_in: bytes + + """""" + wafAttackScore_leq: uint8 + + """""" + wafAttackScore_lt: uint8 + + """""" + wafAttackScore_neq: uint8 + + """""" + wafAttackScore_notin: bytes + + """""" + wafRceAttackScore: uint8 + + """""" + wafRceAttackScore_geq: uint8 + + """""" + wafRceAttackScore_gt: uint8 + + """""" + wafRceAttackScore_in: bytes + + """""" + wafRceAttackScore_leq: uint8 + + """""" + wafRceAttackScore_lt: uint8 + + """""" + wafRceAttackScore_neq: uint8 + + """""" + wafRceAttackScore_notin: bytes + + """""" + wafSqliAttackScore: uint8 + + """""" + wafSqliAttackScore_geq: uint8 + + """""" + wafSqliAttackScore_gt: uint8 + + """""" + wafSqliAttackScore_in: bytes + + """""" + wafSqliAttackScore_leq: uint8 + + """""" + wafSqliAttackScore_lt: uint8 + + """""" + wafSqliAttackScore_neq: uint8 + + """""" + wafSqliAttackScore_notin: bytes + + """""" + wafXssAttackScore: uint8 + + """""" + wafXssAttackScore_geq: uint8 + + """""" + wafXssAttackScore_gt: uint8 + + """""" + wafXssAttackScore_in: bytes + + """""" + wafXssAttackScore_leq: uint8 + + """""" + wafXssAttackScore_lt: uint8 + + """""" + wafXssAttackScore_neq: uint8 + + """""" + wafXssAttackScore_notin: bytes + + """""" + xRequestedWith: string + + """""" + xRequestedWith_geq: string + + """""" + xRequestedWith_gt: string + + """""" + xRequestedWith_in: [string!] + + """""" + xRequestedWith_leq: string + + """""" + xRequestedWith_like: string + + """""" + xRequestedWith_lt: string + + """""" + xRequestedWith_neq: string + + """""" + xRequestedWith_notin: [string!] + + """""" + xRequestedWith_notlike: string + + """""" + zoneVersion: uint64 + + """""" + zoneVersion_geq: uint64 + + """""" + zoneVersion_gt: uint64 + + """""" + zoneVersion_in: [uint64!] + + """""" + zoneVersion_leq: uint64 + + """""" + zoneVersion_lt: uint64 + + """""" + zoneVersion_neq: uint64 + + """""" + zoneVersion_notin: [uint64!] +} + +"""Aggregated HTTP requests data with adaptive sampling""" +type ZoneHttpRequestsAdaptiveGroups { + """The average value used for sample interval""" + avg: ZoneHttpRequestsAdaptiveGroupsAvg + + """ALPHA - DO NOT USE""" + confidence(level: float64!): ZoneHttpRequestsAdaptiveGroupsConfidence! + + """The number of values for a metric per dimension""" + count: uint64! + + """List of dimensions to group by""" + dimensions: ZoneHttpRequestsAdaptiveGroupsDimensions + + """Quantiles of a metric per dimension""" + quantiles: ZoneHttpRequestsAdaptiveGroupsQuantiles + + """The ratio of a range of status codes, between 0 and 1""" + ratio: ZoneHttpRequestsAdaptiveGroupsRatio + + """The sum of values for a metric per dimension""" + sum: ZoneHttpRequestsAdaptiveGroupsSum +} + +"""""" +type ZoneHttpRequestsAdaptiveGroupsAvg { + """ + The proportion of requests that were inititiated by a Cloudflare Worker on another zone + """ + crossZoneSubrequests: float64! + + """""" + edgeDnsResponseTimeMs: float64! + + """""" + edgeTimeToFirstByteMs: float64! + + """ + The average originResponseDuration, in milliseconds, excluding 0 values (i.e. cached ones) + """ + originResponseDurationMs: float64! + + """""" + sampleInterval: float64! +} + +"""""" +type ZoneHttpRequestsAdaptiveGroupsConfidence { + """ + The number of values for a metric per dimension, with confidence intervals + """ + count: Confidence! + + """Confidence level that was requested""" + level: float64! + + """ + The sum of values for a metric per dimension, with confidence intervals + """ + sum: ZoneHttpRequestsAdaptiveGroupsSumConfidence +} + +"""""" +type ZoneHttpRequestsAdaptiveGroupsDimensions { + """API Gateway endpoint matched at the edge""" + apiGatewayMatchedEndpoint: string! + + """API Gateway host matched at the edge""" + apiGatewayMatchedHost: string! + + """ + 1-D array of the categories associated with the rules ref in attackSignatureRefs + """ + attackSignatureCategories: [string!]! + + """ + cf.waf.attack_signature.refs Ruleset field truncated to maximum 10 elements. + """ + attackSignatureRefs: [string!]! + + """Array of detections ids that matched this request""" + botDetectionIds: [uint32!]! + + """Array of detections tags that matched this request""" + botDetectionTags: [string!]! + + """Judgement of the bot management system""" + botManagementDecision: string! + + """The final score originated from bot management detections.""" + botScore: uint8! + + """Range of the bot management score""" + botScoreBucketBy10: uint8! + + """Name of the source detection which generated the bot management score.""" + botScoreSrcName: string! + + """Used Cache Reserve to serve the response""" + cacheReserveUsed: uint8! + + """""" + cacheStatus: string! + + """The ASN of the visitor as string""" + clientASNDescription: string! + + """""" + clientAsn: string! + + """Country from which request originated""" + clientCountryName: string! + + """""" + clientDeviceType: string! + + """""" + clientIP: string! + + """The referrer host""" + clientRefererHost: string! + + """Host requested by the client""" + clientRequestHTTPHost: string! + + """HTTP method of client request""" + clientRequestHTTPMethodName: string! + + """HTTP protocol version""" + clientRequestHTTPProtocol: string! + + """Path of client request""" + clientRequestPath: string! + + """Query parameters of client request""" + clientRequestQuery: string! + + """HTTP request referrer""" + clientRequestReferer: string! + + """HTTP request URI scheme (http/https)""" + clientRequestScheme: string! + + """SSL protocol version""" + clientSSLProtocol: string! + + """""" + coloCode: string! + + """ + 1 if not all contents for this request where successfully scanned, else 0 + """ + contentScanHasFailed: uint8! + + """Number of scannable content objects that are malicious""" + contentScanNumMaliciousObj: uint8! + + """Number of scannable content objects""" + contentScanNumObj: uint8! + + """Array of scan results in order of detection""" + contentScanObjResults: [string!]! + + """Array of scan sizes in order of detection""" + contentScanObjSizes: [uint32!]! + + """Array of content types in order of detection""" + contentScanObjTypes: [string!]! + + """The date the event occurred at the edge""" + date: Date! + + """The date and time the event occurred at the edge""" + datetime: Time! + + """ + The date and time the event occurred at the edge truncated to a multiple of 15 minutes + """ + datetimeFifteenMinutes: Time! + + """ + The date and time the event occurred at the edge truncated to a multiple of 5 minutes + """ + datetimeFiveMinutes: Time! + + """The date and time the event occurred at the edge truncated to hours""" + datetimeHour: Time! + + """ + The date and time the event occurred at the edge truncated to the minute + """ + datetimeMinute: Time! + + """ + The time elapsed resolving a CNAME if it was required to reach your origin + """ + edgeDnsResponseTimeMs: uint16! + + """""" + edgeResponseContentTypeName: string! + + """""" + edgeResponseStatus: uint16! + + """ + The time elapsed between processing the first byte of the request until when we started sending a response + """ + edgeTimeToFirstByteMs: uint16! + + """ + Whether firewallForAiPiiCategories is non empty. 0 if empty, 1 if not empty. + """ + firewallForAiAnyPiiCategory: int8! + + """Corresponds to the Ruleset field cf.llm.prompt.injection_score.""" + firewallForAiInjectionScore: int8! + + """Corresponds to the Ruleset field cf.llm.prompt.pii_categories.""" + firewallForAiPiiCategories: [string!]! + + """Corresponds to the Ruleset field cf.llm.prompt.unsafe_data_categories.""" + firewallForAiUnsafeTopicCategories: [string!]! + + """ + The primary attack or use case detected in the request by Fraud detections + """ + fraudAttack: string! + + """Array of fraud detections ids that matched this request""" + fraudDetectionIds: [uint32!]! + + """Array of fraud detections tags that matched this request""" + fraudDetectionTags: [string!]! + + """Risk of a specific email address in account signup attempts""" + fraudEmailRisk: string! + + """Version associated with HTTP Application""" + httpApplicationVersion: uint64! @deprecated(reason: "Field is replaced with zoneVersion") + + """ + '1' if a request was inititiated by a Cloudflare Worker on another zone; '0' otherwise. + """ + isCrossZoneSubrequest: uint8! + + """MD5 hash of the JA3 TLS fingerprint""" + ja3Hash: string! + + """JA4 TLS fingerprint""" + ja4: string! + + """Whether the request passed background JavaScript Detection""" + jsDetectionPassed: string! + + """The distinct result of checking for leaked credentials""" + leakedCredentialCheckResult: string! + + """""" + originASN: uint32! + + """ASN associated with origin""" + originASNDescription: string! + + """""" + originIP: string! + + """""" + originResponseDurationMs: uint64! + + """HTTP response status code returned by the origin""" + originResponseStatus: uint16! + + """ + Pay Per Crawl outcome, when applicable (e.g. request enabled for charging and not blocked by a WAF rule) + """ + payPerCrawlStatus: string! + + """""" + requestSource: string! + + """ABR sample interval""" + sampleInterval: uint32! + + """ + The code of the first-class action the Cloudflare Firewall took on this request + """ + securityAction: string! + + """The Cloudflare security product triggered by this request""" + securitySource: string! + + """API Security Session ID hash""" + sessionIdHash: string! + + """""" + upperTierColoName: string! + + """""" + userAgent: string! + + """Browser parsed from the user agent""" + userAgentBrowser: string! + + """OS parsed from the user agent""" + userAgentOS: string! + + """The category of verified bot""" + verifiedBotCategory: string! + + """Beta. Overall request score generated by the WAF detection module""" + wafAttackScore: uint8! + + """ + Beta. Overall request score class generated by the WAF detection module + """ + wafAttackScoreClass: string! + + """Beta. WAF score for a RCE attack""" + wafRceAttackScore: uint8! + + """Beta. WAF score for a SQLi attack""" + wafSqliAttackScore: uint8! + + """Beta. WAF score for a XSS attack""" + wafXssAttackScore: uint8! + + """The X-Requested-With header of the client request""" + xRequestedWith: string! + + """The version of a zone""" + zoneVersion: uint64! +} + +"""""" +input ZoneHttpRequestsAdaptiveGroupsFilter_InputObject { + """""" + AND: [ZoneHttpRequestsAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [ZoneHttpRequestsAdaptiveGroupsFilter_InputObject!] + + """""" + apiGatewayMatchedEndpoint: string + + """""" + apiGatewayMatchedEndpoint_geq: string + + """""" + apiGatewayMatchedEndpoint_gt: string + + """""" + apiGatewayMatchedEndpoint_in: [string!] + + """""" + apiGatewayMatchedEndpoint_leq: string + + """""" + apiGatewayMatchedEndpoint_like: string + + """""" + apiGatewayMatchedEndpoint_lt: string + + """""" + apiGatewayMatchedEndpoint_neq: string + + """""" + apiGatewayMatchedEndpoint_notin: [string!] + + """""" + apiGatewayMatchedEndpoint_notlike: string + + """""" + apiGatewayMatchedHost: string + + """""" + apiGatewayMatchedHost_geq: string + + """""" + apiGatewayMatchedHost_gt: string + + """""" + apiGatewayMatchedHost_in: [string!] + + """""" + apiGatewayMatchedHost_leq: string + + """""" + apiGatewayMatchedHost_like: string + + """""" + apiGatewayMatchedHost_lt: string + + """""" + apiGatewayMatchedHost_neq: string + + """""" + apiGatewayMatchedHost_notin: [string!] + + """""" + apiGatewayMatchedHost_notlike: string + + """""" + attackSignatureCategories_has: string + + """""" + attackSignatureCategories_hasall: [string!] + + """""" + attackSignatureCategories_hasany: [string!] + + """""" + attackSignatureCategories_isempty: bool + + """""" + attackSignatureCategories_nothas: string + + """""" + attackSignatureRefs_has: string + + """""" + attackSignatureRefs_hasall: [string!] + + """""" + attackSignatureRefs_hasany: [string!] + + """""" + attackSignatureRefs_isempty: bool + + """""" + attackSignatureRefs_nothas: string + + """""" + botDetectionIds_has: uint32 + + """""" + botDetectionIds_hasall: [uint32!] + + """""" + botDetectionIds_hasany: [uint32!] + + """""" + botDetectionIds_isempty: bool + + """""" + botDetectionIds_nothas: uint32 + + """""" + botDetectionTags_has: string + + """""" + botDetectionTags_hasall: [string!] + + """""" + botDetectionTags_hasany: [string!] + + """""" + botDetectionTags_isempty: bool + + """""" + botDetectionTags_nothas: string + + """""" + botManagementDecision: string + + """""" + botManagementDecision_geq: string + + """""" + botManagementDecision_gt: string + + """""" + botManagementDecision_in: [string!] + + """""" + botManagementDecision_leq: string + + """""" + botManagementDecision_like: string + + """""" + botManagementDecision_lt: string + + """""" + botManagementDecision_neq: string + + """""" + botManagementDecision_notin: [string!] + + """""" + botManagementDecision_notlike: string + + """""" + botScore: uint8 + + """""" + botScoreBucketBy10: uint8 + + """""" + botScoreBucketBy10_geq: uint8 + + """""" + botScoreBucketBy10_gt: uint8 + + """""" + botScoreBucketBy10_in: bytes + + """""" + botScoreBucketBy10_leq: uint8 + + """""" + botScoreBucketBy10_lt: uint8 + + """""" + botScoreBucketBy10_neq: uint8 + + """""" + botScoreBucketBy10_notin: bytes + + """""" + botScoreSrcName: string + + """""" + botScoreSrcName_geq: string + + """""" + botScoreSrcName_gt: string + + """""" + botScoreSrcName_in: [string!] + + """""" + botScoreSrcName_leq: string + + """""" + botScoreSrcName_like: string + + """""" + botScoreSrcName_lt: string + + """""" + botScoreSrcName_neq: string + + """""" + botScoreSrcName_notin: [string!] + + """""" + botScoreSrcName_notlike: string + + """""" + botScore_geq: uint8 + + """""" + botScore_gt: uint8 + + """""" + botScore_in: bytes + + """""" + botScore_leq: uint8 + + """""" + botScore_lt: uint8 + + """""" + botScore_neq: uint8 + + """""" + botScore_notin: bytes + + """""" + cacheReserveUsed: uint8 + + """""" + cacheReserveUsed_geq: uint8 + + """""" + cacheReserveUsed_gt: uint8 + + """""" + cacheReserveUsed_in: bytes + + """""" + cacheReserveUsed_leq: uint8 + + """""" + cacheReserveUsed_lt: uint8 + + """""" + cacheReserveUsed_neq: uint8 + + """""" + cacheReserveUsed_notin: bytes + + """""" + cacheStatus: string + + """""" + cacheStatus_geq: string + + """""" + cacheStatus_gt: string + + """""" + cacheStatus_in: [string!] + + """""" + cacheStatus_leq: string + + """""" + cacheStatus_like: string + + """""" + cacheStatus_lt: string + + """""" + cacheStatus_neq: string + + """""" + cacheStatus_notin: [string!] + + """""" + cacheStatus_notlike: string + + """""" + clientASNDescription: string + + """""" + clientASNDescription_geq: string + + """""" + clientASNDescription_gt: string + + """""" + clientASNDescription_in: [string!] + + """""" + clientASNDescription_leq: string + + """""" + clientASNDescription_like: string + + """""" + clientASNDescription_lt: string + + """""" + clientASNDescription_neq: string + + """""" + clientASNDescription_notin: [string!] + + """""" + clientASNDescription_notlike: string + + """""" + clientAsn: string + + """""" + clientAsn_geq: string + + """""" + clientAsn_gt: string + + """""" + clientAsn_in: [string!] + + """""" + clientAsn_leq: string + + """""" + clientAsn_like: string + + """""" + clientAsn_lt: string + + """""" + clientAsn_neq: string + + """""" + clientAsn_notin: [string!] + + """""" + clientAsn_notlike: string + + """""" + clientCountryName: string + + """""" + clientCountryName_geq: string + + """""" + clientCountryName_gt: string + + """""" + clientCountryName_in: [string!] + + """""" + clientCountryName_leq: string + + """""" + clientCountryName_like: string + + """""" + clientCountryName_lt: string + + """""" + clientCountryName_neq: string + + """""" + clientCountryName_notin: [string!] + + """""" + clientCountryName_notlike: string + + """""" + clientDeviceType: string + + """""" + clientDeviceType_geq: string + + """""" + clientDeviceType_gt: string + + """""" + clientDeviceType_in: [string!] + + """""" + clientDeviceType_leq: string + + """""" + clientDeviceType_like: string + + """""" + clientDeviceType_lt: string + + """""" + clientDeviceType_neq: string + + """""" + clientDeviceType_notin: [string!] + + """""" + clientDeviceType_notlike: string + + """""" + clientIP: string + + """""" + clientIP_geq: string + + """""" + clientIP_gt: string + + """""" + clientIP_in: [string!] + + """""" + clientIP_leq: string + + """""" + clientIP_like: string + + """""" + clientIP_lt: string + + """""" + clientIP_neq: string + + """""" + clientIP_notin: [string!] + + """""" + clientIP_notlike: string + + """""" + clientRefererHost: string + + """""" + clientRefererHost_geq: string + + """""" + clientRefererHost_gt: string + + """""" + clientRefererHost_in: [string!] + + """""" + clientRefererHost_leq: string + + """""" + clientRefererHost_like: string + + """""" + clientRefererHost_lt: string + + """""" + clientRefererHost_neq: string + + """""" + clientRefererHost_notin: [string!] + + """""" + clientRefererHost_notlike: string + + """""" + clientRequestHTTPHost: string + + """""" + clientRequestHTTPHost_geq: string + + """""" + clientRequestHTTPHost_gt: string + + """""" + clientRequestHTTPHost_in: [string!] + + """""" + clientRequestHTTPHost_leq: string + + """""" + clientRequestHTTPHost_like: string + + """""" + clientRequestHTTPHost_lt: string + + """""" + clientRequestHTTPHost_neq: string + + """""" + clientRequestHTTPHost_notin: [string!] + + """""" + clientRequestHTTPHost_notlike: string + + """""" + clientRequestHTTPMethodName: string + + """""" + clientRequestHTTPMethodName_geq: string + + """""" + clientRequestHTTPMethodName_gt: string + + """""" + clientRequestHTTPMethodName_in: [string!] + + """""" + clientRequestHTTPMethodName_leq: string + + """""" + clientRequestHTTPMethodName_like: string + + """""" + clientRequestHTTPMethodName_lt: string + + """""" + clientRequestHTTPMethodName_neq: string + + """""" + clientRequestHTTPMethodName_notin: [string!] + + """""" + clientRequestHTTPMethodName_notlike: string + + """""" + clientRequestHTTPProtocol: string + + """""" + clientRequestHTTPProtocol_geq: string + + """""" + clientRequestHTTPProtocol_gt: string + + """""" + clientRequestHTTPProtocol_in: [string!] + + """""" + clientRequestHTTPProtocol_leq: string + + """""" + clientRequestHTTPProtocol_like: string + + """""" + clientRequestHTTPProtocol_lt: string + + """""" + clientRequestHTTPProtocol_neq: string + + """""" + clientRequestHTTPProtocol_notin: [string!] + + """""" + clientRequestHTTPProtocol_notlike: string + + """""" + clientRequestPath: string + + """""" + clientRequestPath_geq: string + + """""" + clientRequestPath_gt: string + + """""" + clientRequestPath_in: [string!] + + """""" + clientRequestPath_leq: string + + """""" + clientRequestPath_like: string + + """""" + clientRequestPath_lt: string + + """""" + clientRequestPath_neq: string + + """""" + clientRequestPath_notin: [string!] + + """""" + clientRequestPath_notlike: string + + """""" + clientRequestQuery: string + + """""" + clientRequestQuery_geq: string + + """""" + clientRequestQuery_gt: string + + """""" + clientRequestQuery_in: [string!] + + """""" + clientRequestQuery_leq: string + + """""" + clientRequestQuery_like: string + + """""" + clientRequestQuery_lt: string + + """""" + clientRequestQuery_neq: string + + """""" + clientRequestQuery_notin: [string!] + + """""" + clientRequestQuery_notlike: string + + """""" + clientRequestReferer: string + + """""" + clientRequestReferer_geq: string + + """""" + clientRequestReferer_gt: string + + """""" + clientRequestReferer_in: [string!] + + """""" + clientRequestReferer_leq: string + + """""" + clientRequestReferer_like: string + + """""" + clientRequestReferer_lt: string + + """""" + clientRequestReferer_neq: string + + """""" + clientRequestReferer_notin: [string!] + + """""" + clientRequestReferer_notlike: string + + """""" + clientRequestScheme: string + + """""" + clientRequestScheme_geq: string + + """""" + clientRequestScheme_gt: string + + """""" + clientRequestScheme_in: [string!] + + """""" + clientRequestScheme_leq: string + + """""" + clientRequestScheme_like: string + + """""" + clientRequestScheme_lt: string + + """""" + clientRequestScheme_neq: string + + """""" + clientRequestScheme_notin: [string!] + + """""" + clientRequestScheme_notlike: string + + """""" + clientSSLProtocol: string + + """""" + clientSSLProtocol_geq: string + + """""" + clientSSLProtocol_gt: string + + """""" + clientSSLProtocol_in: [string!] + + """""" + clientSSLProtocol_leq: string + + """""" + clientSSLProtocol_like: string + + """""" + clientSSLProtocol_lt: string + + """""" + clientSSLProtocol_neq: string + + """""" + clientSSLProtocol_notin: [string!] + + """""" + clientSSLProtocol_notlike: string + + """""" + coloCode: string + + """""" + coloCode_geq: string + + """""" + coloCode_gt: string + + """""" + coloCode_in: [string!] + + """""" + coloCode_leq: string + + """""" + coloCode_like: string + + """""" + coloCode_lt: string + + """""" + coloCode_neq: string + + """""" + coloCode_notin: [string!] + + """""" + coloCode_notlike: string + + """""" + contentScanHasFailed: uint8 + + """""" + contentScanHasFailed_geq: uint8 + + """""" + contentScanHasFailed_gt: uint8 + + """""" + contentScanHasFailed_in: bytes + + """""" + contentScanHasFailed_leq: uint8 + + """""" + contentScanHasFailed_lt: uint8 + + """""" + contentScanHasFailed_neq: uint8 + + """""" + contentScanHasFailed_notin: bytes + + """""" + contentScanNumMaliciousObj: uint8 + + """""" + contentScanNumMaliciousObj_geq: uint8 + + """""" + contentScanNumMaliciousObj_gt: uint8 + + """""" + contentScanNumMaliciousObj_in: bytes + + """""" + contentScanNumMaliciousObj_leq: uint8 + + """""" + contentScanNumMaliciousObj_lt: uint8 + + """""" + contentScanNumMaliciousObj_neq: uint8 + + """""" + contentScanNumMaliciousObj_notin: bytes + + """""" + contentScanNumObj: uint8 + + """""" + contentScanNumObj_geq: uint8 + + """""" + contentScanNumObj_gt: uint8 + + """""" + contentScanNumObj_in: bytes + + """""" + contentScanNumObj_leq: uint8 + + """""" + contentScanNumObj_lt: uint8 + + """""" + contentScanNumObj_neq: uint8 + + """""" + contentScanNumObj_notin: bytes + + """""" + contentScanObjResults_has: string + + """""" + contentScanObjResults_hasall: [string!] + + """""" + contentScanObjResults_hasany: [string!] + + """""" + contentScanObjResults_isempty: bool + + """""" + contentScanObjResults_nothas: string + + """""" + contentScanObjSizes_has: uint32 + + """""" + contentScanObjSizes_hasall: [uint32!] + + """""" + contentScanObjSizes_hasany: [uint32!] + + """""" + contentScanObjSizes_isempty: bool + + """""" + contentScanObjSizes_nothas: uint32 + + """""" + contentScanObjTypes_has: string + + """""" + contentScanObjTypes_hasall: [string!] + + """""" + contentScanObjTypes_hasany: [string!] + + """""" + contentScanObjTypes_isempty: bool + + """""" + contentScanObjTypes_nothas: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + edgeDnsResponseTimeMs: uint16 + + """""" + edgeDnsResponseTimeMs_geq: uint16 + + """""" + edgeDnsResponseTimeMs_gt: uint16 + + """""" + edgeDnsResponseTimeMs_in: [uint16!] + + """""" + edgeDnsResponseTimeMs_leq: uint16 + + """""" + edgeDnsResponseTimeMs_lt: uint16 + + """""" + edgeDnsResponseTimeMs_neq: uint16 + + """""" + edgeDnsResponseTimeMs_notin: [uint16!] + + """""" + edgeResponseContentTypeName: string + + """""" + edgeResponseContentTypeName_geq: string + + """""" + edgeResponseContentTypeName_gt: string + + """""" + edgeResponseContentTypeName_in: [string!] + + """""" + edgeResponseContentTypeName_leq: string + + """""" + edgeResponseContentTypeName_like: string + + """""" + edgeResponseContentTypeName_lt: string + + """""" + edgeResponseContentTypeName_neq: string + + """""" + edgeResponseContentTypeName_notin: [string!] + + """""" + edgeResponseContentTypeName_notlike: string + + """""" + edgeResponseStatus: uint16 + + """""" + edgeResponseStatus_geq: uint16 + + """""" + edgeResponseStatus_gt: uint16 + + """""" + edgeResponseStatus_in: [uint16!] + + """""" + edgeResponseStatus_leq: uint16 + + """""" + edgeResponseStatus_lt: uint16 + + """""" + edgeResponseStatus_neq: uint16 + + """""" + edgeResponseStatus_notin: [uint16!] + + """""" + edgeTimeToFirstByteMs: uint16 + + """""" + edgeTimeToFirstByteMs_geq: uint16 + + """""" + edgeTimeToFirstByteMs_gt: uint16 + + """""" + edgeTimeToFirstByteMs_in: [uint16!] + + """""" + edgeTimeToFirstByteMs_leq: uint16 + + """""" + edgeTimeToFirstByteMs_lt: uint16 + + """""" + edgeTimeToFirstByteMs_neq: uint16 + + """""" + edgeTimeToFirstByteMs_notin: [uint16!] + + """""" + firewallForAiAnyPiiCategory: int8 + + """""" + firewallForAiAnyPiiCategory_geq: int8 + + """""" + firewallForAiAnyPiiCategory_gt: int8 + + """""" + firewallForAiAnyPiiCategory_in: [int8!] + + """""" + firewallForAiAnyPiiCategory_leq: int8 + + """""" + firewallForAiAnyPiiCategory_lt: int8 + + """""" + firewallForAiAnyPiiCategory_neq: int8 + + """""" + firewallForAiAnyPiiCategory_notin: [int8!] + + """""" + firewallForAiInjectionScore: int8 + + """""" + firewallForAiInjectionScore_geq: int8 + + """""" + firewallForAiInjectionScore_gt: int8 + + """""" + firewallForAiInjectionScore_in: [int8!] + + """""" + firewallForAiInjectionScore_leq: int8 + + """""" + firewallForAiInjectionScore_lt: int8 + + """""" + firewallForAiInjectionScore_neq: int8 + + """""" + firewallForAiInjectionScore_notin: [int8!] + + """""" + firewallForAiPiiCategories_has: string + + """""" + firewallForAiPiiCategories_hasall: [string!] + + """""" + firewallForAiPiiCategories_hasany: [string!] + + """""" + firewallForAiPiiCategories_isempty: bool + + """""" + firewallForAiPiiCategories_nothas: string + + """""" + firewallForAiUnsafeTopicCategories_has: string + + """""" + firewallForAiUnsafeTopicCategories_hasall: [string!] + + """""" + firewallForAiUnsafeTopicCategories_hasany: [string!] + + """""" + firewallForAiUnsafeTopicCategories_isempty: bool + + """""" + firewallForAiUnsafeTopicCategories_nothas: string + + """""" + fraudAttack: string + + """""" + fraudAttack_geq: string + + """""" + fraudAttack_gt: string + + """""" + fraudAttack_in: [string!] + + """""" + fraudAttack_leq: string + + """""" + fraudAttack_like: string + + """""" + fraudAttack_lt: string + + """""" + fraudAttack_neq: string + + """""" + fraudAttack_notin: [string!] + + """""" + fraudAttack_notlike: string + + """""" + fraudDetectionIds_has: uint32 + + """""" + fraudDetectionIds_hasall: [uint32!] + + """""" + fraudDetectionIds_hasany: [uint32!] + + """""" + fraudDetectionIds_isempty: bool + + """""" + fraudDetectionIds_nothas: uint32 + + """""" + fraudDetectionTags_has: string + + """""" + fraudDetectionTags_hasall: [string!] + + """""" + fraudDetectionTags_hasany: [string!] + + """""" + fraudDetectionTags_isempty: bool + + """""" + fraudDetectionTags_nothas: string + + """""" + fraudEmailRisk: string + + """""" + fraudEmailRisk_geq: string + + """""" + fraudEmailRisk_gt: string + + """""" + fraudEmailRisk_in: [string!] + + """""" + fraudEmailRisk_leq: string + + """""" + fraudEmailRisk_like: string + + """""" + fraudEmailRisk_lt: string + + """""" + fraudEmailRisk_neq: string + + """""" + fraudEmailRisk_notin: [string!] + + """""" + fraudEmailRisk_notlike: string + + """""" + httpApplicationVersion: uint64 + + """""" + httpApplicationVersion_geq: uint64 + + """""" + httpApplicationVersion_gt: uint64 + + """""" + httpApplicationVersion_in: [uint64!] + + """""" + httpApplicationVersion_leq: uint64 + + """""" + httpApplicationVersion_lt: uint64 + + """""" + httpApplicationVersion_neq: uint64 + + """""" + httpApplicationVersion_notin: [uint64!] + + """""" + isCrossZoneSubrequest: uint8 + + """""" + isCrossZoneSubrequest_geq: uint8 + + """""" + isCrossZoneSubrequest_gt: uint8 + + """""" + isCrossZoneSubrequest_in: bytes + + """""" + isCrossZoneSubrequest_leq: uint8 + + """""" + isCrossZoneSubrequest_lt: uint8 + + """""" + isCrossZoneSubrequest_neq: uint8 + + """""" + isCrossZoneSubrequest_notin: bytes + + """""" + ja3Hash: string + + """""" + ja3Hash_geq: string + + """""" + ja3Hash_gt: string + + """""" + ja3Hash_in: [string!] + + """""" + ja3Hash_leq: string + + """""" + ja3Hash_like: string + + """""" + ja3Hash_lt: string + + """""" + ja3Hash_neq: string + + """""" + ja3Hash_notin: [string!] + + """""" + ja3Hash_notlike: string + + """""" + ja4: string + + """""" + ja4_geq: string + + """""" + ja4_gt: string + + """""" + ja4_in: [string!] + + """""" + ja4_leq: string + + """""" + ja4_like: string + + """""" + ja4_lt: string + + """""" + ja4_neq: string + + """""" + ja4_notin: [string!] + + """""" + ja4_notlike: string + + """""" + jsDetectionPassed: string + + """""" + jsDetectionPassed_geq: string + + """""" + jsDetectionPassed_gt: string + + """""" + jsDetectionPassed_in: [string!] + + """""" + jsDetectionPassed_leq: string + + """""" + jsDetectionPassed_like: string + + """""" + jsDetectionPassed_lt: string + + """""" + jsDetectionPassed_neq: string + + """""" + jsDetectionPassed_notin: [string!] + + """""" + jsDetectionPassed_notlike: string + + """""" + leakedCredentialCheckResult: string + + """""" + leakedCredentialCheckResult_geq: string + + """""" + leakedCredentialCheckResult_gt: string + + """""" + leakedCredentialCheckResult_in: [string!] + + """""" + leakedCredentialCheckResult_leq: string + + """""" + leakedCredentialCheckResult_like: string + + """""" + leakedCredentialCheckResult_lt: string + + """""" + leakedCredentialCheckResult_neq: string + + """""" + leakedCredentialCheckResult_notin: [string!] + + """""" + leakedCredentialCheckResult_notlike: string + + """""" + originASN: uint32 + + """""" + originASNDescription: string + + """""" + originASNDescription_geq: string + + """""" + originASNDescription_gt: string + + """""" + originASNDescription_in: [string!] + + """""" + originASNDescription_leq: string + + """""" + originASNDescription_like: string + + """""" + originASNDescription_lt: string + + """""" + originASNDescription_neq: string + + """""" + originASNDescription_notin: [string!] + + """""" + originASNDescription_notlike: string + + """""" + originASN_geq: uint32 + + """""" + originASN_gt: uint32 + + """""" + originASN_in: [uint32!] + + """""" + originASN_leq: uint32 + + """""" + originASN_lt: uint32 + + """""" + originASN_neq: uint32 + + """""" + originASN_notin: [uint32!] + + """""" + originIP: string + + """""" + originIP_geq: string + + """""" + originIP_gt: string + + """""" + originIP_in: [string!] + + """""" + originIP_leq: string + + """""" + originIP_like: string + + """""" + originIP_lt: string + + """""" + originIP_neq: string + + """""" + originIP_notin: [string!] + + """""" + originIP_notlike: string + + """""" + originResponseDurationMs: uint64 + + """""" + originResponseDurationMs_geq: uint64 + + """""" + originResponseDurationMs_gt: uint64 + + """""" + originResponseDurationMs_in: [uint64!] + + """""" + originResponseDurationMs_leq: uint64 + + """""" + originResponseDurationMs_lt: uint64 + + """""" + originResponseDurationMs_neq: uint64 + + """""" + originResponseDurationMs_notin: [uint64!] + + """""" + originResponseStatus: uint16 + + """""" + originResponseStatus_geq: uint16 + + """""" + originResponseStatus_gt: uint16 + + """""" + originResponseStatus_in: [uint16!] + + """""" + originResponseStatus_leq: uint16 + + """""" + originResponseStatus_lt: uint16 + + """""" + originResponseStatus_neq: uint16 + + """""" + originResponseStatus_notin: [uint16!] + + """""" + payPerCrawlStatus: string + + """""" + payPerCrawlStatus_geq: string + + """""" + payPerCrawlStatus_gt: string + + """""" + payPerCrawlStatus_in: [string!] + + """""" + payPerCrawlStatus_leq: string + + """""" + payPerCrawlStatus_like: string + + """""" + payPerCrawlStatus_lt: string + + """""" + payPerCrawlStatus_neq: string + + """""" + payPerCrawlStatus_notin: [string!] + + """""" + payPerCrawlStatus_notlike: string + + """""" + rayName: string + + """""" + rayName_geq: string + + """""" + rayName_gt: string + + """""" + rayName_in: [string!] + + """""" + rayName_leq: string + + """""" + rayName_like: string + + """""" + rayName_lt: string + + """""" + rayName_neq: string + + """""" + rayName_notin: [string!] + + """""" + rayName_notlike: string + + """""" + requestSource: string + + """""" + requestSource_geq: string + + """""" + requestSource_gt: string + + """""" + requestSource_in: [string!] + + """""" + requestSource_leq: string + + """""" + requestSource_like: string + + """""" + requestSource_lt: string + + """""" + requestSource_neq: string + + """""" + requestSource_notin: [string!] + + """""" + requestSource_notlike: string + + """""" + sampleInterval: uint32 + + """""" + sampleInterval_geq: uint32 + + """""" + sampleInterval_gt: uint32 + + """""" + sampleInterval_in: [uint32!] + + """""" + sampleInterval_leq: uint32 + + """""" + sampleInterval_lt: uint32 + + """""" + sampleInterval_neq: uint32 + + """""" + sampleInterval_notin: [uint32!] + + """""" + securityAction: string + + """""" + securityAction_geq: string + + """""" + securityAction_gt: string + + """""" + securityAction_in: [string!] + + """""" + securityAction_leq: string + + """""" + securityAction_like: string + + """""" + securityAction_lt: string + + """""" + securityAction_neq: string + + """""" + securityAction_notin: [string!] + + """""" + securityAction_notlike: string + + """""" + securitySource: string + + """""" + securitySource_geq: string + + """""" + securitySource_gt: string + + """""" + securitySource_in: [string!] + + """""" + securitySource_leq: string + + """""" + securitySource_like: string + + """""" + securitySource_lt: string + + """""" + securitySource_neq: string + + """""" + securitySource_notin: [string!] + + """""" + securitySource_notlike: string + + """""" + sessionIdHash: string + + """""" + sessionIdHash_geq: string + + """""" + sessionIdHash_gt: string + + """""" + sessionIdHash_in: [string!] + + """""" + sessionIdHash_leq: string + + """""" + sessionIdHash_like: string + + """""" + sessionIdHash_lt: string + + """""" + sessionIdHash_neq: string + + """""" + sessionIdHash_notin: [string!] + + """""" + sessionIdHash_notlike: string + + """""" + upperTierColoName: string + + """""" + upperTierColoName_geq: string + + """""" + upperTierColoName_gt: string + + """""" + upperTierColoName_in: [string!] + + """""" + upperTierColoName_leq: string + + """""" + upperTierColoName_like: string + + """""" + upperTierColoName_lt: string + + """""" + upperTierColoName_neq: string + + """""" + upperTierColoName_notin: [string!] + + """""" + upperTierColoName_notlike: string + + """""" + userAgent: string + + """""" + userAgentBrowser: string + + """""" + userAgentBrowser_geq: string + + """""" + userAgentBrowser_gt: string + + """""" + userAgentBrowser_in: [string!] + + """""" + userAgentBrowser_leq: string + + """""" + userAgentBrowser_like: string + + """""" + userAgentBrowser_lt: string + + """""" + userAgentBrowser_neq: string + + """""" + userAgentBrowser_notin: [string!] + + """""" + userAgentBrowser_notlike: string + + """""" + userAgentOS: string + + """""" + userAgentOS_geq: string + + """""" + userAgentOS_gt: string + + """""" + userAgentOS_in: [string!] + + """""" + userAgentOS_leq: string + + """""" + userAgentOS_like: string + + """""" + userAgentOS_lt: string + + """""" + userAgentOS_neq: string + + """""" + userAgentOS_notin: [string!] + + """""" + userAgentOS_notlike: string + + """""" + userAgent_geq: string + + """""" + userAgent_gt: string + + """""" + userAgent_in: [string!] + + """""" + userAgent_leq: string + + """""" + userAgent_like: string + + """""" + userAgent_lt: string + + """""" + userAgent_neq: string + + """""" + userAgent_notin: [string!] + + """""" + userAgent_notlike: string + + """""" + verifiedBotCategory: string + + """""" + verifiedBotCategory_geq: string + + """""" + verifiedBotCategory_gt: string + + """""" + verifiedBotCategory_in: [string!] + + """""" + verifiedBotCategory_leq: string + + """""" + verifiedBotCategory_like: string + + """""" + verifiedBotCategory_lt: string + + """""" + verifiedBotCategory_neq: string + + """""" + verifiedBotCategory_notin: [string!] + + """""" + verifiedBotCategory_notlike: string + + """""" + wafAttackScore: uint8 + + """""" + wafAttackScoreClass: string + + """""" + wafAttackScoreClass_geq: string + + """""" + wafAttackScoreClass_gt: string + + """""" + wafAttackScoreClass_in: [string!] + + """""" + wafAttackScoreClass_leq: string + + """""" + wafAttackScoreClass_like: string + + """""" + wafAttackScoreClass_lt: string + + """""" + wafAttackScoreClass_neq: string + + """""" + wafAttackScoreClass_notin: [string!] + + """""" + wafAttackScoreClass_notlike: string + + """""" + wafAttackScore_geq: uint8 + + """""" + wafAttackScore_gt: uint8 + + """""" + wafAttackScore_in: bytes + + """""" + wafAttackScore_leq: uint8 + + """""" + wafAttackScore_lt: uint8 + + """""" + wafAttackScore_neq: uint8 + + """""" + wafAttackScore_notin: bytes + + """""" + wafRceAttackScore: uint8 + + """""" + wafRceAttackScore_geq: uint8 + + """""" + wafRceAttackScore_gt: uint8 + + """""" + wafRceAttackScore_in: bytes + + """""" + wafRceAttackScore_leq: uint8 + + """""" + wafRceAttackScore_lt: uint8 + + """""" + wafRceAttackScore_neq: uint8 + + """""" + wafRceAttackScore_notin: bytes + + """""" + wafSqliAttackScore: uint8 + + """""" + wafSqliAttackScore_geq: uint8 + + """""" + wafSqliAttackScore_gt: uint8 + + """""" + wafSqliAttackScore_in: bytes + + """""" + wafSqliAttackScore_leq: uint8 + + """""" + wafSqliAttackScore_lt: uint8 + + """""" + wafSqliAttackScore_neq: uint8 + + """""" + wafSqliAttackScore_notin: bytes + + """""" + wafXssAttackScore: uint8 + + """""" + wafXssAttackScore_geq: uint8 + + """""" + wafXssAttackScore_gt: uint8 + + """""" + wafXssAttackScore_in: bytes + + """""" + wafXssAttackScore_leq: uint8 + + """""" + wafXssAttackScore_lt: uint8 + + """""" + wafXssAttackScore_neq: uint8 + + """""" + wafXssAttackScore_notin: bytes + + """""" + xRequestedWith: string + + """""" + xRequestedWith_geq: string + + """""" + xRequestedWith_gt: string + + """""" + xRequestedWith_in: [string!] + + """""" + xRequestedWith_leq: string + + """""" + xRequestedWith_like: string + + """""" + xRequestedWith_lt: string + + """""" + xRequestedWith_neq: string + + """""" + xRequestedWith_notin: [string!] + + """""" + xRequestedWith_notlike: string + + """""" + zoneVersion: uint64 + + """""" + zoneVersion_geq: uint64 + + """""" + zoneVersion_gt: uint64 + + """""" + zoneVersion_in: [uint64!] + + """""" + zoneVersion_leq: uint64 + + """""" + zoneVersion_lt: uint64 + + """""" + zoneVersion_neq: uint64 + + """""" + zoneVersion_notin: [uint64!] +} + +"""""" +enum ZoneHttpRequestsAdaptiveGroupsOrderBy { + """apiGatewayMatchedEndpoint ascending""" + apiGatewayMatchedEndpoint_ASC + + """apiGatewayMatchedEndpoint descending""" + apiGatewayMatchedEndpoint_DESC + + """apiGatewayMatchedHost ascending""" + apiGatewayMatchedHost_ASC + + """apiGatewayMatchedHost descending""" + apiGatewayMatchedHost_DESC + + """attackSignatureCategories ascending""" + attackSignatureCategories_ASC + + """attackSignatureCategories descending""" + attackSignatureCategories_DESC + + """attackSignatureRefs ascending""" + attackSignatureRefs_ASC + + """attackSignatureRefs descending""" + attackSignatureRefs_DESC + + """avg(crossZoneSubrequests) ascending""" + avg_crossZoneSubrequests_ASC + + """avg(crossZoneSubrequests) descending""" + avg_crossZoneSubrequests_DESC + + """avg(edgeDnsResponseTimeMs) ascending""" + avg_edgeDnsResponseTimeMs_ASC + + """avg(edgeDnsResponseTimeMs) descending""" + avg_edgeDnsResponseTimeMs_DESC + + """avg(edgeTimeToFirstByteMs) ascending""" + avg_edgeTimeToFirstByteMs_ASC + + """avg(edgeTimeToFirstByteMs) descending""" + avg_edgeTimeToFirstByteMs_DESC + + """avg(originResponseDurationMs) ascending""" + avg_originResponseDurationMs_ASC + + """avg(originResponseDurationMs) descending""" + avg_originResponseDurationMs_DESC + + """avg(sampleInterval) ascending""" + avg_sampleInterval_ASC + + """avg(sampleInterval) descending""" + avg_sampleInterval_DESC + + """botDetectionIds ascending""" + botDetectionIds_ASC + + """botDetectionIds descending""" + botDetectionIds_DESC + + """botDetectionTags ascending""" + botDetectionTags_ASC + + """botDetectionTags descending""" + botDetectionTags_DESC + + """botManagementDecision ascending""" + botManagementDecision_ASC + + """botManagementDecision descending""" + botManagementDecision_DESC + + """botScoreBucketBy10 ascending""" + botScoreBucketBy10_ASC + + """botScoreBucketBy10 descending""" + botScoreBucketBy10_DESC + + """botScoreSrcName ascending""" + botScoreSrcName_ASC + + """botScoreSrcName descending""" + botScoreSrcName_DESC + + """botScore ascending""" + botScore_ASC + + """botScore descending""" + botScore_DESC + + """cacheReserveUsed ascending""" + cacheReserveUsed_ASC + + """cacheReserveUsed descending""" + cacheReserveUsed_DESC + + """cacheStatus ascending""" + cacheStatus_ASC + + """cacheStatus descending""" + cacheStatus_DESC + + """clientASNDescription ascending""" + clientASNDescription_ASC + + """clientASNDescription descending""" + clientASNDescription_DESC + + """clientAsn ascending""" + clientAsn_ASC + + """clientAsn descending""" + clientAsn_DESC + + """clientCountryName ascending""" + clientCountryName_ASC + + """clientCountryName descending""" + clientCountryName_DESC + + """clientDeviceType ascending""" + clientDeviceType_ASC + + """clientDeviceType descending""" + clientDeviceType_DESC + + """clientIP ascending""" + clientIP_ASC + + """clientIP descending""" + clientIP_DESC + + """clientRefererHost ascending""" + clientRefererHost_ASC + + """clientRefererHost descending""" + clientRefererHost_DESC + + """clientRequestHTTPHost ascending""" + clientRequestHTTPHost_ASC + + """clientRequestHTTPHost descending""" + clientRequestHTTPHost_DESC + + """clientRequestHTTPMethodName ascending""" + clientRequestHTTPMethodName_ASC + + """clientRequestHTTPMethodName descending""" + clientRequestHTTPMethodName_DESC + + """clientRequestHTTPProtocol ascending""" + clientRequestHTTPProtocol_ASC + + """clientRequestHTTPProtocol descending""" + clientRequestHTTPProtocol_DESC + + """clientRequestPath ascending""" + clientRequestPath_ASC + + """clientRequestPath descending""" + clientRequestPath_DESC + + """clientRequestQuery ascending""" + clientRequestQuery_ASC + + """clientRequestQuery descending""" + clientRequestQuery_DESC + + """clientRequestReferer ascending""" + clientRequestReferer_ASC + + """clientRequestReferer descending""" + clientRequestReferer_DESC + + """clientRequestScheme ascending""" + clientRequestScheme_ASC + + """clientRequestScheme descending""" + clientRequestScheme_DESC + + """clientSSLProtocol ascending""" + clientSSLProtocol_ASC + + """clientSSLProtocol descending""" + clientSSLProtocol_DESC + + """coloCode ascending""" + coloCode_ASC + + """coloCode descending""" + coloCode_DESC + + """contentScanHasFailed ascending""" + contentScanHasFailed_ASC + + """contentScanHasFailed descending""" + contentScanHasFailed_DESC + + """contentScanNumMaliciousObj ascending""" + contentScanNumMaliciousObj_ASC + + """contentScanNumMaliciousObj descending""" + contentScanNumMaliciousObj_DESC + + """contentScanNumObj ascending""" + contentScanNumObj_ASC + + """contentScanNumObj descending""" + contentScanNumObj_DESC + + """contentScanObjResults ascending""" + contentScanObjResults_ASC + + """contentScanObjResults descending""" + contentScanObjResults_DESC + + """contentScanObjSizes ascending""" + contentScanObjSizes_ASC + + """contentScanObjSizes descending""" + contentScanObjSizes_DESC + + """contentScanObjTypes ascending""" + contentScanObjTypes_ASC + + """contentScanObjTypes descending""" + contentScanObjTypes_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """edgeDnsResponseTimeMs ascending""" + edgeDnsResponseTimeMs_ASC + + """edgeDnsResponseTimeMs descending""" + edgeDnsResponseTimeMs_DESC + + """edgeResponseContentTypeName ascending""" + edgeResponseContentTypeName_ASC + + """edgeResponseContentTypeName descending""" + edgeResponseContentTypeName_DESC + + """edgeResponseStatus ascending""" + edgeResponseStatus_ASC + + """edgeResponseStatus descending""" + edgeResponseStatus_DESC + + """edgeTimeToFirstByteMs ascending""" + edgeTimeToFirstByteMs_ASC + + """edgeTimeToFirstByteMs descending""" + edgeTimeToFirstByteMs_DESC + + """firewallForAiAnyPiiCategory ascending""" + firewallForAiAnyPiiCategory_ASC + + """firewallForAiAnyPiiCategory descending""" + firewallForAiAnyPiiCategory_DESC + + """firewallForAiInjectionScore ascending""" + firewallForAiInjectionScore_ASC + + """firewallForAiInjectionScore descending""" + firewallForAiInjectionScore_DESC + + """firewallForAiPiiCategories ascending""" + firewallForAiPiiCategories_ASC + + """firewallForAiPiiCategories descending""" + firewallForAiPiiCategories_DESC + + """firewallForAiUnsafeTopicCategories ascending""" + firewallForAiUnsafeTopicCategories_ASC + + """firewallForAiUnsafeTopicCategories descending""" + firewallForAiUnsafeTopicCategories_DESC + + """fraudAttack ascending""" + fraudAttack_ASC + + """fraudAttack descending""" + fraudAttack_DESC + + """fraudDetectionIds ascending""" + fraudDetectionIds_ASC + + """fraudDetectionIds descending""" + fraudDetectionIds_DESC + + """fraudDetectionTags ascending""" + fraudDetectionTags_ASC + + """fraudDetectionTags descending""" + fraudDetectionTags_DESC + + """fraudEmailRisk ascending""" + fraudEmailRisk_ASC + + """fraudEmailRisk descending""" + fraudEmailRisk_DESC + + """httpApplicationVersion ascending""" + httpApplicationVersion_ASC + + """httpApplicationVersion descending""" + httpApplicationVersion_DESC + + """isCrossZoneSubrequest ascending""" + isCrossZoneSubrequest_ASC + + """isCrossZoneSubrequest descending""" + isCrossZoneSubrequest_DESC + + """ja3Hash ascending""" + ja3Hash_ASC + + """ja3Hash descending""" + ja3Hash_DESC + + """ja4 ascending""" + ja4_ASC + + """ja4 descending""" + ja4_DESC + + """jsDetectionPassed ascending""" + jsDetectionPassed_ASC + + """jsDetectionPassed descending""" + jsDetectionPassed_DESC + + """leakedCredentialCheckResult ascending""" + leakedCredentialCheckResult_ASC + + """leakedCredentialCheckResult descending""" + leakedCredentialCheckResult_DESC + + """originASNDescription ascending""" + originASNDescription_ASC + + """originASNDescription descending""" + originASNDescription_DESC + + """originASN ascending""" + originASN_ASC + + """originASN descending""" + originASN_DESC + + """originIP ascending""" + originIP_ASC + + """originIP descending""" + originIP_DESC + + """originResponseDurationMs ascending""" + originResponseDurationMs_ASC + + """originResponseDurationMs descending""" + originResponseDurationMs_DESC + + """originResponseStatus ascending""" + originResponseStatus_ASC + + """originResponseStatus descending""" + originResponseStatus_DESC + + """payPerCrawlStatus ascending""" + payPerCrawlStatus_ASC + + """payPerCrawlStatus descending""" + payPerCrawlStatus_DESC + + """quantiles(edgeDnsResponseTimeMsP50) ascending""" + quantiles_edgeDnsResponseTimeMsP50_ASC + + """quantiles(edgeDnsResponseTimeMsP50) descending""" + quantiles_edgeDnsResponseTimeMsP50_DESC + + """quantiles(edgeDnsResponseTimeMsP95) ascending""" + quantiles_edgeDnsResponseTimeMsP95_ASC + + """quantiles(edgeDnsResponseTimeMsP95) descending""" + quantiles_edgeDnsResponseTimeMsP95_DESC + + """quantiles(edgeDnsResponseTimeMsP99) ascending""" + quantiles_edgeDnsResponseTimeMsP99_ASC + + """quantiles(edgeDnsResponseTimeMsP99) descending""" + quantiles_edgeDnsResponseTimeMsP99_DESC + + """quantiles(edgeResponseBytesP50) ascending""" + quantiles_edgeResponseBytesP50_ASC + + """quantiles(edgeResponseBytesP50) descending""" + quantiles_edgeResponseBytesP50_DESC + + """quantiles(edgeResponseBytesP95) ascending""" + quantiles_edgeResponseBytesP95_ASC + + """quantiles(edgeResponseBytesP95) descending""" + quantiles_edgeResponseBytesP95_DESC + + """quantiles(edgeResponseBytesP99) ascending""" + quantiles_edgeResponseBytesP99_ASC + + """quantiles(edgeResponseBytesP99) descending""" + quantiles_edgeResponseBytesP99_DESC + + """quantiles(edgeTimeToFirstByteMsP50) ascending""" + quantiles_edgeTimeToFirstByteMsP50_ASC + + """quantiles(edgeTimeToFirstByteMsP50) descending""" + quantiles_edgeTimeToFirstByteMsP50_DESC + + """quantiles(edgeTimeToFirstByteMsP95) ascending""" + quantiles_edgeTimeToFirstByteMsP95_ASC + + """quantiles(edgeTimeToFirstByteMsP95) descending""" + quantiles_edgeTimeToFirstByteMsP95_DESC + + """quantiles(edgeTimeToFirstByteMsP99) ascending""" + quantiles_edgeTimeToFirstByteMsP99_ASC + + """quantiles(edgeTimeToFirstByteMsP99) descending""" + quantiles_edgeTimeToFirstByteMsP99_DESC + + """quantiles(originResponseDurationMsP50) ascending""" + quantiles_originResponseDurationMsP50_ASC + + """quantiles(originResponseDurationMsP50) descending""" + quantiles_originResponseDurationMsP50_DESC + + """quantiles(originResponseDurationMsP95) ascending""" + quantiles_originResponseDurationMsP95_ASC + + """quantiles(originResponseDurationMsP95) descending""" + quantiles_originResponseDurationMsP95_DESC + + """quantiles(originResponseDurationMsP99) ascending""" + quantiles_originResponseDurationMsP99_ASC + + """quantiles(originResponseDurationMsP99) descending""" + quantiles_originResponseDurationMsP99_DESC + + """ratio(status4xx) ascending""" + ratio_status4xx_ASC + + """ratio(status4xx) descending""" + ratio_status4xx_DESC + + """ratio(status5xx) ascending""" + ratio_status5xx_ASC + + """ratio(status5xx) descending""" + ratio_status5xx_DESC + + """requestSource ascending""" + requestSource_ASC + + """requestSource descending""" + requestSource_DESC + + """sampleInterval ascending""" + sampleInterval_ASC + + """sampleInterval descending""" + sampleInterval_DESC + + """securityAction ascending""" + securityAction_ASC + + """securityAction descending""" + securityAction_DESC + + """securitySource ascending""" + securitySource_ASC + + """securitySource descending""" + securitySource_DESC + + """sessionIdHash ascending""" + sessionIdHash_ASC + + """sessionIdHash descending""" + sessionIdHash_DESC + + """sum(botDetectionIdArray) ascending""" + sum_botDetectionIdArray_ASC + + """sum(botDetectionIdArray) descending""" + sum_botDetectionIdArray_DESC + + """sum(botDetectionIdCountArray) ascending""" + sum_botDetectionIdCountArray_ASC + + """sum(botDetectionIdCountArray) descending""" + sum_botDetectionIdCountArray_DESC + + """sum(botDetectionTagArray) ascending""" + sum_botDetectionTagArray_ASC + + """sum(botDetectionTagArray) descending""" + sum_botDetectionTagArray_DESC + + """sum(botDetectionTagCountArray) ascending""" + sum_botDetectionTagCountArray_ASC + + """sum(botDetectionTagCountArray) descending""" + sum_botDetectionTagCountArray_DESC + + """sum(crossZoneSubrequests) ascending""" + sum_crossZoneSubrequests_ASC + + """sum(crossZoneSubrequests) descending""" + sum_crossZoneSubrequests_DESC + + """sum(edgeDnsResponseTimeMs) ascending""" + sum_edgeDnsResponseTimeMs_ASC + + """sum(edgeDnsResponseTimeMs) descending""" + sum_edgeDnsResponseTimeMs_DESC + + """sum(edgeRequestBytes) ascending""" + sum_edgeRequestBytes_ASC + + """sum(edgeRequestBytes) descending""" + sum_edgeRequestBytes_DESC + + """sum(edgeResponseBytes) ascending""" + sum_edgeResponseBytes_ASC + + """sum(edgeResponseBytes) descending""" + sum_edgeResponseBytes_DESC + + """sum(edgeTimeToFirstByteMs) ascending""" + sum_edgeTimeToFirstByteMs_ASC + + """sum(edgeTimeToFirstByteMs) descending""" + sum_edgeTimeToFirstByteMs_DESC + + """sum(fraudDetectionIdArray) ascending""" + sum_fraudDetectionIdArray_ASC + + """sum(fraudDetectionIdArray) descending""" + sum_fraudDetectionIdArray_DESC + + """sum(fraudDetectionIdCountArray) ascending""" + sum_fraudDetectionIdCountArray_ASC + + """sum(fraudDetectionIdCountArray) descending""" + sum_fraudDetectionIdCountArray_DESC + + """sum(fraudDetectionTagArray) ascending""" + sum_fraudDetectionTagArray_ASC + + """sum(fraudDetectionTagArray) descending""" + sum_fraudDetectionTagArray_DESC + + """sum(fraudDetectionTagCountArray) ascending""" + sum_fraudDetectionTagCountArray_ASC + + """sum(fraudDetectionTagCountArray) descending""" + sum_fraudDetectionTagCountArray_DESC + + """sum(originResponseDurationMs) ascending""" + sum_originResponseDurationMs_ASC + + """sum(originResponseDurationMs) descending""" + sum_originResponseDurationMs_DESC + + """sum(visits) ascending""" + sum_visits_ASC + + """sum(visits) descending""" + sum_visits_DESC + + """upperTierColoName ascending""" + upperTierColoName_ASC + + """upperTierColoName descending""" + upperTierColoName_DESC + + """userAgentBrowser ascending""" + userAgentBrowser_ASC + + """userAgentBrowser descending""" + userAgentBrowser_DESC + + """userAgentOS ascending""" + userAgentOS_ASC + + """userAgentOS descending""" + userAgentOS_DESC + + """userAgent ascending""" + userAgent_ASC + + """userAgent descending""" + userAgent_DESC + + """verifiedBotCategory ascending""" + verifiedBotCategory_ASC + + """verifiedBotCategory descending""" + verifiedBotCategory_DESC + + """wafAttackScoreClass ascending""" + wafAttackScoreClass_ASC + + """wafAttackScoreClass descending""" + wafAttackScoreClass_DESC + + """wafAttackScore ascending""" + wafAttackScore_ASC + + """wafAttackScore descending""" + wafAttackScore_DESC + + """wafRceAttackScore ascending""" + wafRceAttackScore_ASC + + """wafRceAttackScore descending""" + wafRceAttackScore_DESC + + """wafSqliAttackScore ascending""" + wafSqliAttackScore_ASC + + """wafSqliAttackScore descending""" + wafSqliAttackScore_DESC + + """wafXssAttackScore ascending""" + wafXssAttackScore_ASC + + """wafXssAttackScore descending""" + wafXssAttackScore_DESC + + """xRequestedWith ascending""" + xRequestedWith_ASC + + """xRequestedWith descending""" + xRequestedWith_DESC + + """zoneVersion ascending""" + zoneVersion_ASC + + """zoneVersion descending""" + zoneVersion_DESC +} + +"""""" +type ZoneHttpRequestsAdaptiveGroupsQuantiles { + """50th percentile DNS Response Time (milliseconds)""" + edgeDnsResponseTimeMsP50: float64! + + """95th percentile DNS Response Time (milliseconds)""" + edgeDnsResponseTimeMsP95: float64! + + """99th percentile DNS Response Time (milliseconds)""" + edgeDnsResponseTimeMsP99: float64! + + """50th percentile Bytes returned to client""" + edgeResponseBytesP50: float64! + + """95th percentile Bytes returned to client""" + edgeResponseBytesP95: float64! + + """99th percentile Bytes returned to client""" + edgeResponseBytesP99: float64! + + """50th percentile Time To First Byte (milliseconds)""" + edgeTimeToFirstByteMsP50: float64! + + """95th percentile Time To First Byte (milliseconds)""" + edgeTimeToFirstByteMsP95: float64! + + """99th percentile Time To First Byte (milliseconds)""" + edgeTimeToFirstByteMsP99: float64! + + """50th percentile Origin Response Duration (milliseconds)""" + originResponseDurationMsP50: float64! + + """95th percentile Origin Response Duration (milliseconds)""" + originResponseDurationMsP95: float64! + + """99th percentile Origin Response Duration (milliseconds)""" + originResponseDurationMsP99: float64! +} + +"""""" +type ZoneHttpRequestsAdaptiveGroupsRatio { + """""" + status4xx: float64! + + """""" + status5xx: float64! +} + +"""""" +type ZoneHttpRequestsAdaptiveGroupsSum { + """Array of bot management detection ids""" + botDetectionIdArray: [uint32!]! + + """ + Count array of bot management detection ids. Elements in this array correspond to elements in botDetectionIdArray by index. + """ + botDetectionIdCountArray: [uint32!]! + + """Array of bot management detection tags""" + botDetectionTagArray: [string!]! + + """ + Count array of bot management detection tags. Elements in this array correspond to elements in botDetectionTagArray by index. + """ + botDetectionTagCountArray: [uint32!]! + + """ + The number of requests that were inititiated by a Cloudflare Worker on another zone + """ + crossZoneSubrequests: uint64! + + """""" + edgeDnsResponseTimeMs: uint64! + + """""" + edgeRequestBytes: uint64! + + """""" + edgeResponseBytes: uint64! + + """""" + edgeTimeToFirstByteMs: uint64! + + """Array of fraud detection ids""" + fraudDetectionIdArray: [uint32!]! + + """ + Count array of fraud detection ids. Elements in this array correspond to elements in fraudDetectionIdArray by index. + """ + fraudDetectionIdCountArray: [uint32!]! + + """Array of fraud detection tags""" + fraudDetectionTagArray: [string!]! + + """ + Count array of fraud detection tags. Elements in this array correspond to elements in fraudDetectionTagArray by index. + """ + fraudDetectionTagCountArray: [uint32!]! + + """""" + originResponseDurationMs: uint64! + + """ + The number of requests by end-users that were initiated from a different website (i.e. where the request HTTP Referer header does not match the host in the HTTP Host header) + """ + visits: uint64! +} + +"""""" +type ZoneHttpRequestsAdaptiveGroupsSumConfidence { + """Confidence interval for the corresponding point estimate""" + crossZoneSubrequests: Confidence! + + """Confidence interval for the corresponding point estimate""" + edgeDnsResponseTimeMs: Confidence! + + """Confidence interval for the corresponding point estimate""" + edgeRequestBytes: Confidence! + + """Confidence interval for the corresponding point estimate""" + edgeResponseBytes: Confidence! + + """Confidence interval for the corresponding point estimate""" + edgeTimeToFirstByteMs: Confidence! + + """Confidence interval for the corresponding point estimate""" + originResponseDurationMs: Confidence! + + """Confidence interval for the corresponding point estimate""" + visits: Confidence! +} + +"""""" +type ZoneHttpRequestsAdaptiveJa4SignalsElem { + """Signal name""" + signalName: string! + + """Signal value""" + signalValue: float32! +} + +"""""" +enum ZoneHttpRequestsAdaptiveOrderBy { + """apiGatewayMatchedEndpoint ascending""" + apiGatewayMatchedEndpoint_ASC + + """apiGatewayMatchedEndpoint descending""" + apiGatewayMatchedEndpoint_DESC + + """apiGatewayMatchedHost ascending""" + apiGatewayMatchedHost_ASC + + """apiGatewayMatchedHost descending""" + apiGatewayMatchedHost_DESC + + """attackSignatureCategories ascending""" + attackSignatureCategories_ASC + + """attackSignatureCategories descending""" + attackSignatureCategories_DESC + + """attackSignatureRefs ascending""" + attackSignatureRefs_ASC + + """attackSignatureRefs descending""" + attackSignatureRefs_DESC + + """botDetectionIds ascending""" + botDetectionIds_ASC + + """botDetectionIds descending""" + botDetectionIds_DESC + + """botDetectionTags ascending""" + botDetectionTags_ASC + + """botDetectionTags descending""" + botDetectionTags_DESC + + """botManagementDecision ascending""" + botManagementDecision_ASC + + """botManagementDecision descending""" + botManagementDecision_DESC + + """botScoreBucketBy10 ascending""" + botScoreBucketBy10_ASC + + """botScoreBucketBy10 descending""" + botScoreBucketBy10_DESC + + """botScoreSrcName ascending""" + botScoreSrcName_ASC + + """botScoreSrcName descending""" + botScoreSrcName_DESC + + """botScore ascending""" + botScore_ASC + + """botScore descending""" + botScore_DESC + + """cacheReserveUsed ascending""" + cacheReserveUsed_ASC + + """cacheReserveUsed descending""" + cacheReserveUsed_DESC + + """cacheStatus ascending""" + cacheStatus_ASC + + """cacheStatus descending""" + cacheStatus_DESC + + """clientASNDescription ascending""" + clientASNDescription_ASC + + """clientASNDescription descending""" + clientASNDescription_DESC + + """clientAsn ascending""" + clientAsn_ASC + + """clientAsn descending""" + clientAsn_DESC + + """clientCountryName ascending""" + clientCountryName_ASC + + """clientCountryName descending""" + clientCountryName_DESC + + """clientDeviceType ascending""" + clientDeviceType_ASC + + """clientDeviceType descending""" + clientDeviceType_DESC + + """clientIP ascending""" + clientIP_ASC + + """clientIP descending""" + clientIP_DESC + + """clientRefererHost ascending""" + clientRefererHost_ASC + + """clientRefererHost descending""" + clientRefererHost_DESC + + """clientRequestHTTPHost ascending""" + clientRequestHTTPHost_ASC + + """clientRequestHTTPHost descending""" + clientRequestHTTPHost_DESC + + """clientRequestHTTPMethodName ascending""" + clientRequestHTTPMethodName_ASC + + """clientRequestHTTPMethodName descending""" + clientRequestHTTPMethodName_DESC + + """clientRequestHTTPProtocol ascending""" + clientRequestHTTPProtocol_ASC + + """clientRequestHTTPProtocol descending""" + clientRequestHTTPProtocol_DESC + + """clientRequestPath ascending""" + clientRequestPath_ASC + + """clientRequestPath descending""" + clientRequestPath_DESC + + """clientRequestQuery ascending""" + clientRequestQuery_ASC + + """clientRequestQuery descending""" + clientRequestQuery_DESC + + """clientRequestReferer ascending""" + clientRequestReferer_ASC + + """clientRequestReferer descending""" + clientRequestReferer_DESC + + """clientRequestScheme ascending""" + clientRequestScheme_ASC + + """clientRequestScheme descending""" + clientRequestScheme_DESC + + """clientSSLProtocol ascending""" + clientSSLProtocol_ASC + + """clientSSLProtocol descending""" + clientSSLProtocol_DESC + + """coloCode ascending""" + coloCode_ASC + + """coloCode descending""" + coloCode_DESC + + """contentScanHasFailed ascending""" + contentScanHasFailed_ASC + + """contentScanHasFailed descending""" + contentScanHasFailed_DESC + + """contentScanNumMaliciousObj ascending""" + contentScanNumMaliciousObj_ASC + + """contentScanNumMaliciousObj descending""" + contentScanNumMaliciousObj_DESC + + """contentScanNumObj ascending""" + contentScanNumObj_ASC + + """contentScanNumObj descending""" + contentScanNumObj_DESC + + """contentScanObjResults ascending""" + contentScanObjResults_ASC + + """contentScanObjResults descending""" + contentScanObjResults_DESC + + """contentScanObjSizes ascending""" + contentScanObjSizes_ASC + + """contentScanObjSizes descending""" + contentScanObjSizes_DESC + + """contentScanObjTypes ascending""" + contentScanObjTypes_ASC + + """contentScanObjTypes descending""" + contentScanObjTypes_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """edgeDnsResponseTimeMs ascending""" + edgeDnsResponseTimeMs_ASC + + """edgeDnsResponseTimeMs descending""" + edgeDnsResponseTimeMs_DESC + + """edgeResponseContentTypeName ascending""" + edgeResponseContentTypeName_ASC + + """edgeResponseContentTypeName descending""" + edgeResponseContentTypeName_DESC + + """edgeResponseStatus ascending""" + edgeResponseStatus_ASC + + """edgeResponseStatus descending""" + edgeResponseStatus_DESC + + """edgeTimeToFirstByteMs ascending""" + edgeTimeToFirstByteMs_ASC + + """edgeTimeToFirstByteMs descending""" + edgeTimeToFirstByteMs_DESC + + """firewallForAiAnyPiiCategory ascending""" + firewallForAiAnyPiiCategory_ASC + + """firewallForAiAnyPiiCategory descending""" + firewallForAiAnyPiiCategory_DESC + + """firewallForAiInjectionScore ascending""" + firewallForAiInjectionScore_ASC + + """firewallForAiInjectionScore descending""" + firewallForAiInjectionScore_DESC + + """firewallForAiPiiCategories ascending""" + firewallForAiPiiCategories_ASC + + """firewallForAiPiiCategories descending""" + firewallForAiPiiCategories_DESC + + """firewallForAiUnsafeTopicCategories ascending""" + firewallForAiUnsafeTopicCategories_ASC + + """firewallForAiUnsafeTopicCategories descending""" + firewallForAiUnsafeTopicCategories_DESC + + """fraudAttack ascending""" + fraudAttack_ASC + + """fraudAttack descending""" + fraudAttack_DESC + + """fraudDetectionIds ascending""" + fraudDetectionIds_ASC + + """fraudDetectionIds descending""" + fraudDetectionIds_DESC + + """fraudDetectionTags ascending""" + fraudDetectionTags_ASC + + """fraudDetectionTags descending""" + fraudDetectionTags_DESC + + """fraudEmailRisk ascending""" + fraudEmailRisk_ASC + + """fraudEmailRisk descending""" + fraudEmailRisk_DESC + + """httpApplicationVersion ascending""" + httpApplicationVersion_ASC + + """httpApplicationVersion descending""" + httpApplicationVersion_DESC + + """isCrossZoneSubrequest ascending""" + isCrossZoneSubrequest_ASC + + """isCrossZoneSubrequest descending""" + isCrossZoneSubrequest_DESC + + """ja3Hash ascending""" + ja3Hash_ASC + + """ja3Hash descending""" + ja3Hash_DESC + + """ja4 ascending""" + ja4_ASC + + """ja4 descending""" + ja4_DESC + + """jsDetectionPassed ascending""" + jsDetectionPassed_ASC + + """jsDetectionPassed descending""" + jsDetectionPassed_DESC + + """leakedCredentialCheckResult ascending""" + leakedCredentialCheckResult_ASC + + """leakedCredentialCheckResult descending""" + leakedCredentialCheckResult_DESC + + """originASNDescription ascending""" + originASNDescription_ASC + + """originASNDescription descending""" + originASNDescription_DESC + + """originASN ascending""" + originASN_ASC + + """originASN descending""" + originASN_DESC + + """originIP ascending""" + originIP_ASC + + """originIP descending""" + originIP_DESC + + """originResponseDurationMs ascending""" + originResponseDurationMs_ASC + + """originResponseDurationMs descending""" + originResponseDurationMs_DESC + + """originResponseStatus ascending""" + originResponseStatus_ASC + + """originResponseStatus descending""" + originResponseStatus_DESC + + """payPerCrawlStatus ascending""" + payPerCrawlStatus_ASC + + """payPerCrawlStatus descending""" + payPerCrawlStatus_DESC + + """rayName ascending""" + rayName_ASC + + """rayName descending""" + rayName_DESC + + """requestSource ascending""" + requestSource_ASC + + """requestSource descending""" + requestSource_DESC + + """securityAction ascending""" + securityAction_ASC + + """securityAction descending""" + securityAction_DESC + + """securitySource ascending""" + securitySource_ASC + + """securitySource descending""" + securitySource_DESC + + """sessionIdHash ascending""" + sessionIdHash_ASC + + """sessionIdHash descending""" + sessionIdHash_DESC + + """upperTierColoName ascending""" + upperTierColoName_ASC + + """upperTierColoName descending""" + upperTierColoName_DESC + + """userAgentBrowser ascending""" + userAgentBrowser_ASC + + """userAgentBrowser descending""" + userAgentBrowser_DESC + + """userAgentOS ascending""" + userAgentOS_ASC + + """userAgentOS descending""" + userAgentOS_DESC + + """userAgent ascending""" + userAgent_ASC + + """userAgent descending""" + userAgent_DESC + + """verifiedBotCategory ascending""" + verifiedBotCategory_ASC + + """verifiedBotCategory descending""" + verifiedBotCategory_DESC + + """wafAttackScoreClass ascending""" + wafAttackScoreClass_ASC + + """wafAttackScoreClass descending""" + wafAttackScoreClass_DESC + + """wafAttackScore ascending""" + wafAttackScore_ASC + + """wafAttackScore descending""" + wafAttackScore_DESC + + """wafRceAttackScore ascending""" + wafRceAttackScore_ASC + + """wafRceAttackScore descending""" + wafRceAttackScore_DESC + + """wafSqliAttackScore ascending""" + wafSqliAttackScore_ASC + + """wafSqliAttackScore descending""" + wafSqliAttackScore_DESC + + """wafXssAttackScore ascending""" + wafXssAttackScore_ASC + + """wafXssAttackScore descending""" + wafXssAttackScore_DESC + + """xRequestedWith ascending""" + xRequestedWith_ASC + + """xRequestedWith descending""" + xRequestedWith_DESC + + """zoneVersion ascending""" + zoneVersion_ASC + + """zoneVersion descending""" + zoneVersion_DESC +} + +"""A high-level summary of HTTP requests made by end users.""" +type ZoneHttpRequestsOverviewAdaptiveGroups { + """The average value for a metric per dimension""" + avg: ZoneHttpRequestsOverviewAdaptiveGroupsAvg + + """ALPHA - DO NOT USE""" + confidence(level: float64!): ZoneHttpRequestsOverviewAdaptiveGroupsConfidence! + + """List of dimensions to group by""" + dimensions: ZoneHttpRequestsOverviewAdaptiveGroupsDimensions + + """ + The ratio of a metric in comparison to the rest of the traffic, between 0 and 1 + """ + ratio: ZoneHttpRequestsOverviewAdaptiveGroupsRatio + + """The sum of values for a metric per dimension""" + sum: ZoneHttpRequestsOverviewAdaptiveGroupsSum +} + +"""""" +type ZoneHttpRequestsOverviewAdaptiveGroupsAvg { + """ + The average originResponseDuration, in milliseconds, excluding 0 values (i.e. cached ones) + """ + originResponseDurationMs: float64! + + """Average sample interval""" + sampleInterval: float64! +} + +"""""" +type ZoneHttpRequestsOverviewAdaptiveGroupsConfidence { + """Confidence level that was requested""" + level: float64! + + """ + The sum of values for a metric per dimension, with confidence intervals + """ + sum: ZoneHttpRequestsOverviewAdaptiveGroupsSumConfidence +} + +"""""" +type ZoneHttpRequestsOverviewAdaptiveGroupsDimensions { + """Country from which request originated""" + clientCountryName: string! + + """HTTP protocol version""" + clientRequestHTTPProtocol: string! + + """SSL protocol version""" + clientSSLProtocol: string! + + """The date the event occurred at the edge""" + date: Date! + + """The date and time the event occurred at the edge""" + datetime: Time! + + """ + The date and time the event occurred at the edge truncated to a multiple of 15 minutes + """ + datetimeFifteenMinutes: Time! + + """ + The date and time the event occurred at the edge truncated to a multiple of 5 minutes + """ + datetimeFiveMinutes: Time! + + """The date and time the event occurred at the edge truncated to hours""" + datetimeHour: Time! + + """ + The date and time the event occurred at the edge truncated to the minute + """ + datetimeMinute: Time! + + """Content type returned to client""" + edgeResponseContentTypeName: string! + + """HTTP response status code returned to client""" + edgeResponseStatus: uint16! + + """Version associated with HTTP Application""" + httpApplicationVersion: uint64! @deprecated(reason: "Field is replaced with zoneVersion") + + """Browser parsed from the user agent""" + userAgentBrowser: string! + + """The version of a zone""" + zoneVersion: uint64! +} + +"""""" +input ZoneHttpRequestsOverviewAdaptiveGroupsFilter_InputObject { + """""" + AND: [ZoneHttpRequestsOverviewAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [ZoneHttpRequestsOverviewAdaptiveGroupsFilter_InputObject!] + + """""" + clientCountryName: string + + """""" + clientCountryName_geq: string + + """""" + clientCountryName_gt: string + + """""" + clientCountryName_in: [string!] + + """""" + clientCountryName_leq: string + + """""" + clientCountryName_like: string + + """""" + clientCountryName_lt: string + + """""" + clientCountryName_neq: string + + """""" + clientCountryName_notin: [string!] + + """""" + clientCountryName_notlike: string + + """""" + clientRequestHTTPProtocol: string + + """""" + clientRequestHTTPProtocol_geq: string + + """""" + clientRequestHTTPProtocol_gt: string + + """""" + clientRequestHTTPProtocol_in: [string!] + + """""" + clientRequestHTTPProtocol_leq: string + + """""" + clientRequestHTTPProtocol_like: string + + """""" + clientRequestHTTPProtocol_lt: string + + """""" + clientRequestHTTPProtocol_neq: string + + """""" + clientRequestHTTPProtocol_notin: [string!] + + """""" + clientRequestHTTPProtocol_notlike: string + + """""" + clientSSLProtocol: string + + """""" + clientSSLProtocol_geq: string + + """""" + clientSSLProtocol_gt: string + + """""" + clientSSLProtocol_in: [string!] + + """""" + clientSSLProtocol_leq: string + + """""" + clientSSLProtocol_like: string + + """""" + clientSSLProtocol_lt: string + + """""" + clientSSLProtocol_neq: string + + """""" + clientSSLProtocol_notin: [string!] + + """""" + clientSSLProtocol_notlike: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + edgeResponseContentTypeName: string + + """""" + edgeResponseContentTypeName_geq: string + + """""" + edgeResponseContentTypeName_gt: string + + """""" + edgeResponseContentTypeName_in: [string!] + + """""" + edgeResponseContentTypeName_leq: string + + """""" + edgeResponseContentTypeName_like: string + + """""" + edgeResponseContentTypeName_lt: string + + """""" + edgeResponseContentTypeName_neq: string + + """""" + edgeResponseContentTypeName_notin: [string!] + + """""" + edgeResponseContentTypeName_notlike: string + + """""" + edgeResponseStatus: uint16 + + """""" + edgeResponseStatus_geq: uint16 + + """""" + edgeResponseStatus_gt: uint16 + + """""" + edgeResponseStatus_in: [uint16!] + + """""" + edgeResponseStatus_leq: uint16 + + """""" + edgeResponseStatus_lt: uint16 + + """""" + edgeResponseStatus_neq: uint16 + + """""" + edgeResponseStatus_notin: [uint16!] + + """""" + httpApplicationVersion: uint64 + + """""" + httpApplicationVersion_geq: uint64 + + """""" + httpApplicationVersion_gt: uint64 + + """""" + httpApplicationVersion_in: [uint64!] + + """""" + httpApplicationVersion_leq: uint64 + + """""" + httpApplicationVersion_lt: uint64 + + """""" + httpApplicationVersion_neq: uint64 + + """""" + httpApplicationVersion_notin: [uint64!] + + """""" + rayName: string + + """""" + rayName_geq: string + + """""" + rayName_gt: string + + """""" + rayName_in: [string!] + + """""" + rayName_leq: string + + """""" + rayName_like: string + + """""" + rayName_lt: string + + """""" + rayName_neq: string + + """""" + rayName_notin: [string!] + + """""" + rayName_notlike: string + + """""" + userAgentBrowser: string + + """""" + userAgentBrowser_geq: string + + """""" + userAgentBrowser_gt: string + + """""" + userAgentBrowser_in: [string!] + + """""" + userAgentBrowser_leq: string + + """""" + userAgentBrowser_like: string + + """""" + userAgentBrowser_lt: string + + """""" + userAgentBrowser_neq: string + + """""" + userAgentBrowser_notin: [string!] + + """""" + userAgentBrowser_notlike: string + + """""" + zoneVersion: uint64 + + """""" + zoneVersion_geq: uint64 + + """""" + zoneVersion_gt: uint64 + + """""" + zoneVersion_in: [uint64!] + + """""" + zoneVersion_leq: uint64 + + """""" + zoneVersion_lt: uint64 + + """""" + zoneVersion_neq: uint64 + + """""" + zoneVersion_notin: [uint64!] +} + +"""""" +enum ZoneHttpRequestsOverviewAdaptiveGroupsOrderBy { + """avg(originResponseDurationMs) ascending""" + avg_originResponseDurationMs_ASC + + """avg(originResponseDurationMs) descending""" + avg_originResponseDurationMs_DESC + + """avg(sampleInterval) ascending""" + avg_sampleInterval_ASC + + """avg(sampleInterval) descending""" + avg_sampleInterval_DESC + + """clientCountryName ascending""" + clientCountryName_ASC + + """clientCountryName descending""" + clientCountryName_DESC + + """clientRequestHTTPProtocol ascending""" + clientRequestHTTPProtocol_ASC + + """clientRequestHTTPProtocol descending""" + clientRequestHTTPProtocol_DESC + + """clientSSLProtocol ascending""" + clientSSLProtocol_ASC + + """clientSSLProtocol descending""" + clientSSLProtocol_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """edgeResponseContentTypeName ascending""" + edgeResponseContentTypeName_ASC + + """edgeResponseContentTypeName descending""" + edgeResponseContentTypeName_DESC + + """edgeResponseStatus ascending""" + edgeResponseStatus_ASC + + """edgeResponseStatus descending""" + edgeResponseStatus_DESC + + """httpApplicationVersion ascending""" + httpApplicationVersion_ASC + + """httpApplicationVersion descending""" + httpApplicationVersion_DESC + + """ratio(cachedBytes) ascending""" + ratio_cachedBytes_ASC + + """ratio(cachedBytes) descending""" + ratio_cachedBytes_DESC + + """ratio(cachedRequests) ascending""" + ratio_cachedRequests_ASC + + """ratio(cachedRequests) descending""" + ratio_cachedRequests_DESC + + """ratio(encryptedBytes) ascending""" + ratio_encryptedBytes_ASC + + """ratio(encryptedBytes) descending""" + ratio_encryptedBytes_DESC + + """ratio(encryptedRequests) ascending""" + ratio_encryptedRequests_ASC + + """ratio(encryptedRequests) descending""" + ratio_encryptedRequests_DESC + + """ratio(status4xx) ascending""" + ratio_status4xx_ASC + + """ratio(status4xx) descending""" + ratio_status4xx_DESC + + """ratio(status5xx) ascending""" + ratio_status5xx_ASC + + """ratio(status5xx) descending""" + ratio_status5xx_DESC + + """requestSource ascending""" + requestSource_ASC + + """requestSource descending""" + requestSource_DESC + + """sum(bytes) ascending""" + sum_bytes_ASC + + """sum(bytes) descending""" + sum_bytes_DESC + + """sum(cachedBytes) ascending""" + sum_cachedBytes_ASC + + """sum(cachedBytes) descending""" + sum_cachedBytes_DESC + + """sum(cachedRequests) ascending""" + sum_cachedRequests_ASC + + """sum(cachedRequests) descending""" + sum_cachedRequests_DESC + + """sum(pageViews) ascending""" + sum_pageViews_ASC + + """sum(pageViews) descending""" + sum_pageViews_DESC + + """sum(requests) ascending""" + sum_requests_ASC + + """sum(requests) descending""" + sum_requests_DESC + + """sum(visits) ascending""" + sum_visits_ASC + + """sum(visits) descending""" + sum_visits_DESC + + """userAgentBrowser ascending""" + userAgentBrowser_ASC + + """userAgentBrowser descending""" + userAgentBrowser_DESC + + """zoneVersion ascending""" + zoneVersion_ASC + + """zoneVersion descending""" + zoneVersion_DESC +} + +"""""" +type ZoneHttpRequestsOverviewAdaptiveGroupsRatio { + """""" + cachedBytes: float64! + + """""" + cachedRequests: float64! + + """""" + encryptedBytes: float64! + + """""" + encryptedRequests: float64! + + """""" + status4xx: float64! + + """""" + status5xx: float64! +} + +"""""" +type ZoneHttpRequestsOverviewAdaptiveGroupsSum { + """""" + bytes: uint64! + + """Bytes returned to client from cache""" + cachedBytes: uint64! + + """Requests served from cache""" + cachedRequests: uint64! + + """Successful requests for HTML content""" + pageViews: uint64! + + """""" + requests: uint64! + + """ + The number of requests by end-users that were initiated from a different website (i.e. where the request HTTP Referer header does not match the host in the HTTP Host header) + """ + visits: uint64! +} + +"""""" +type ZoneHttpRequestsOverviewAdaptiveGroupsSumConfidence { + """Confidence interval for the corresponding point estimate""" + bytes: Confidence! + + """Confidence interval for the corresponding point estimate""" + cachedBytes: Confidence! + + """Confidence interval for the corresponding point estimate""" + cachedRequests: Confidence! + + """Confidence interval for the corresponding point estimate""" + pageViews: Confidence! + + """Confidence interval for the corresponding point estimate""" + requests: Confidence! + + """Confidence interval for the corresponding point estimate""" + visits: Confidence! +} + +"""Minutely rollups of Image Resizing requests""" +type ZoneImageResizingRequests1mGroups { + """Counts a number of rows per specific dimensions""" + count: uint64! + + """List of dimensions to group by""" + dimensions: ZoneImageResizingRequests1mGroupsDimensions + + """Calculates a sum of each field per speicific dimensions""" + sum: ZoneImageResizingRequests1mGroupsSum +} + +"""""" +type ZoneImageResizingRequests1mGroupsDimensions { + """""" + contentType: string! + + """""" + date: Date! + + """""" + datetime: Time! + + """""" + datetimeFifteenMinutes: Time! + + """""" + datetimeFiveMinutes: Time! + + """""" + datetimeHour: Time! + + """""" + datetimeMinute: Time! + + """ + Error description when a resized image was requested but could not be served + """ + resizeError: string! +} + +"""""" +input ZoneImageResizingRequests1mGroupsFilter_InputObject { + """""" + AND: [ZoneImageResizingRequests1mGroupsFilter_InputObject!] + + """""" + OR: [ZoneImageResizingRequests1mGroupsFilter_InputObject!] + + """""" + contentType: string + + """""" + contentType_geq: string + + """""" + contentType_gt: string + + """""" + contentType_in: [string!] + + """""" + contentType_leq: string + + """""" + contentType_like: string + + """""" + contentType_lt: string + + """""" + contentType_neq: string + + """""" + contentType_notin: [string!] + + """""" + contentType_notlike: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + resizeError: string + + """""" + resizeError_geq: string + + """""" + resizeError_gt: string + + """""" + resizeError_in: [string!] + + """""" + resizeError_leq: string + + """""" + resizeError_like: string + + """""" + resizeError_lt: string + + """""" + resizeError_neq: string + + """""" + resizeError_notin: [string!] + + """""" + resizeError_notlike: string +} + +"""""" +enum ZoneImageResizingRequests1mGroupsOrderBy { + """contentType ascending""" + contentType_ASC + + """contentType descending""" + contentType_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """resizeError ascending""" + resizeError_ASC + + """resizeError descending""" + resizeError_DESC + + """sum(originalBytes) ascending""" + sum_originalBytes_ASC + + """sum(originalBytes) descending""" + sum_originalBytes_DESC + + """sum(originalPixels) ascending""" + sum_originalPixels_ASC + + """sum(originalPixels) descending""" + sum_originalPixels_DESC + + """sum(requests) ascending""" + sum_requests_ASC + + """sum(requests) descending""" + sum_requests_DESC + + """sum(resizedBytes) ascending""" + sum_resizedBytes_ASC + + """sum(resizedBytes) descending""" + sum_resizedBytes_DESC + + """sum(resizedPixels) ascending""" + sum_resizedPixels_ASC + + """sum(resizedPixels) descending""" + sum_resizedPixels_DESC +} + +"""""" +type ZoneImageResizingRequests1mGroupsSum { + """The size of the image before resizing""" + originalBytes: uint64! + + """The area of the image before resizing""" + originalPixels: uint64! + + """Count of image resizing requests""" + requests: uint64! + + """The size of the image after resizing""" + resizedBytes: uint64! + + """The area of the image after resizing""" + resizedPixels: uint64! +} + +"""Raw Load Balancing origin requests with adaptive sampling""" +type ZoneLoadBalancingRequestsAdaptive { + """IATA airport code of data center that received the request""" + coloCode: string! + + """Request datetime""" + datetime: Time! + + """Error generated when selecting an origin""" + errorType: string! + + """Load balancer name""" + lbName: string! + + """Number of origins that were selected and returned to the client""" + numberOriginsSelected: uint16! + + """All origins in the pool that was selected based on steering policy""" + origins: [ZoneLoadBalancingRequestsAdaptiveOriginsElem!]! + + """ + List of pools from which a pool will be selected based on steering policy + """ + pools: [ZoneLoadBalancingRequestsAdaptivePoolsElem!]! + + """ + Whether traffic is proxied through the Cloudflare network (orange-clouded) + """ + proxied: uint8! + + """Load balancing region where request originated""" + region: string! + + """ABR sample interval""" + sampleInterval: uint32! + + """ + Index of the selected origin from the list of all origins. If multiple origins were selected, this is the index of the first origin in that list + """ + selectedOriginIndex: uint16! + + """ + Average RTT (milliseconds) to reach the origins within the selected pool + """ + selectedPoolAvgRttMs: uint64! + + """Health checks active status for the selected pool""" + selectedPoolHealthChecksEnabled: uint8! + + """Health status for the selected pool""" + selectedPoolHealthy: uint8! + + """A unique identifier for the selected pool""" + selectedPoolId: string! + + """Index of the selected pool from the list of all pools""" + selectedPoolIndex: uint32! + + """Name for the selected pool""" + selectedPoolName: string! + + """Type of session affinity enabled""" + sessionAffinity: string! + + """Current status of session affinity""" + sessionAffinityStatus: string! + + """Policy by which the load balancer will route traffic""" + steeringPolicy: string! +} + +"""""" +input ZoneLoadBalancingRequestsAdaptiveFilter_InputObject { + """""" + AND: [ZoneLoadBalancingRequestsAdaptiveFilter_InputObject!] + + """""" + OR: [ZoneLoadBalancingRequestsAdaptiveFilter_InputObject!] + + """""" + coloCode: string + + """""" + coloCode_geq: string + + """""" + coloCode_gt: string + + """""" + coloCode_in: [string!] + + """""" + coloCode_leq: string + + """""" + coloCode_like: string + + """""" + coloCode_lt: string + + """""" + coloCode_neq: string + + """""" + coloCode_notin: [string!] + + """""" + coloCode_notlike: string + + """""" + datetime: Time + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + errorType: string + + """""" + errorType_geq: string + + """""" + errorType_gt: string + + """""" + errorType_in: [string!] + + """""" + errorType_leq: string + + """""" + errorType_like: string + + """""" + errorType_lt: string + + """""" + errorType_neq: string + + """""" + errorType_notin: [string!] + + """""" + errorType_notlike: string + + """""" + lbName: string + + """""" + lbName_geq: string + + """""" + lbName_gt: string + + """""" + lbName_in: [string!] + + """""" + lbName_leq: string + + """""" + lbName_like: string + + """""" + lbName_lt: string + + """""" + lbName_neq: string + + """""" + lbName_notin: [string!] + + """""" + lbName_notlike: string + + """""" + numberOriginsSelected: uint16 + + """""" + numberOriginsSelected_geq: uint16 + + """""" + numberOriginsSelected_gt: uint16 + + """""" + numberOriginsSelected_in: [uint16!] + + """""" + numberOriginsSelected_leq: uint16 + + """""" + numberOriginsSelected_lt: uint16 + + """""" + numberOriginsSelected_neq: uint16 + + """""" + numberOriginsSelected_notin: [uint16!] + + """""" + proxied: uint8 + + """""" + proxied_geq: uint8 + + """""" + proxied_gt: uint8 + + """""" + proxied_in: bytes + + """""" + proxied_leq: uint8 + + """""" + proxied_lt: uint8 + + """""" + proxied_neq: uint8 + + """""" + proxied_notin: bytes + + """""" + region: string + + """""" + region_geq: string + + """""" + region_gt: string + + """""" + region_in: [string!] + + """""" + region_leq: string + + """""" + region_like: string + + """""" + region_lt: string + + """""" + region_neq: string + + """""" + region_notin: [string!] + + """""" + region_notlike: string + + """""" + sampleInterval: uint32 + + """""" + sampleInterval_geq: uint32 + + """""" + sampleInterval_gt: uint32 + + """""" + sampleInterval_in: [uint32!] + + """""" + sampleInterval_leq: uint32 + + """""" + sampleInterval_lt: uint32 + + """""" + sampleInterval_neq: uint32 + + """""" + sampleInterval_notin: [uint32!] + + """""" + selectedOriginIndex: uint16 + + """""" + selectedOriginIndex_geq: uint16 + + """""" + selectedOriginIndex_gt: uint16 + + """""" + selectedOriginIndex_in: [uint16!] + + """""" + selectedOriginIndex_leq: uint16 + + """""" + selectedOriginIndex_lt: uint16 + + """""" + selectedOriginIndex_neq: uint16 + + """""" + selectedOriginIndex_notin: [uint16!] + + """""" + selectedPoolAvgRttMs: uint64 + + """""" + selectedPoolAvgRttMs_geq: uint64 + + """""" + selectedPoolAvgRttMs_gt: uint64 + + """""" + selectedPoolAvgRttMs_in: [uint64!] + + """""" + selectedPoolAvgRttMs_leq: uint64 + + """""" + selectedPoolAvgRttMs_lt: uint64 + + """""" + selectedPoolAvgRttMs_neq: uint64 + + """""" + selectedPoolAvgRttMs_notin: [uint64!] + + """""" + selectedPoolHealthChecksEnabled: uint8 + + """""" + selectedPoolHealthChecksEnabled_geq: uint8 + + """""" + selectedPoolHealthChecksEnabled_gt: uint8 + + """""" + selectedPoolHealthChecksEnabled_in: bytes + + """""" + selectedPoolHealthChecksEnabled_leq: uint8 + + """""" + selectedPoolHealthChecksEnabled_lt: uint8 + + """""" + selectedPoolHealthChecksEnabled_neq: uint8 + + """""" + selectedPoolHealthChecksEnabled_notin: bytes + + """""" + selectedPoolHealthy: uint8 + + """""" + selectedPoolHealthy_geq: uint8 + + """""" + selectedPoolHealthy_gt: uint8 + + """""" + selectedPoolHealthy_in: bytes + + """""" + selectedPoolHealthy_leq: uint8 + + """""" + selectedPoolHealthy_lt: uint8 + + """""" + selectedPoolHealthy_neq: uint8 + + """""" + selectedPoolHealthy_notin: bytes + + """""" + selectedPoolId: string + + """""" + selectedPoolId_geq: string + + """""" + selectedPoolId_gt: string + + """""" + selectedPoolId_in: [string!] + + """""" + selectedPoolId_leq: string + + """""" + selectedPoolId_like: string + + """""" + selectedPoolId_lt: string + + """""" + selectedPoolId_neq: string + + """""" + selectedPoolId_notin: [string!] + + """""" + selectedPoolId_notlike: string + + """""" + selectedPoolIndex: uint32 + + """""" + selectedPoolIndex_geq: uint32 + + """""" + selectedPoolIndex_gt: uint32 + + """""" + selectedPoolIndex_in: [uint32!] + + """""" + selectedPoolIndex_leq: uint32 + + """""" + selectedPoolIndex_lt: uint32 + + """""" + selectedPoolIndex_neq: uint32 + + """""" + selectedPoolIndex_notin: [uint32!] + + """""" + selectedPoolName: string + + """""" + selectedPoolName_geq: string + + """""" + selectedPoolName_gt: string + + """""" + selectedPoolName_in: [string!] + + """""" + selectedPoolName_leq: string + + """""" + selectedPoolName_like: string + + """""" + selectedPoolName_lt: string + + """""" + selectedPoolName_neq: string + + """""" + selectedPoolName_notin: [string!] + + """""" + selectedPoolName_notlike: string + + """""" + sessionAffinity: string + + """""" + sessionAffinityStatus: string + + """""" + sessionAffinityStatus_geq: string + + """""" + sessionAffinityStatus_gt: string + + """""" + sessionAffinityStatus_in: [string!] + + """""" + sessionAffinityStatus_leq: string + + """""" + sessionAffinityStatus_like: string + + """""" + sessionAffinityStatus_lt: string + + """""" + sessionAffinityStatus_neq: string + + """""" + sessionAffinityStatus_notin: [string!] + + """""" + sessionAffinityStatus_notlike: string + + """""" + sessionAffinity_geq: string + + """""" + sessionAffinity_gt: string + + """""" + sessionAffinity_in: [string!] + + """""" + sessionAffinity_leq: string + + """""" + sessionAffinity_like: string + + """""" + sessionAffinity_lt: string + + """""" + sessionAffinity_neq: string + + """""" + sessionAffinity_notin: [string!] + + """""" + sessionAffinity_notlike: string + + """""" + steeringPolicy: string + + """""" + steeringPolicy_geq: string + + """""" + steeringPolicy_gt: string + + """""" + steeringPolicy_in: [string!] + + """""" + steeringPolicy_leq: string + + """""" + steeringPolicy_like: string + + """""" + steeringPolicy_lt: string + + """""" + steeringPolicy_neq: string + + """""" + steeringPolicy_notin: [string!] + + """""" + steeringPolicy_notlike: string +} + +"""Aggregated Load Balancing origin requests with adaptive sampling""" +type ZoneLoadBalancingRequestsAdaptiveGroups { + """""" + avg: ZoneLoadBalancingRequestsAdaptiveGroupsAvg + + """ALPHA - DO NOT USE""" + confidence(level: float64!): ZoneLoadBalancingRequestsAdaptiveGroupsConfidence! + + """The number of values for a metric per dimension""" + count: uint64! + + """List of dimensions to group by""" + dimensions: ZoneLoadBalancingRequestsAdaptiveGroupsDimensions +} + +"""""" +type ZoneLoadBalancingRequestsAdaptiveGroupsAvg { + """Average sample interval""" + sampleInterval: float64! +} + +"""""" +type ZoneLoadBalancingRequestsAdaptiveGroupsConfidence { + """ + The number of values for a metric per dimension, with confidence intervals + """ + count: Confidence! + + """Confidence level that was requested""" + level: float64! +} + +"""""" +type ZoneLoadBalancingRequestsAdaptiveGroupsDimensions { + """IATA airport code of data center that received the request""" + coloCode: string! + + """Request datetime""" + datetime: Time! + + """Request datetime truncated to multiple of 15 minutes""" + datetimeFifteenMinutes: Time! + + """Request datetime truncated to multiple of 5 minutes""" + datetimeFiveMinutes: Time! + + """Request datetime truncated to multiple of 30 minutes""" + datetimeHalfOfHour: Time! + + """Request datetime truncated to the hour""" + datetimeHour: Time! + + """Request datetime truncated to multiple of 1 minute""" + datetimeMinute: Time! + + """Error generated when selecting an origin""" + errorType: string! + + """Load balancer name""" + lbName: string! + + """Indicates whether multiple origins were returned to the client""" + multipleOriginsSelected: uint8! + + """Number of origins that were selected and returned to the client""" + numberOriginsSelected: uint16! + + """ + Whether traffic is proxied through the Cloudflare network (orange-clouded) + """ + proxied: uint8! + + """Load balancing region where request originated""" + region: string! + + """ABR sample interval""" + sampleInterval: uint32! + + """ + Index of the selected origin from the list of all origins. If multiple origins were selected, this is the index of the first origin in that list + """ + selectedOriginIndex: uint16! + + """Name of the selected origin""" + selectedOriginName: string! + + """Names of each selected origin""" + selectedOriginNames: string! + + """Dynamic Latency: RTT (milliseconds) to reach the origin pool""" + selectedPoolAvgRttMs: uint64! + + """Health checks status for the selected pool""" + selectedPoolHealthChecksEnabled: uint8! + + """Health status for the selected pool""" + selectedPoolHealthy: uint8! + + """A unique identifier for the selected pool""" + selectedPoolId: string! + + """Index of the selected pool from the list of all pools""" + selectedPoolIndex: uint32! + + """Name for the selected pool""" + selectedPoolName: string! + + """Type of session affinity enabled""" + sessionAffinityEnabled: string! + + """Current status of session affinity""" + sessionAffinityStatus: string! + + """Policy by which the load balancer will route traffic""" + steeringPolicy: string! +} + +"""""" +input ZoneLoadBalancingRequestsAdaptiveGroupsFilter_InputObject { + """""" + AND: [ZoneLoadBalancingRequestsAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [ZoneLoadBalancingRequestsAdaptiveGroupsFilter_InputObject!] + + """""" + coloCode: string + + """""" + coloCode_geq: string + + """""" + coloCode_gt: string + + """""" + coloCode_in: [string!] + + """""" + coloCode_leq: string + + """""" + coloCode_like: string + + """""" + coloCode_lt: string + + """""" + coloCode_neq: string + + """""" + coloCode_notin: [string!] + + """""" + coloCode_notlike: string + + """""" + datetime: Time + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHalfOfHour: Time + + """""" + datetimeHalfOfHour_geq: Time + + """""" + datetimeHalfOfHour_gt: Time + + """""" + datetimeHalfOfHour_in: [Time!] + + """""" + datetimeHalfOfHour_leq: Time + + """""" + datetimeHalfOfHour_lt: Time + + """""" + datetimeHalfOfHour_neq: Time + + """""" + datetimeHalfOfHour_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + errorType: string + + """""" + errorType_geq: string + + """""" + errorType_gt: string + + """""" + errorType_in: [string!] + + """""" + errorType_leq: string + + """""" + errorType_like: string + + """""" + errorType_lt: string + + """""" + errorType_neq: string + + """""" + errorType_notin: [string!] + + """""" + errorType_notlike: string + + """""" + lbName: string + + """""" + lbName_geq: string + + """""" + lbName_gt: string + + """""" + lbName_in: [string!] + + """""" + lbName_leq: string + + """""" + lbName_like: string + + """""" + lbName_lt: string + + """""" + lbName_neq: string + + """""" + lbName_notin: [string!] + + """""" + lbName_notlike: string + + """""" + multipleOriginsSelected: uint8 + + """""" + multipleOriginsSelected_geq: uint8 + + """""" + multipleOriginsSelected_gt: uint8 + + """""" + multipleOriginsSelected_in: bytes + + """""" + multipleOriginsSelected_leq: uint8 + + """""" + multipleOriginsSelected_lt: uint8 + + """""" + multipleOriginsSelected_neq: uint8 + + """""" + multipleOriginsSelected_notin: bytes + + """""" + numberOriginsSelected: uint16 + + """""" + numberOriginsSelected_geq: uint16 + + """""" + numberOriginsSelected_gt: uint16 + + """""" + numberOriginsSelected_in: [uint16!] + + """""" + numberOriginsSelected_leq: uint16 + + """""" + numberOriginsSelected_lt: uint16 + + """""" + numberOriginsSelected_neq: uint16 + + """""" + numberOriginsSelected_notin: [uint16!] + + """""" + proxied: uint8 + + """""" + proxied_geq: uint8 + + """""" + proxied_gt: uint8 + + """""" + proxied_in: bytes + + """""" + proxied_leq: uint8 + + """""" + proxied_lt: uint8 + + """""" + proxied_neq: uint8 + + """""" + proxied_notin: bytes + + """""" + region: string + + """""" + region_geq: string + + """""" + region_gt: string + + """""" + region_in: [string!] + + """""" + region_leq: string + + """""" + region_like: string + + """""" + region_lt: string + + """""" + region_neq: string + + """""" + region_notin: [string!] + + """""" + region_notlike: string + + """""" + sampleInterval: uint32 + + """""" + sampleInterval_geq: uint32 + + """""" + sampleInterval_gt: uint32 + + """""" + sampleInterval_in: [uint32!] + + """""" + sampleInterval_leq: uint32 + + """""" + sampleInterval_lt: uint32 + + """""" + sampleInterval_neq: uint32 + + """""" + sampleInterval_notin: [uint32!] + + """""" + selectedOriginIndex: uint16 + + """""" + selectedOriginIndex_geq: uint16 + + """""" + selectedOriginIndex_gt: uint16 + + """""" + selectedOriginIndex_in: [uint16!] + + """""" + selectedOriginIndex_leq: uint16 + + """""" + selectedOriginIndex_lt: uint16 + + """""" + selectedOriginIndex_neq: uint16 + + """""" + selectedOriginIndex_notin: [uint16!] + + """""" + selectedOriginName: string + + """""" + selectedOriginName_geq: string + + """""" + selectedOriginName_gt: string + + """""" + selectedOriginName_in: [string!] + + """""" + selectedOriginName_leq: string + + """""" + selectedOriginName_like: string + + """""" + selectedOriginName_lt: string + + """""" + selectedOriginName_neq: string + + """""" + selectedOriginName_notin: [string!] + + """""" + selectedOriginName_notlike: string + + """""" + selectedOriginNames: string + + """""" + selectedOriginNames_geq: string + + """""" + selectedOriginNames_gt: string + + """""" + selectedOriginNames_in: [string!] + + """""" + selectedOriginNames_leq: string + + """""" + selectedOriginNames_like: string + + """""" + selectedOriginNames_lt: string + + """""" + selectedOriginNames_neq: string + + """""" + selectedOriginNames_notin: [string!] + + """""" + selectedOriginNames_notlike: string + + """""" + selectedPoolAvgRttMs: uint64 + + """""" + selectedPoolAvgRttMs_geq: uint64 + + """""" + selectedPoolAvgRttMs_gt: uint64 + + """""" + selectedPoolAvgRttMs_in: [uint64!] + + """""" + selectedPoolAvgRttMs_leq: uint64 + + """""" + selectedPoolAvgRttMs_lt: uint64 + + """""" + selectedPoolAvgRttMs_neq: uint64 + + """""" + selectedPoolAvgRttMs_notin: [uint64!] + + """""" + selectedPoolHealthChecksEnabled: uint8 + + """""" + selectedPoolHealthChecksEnabled_geq: uint8 + + """""" + selectedPoolHealthChecksEnabled_gt: uint8 + + """""" + selectedPoolHealthChecksEnabled_in: bytes + + """""" + selectedPoolHealthChecksEnabled_leq: uint8 + + """""" + selectedPoolHealthChecksEnabled_lt: uint8 + + """""" + selectedPoolHealthChecksEnabled_neq: uint8 + + """""" + selectedPoolHealthChecksEnabled_notin: bytes + + """""" + selectedPoolHealthy: uint8 + + """""" + selectedPoolHealthy_geq: uint8 + + """""" + selectedPoolHealthy_gt: uint8 + + """""" + selectedPoolHealthy_in: bytes + + """""" + selectedPoolHealthy_leq: uint8 + + """""" + selectedPoolHealthy_lt: uint8 + + """""" + selectedPoolHealthy_neq: uint8 + + """""" + selectedPoolHealthy_notin: bytes + + """""" + selectedPoolId: string + + """""" + selectedPoolId_geq: string + + """""" + selectedPoolId_gt: string + + """""" + selectedPoolId_in: [string!] + + """""" + selectedPoolId_leq: string + + """""" + selectedPoolId_like: string + + """""" + selectedPoolId_lt: string + + """""" + selectedPoolId_neq: string + + """""" + selectedPoolId_notin: [string!] + + """""" + selectedPoolId_notlike: string + + """""" + selectedPoolIndex: uint32 + + """""" + selectedPoolIndex_geq: uint32 + + """""" + selectedPoolIndex_gt: uint32 + + """""" + selectedPoolIndex_in: [uint32!] + + """""" + selectedPoolIndex_leq: uint32 + + """""" + selectedPoolIndex_lt: uint32 + + """""" + selectedPoolIndex_neq: uint32 + + """""" + selectedPoolIndex_notin: [uint32!] + + """""" + selectedPoolName: string + + """""" + selectedPoolName_geq: string + + """""" + selectedPoolName_gt: string + + """""" + selectedPoolName_in: [string!] + + """""" + selectedPoolName_leq: string + + """""" + selectedPoolName_like: string + + """""" + selectedPoolName_lt: string + + """""" + selectedPoolName_neq: string + + """""" + selectedPoolName_notin: [string!] + + """""" + selectedPoolName_notlike: string + + """""" + sessionAffinityEnabled: string + + """""" + sessionAffinityEnabled_geq: string + + """""" + sessionAffinityEnabled_gt: string + + """""" + sessionAffinityEnabled_in: [string!] + + """""" + sessionAffinityEnabled_leq: string + + """""" + sessionAffinityEnabled_like: string + + """""" + sessionAffinityEnabled_lt: string + + """""" + sessionAffinityEnabled_neq: string + + """""" + sessionAffinityEnabled_notin: [string!] + + """""" + sessionAffinityEnabled_notlike: string + + """""" + sessionAffinityStatus: string + + """""" + sessionAffinityStatus_geq: string + + """""" + sessionAffinityStatus_gt: string + + """""" + sessionAffinityStatus_in: [string!] + + """""" + sessionAffinityStatus_leq: string + + """""" + sessionAffinityStatus_like: string + + """""" + sessionAffinityStatus_lt: string + + """""" + sessionAffinityStatus_neq: string + + """""" + sessionAffinityStatus_notin: [string!] + + """""" + sessionAffinityStatus_notlike: string + + """""" + steeringPolicy: string + + """""" + steeringPolicy_geq: string + + """""" + steeringPolicy_gt: string + + """""" + steeringPolicy_in: [string!] + + """""" + steeringPolicy_leq: string + + """""" + steeringPolicy_like: string + + """""" + steeringPolicy_lt: string + + """""" + steeringPolicy_neq: string + + """""" + steeringPolicy_notin: [string!] + + """""" + steeringPolicy_notlike: string +} + +"""""" +enum ZoneLoadBalancingRequestsAdaptiveGroupsOrderBy { + """avg(sampleInterval) ascending""" + avg_sampleInterval_ASC + + """avg(sampleInterval) descending""" + avg_sampleInterval_DESC + + """coloCode ascending""" + coloCode_ASC + + """coloCode descending""" + coloCode_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHalfOfHour ascending""" + datetimeHalfOfHour_ASC + + """datetimeHalfOfHour descending""" + datetimeHalfOfHour_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """errorType ascending""" + errorType_ASC + + """errorType descending""" + errorType_DESC + + """lbName ascending""" + lbName_ASC + + """lbName descending""" + lbName_DESC + + """multipleOriginsSelected ascending""" + multipleOriginsSelected_ASC + + """multipleOriginsSelected descending""" + multipleOriginsSelected_DESC + + """numberOriginsSelected ascending""" + numberOriginsSelected_ASC + + """numberOriginsSelected descending""" + numberOriginsSelected_DESC + + """proxied ascending""" + proxied_ASC + + """proxied descending""" + proxied_DESC + + """region ascending""" + region_ASC + + """region descending""" + region_DESC + + """sampleInterval ascending""" + sampleInterval_ASC + + """sampleInterval descending""" + sampleInterval_DESC + + """selectedOriginIndex ascending""" + selectedOriginIndex_ASC + + """selectedOriginIndex descending""" + selectedOriginIndex_DESC + + """selectedOriginName ascending""" + selectedOriginName_ASC + + """selectedOriginName descending""" + selectedOriginName_DESC + + """selectedOriginNames ascending""" + selectedOriginNames_ASC + + """selectedOriginNames descending""" + selectedOriginNames_DESC + + """selectedPoolAvgRttMs ascending""" + selectedPoolAvgRttMs_ASC + + """selectedPoolAvgRttMs descending""" + selectedPoolAvgRttMs_DESC + + """selectedPoolHealthChecksEnabled ascending""" + selectedPoolHealthChecksEnabled_ASC + + """selectedPoolHealthChecksEnabled descending""" + selectedPoolHealthChecksEnabled_DESC + + """selectedPoolHealthy ascending""" + selectedPoolHealthy_ASC + + """selectedPoolHealthy descending""" + selectedPoolHealthy_DESC + + """selectedPoolId ascending""" + selectedPoolId_ASC + + """selectedPoolId descending""" + selectedPoolId_DESC + + """selectedPoolIndex ascending""" + selectedPoolIndex_ASC + + """selectedPoolIndex descending""" + selectedPoolIndex_DESC + + """selectedPoolName ascending""" + selectedPoolName_ASC + + """selectedPoolName descending""" + selectedPoolName_DESC + + """sessionAffinityEnabled ascending""" + sessionAffinityEnabled_ASC + + """sessionAffinityEnabled descending""" + sessionAffinityEnabled_DESC + + """sessionAffinityStatus ascending""" + sessionAffinityStatus_ASC + + """sessionAffinityStatus descending""" + sessionAffinityStatus_DESC + + """steeringPolicy ascending""" + steeringPolicy_ASC + + """steeringPolicy descending""" + steeringPolicy_DESC +} + +"""""" +enum ZoneLoadBalancingRequestsAdaptiveOrderBy { + """coloCode ascending""" + coloCode_ASC + + """coloCode descending""" + coloCode_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """errorType ascending""" + errorType_ASC + + """errorType descending""" + errorType_DESC + + """lbName ascending""" + lbName_ASC + + """lbName descending""" + lbName_DESC + + """numberOriginsSelected ascending""" + numberOriginsSelected_ASC + + """numberOriginsSelected descending""" + numberOriginsSelected_DESC + + """proxied ascending""" + proxied_ASC + + """proxied descending""" + proxied_DESC + + """region ascending""" + region_ASC + + """region descending""" + region_DESC + + """sampleInterval ascending""" + sampleInterval_ASC + + """sampleInterval descending""" + sampleInterval_DESC + + """selectedOriginIndex ascending""" + selectedOriginIndex_ASC + + """selectedOriginIndex descending""" + selectedOriginIndex_DESC + + """selectedPoolAvgRttMs ascending""" + selectedPoolAvgRttMs_ASC + + """selectedPoolAvgRttMs descending""" + selectedPoolAvgRttMs_DESC + + """selectedPoolHealthChecksEnabled ascending""" + selectedPoolHealthChecksEnabled_ASC + + """selectedPoolHealthChecksEnabled descending""" + selectedPoolHealthChecksEnabled_DESC + + """selectedPoolHealthy ascending""" + selectedPoolHealthy_ASC + + """selectedPoolHealthy descending""" + selectedPoolHealthy_DESC + + """selectedPoolId ascending""" + selectedPoolId_ASC + + """selectedPoolId descending""" + selectedPoolId_DESC + + """selectedPoolIndex ascending""" + selectedPoolIndex_ASC + + """selectedPoolIndex descending""" + selectedPoolIndex_DESC + + """selectedPoolName ascending""" + selectedPoolName_ASC + + """selectedPoolName descending""" + selectedPoolName_DESC + + """sessionAffinityStatus ascending""" + sessionAffinityStatus_ASC + + """sessionAffinityStatus descending""" + sessionAffinityStatus_DESC + + """sessionAffinity ascending""" + sessionAffinity_ASC + + """sessionAffinity descending""" + sessionAffinity_DESC + + """steeringPolicy ascending""" + steeringPolicy_ASC + + """steeringPolicy descending""" + steeringPolicy_DESC +} + +"""""" +type ZoneLoadBalancingRequestsAdaptiveOriginsElem { + """Fully qualified domain name of the origin (if available)""" + fqdn: string! + + """Origin health status""" + health: uint8! + + """IPv4 Address of the origin""" + ipv4: string! + + """IPv6 address of the origin""" + ipv6: string! + + """Origin name""" + originName: string! + + """All the origins that were returned to the client""" + selected: uint8! + + """ + Ratio of traffic that will be distributed to this origin among all origins in the pool + """ + weight: float64! +} + +"""""" +type ZoneLoadBalancingRequestsAdaptivePoolsElem { + """Dynamic Latency: RTT (milliseconds) to reach the origin pool""" + avgRttMs: uint64! + + """Distance to Pool KM""" + distance: float32! + + """Health checks status""" + healthCheckEnabled: uint8! + + """Pool health status""" + healthy: uint8! + + """A unique identifier for the pool""" + id: string! + + """Pool name""" + poolName: string! +} + +"""Beta. Logpush job health metrics""" +type ZoneLogpushHealthAdaptiveGroups { + """""" + avg: ZoneLogpushHealthAdaptiveGroupsAvg + + """ALPHA - DO NOT USE""" + confidence(level: float64!): ZoneLogpushHealthAdaptiveGroupsConfidence! + + """The number of values for a metric per dimension""" + count: uint64! + + """List of dimensions to group by""" + dimensions: ZoneLogpushHealthAdaptiveGroupsDimensions + + """Maximum value of a metric per dimension""" + max: ZoneLogpushHealthAdaptiveGroupsMax + + """The sum of values for a metric per dimension""" + sum: ZoneLogpushHealthAdaptiveGroupsSum +} + +"""""" +type ZoneLogpushHealthAdaptiveGroupsAvg { + """Average sample interval""" + sampleInterval: float64! + + """Average upload duration in seconds""" + uploadDuration: float64! +} + +"""""" +type ZoneLogpushHealthAdaptiveGroupsConfidence { + """ + The number of values for a metric per dimension, with confidence intervals + """ + count: Confidence! + + """Confidence level that was requested""" + level: float64! + + """ + The sum of values for a metric per dimension, with confidence intervals + """ + sum: ZoneLogpushHealthAdaptiveGroupsSumConfidence +} + +"""""" +type ZoneLogpushHealthAdaptiveGroupsDimensions { + """Date that we completed pushing the log batch""" + date: Date! + + """Datetime that we completed pushing the log batch""" + datetime: Time! + + """ + Datetime that we completed pushing the log batch, truncated to multiple of 15 minutes + """ + datetimeFifteenMinutes: Time! + + """ + Datetime that we completed pushing the log batch, truncated to multiple of 5 minutes + """ + datetimeFiveMinutes: Time! + + """ + Datetime that we completed pushing the log batch, truncated to the hour + """ + datetimeHour: Time! + + """ + Datetime that we completed pushing the log batch, truncated to the minute + """ + datetimeMinute: Time! + + """Destination type, e.g. 'S3' or 'GCS'""" + destinationType: string! + + """Error message""" + error: string! + + """ + Cloudflare may attempt to push a batch of logs multiple times if we encounter a failure. This field will be set to 1 if this was the last push attempt for this batch of logs. If this field is set to 0, it means the push failed but another retry was attempted. If this field is set to 1 and status >= 300, then the batch of logs failed to push and log data was lost. If you want to count the total number of logs that succeeded or failed, you should always set final = 1. + """ + final: uint8! + + """The Logpush Job ID""" + jobId: uint64! + + """HTTP response status code of the log destination""" + status: uint16! + + """1 when the upload was successful without error, otherwise 0""" + success: uint8! +} + +"""""" +input ZoneLogpushHealthAdaptiveGroupsFilter_InputObject { + """""" + AND: [ZoneLogpushHealthAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [ZoneLogpushHealthAdaptiveGroupsFilter_InputObject!] + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + destinationType: string + + """""" + destinationType_geq: string + + """""" + destinationType_gt: string + + """""" + destinationType_in: [string!] + + """""" + destinationType_leq: string + + """""" + destinationType_like: string + + """""" + destinationType_lt: string + + """""" + destinationType_neq: string + + """""" + destinationType_notin: [string!] + + """""" + destinationType_notlike: string + + """""" + error: string + + """""" + error_geq: string + + """""" + error_gt: string + + """""" + error_in: [string!] + + """""" + error_leq: string + + """""" + error_like: string + + """""" + error_lt: string + + """""" + error_neq: string + + """""" + error_notin: [string!] + + """""" + error_notlike: string + + """""" + final: uint8 + + """""" + final_geq: uint8 + + """""" + final_gt: uint8 + + """""" + final_in: bytes + + """""" + final_leq: uint8 + + """""" + final_lt: uint8 + + """""" + final_neq: uint8 + + """""" + final_notin: bytes + + """""" + jobId: uint64 + + """""" + jobId_geq: uint64 + + """""" + jobId_gt: uint64 + + """""" + jobId_in: [uint64!] + + """""" + jobId_leq: uint64 + + """""" + jobId_lt: uint64 + + """""" + jobId_neq: uint64 + + """""" + jobId_notin: [uint64!] + + """""" + status: uint16 + + """""" + status_geq: uint16 + + """""" + status_gt: uint16 + + """""" + status_in: [uint16!] + + """""" + status_leq: uint16 + + """""" + status_lt: uint16 + + """""" + status_neq: uint16 + + """""" + status_notin: [uint16!] + + """""" + success: uint8 + + """""" + success_geq: uint8 + + """""" + success_gt: uint8 + + """""" + success_in: bytes + + """""" + success_leq: uint8 + + """""" + success_lt: uint8 + + """""" + success_neq: uint8 + + """""" + success_notin: bytes +} + +"""""" +type ZoneLogpushHealthAdaptiveGroupsMax { + """Latest timestamp of upload attempts""" + timestamp: Time! +} + +"""""" +enum ZoneLogpushHealthAdaptiveGroupsOrderBy { + """accountId ascending""" + accountId_ASC + + """accountId descending""" + accountId_DESC + + """avg(sampleInterval) ascending""" + avg_sampleInterval_ASC + + """avg(sampleInterval) descending""" + avg_sampleInterval_DESC + + """avg(uploadDuration) ascending""" + avg_uploadDuration_ASC + + """avg(uploadDuration) descending""" + avg_uploadDuration_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """destinationType ascending""" + destinationType_ASC + + """destinationType descending""" + destinationType_DESC + + """error ascending""" + error_ASC + + """error descending""" + error_DESC + + """final ascending""" + final_ASC + + """final descending""" + final_DESC + + """jobId ascending""" + jobId_ASC + + """jobId descending""" + jobId_DESC + + """max(timestamp) ascending""" + max_timestamp_ASC + + """max(timestamp) descending""" + max_timestamp_DESC + + """objectType ascending""" + objectType_ASC + + """objectType descending""" + objectType_DESC + + """status ascending""" + status_ASC + + """status descending""" + status_DESC + + """success ascending""" + success_ASC + + """success descending""" + success_DESC + + """sum(bytesCompressed) ascending""" + sum_bytesCompressed_ASC + + """sum(bytesCompressed) descending""" + sum_bytesCompressed_DESC + + """sum(bytes) ascending""" + sum_bytes_ASC + + """sum(bytes) descending""" + sum_bytes_DESC + + """sum(records) ascending""" + sum_records_ASC + + """sum(records) descending""" + sum_records_DESC + + """sum(uploads) ascending""" + sum_uploads_ASC + + """sum(uploads) descending""" + sum_uploads_DESC +} + +"""""" +type ZoneLogpushHealthAdaptiveGroupsSum { + """Bytes of uncompressed log data in upload attempts""" + bytes: uint64! + + """Bytes of compressed log data in upload attempts""" + bytesCompressed: uint64! + + """A count of the total number of records in upload attempts.""" + records: uint64! + + """A count of the total number of upload attempts""" + uploads: uint64! +} + +"""""" +type ZoneLogpushHealthAdaptiveGroupsSumConfidence { + """Confidence interval for the corresponding point estimate""" + bytes: Confidence! + + """Confidence interval for the corresponding point estimate""" + bytesCompressed: Confidence! + + """Confidence interval for the corresponding point estimate""" + records: Confidence! + + """Confidence interval for the corresponding point estimate""" + uploads: Confidence! +} + +"""Data to visualize network error logs""" +type ZoneNelReportsAdaptiveGroups { + """""" + avg: ZoneNelReportsAdaptiveGroupsAvg + + """ALPHA - DO NOT USE""" + confidence(level: float64!): ZoneNelReportsAdaptiveGroupsConfidence! + + """The number of NEL Reports""" + count: uint64! + + """List of dimensions to group by""" + dimensions: ZoneNelReportsAdaptiveGroupsDimensions +} + +"""""" +type ZoneNelReportsAdaptiveGroupsAvg { + """Average sample interval""" + sampleInterval: uint64! +} + +"""""" +type ZoneNelReportsAdaptiveGroupsConfidence { + """The number of NEL Reports, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! +} + +"""""" +type ZoneNelReportsAdaptiveGroupsDimensions { + """Client ASN""" + clientIPASN: uint32! + + """Client ASN Description""" + clientIPASNDescription: string! + + """Client Country""" + clientIPCountry: string! + + """2 letter client country code using ISO 3166-1 alpha-2 syntax""" + clientIPCountryCode: string! + + """IP Version the client used to connect""" + clientIPVersion: uint8! + + """Request date from browser""" + date: Date! + + """Request datetime from browser""" + datetime: Time! + + """Request datetime from browser, truncated to multiple of 15 minutes""" + datetimeFifteenMinutes: Time! + + """Request datetime from browser, truncated to multiple of 5 minutes""" + datetimeFiveMinutes: Time! + + """Request datetime from browser, truncated to multiple of 30 minutes""" + datetimeHalfOfHour: Time! + + """Request datetime from browser, truncated to the hour""" + datetimeHour: Time! + + """Request datetime from browser, truncated to the minute""" + datetimeMinute: Time! + + """IATA airport code of colo the client connected to""" + lastKnownGoodColoCode: string! + + """The phase of connection the error occurred in""" + phase: string! + + """HTTP Protocol used when the error occured""" + protocol: string! + + """The type of error in the phase""" + type: string! +} + +"""""" +input ZoneNelReportsAdaptiveGroupsFilter_InputObject { + """""" + AND: [ZoneNelReportsAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [ZoneNelReportsAdaptiveGroupsFilter_InputObject!] + + """""" + clientIPASN: uint32 + + """""" + clientIPASNDescription: string + + """""" + clientIPASNDescription_geq: string + + """""" + clientIPASNDescription_gt: string + + """""" + clientIPASNDescription_in: [string!] + + """""" + clientIPASNDescription_leq: string + + """""" + clientIPASNDescription_like: string + + """""" + clientIPASNDescription_lt: string + + """""" + clientIPASNDescription_neq: string + + """""" + clientIPASNDescription_notin: [string!] + + """""" + clientIPASNDescription_notlike: string + + """""" + clientIPASN_geq: uint32 + + """""" + clientIPASN_gt: uint32 + + """""" + clientIPASN_in: [uint32!] + + """""" + clientIPASN_leq: uint32 + + """""" + clientIPASN_lt: uint32 + + """""" + clientIPASN_neq: uint32 + + """""" + clientIPASN_notin: [uint32!] + + """""" + clientIPCountry: string + + """""" + clientIPCountryCode: string + + """""" + clientIPCountryCode_geq: string + + """""" + clientIPCountryCode_gt: string + + """""" + clientIPCountryCode_in: [string!] + + """""" + clientIPCountryCode_leq: string + + """""" + clientIPCountryCode_like: string + + """""" + clientIPCountryCode_lt: string + + """""" + clientIPCountryCode_neq: string + + """""" + clientIPCountryCode_notin: [string!] + + """""" + clientIPCountryCode_notlike: string + + """""" + clientIPCountry_geq: string + + """""" + clientIPCountry_gt: string + + """""" + clientIPCountry_in: [string!] + + """""" + clientIPCountry_leq: string + + """""" + clientIPCountry_like: string + + """""" + clientIPCountry_lt: string + + """""" + clientIPCountry_neq: string + + """""" + clientIPCountry_notin: [string!] + + """""" + clientIPCountry_notlike: string + + """""" + clientIPVersion: uint8 + + """""" + clientIPVersion_geq: uint8 + + """""" + clientIPVersion_gt: uint8 + + """""" + clientIPVersion_in: bytes + + """""" + clientIPVersion_leq: uint8 + + """""" + clientIPVersion_lt: uint8 + + """""" + clientIPVersion_neq: uint8 + + """""" + clientIPVersion_notin: bytes + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHalfOfHour: Time + + """""" + datetimeHalfOfHour_geq: Time + + """""" + datetimeHalfOfHour_gt: Time + + """""" + datetimeHalfOfHour_in: [Time!] + + """""" + datetimeHalfOfHour_leq: Time + + """""" + datetimeHalfOfHour_lt: Time + + """""" + datetimeHalfOfHour_neq: Time + + """""" + datetimeHalfOfHour_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + lastKnownGoodColoCode: string + + """""" + lastKnownGoodColoCode_geq: string + + """""" + lastKnownGoodColoCode_gt: string + + """""" + lastKnownGoodColoCode_in: [string!] + + """""" + lastKnownGoodColoCode_leq: string + + """""" + lastKnownGoodColoCode_like: string + + """""" + lastKnownGoodColoCode_lt: string + + """""" + lastKnownGoodColoCode_neq: string + + """""" + lastKnownGoodColoCode_notin: [string!] + + """""" + lastKnownGoodColoCode_notlike: string + + """""" + phase: string + + """""" + phase_geq: string + + """""" + phase_gt: string + + """""" + phase_in: [string!] + + """""" + phase_leq: string + + """""" + phase_like: string + + """""" + phase_lt: string + + """""" + phase_neq: string + + """""" + phase_notin: [string!] + + """""" + phase_notlike: string + + """""" + protocol: string + + """""" + protocol_geq: string + + """""" + protocol_gt: string + + """""" + protocol_in: [string!] + + """""" + protocol_leq: string + + """""" + protocol_like: string + + """""" + protocol_lt: string + + """""" + protocol_neq: string + + """""" + protocol_notin: [string!] + + """""" + protocol_notlike: string + + """""" + type: string + + """""" + type_geq: string + + """""" + type_gt: string + + """""" + type_in: [string!] + + """""" + type_leq: string + + """""" + type_like: string + + """""" + type_lt: string + + """""" + type_neq: string + + """""" + type_notin: [string!] + + """""" + type_notlike: string +} + +"""""" +enum ZoneNelReportsAdaptiveGroupsOrderBy { + """avg(sampleInterval) ascending""" + avg_sampleInterval_ASC + + """avg(sampleInterval) descending""" + avg_sampleInterval_DESC + + """clientIPASNDescription ascending""" + clientIPASNDescription_ASC + + """clientIPASNDescription descending""" + clientIPASNDescription_DESC + + """clientIPASN ascending""" + clientIPASN_ASC + + """clientIPASN descending""" + clientIPASN_DESC + + """clientIPCountryCode ascending""" + clientIPCountryCode_ASC + + """clientIPCountryCode descending""" + clientIPCountryCode_DESC + + """clientIPCountry ascending""" + clientIPCountry_ASC + + """clientIPCountry descending""" + clientIPCountry_DESC + + """clientIPVersion ascending""" + clientIPVersion_ASC + + """clientIPVersion descending""" + clientIPVersion_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHalfOfHour ascending""" + datetimeHalfOfHour_ASC + + """datetimeHalfOfHour descending""" + datetimeHalfOfHour_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """lastKnownGoodColoCode ascending""" + lastKnownGoodColoCode_ASC + + """lastKnownGoodColoCode descending""" + lastKnownGoodColoCode_DESC + + """phase ascending""" + phase_ASC + + """phase descending""" + phase_DESC + + """protocol ascending""" + protocol_ASC + + """protocol descending""" + protocol_DESC + + """type ascending""" + type_ASC + + """type descending""" + type_DESC +} + +"""Page Shield CSP reports""" +type ZonePageShieldReportsAdaptiveGroups { + """""" + avg: ZonePageShieldReportsAdaptiveGroupsAvg + + """ALPHA - DO NOT USE""" + confidence(level: float64!): ZonePageShieldReportsAdaptiveGroupsConfidence! + + """Number of Page Shield CSP reports""" + count: uint64! + + """List of dimensions to group by""" + dimensions: ZonePageShieldReportsAdaptiveGroupsDimensions +} + +"""""" +type ZonePageShieldReportsAdaptiveGroupsAvg { + """Average sample interval""" + sampleInterval: float64! +} + +"""""" +type ZonePageShieldReportsAdaptiveGroupsConfidence { + """Number of Page Shield CSP reports, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! +} + +"""""" +type ZonePageShieldReportsAdaptiveGroupsDimensions { + """policy action, log | allow""" + action: string! + + """csp directive e.g 'script-src'""" + cspDirective: string! + + """""" + date: Date! + + """The date and time the event occurred at the edge""" + datetime: Time! + + """Report datetime from edge, truncated to multiple of 15 minutes""" + datetimeFifteenMinutes: Time! + + """Report datetime from edge, truncated to multiple of 5 minutes""" + datetimeFiveMinutes: Time! + + """Report datetime from edge, truncated to multiple of 30 minutes""" + datetimeHalfOfHour: Time! + + """Report datetime from edge, truncated to the hour""" + datetimeHour: Time! + + """Report datetime from edge, truncated to the minute""" + datetimeMinute: Time! + + """hostname of the zone""" + host: string! + + """page on which the resource was found""" + pageURL: string! + + """The ID of the Policy""" + policyID: string! + + """resource type e.g script""" + resourceType: string! + + """URL of the CSP reported resource""" + url: string! + + """hostname of the resource URL""" + urlHost: string! +} + +"""""" +input ZonePageShieldReportsAdaptiveGroupsFilter_InputObject { + """""" + AND: [ZonePageShieldReportsAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [ZonePageShieldReportsAdaptiveGroupsFilter_InputObject!] + + """""" + action: string + + """""" + action_geq: string + + """""" + action_gt: string + + """""" + action_in: [string!] + + """""" + action_leq: string + + """""" + action_like: string + + """""" + action_lt: string + + """""" + action_neq: string + + """""" + action_notin: [string!] + + """""" + action_notlike: string + + """""" + cspDirective: string + + """""" + cspDirective_geq: string + + """""" + cspDirective_gt: string + + """""" + cspDirective_in: [string!] + + """""" + cspDirective_leq: string + + """""" + cspDirective_like: string + + """""" + cspDirective_lt: string + + """""" + cspDirective_neq: string + + """""" + cspDirective_notin: [string!] + + """""" + cspDirective_notlike: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHalfOfHour: Time + + """""" + datetimeHalfOfHour_geq: Time + + """""" + datetimeHalfOfHour_gt: Time + + """""" + datetimeHalfOfHour_in: [Time!] + + """""" + datetimeHalfOfHour_leq: Time + + """""" + datetimeHalfOfHour_lt: Time + + """""" + datetimeHalfOfHour_neq: Time + + """""" + datetimeHalfOfHour_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + host: string + + """""" + host_geq: string + + """""" + host_gt: string + + """""" + host_in: [string!] + + """""" + host_leq: string + + """""" + host_like: string + + """""" + host_lt: string + + """""" + host_neq: string + + """""" + host_notin: [string!] + + """""" + host_notlike: string + + """""" + pageURL: string + + """""" + pageURL_geq: string + + """""" + pageURL_gt: string + + """""" + pageURL_in: [string!] + + """""" + pageURL_leq: string + + """""" + pageURL_like: string + + """""" + pageURL_lt: string + + """""" + pageURL_neq: string + + """""" + pageURL_notin: [string!] + + """""" + pageURL_notlike: string + + """""" + policyID: string + + """""" + policyID_geq: string + + """""" + policyID_gt: string + + """""" + policyID_in: [string!] + + """""" + policyID_leq: string + + """""" + policyID_like: string + + """""" + policyID_lt: string + + """""" + policyID_neq: string + + """""" + policyID_notin: [string!] + + """""" + policyID_notlike: string + + """""" + resourceType: string + + """""" + resourceType_geq: string + + """""" + resourceType_gt: string + + """""" + resourceType_in: [string!] + + """""" + resourceType_leq: string + + """""" + resourceType_like: string + + """""" + resourceType_lt: string + + """""" + resourceType_neq: string + + """""" + resourceType_notin: [string!] + + """""" + resourceType_notlike: string + + """""" + url: string + + """""" + urlHost: string + + """""" + urlHost_geq: string + + """""" + urlHost_gt: string + + """""" + urlHost_in: [string!] + + """""" + urlHost_leq: string + + """""" + urlHost_like: string + + """""" + urlHost_lt: string + + """""" + urlHost_neq: string + + """""" + urlHost_notin: [string!] + + """""" + urlHost_notlike: string + + """""" + url_geq: string + + """""" + url_gt: string + + """""" + url_in: [string!] + + """""" + url_leq: string + + """""" + url_like: string + + """""" + url_lt: string + + """""" + url_neq: string + + """""" + url_notin: [string!] + + """""" + url_notlike: string +} + +"""""" +enum ZonePageShieldReportsAdaptiveGroupsOrderBy { + """action ascending""" + action_ASC + + """action descending""" + action_DESC + + """avg(sampleInterval) ascending""" + avg_sampleInterval_ASC + + """avg(sampleInterval) descending""" + avg_sampleInterval_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """cspDirective ascending""" + cspDirective_ASC + + """cspDirective descending""" + cspDirective_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHalfOfHour ascending""" + datetimeHalfOfHour_ASC + + """datetimeHalfOfHour descending""" + datetimeHalfOfHour_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """host ascending""" + host_ASC + + """host descending""" + host_DESC + + """pageURL ascending""" + pageURL_ASC + + """pageURL descending""" + pageURL_DESC + + """policyID ascending""" + policyID_ASC + + """policyID descending""" + policyID_DESC + + """resourceType ascending""" + resourceType_ASC + + """resourceType descending""" + resourceType_DESC + + """urlHost ascending""" + urlHost_ASC + + """urlHost descending""" + urlHost_DESC + + """url ascending""" + url_ASC + + """url descending""" + url_DESC +} + +"""Access and limitations for a zone""" +type ZoneSettings { + """""" + apiGatewayGraphqlQueryAnalyticsGroups: Settings! + + """""" + apiGatewayMatchedSessionIDsAdaptiveGroups: Settings! + + """""" + apiGatewayMatchedSessionIDsPerEndpointAdaptiveGroups: Settings! + + """""" + apiGatewayMatchedSessionIDsPerEndpointFlattenedAdaptiveGroups: Settings! + + """""" + apiRequestSequencesGroups: Settings! + + """""" + cacheReserveOperationsAdaptiveGroups: Settings! + + """""" + cacheReserveRequestsAdaptiveGroups: Settings! + + """""" + cacheReserveStorageAdaptiveGroups: Settings! + + """""" + dmarcReportsAdaptive: Settings! + + """""" + dmarcReportsSourcesAdaptiveGroups: Settings! + + """""" + dnsAnalyticsAdaptive: Settings! + + """""" + dnsAnalyticsAdaptiveGroups: Settings! + + """""" + emailRoutingAdaptive: Settings! + + """""" + emailRoutingAdaptiveGroups: Settings! + + """""" + emailSendingAdaptive: Settings! + + """""" + emailSendingAdaptiveGroups: Settings! + + """""" + firewallEventsAdaptive: Settings! + + """""" + firewallEventsAdaptiveByTimeGroups: Settings! + + """""" + firewallEventsAdaptiveGroups: Settings! + + """""" + healthCheckEventsAdaptive: Settings! + + """""" + healthCheckEventsAdaptiveGroups: Settings! + + """""" + httpRequests1dByColoGroups: Settings! + + """""" + httpRequests1dGroups: Settings! + + """""" + httpRequests1hGroups: Settings! + + """""" + httpRequests1mByColoGroups: Settings! + + """""" + httpRequests1mGroups: Settings! + + """""" + httpRequestsAdaptive: Settings! + + """""" + httpRequestsAdaptiveGroups: Settings! + + """""" + httpRequestsOverviewAdaptiveGroups: Settings! + + """""" + imageResizingRequests1mGroups: Settings! + + """""" + loadBalancingRequestsAdaptive: Settings! + + """""" + loadBalancingRequestsAdaptiveGroups: Settings! + + """""" + logpushHealthAdaptiveGroups: Settings! + + """""" + nelReportsAdaptiveGroups: Settings! + + """""" + pageShieldReportsAdaptiveGroups: Settings! + + """""" + userProfilesAdaptiveGroups: Settings! + + """""" + userProfilesRawEventsGroups: Settings! + + """""" + waitingRoomAnalyticsAdaptive: Settings! + + """""" + waitingRoomAnalyticsAdaptiveGroups: Settings! + + """""" + workersZoneInvocationsAdaptiveGroups: Settings! + + """""" + workersZoneSubrequestsAdaptiveGroups: Settings! + + """""" + zarazActionsAdaptiveGroups: Settings! + + """""" + zarazAnalyticsIdentitiesAdaptiveGroups: Settings! + + """""" + zarazAnalyticsOrderedTrackAdaptive: Settings! + + """""" + zarazAnalyticsOrderedTrackAdaptiveGroups: Settings! + + """""" + zarazAnalyticsTrackAdaptiveGroups: Settings! + + """""" + zarazAnalyticsTrackTrafficSourcesAdaptiveGroups: Settings! + + """""" + zarazAnalyticsTriggersAdaptiveGroups: Settings! + + """""" + zarazAnalyticsTriggersTrafficSourcesAdaptiveGroups: Settings! + + """""" + zarazFetchAdaptiveGroups: Settings! + + """""" + zarazTrackAdaptiveGroups: Settings! + + """""" + zarazTriggersAdaptiveGroups: Settings! +} + +"""User ID profiles for login and sign up attempts""" +type ZoneUserProfilesAdaptiveGroups { + """List of dimensions to group by""" + dimensions: ZoneUserProfilesAdaptiveGroupsDimensions + + """""" + sum: ZoneUserProfilesAdaptiveGroupsSum + + """""" + uniq: ZoneUserProfilesAdaptiveGroupsUniq +} + +"""""" +type ZoneUserProfilesAdaptiveGroupsDimensions { + """Profile aggregates for a given date.""" + date: Date! + + """Unique identifier for a user. 128-bit hash.""" + userId: string! +} + +"""""" +input ZoneUserProfilesAdaptiveGroupsFilter_InputObject { + """""" + AND: [ZoneUserProfilesAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [ZoneUserProfilesAdaptiveGroupsFilter_InputObject!] + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + userId: string + + """""" + userId_geq: string + + """""" + userId_gt: string + + """""" + userId_in: [string!] + + """""" + userId_leq: string + + """""" + userId_like: string + + """""" + userId_lt: string + + """""" + userId_neq: string + + """""" + userId_notin: [string!] + + """""" + userId_notlike: string +} + +"""""" +enum ZoneUserProfilesAdaptiveGroupsOrderBy { + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """sum(topCountries) ascending""" + sum_topCountries_ASC + + """sum(topCountries) descending""" + sum_topCountries_DESC + + """uniq(ipCount) ascending""" + uniq_ipCount_ASC + + """uniq(ipCount) descending""" + uniq_ipCount_DESC + + """userId ascending""" + userId_ASC + + """userId descending""" + userId_DESC +} + +"""""" +type ZoneUserProfilesAdaptiveGroupsSum { + """Array of top 5 country codes (alpha2) for a user id.""" + topCountries: [string!]! +} + +"""""" +type ZoneUserProfilesAdaptiveGroupsUniq { + """Number of unique IPs for a user id.""" + ipCount: uint64! +} + +"""Historical login and signup events per user.""" +type ZoneUserProfilesRawEventsGroups { + """Abuse detections.""" + bmDetectionTags: [string!]! + + """City name.""" + clientCity: string! + + """Country code (alpha2).""" + clientCountry: string! + + """Date of the event.""" + date: Date! + + """Device browser name.""" + deviceBrowser: string! + + """Device OS name.""" + deviceOS: string! + + """When the event happened.""" + eventTimestamp: Time! + + """Unique identifier for a user.""" + userId: string! +} + +"""""" +input ZoneUserProfilesRawEventsGroupsFilter_InputObject { + """""" + AND: [ZoneUserProfilesRawEventsGroupsFilter_InputObject!] + + """""" + OR: [ZoneUserProfilesRawEventsGroupsFilter_InputObject!] + + """""" + bmDetectionTags_has: string + + """""" + bmDetectionTags_hasall: [string!] + + """""" + bmDetectionTags_hasany: [string!] + + """""" + bmDetectionTags_isempty: bool + + """""" + bmDetectionTags_nothas: string + + """""" + clientCity: string + + """""" + clientCity_geq: string + + """""" + clientCity_gt: string + + """""" + clientCity_in: [string!] + + """""" + clientCity_leq: string + + """""" + clientCity_like: string + + """""" + clientCity_lt: string + + """""" + clientCity_neq: string + + """""" + clientCity_notin: [string!] + + """""" + clientCity_notlike: string + + """""" + clientCountry: string + + """""" + clientCountry_geq: string + + """""" + clientCountry_gt: string + + """""" + clientCountry_in: [string!] + + """""" + clientCountry_leq: string + + """""" + clientCountry_like: string + + """""" + clientCountry_lt: string + + """""" + clientCountry_neq: string + + """""" + clientCountry_notin: [string!] + + """""" + clientCountry_notlike: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + deviceBrowser: string + + """""" + deviceBrowser_geq: string + + """""" + deviceBrowser_gt: string + + """""" + deviceBrowser_in: [string!] + + """""" + deviceBrowser_leq: string + + """""" + deviceBrowser_like: string + + """""" + deviceBrowser_lt: string + + """""" + deviceBrowser_neq: string + + """""" + deviceBrowser_notin: [string!] + + """""" + deviceBrowser_notlike: string + + """""" + deviceOS: string + + """""" + deviceOS_geq: string + + """""" + deviceOS_gt: string + + """""" + deviceOS_in: [string!] + + """""" + deviceOS_leq: string + + """""" + deviceOS_like: string + + """""" + deviceOS_lt: string + + """""" + deviceOS_neq: string + + """""" + deviceOS_notin: [string!] + + """""" + deviceOS_notlike: string + + """""" + eventTimestamp: Time + + """""" + eventTimestamp_geq: Time + + """""" + eventTimestamp_gt: Time + + """""" + eventTimestamp_in: [Time!] + + """""" + eventTimestamp_leq: Time + + """""" + eventTimestamp_lt: Time + + """""" + eventTimestamp_neq: Time + + """""" + eventTimestamp_notin: [Time!] + + """""" + userId: string + + """""" + userId_geq: string + + """""" + userId_gt: string + + """""" + userId_in: [string!] + + """""" + userId_leq: string + + """""" + userId_like: string + + """""" + userId_lt: string + + """""" + userId_neq: string + + """""" + userId_notin: [string!] + + """""" + userId_notlike: string +} + +"""""" +enum ZoneUserProfilesRawEventsGroupsOrderBy { + """bmDetectionTags ascending""" + bmDetectionTags_ASC + + """bmDetectionTags descending""" + bmDetectionTags_DESC + + """clientCity ascending""" + clientCity_ASC + + """clientCity descending""" + clientCity_DESC + + """clientCountry ascending""" + clientCountry_ASC + + """clientCountry descending""" + clientCountry_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """deviceBrowser ascending""" + deviceBrowser_ASC + + """deviceBrowser descending""" + deviceBrowser_DESC + + """deviceOS ascending""" + deviceOS_ASC + + """deviceOS descending""" + deviceOS_DESC + + """eventTimestamp ascending""" + eventTimestamp_ASC + + """eventTimestamp descending""" + eventTimestamp_DESC + + """userId ascending""" + userId_ASC + + """userId descending""" + userId_DESC +} + +"""Raw Waiting Room analytics logs""" +type ZoneWaitingRoomAnalyticsAdaptive { + """The date and time of the state of analytics for the waiting room""" + datetime: Time! + + """Maximum value of estimated time in minutes""" + maxEstimatedTimeMinutes: int64! + + """Actual value of new users per minute""" + newUsersPerMinute: int64! + + """Configured value of new users per minute""" + newUsersPerMinuteConfig: int64! + + """ABR sample interval""" + sampleInterval: uint32! + + """Configured value of session duration""" + sessionDuration: int64! + + """Actual value of sessions revoked""" + sessionsRevoked: int64! + + """50th percentile of the time between session refreshes in seconds""" + timeBetweenRefreshesP50: int64! + + """75th percentile of the time between session refreshes in seconds""" + timeBetweenRefreshesP75: int64! + + """90th percentile of the time between session refreshes in seconds""" + timeBetweenRefreshesP90: int64! + + """95th percentile of the time between session refreshes in seconds""" + timeBetweenRefreshesP95: int64! + + """50th percentile of the time spent waiting in queue in seconds""" + timeInQueueP50: int64! + + """75th percentile of the time spent waiting in queue in seconds""" + timeInQueueP75: int64! + + """90th percentile of the time spent waiting in queue in seconds""" + timeInQueueP90: int64! + + """95th percentile of the time spent waiting in queue in seconds""" + timeInQueueP95: int64! + + """50th percentile of the time spent on the origin in seconds""" + timeOnOriginP50: int64! + + """75th percentile of the time spent on the origin in seconds""" + timeOnOriginP75: int64! + + """90th percentile of the time spent on the origin in seconds""" + timeOnOriginP90: int64! + + """95th percentile of the time spent on the origin in seconds""" + timeOnOriginP95: int64! + + """Actual value of total active users""" + totalActiveUsers: int64! + + """Configured value of total active users""" + totalActiveUsersConfig: int64! + + """Total number of users that are queued""" + totalQueuedUsers: int64! + + """ + 50th percentile of the total time (in seconds) spent waiting in queue by users who were queued and then gained access to the origin + """ + totalTimeWaitedP50: int64! + + """ + 75th percentile of the total time (in seconds) spent waiting in queue by users who were queued and then gained access to the origin + """ + totalTimeWaitedP75: int64! + + """ + 90th percentile of the total time (in seconds) spent waiting in queue by users who were queued and then gained access to the origin + """ + totalTimeWaitedP90: int64! + + """ + 95th percentile of the total time (in seconds) spent waiting in queue by users who were queued and then gained access to the origin + """ + totalTimeWaitedP95: int64! + + """ + Number of users seen who failed to complete a Turnstile challenge and therefore are likely bots. These users are placed in the infinite queue if enabled. + """ + turnstileFailures: int64! + + """ + Number of requests from users who failed to complete a Turnstile challenge and were placed in an infinite queue + """ + turnstileInfiniteQueueRefreshes: int64! + + """ + Number of times a Turnstile challenge was included in the HTML sent to a user + """ + turnstileIssued: int64! + + """ + Number of users seen who solved a Turnstile challenge and therefore are likely human. These users are placed in the normal queue. + """ + turnstileSuccesses: int64! + + """ + Number of users seen who didn't attempt a Turnstile challenge and therefore might be bots. These users will continue to be challenged with every request until they either pass or fail the challenge. + """ + turnstileUnsolved: int64! + + """Unique Identifier for the waiting room""" + waitingRoomId: string! + + """Name of the waiting room""" + waitingRoomName: string! +} + +"""""" +input ZoneWaitingRoomAnalyticsAdaptiveFilter_InputObject { + """""" + AND: [ZoneWaitingRoomAnalyticsAdaptiveFilter_InputObject!] + + """""" + OR: [ZoneWaitingRoomAnalyticsAdaptiveFilter_InputObject!] + + """""" + datetime: Time + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + maxEstimatedTimeMinutes: int64 + + """""" + maxEstimatedTimeMinutes_geq: int64 + + """""" + maxEstimatedTimeMinutes_gt: int64 + + """""" + maxEstimatedTimeMinutes_in: [int64!] + + """""" + maxEstimatedTimeMinutes_leq: int64 + + """""" + maxEstimatedTimeMinutes_lt: int64 + + """""" + maxEstimatedTimeMinutes_neq: int64 + + """""" + maxEstimatedTimeMinutes_notin: [int64!] + + """""" + newUsersPerMinute: int64 + + """""" + newUsersPerMinuteConfig: int64 + + """""" + newUsersPerMinuteConfig_geq: int64 + + """""" + newUsersPerMinuteConfig_gt: int64 + + """""" + newUsersPerMinuteConfig_in: [int64!] + + """""" + newUsersPerMinuteConfig_leq: int64 + + """""" + newUsersPerMinuteConfig_lt: int64 + + """""" + newUsersPerMinuteConfig_neq: int64 + + """""" + newUsersPerMinuteConfig_notin: [int64!] + + """""" + newUsersPerMinute_geq: int64 + + """""" + newUsersPerMinute_gt: int64 + + """""" + newUsersPerMinute_in: [int64!] + + """""" + newUsersPerMinute_leq: int64 + + """""" + newUsersPerMinute_lt: int64 + + """""" + newUsersPerMinute_neq: int64 + + """""" + newUsersPerMinute_notin: [int64!] + + """""" + sampleInterval: uint32 + + """""" + sampleInterval_geq: uint32 + + """""" + sampleInterval_gt: uint32 + + """""" + sampleInterval_in: [uint32!] + + """""" + sampleInterval_leq: uint32 + + """""" + sampleInterval_lt: uint32 + + """""" + sampleInterval_neq: uint32 + + """""" + sampleInterval_notin: [uint32!] + + """""" + sessionDuration: int64 + + """""" + sessionDuration_geq: int64 + + """""" + sessionDuration_gt: int64 + + """""" + sessionDuration_in: [int64!] + + """""" + sessionDuration_leq: int64 + + """""" + sessionDuration_lt: int64 + + """""" + sessionDuration_neq: int64 + + """""" + sessionDuration_notin: [int64!] + + """""" + sessionsRevoked: int64 + + """""" + sessionsRevoked_geq: int64 + + """""" + sessionsRevoked_gt: int64 + + """""" + sessionsRevoked_in: [int64!] + + """""" + sessionsRevoked_leq: int64 + + """""" + sessionsRevoked_lt: int64 + + """""" + sessionsRevoked_neq: int64 + + """""" + sessionsRevoked_notin: [int64!] + + """""" + timeBetweenRefreshesP50: int64 + + """""" + timeBetweenRefreshesP50_geq: int64 + + """""" + timeBetweenRefreshesP50_gt: int64 + + """""" + timeBetweenRefreshesP50_in: [int64!] + + """""" + timeBetweenRefreshesP50_leq: int64 + + """""" + timeBetweenRefreshesP50_lt: int64 + + """""" + timeBetweenRefreshesP50_neq: int64 + + """""" + timeBetweenRefreshesP50_notin: [int64!] + + """""" + timeBetweenRefreshesP75: int64 + + """""" + timeBetweenRefreshesP75_geq: int64 + + """""" + timeBetweenRefreshesP75_gt: int64 + + """""" + timeBetweenRefreshesP75_in: [int64!] + + """""" + timeBetweenRefreshesP75_leq: int64 + + """""" + timeBetweenRefreshesP75_lt: int64 + + """""" + timeBetweenRefreshesP75_neq: int64 + + """""" + timeBetweenRefreshesP75_notin: [int64!] + + """""" + timeBetweenRefreshesP90: int64 + + """""" + timeBetweenRefreshesP90_geq: int64 + + """""" + timeBetweenRefreshesP90_gt: int64 + + """""" + timeBetweenRefreshesP90_in: [int64!] + + """""" + timeBetweenRefreshesP90_leq: int64 + + """""" + timeBetweenRefreshesP90_lt: int64 + + """""" + timeBetweenRefreshesP90_neq: int64 + + """""" + timeBetweenRefreshesP90_notin: [int64!] + + """""" + timeBetweenRefreshesP95: int64 + + """""" + timeBetweenRefreshesP95_geq: int64 + + """""" + timeBetweenRefreshesP95_gt: int64 + + """""" + timeBetweenRefreshesP95_in: [int64!] + + """""" + timeBetweenRefreshesP95_leq: int64 + + """""" + timeBetweenRefreshesP95_lt: int64 + + """""" + timeBetweenRefreshesP95_neq: int64 + + """""" + timeBetweenRefreshesP95_notin: [int64!] + + """""" + timeInQueueP50: int64 + + """""" + timeInQueueP50_geq: int64 + + """""" + timeInQueueP50_gt: int64 + + """""" + timeInQueueP50_in: [int64!] + + """""" + timeInQueueP50_leq: int64 + + """""" + timeInQueueP50_lt: int64 + + """""" + timeInQueueP50_neq: int64 + + """""" + timeInQueueP50_notin: [int64!] + + """""" + timeInQueueP75: int64 + + """""" + timeInQueueP75_geq: int64 + + """""" + timeInQueueP75_gt: int64 + + """""" + timeInQueueP75_in: [int64!] + + """""" + timeInQueueP75_leq: int64 + + """""" + timeInQueueP75_lt: int64 + + """""" + timeInQueueP75_neq: int64 + + """""" + timeInQueueP75_notin: [int64!] + + """""" + timeInQueueP90: int64 + + """""" + timeInQueueP90_geq: int64 + + """""" + timeInQueueP90_gt: int64 + + """""" + timeInQueueP90_in: [int64!] + + """""" + timeInQueueP90_leq: int64 + + """""" + timeInQueueP90_lt: int64 + + """""" + timeInQueueP90_neq: int64 + + """""" + timeInQueueP90_notin: [int64!] + + """""" + timeInQueueP95: int64 + + """""" + timeInQueueP95_geq: int64 + + """""" + timeInQueueP95_gt: int64 + + """""" + timeInQueueP95_in: [int64!] + + """""" + timeInQueueP95_leq: int64 + + """""" + timeInQueueP95_lt: int64 + + """""" + timeInQueueP95_neq: int64 + + """""" + timeInQueueP95_notin: [int64!] + + """""" + timeOnOriginP50: int64 + + """""" + timeOnOriginP50_geq: int64 + + """""" + timeOnOriginP50_gt: int64 + + """""" + timeOnOriginP50_in: [int64!] + + """""" + timeOnOriginP50_leq: int64 + + """""" + timeOnOriginP50_lt: int64 + + """""" + timeOnOriginP50_neq: int64 + + """""" + timeOnOriginP50_notin: [int64!] + + """""" + timeOnOriginP75: int64 + + """""" + timeOnOriginP75_geq: int64 + + """""" + timeOnOriginP75_gt: int64 + + """""" + timeOnOriginP75_in: [int64!] + + """""" + timeOnOriginP75_leq: int64 + + """""" + timeOnOriginP75_lt: int64 + + """""" + timeOnOriginP75_neq: int64 + + """""" + timeOnOriginP75_notin: [int64!] + + """""" + timeOnOriginP90: int64 + + """""" + timeOnOriginP90_geq: int64 + + """""" + timeOnOriginP90_gt: int64 + + """""" + timeOnOriginP90_in: [int64!] + + """""" + timeOnOriginP90_leq: int64 + + """""" + timeOnOriginP90_lt: int64 + + """""" + timeOnOriginP90_neq: int64 + + """""" + timeOnOriginP90_notin: [int64!] + + """""" + timeOnOriginP95: int64 + + """""" + timeOnOriginP95_geq: int64 + + """""" + timeOnOriginP95_gt: int64 + + """""" + timeOnOriginP95_in: [int64!] + + """""" + timeOnOriginP95_leq: int64 + + """""" + timeOnOriginP95_lt: int64 + + """""" + timeOnOriginP95_neq: int64 + + """""" + timeOnOriginP95_notin: [int64!] + + """""" + totalActiveUsers: int64 + + """""" + totalActiveUsersConfig: int64 + + """""" + totalActiveUsersConfig_geq: int64 + + """""" + totalActiveUsersConfig_gt: int64 + + """""" + totalActiveUsersConfig_in: [int64!] + + """""" + totalActiveUsersConfig_leq: int64 + + """""" + totalActiveUsersConfig_lt: int64 + + """""" + totalActiveUsersConfig_neq: int64 + + """""" + totalActiveUsersConfig_notin: [int64!] + + """""" + totalActiveUsers_geq: int64 + + """""" + totalActiveUsers_gt: int64 + + """""" + totalActiveUsers_in: [int64!] + + """""" + totalActiveUsers_leq: int64 + + """""" + totalActiveUsers_lt: int64 + + """""" + totalActiveUsers_neq: int64 + + """""" + totalActiveUsers_notin: [int64!] + + """""" + totalQueuedUsers: int64 + + """""" + totalQueuedUsers_geq: int64 + + """""" + totalQueuedUsers_gt: int64 + + """""" + totalQueuedUsers_in: [int64!] + + """""" + totalQueuedUsers_leq: int64 + + """""" + totalQueuedUsers_lt: int64 + + """""" + totalQueuedUsers_neq: int64 + + """""" + totalQueuedUsers_notin: [int64!] + + """""" + totalTimeWaitedP50: int64 + + """""" + totalTimeWaitedP50_geq: int64 + + """""" + totalTimeWaitedP50_gt: int64 + + """""" + totalTimeWaitedP50_in: [int64!] + + """""" + totalTimeWaitedP50_leq: int64 + + """""" + totalTimeWaitedP50_lt: int64 + + """""" + totalTimeWaitedP50_neq: int64 + + """""" + totalTimeWaitedP50_notin: [int64!] + + """""" + totalTimeWaitedP75: int64 + + """""" + totalTimeWaitedP75_geq: int64 + + """""" + totalTimeWaitedP75_gt: int64 + + """""" + totalTimeWaitedP75_in: [int64!] + + """""" + totalTimeWaitedP75_leq: int64 + + """""" + totalTimeWaitedP75_lt: int64 + + """""" + totalTimeWaitedP75_neq: int64 + + """""" + totalTimeWaitedP75_notin: [int64!] + + """""" + totalTimeWaitedP90: int64 + + """""" + totalTimeWaitedP90_geq: int64 + + """""" + totalTimeWaitedP90_gt: int64 + + """""" + totalTimeWaitedP90_in: [int64!] + + """""" + totalTimeWaitedP90_leq: int64 + + """""" + totalTimeWaitedP90_lt: int64 + + """""" + totalTimeWaitedP90_neq: int64 + + """""" + totalTimeWaitedP90_notin: [int64!] + + """""" + totalTimeWaitedP95: int64 + + """""" + totalTimeWaitedP95_geq: int64 + + """""" + totalTimeWaitedP95_gt: int64 + + """""" + totalTimeWaitedP95_in: [int64!] + + """""" + totalTimeWaitedP95_leq: int64 + + """""" + totalTimeWaitedP95_lt: int64 + + """""" + totalTimeWaitedP95_neq: int64 + + """""" + totalTimeWaitedP95_notin: [int64!] + + """""" + turnstileFailures: int64 + + """""" + turnstileFailures_geq: int64 + + """""" + turnstileFailures_gt: int64 + + """""" + turnstileFailures_in: [int64!] + + """""" + turnstileFailures_leq: int64 + + """""" + turnstileFailures_lt: int64 + + """""" + turnstileFailures_neq: int64 + + """""" + turnstileFailures_notin: [int64!] + + """""" + turnstileInfiniteQueueRefreshes: int64 + + """""" + turnstileInfiniteQueueRefreshes_geq: int64 + + """""" + turnstileInfiniteQueueRefreshes_gt: int64 + + """""" + turnstileInfiniteQueueRefreshes_in: [int64!] + + """""" + turnstileInfiniteQueueRefreshes_leq: int64 + + """""" + turnstileInfiniteQueueRefreshes_lt: int64 + + """""" + turnstileInfiniteQueueRefreshes_neq: int64 + + """""" + turnstileInfiniteQueueRefreshes_notin: [int64!] + + """""" + turnstileIssued: int64 + + """""" + turnstileIssued_geq: int64 + + """""" + turnstileIssued_gt: int64 + + """""" + turnstileIssued_in: [int64!] + + """""" + turnstileIssued_leq: int64 + + """""" + turnstileIssued_lt: int64 + + """""" + turnstileIssued_neq: int64 + + """""" + turnstileIssued_notin: [int64!] + + """""" + turnstileSuccesses: int64 + + """""" + turnstileSuccesses_geq: int64 + + """""" + turnstileSuccesses_gt: int64 + + """""" + turnstileSuccesses_in: [int64!] + + """""" + turnstileSuccesses_leq: int64 + + """""" + turnstileSuccesses_lt: int64 + + """""" + turnstileSuccesses_neq: int64 + + """""" + turnstileSuccesses_notin: [int64!] + + """""" + turnstileUnsolved: int64 + + """""" + turnstileUnsolved_geq: int64 + + """""" + turnstileUnsolved_gt: int64 + + """""" + turnstileUnsolved_in: [int64!] + + """""" + turnstileUnsolved_leq: int64 + + """""" + turnstileUnsolved_lt: int64 + + """""" + turnstileUnsolved_neq: int64 + + """""" + turnstileUnsolved_notin: [int64!] + + """""" + waitingRoomId: string + + """""" + waitingRoomId_geq: string + + """""" + waitingRoomId_gt: string + + """""" + waitingRoomId_in: [string!] + + """""" + waitingRoomId_leq: string + + """""" + waitingRoomId_like: string + + """""" + waitingRoomId_lt: string + + """""" + waitingRoomId_neq: string + + """""" + waitingRoomId_notin: [string!] + + """""" + waitingRoomId_notlike: string + + """""" + waitingRoomName: string + + """""" + waitingRoomName_geq: string + + """""" + waitingRoomName_gt: string + + """""" + waitingRoomName_in: [string!] + + """""" + waitingRoomName_leq: string + + """""" + waitingRoomName_like: string + + """""" + waitingRoomName_lt: string + + """""" + waitingRoomName_neq: string + + """""" + waitingRoomName_notin: [string!] + + """""" + waitingRoomName_notlike: string +} + +"""Aggregated Waiting Room analytics logs with adaptive sampling""" +type ZoneWaitingRoomAnalyticsAdaptiveGroups { + """Beta. The avg of values for a metric per dimension""" + avg: ZoneWaitingRoomAnalyticsAdaptiveGroupsAvg + + """Beta. The avgWeighted values for a metric per dimension""" + avgWeighted: ZoneWaitingRoomAnalyticsAdaptiveGroupsAvgWeighted + + """List of dimensions to group by""" + dimensions: ZoneWaitingRoomAnalyticsAdaptiveGroupsDimensions + + """Beta. The max value for a metric per dimenstion""" + max: ZoneWaitingRoomAnalyticsAdaptiveGroupsMax + + """Beta. The minimum value for a metric per dimenstion""" + min: ZoneWaitingRoomAnalyticsAdaptiveGroupsMin + + """ + The sum for a metric per dimension. Use for shorter queries since data gets sampled after 7 days. + """ + sum: ZoneWaitingRoomAnalyticsAdaptiveGroupsSum +} + +"""""" +type ZoneWaitingRoomAnalyticsAdaptiveGroupsAvg { + """ + Average of the maximum estimated wait time per minute. A negative number means no data + """ + maxEstimatedTimeMinutes: int64! + + """Average rate of new users per minute. A negative number means no data""" + newUsersPerMinute: int64! + + """ + Configured value of new users per minute. A negative number means no data + """ + newUsersPerMinuteConfig: int64! + + """Average sample interval""" + sampleInterval: float64! + + """Configured value of session duration. A negative number means no data""" + sessionDuration: int64! + + """Average rate of sessions revoked. A negative number means no data""" + sessionsRevoked: int64! + + """Average rate of total active users. A negative number means no data""" + totalActiveUsers: int64! + + """ + Configured value of total active users. A negative number means no data + """ + totalActiveUsersConfig: int64! + + """Average of total queued users""" + totalQueuedUsers: int64! + + """ + Average rate of users failing a Turnstile challenge and therefore probably being bots. These users are placed in the infinite queue if enabled. A negative number means no data + """ + turnstileFailures: int64! + + """ + Average rate of requests from users who failed to complete a Turnstile challenge and were placed in an infinite queue. A negative number means no data + """ + turnstileInfiniteQueueRefreshes: int64! + + """ + Average rate of Turnstile challenge being included in the HTML sent to a user. A negative number means no data + """ + turnstileIssued: int64! + + """ + Average rate of users solving a Turnstile challenge and therefore likely being human. These users are placed in the normal queue. A negative number means no data + """ + turnstileSuccesses: int64! + + """ + Average rate of users not attempting a Turnstile challenge and therefore possibly being bots. These users will continue to be challenged with every request until they either pass or fail the challenge. A negative number means no data + """ + turnstileUnsolved: int64! +} + +"""""" +type ZoneWaitingRoomAnalyticsAdaptiveGroupsAvgWeighted { + """ + Weighted average of 50th percentile of time spent between session refreshes in seconds. A negative number means no data + """ + timeBetweenRefreshesP50: float64! + + """ + Weighted average of 75th percentile of time spent between session refreshes in seconds. A negative number means no data + """ + timeBetweenRefreshesP75: float64! + + """ + Weighted average of 90th percentile of time spent between session refreshes in seconds. A negative number means no data + """ + timeBetweenRefreshesP90: float64! + + """ + Weighted average of 95th percentile of time spent between session refreshes in seconds. A negative number means no data + """ + timeBetweenRefreshesP95: float64! + + """ + Weighted average of 50th percentile of time spent in queue in seconds. A negative number means no data + """ + timeInQueueP50: float64! + + """ + Weighted average of 75th percentile of time spent in queue in seconds. A negative number means no data + """ + timeInQueueP75: float64! + + """ + Weighted average of 90th percentile of time spent in queue in seconds. A negative number means no data + """ + timeInQueueP90: float64! + + """ + Weighted average of 95th percentile of time spent in queue in seconds. A negative number means no data + """ + timeInQueueP95: float64! + + """ + Weighted average of 50th percentile of time spent on origin in seconds. A negative number means no data + """ + timeOnOriginP50: float64! + + """ + Weighted average of 75th percentile of time spent on origin in seconds. A negative number means no data + """ + timeOnOriginP75: float64! + + """ + Weighted average of 90th percentile of time spent on origin in seconds. A negative number means no data + """ + timeOnOriginP90: float64! + + """ + Weighted average of 95th percentile of time spent on origin in seconds. A negative number means no data + """ + timeOnOriginP95: float64! + + """ + Weighted average of 50th percentile of the total time spent waiting in queue by users who have gained access to the origin in seconds. A negative number means no data + """ + totalTimeWaitedP50: float64! + + """ + Weighted average of 75th percentile of the total time spent waiting in queue by users who have gained access to the origin in seconds. A negative number means no data + """ + totalTimeWaitedP75: float64! + + """ + Weighted average of 90th percentile of the total time spent waiting in queue by users who have gained access to the origin in seconds. A negative number means no data + """ + totalTimeWaitedP90: float64! + + """ + Weighted average of 95th percentile of the total time spent waiting in queue by users who have gained access to the origin in seconds. A negative number means no data + """ + totalTimeWaitedP95: float64! +} + +"""""" +type ZoneWaitingRoomAnalyticsAdaptiveGroupsDimensions { + """The date the event was written to the database""" + date: Date! + + """The date and time the event was written to the database""" + datetime: Time! + + """ + The date and time the event was written to the database, truncated to a multiple of 15 minutes + """ + datetimeFifteenMinutes: Time! + + """ + The date and time the event was written to the database, truncated to a multiple of 5 minutes + """ + datetimeFiveMinutes: Time! + + """ + The date and time the event was written to the database, truncated to the hour + """ + datetimeHour: Time! + + """ + The date and time the event was written to the database, truncated to the minute + """ + datetimeMinute: Time! + + """ABR sample interval""" + sampleInterval: uint32! + + """Unique Identifier for the waiting room""" + waitingRoomId: string! +} + +"""""" +input ZoneWaitingRoomAnalyticsAdaptiveGroupsFilter_InputObject { + """""" + AND: [ZoneWaitingRoomAnalyticsAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [ZoneWaitingRoomAnalyticsAdaptiveGroupsFilter_InputObject!] + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + sampleInterval: uint32 + + """""" + sampleInterval_geq: uint32 + + """""" + sampleInterval_gt: uint32 + + """""" + sampleInterval_in: [uint32!] + + """""" + sampleInterval_leq: uint32 + + """""" + sampleInterval_lt: uint32 + + """""" + sampleInterval_neq: uint32 + + """""" + sampleInterval_notin: [uint32!] + + """""" + waitingRoomId: string + + """""" + waitingRoomId_geq: string + + """""" + waitingRoomId_gt: string + + """""" + waitingRoomId_in: [string!] + + """""" + waitingRoomId_leq: string + + """""" + waitingRoomId_like: string + + """""" + waitingRoomId_lt: string + + """""" + waitingRoomId_neq: string + + """""" + waitingRoomId_notin: [string!] + + """""" + waitingRoomId_notlike: string +} + +"""""" +type ZoneWaitingRoomAnalyticsAdaptiveGroupsMax { + """ + The maximum value of estimated time in minutes. A negative number means no data + """ + maxEstimatedTimeMinutes: int64! + + """ + The maximum value of the actual new users per minute. A negative number means no data + """ + newUsersPerMinute: int64! + + """ + The maximum value of the configured new users per minute. A negative number means no data + """ + newUsersPerMinuteConfig: int64! + + """ + The maximum value of the configured session duration configuration. A negative number means no data + """ + sessionDuration: int64! + + """ + The maximum value of the actual sessions revoked. A negative number means no data + """ + sessionsRevoked: int64! + + """ + The maximum value of the actual total active users. A negative number means no data + """ + totalActiveUsers: int64! + + """ + The maximum value of the configured total active users. A negative number means no data + """ + totalActiveUsersConfig: int64! + + """ + The maximum value of total number of queued users. A negative number means no data + """ + totalQueuedUsers: int64! + + """ + The maximum number of users seen who failed to complete a Turnstile challenge and therefore are likely bots. These users are placed in the infinite queue if enabled. A negative number means no data + """ + turnstileFailures: int64! + + """ + The maximum value of requests from users who failed to complete a Turnstile challenge and were placed in an infinite queue. A negative number means no data + """ + turnstileInfiniteQueueRefreshes: int64! + + """ + The maximum number of times a Turnstile challenge was included in the HTML sent to a user. A negative number means no data + """ + turnstileIssued: int64! + + """ + The maximum number of users seen who solved a Turnstile challenge and therefore are likely human. These users are placed in the normal queue. A negative number means no data + """ + turnstileSuccesses: int64! + + """ + The maximum number of users seen who didn't attempt a Turnstile challenge and therefore might be bots. These users will continue to be challenged with every request until they either pass or fail the challenge. A negative number means no data + """ + turnstileUnsolved: int64! +} + +"""""" +type ZoneWaitingRoomAnalyticsAdaptiveGroupsMin { + """ + The minimum value of estimated time in minutes. A negative number means no data + """ + maxEstimatedTimeMinutes: int64! + + """ + The minimum value of the actual new users per minute. A negative number means no data + """ + newUsersPerMinute: int64! + + """ + The minimum value of the configured new users per minute. A negative number means either Waiting Room is in passthrough or no data + """ + newUsersPerMinuteConfig: int64! + + """ + The minimum value of the configured session duration configuration. A negative number means no data + """ + sessionDuration: int64! + + """ + The minimum value of the actual sessions revoked. A negative number means no data + """ + sessionsRevoked: int64! + + """ + The minimum value of the actual total active users. A negative number means no data + """ + totalActiveUsers: int64! + + """ + The minimum value of the configured total active users. A negative number means either Waiting Room is in passthrough or no data + """ + totalActiveUsersConfig: int64! + + """ + The minimum value of total number of queued users. A negative number means no data + """ + totalQueuedUsers: int64! + + """ + The minimum number of users seen who failed to complete a Turnstile challenge and therefore are likely bots. These users are placed in the infinite queue if enabled. A negative number means no data + """ + turnstileFailures: int64! + + """ + The minimum value of requests from users who failed to complete a Turnstile challenge and were placed in an infinite queue. A negative number means no data + """ + turnstileInfiniteQueueRefreshes: int64! + + """ + The minimum number of times a Turnstile challenge was included in the HTML sent to a user. A negative number means no data + """ + turnstileIssued: int64! + + """ + The minimum number of users seen who solved a Turnstile challenge and therefore are likely human. These users are placed in the normal queue. A negative number means no data + """ + turnstileSuccesses: int64! + + """ + The minimum number of users seen who didn't attempt a Turnstile challenge and therefore might be bots. These users will continue to be challenged with every request until they either pass or fail the challenge. A negative number means no data + """ + turnstileUnsolved: int64! +} + +"""""" +enum ZoneWaitingRoomAnalyticsAdaptiveGroupsOrderBy { + """avgWeighted(timeBetweenRefreshesP50) ascending""" + avgWeighted_timeBetweenRefreshesP50_ASC + + """avgWeighted(timeBetweenRefreshesP50) descending""" + avgWeighted_timeBetweenRefreshesP50_DESC + + """avgWeighted(timeBetweenRefreshesP75) ascending""" + avgWeighted_timeBetweenRefreshesP75_ASC + + """avgWeighted(timeBetweenRefreshesP75) descending""" + avgWeighted_timeBetweenRefreshesP75_DESC + + """avgWeighted(timeBetweenRefreshesP90) ascending""" + avgWeighted_timeBetweenRefreshesP90_ASC + + """avgWeighted(timeBetweenRefreshesP90) descending""" + avgWeighted_timeBetweenRefreshesP90_DESC + + """avgWeighted(timeBetweenRefreshesP95) ascending""" + avgWeighted_timeBetweenRefreshesP95_ASC + + """avgWeighted(timeBetweenRefreshesP95) descending""" + avgWeighted_timeBetweenRefreshesP95_DESC + + """avgWeighted(timeInQueueP50) ascending""" + avgWeighted_timeInQueueP50_ASC + + """avgWeighted(timeInQueueP50) descending""" + avgWeighted_timeInQueueP50_DESC + + """avgWeighted(timeInQueueP75) ascending""" + avgWeighted_timeInQueueP75_ASC + + """avgWeighted(timeInQueueP75) descending""" + avgWeighted_timeInQueueP75_DESC + + """avgWeighted(timeInQueueP90) ascending""" + avgWeighted_timeInQueueP90_ASC + + """avgWeighted(timeInQueueP90) descending""" + avgWeighted_timeInQueueP90_DESC + + """avgWeighted(timeInQueueP95) ascending""" + avgWeighted_timeInQueueP95_ASC + + """avgWeighted(timeInQueueP95) descending""" + avgWeighted_timeInQueueP95_DESC + + """avgWeighted(timeOnOriginP50) ascending""" + avgWeighted_timeOnOriginP50_ASC + + """avgWeighted(timeOnOriginP50) descending""" + avgWeighted_timeOnOriginP50_DESC + + """avgWeighted(timeOnOriginP75) ascending""" + avgWeighted_timeOnOriginP75_ASC + + """avgWeighted(timeOnOriginP75) descending""" + avgWeighted_timeOnOriginP75_DESC + + """avgWeighted(timeOnOriginP90) ascending""" + avgWeighted_timeOnOriginP90_ASC + + """avgWeighted(timeOnOriginP90) descending""" + avgWeighted_timeOnOriginP90_DESC + + """avgWeighted(timeOnOriginP95) ascending""" + avgWeighted_timeOnOriginP95_ASC + + """avgWeighted(timeOnOriginP95) descending""" + avgWeighted_timeOnOriginP95_DESC + + """avgWeighted(totalTimeWaitedP50) ascending""" + avgWeighted_totalTimeWaitedP50_ASC + + """avgWeighted(totalTimeWaitedP50) descending""" + avgWeighted_totalTimeWaitedP50_DESC + + """avgWeighted(totalTimeWaitedP75) ascending""" + avgWeighted_totalTimeWaitedP75_ASC + + """avgWeighted(totalTimeWaitedP75) descending""" + avgWeighted_totalTimeWaitedP75_DESC + + """avgWeighted(totalTimeWaitedP90) ascending""" + avgWeighted_totalTimeWaitedP90_ASC + + """avgWeighted(totalTimeWaitedP90) descending""" + avgWeighted_totalTimeWaitedP90_DESC + + """avgWeighted(totalTimeWaitedP95) ascending""" + avgWeighted_totalTimeWaitedP95_ASC + + """avgWeighted(totalTimeWaitedP95) descending""" + avgWeighted_totalTimeWaitedP95_DESC + + """avg(abandoningUsersPerMinute) ascending""" + avg_abandoningUsersPerMinute_ASC + + """avg(abandoningUsersPerMinute) descending""" + avg_abandoningUsersPerMinute_DESC + + """avg(maxEstimatedTimeMinutes) ascending""" + avg_maxEstimatedTimeMinutes_ASC + + """avg(maxEstimatedTimeMinutes) descending""" + avg_maxEstimatedTimeMinutes_DESC + + """avg(newUsersPerMinuteConfig) ascending""" + avg_newUsersPerMinuteConfig_ASC + + """avg(newUsersPerMinuteConfig) descending""" + avg_newUsersPerMinuteConfig_DESC + + """avg(newUsersPerMinute) ascending""" + avg_newUsersPerMinute_ASC + + """avg(newUsersPerMinute) descending""" + avg_newUsersPerMinute_DESC + + """avg(sampleInterval) ascending""" + avg_sampleInterval_ASC + + """avg(sampleInterval) descending""" + avg_sampleInterval_DESC + + """avg(sessionDuration) ascending""" + avg_sessionDuration_ASC + + """avg(sessionDuration) descending""" + avg_sessionDuration_DESC + + """avg(sessionsRevoked) ascending""" + avg_sessionsRevoked_ASC + + """avg(sessionsRevoked) descending""" + avg_sessionsRevoked_DESC + + """avg(totalActiveUsersConfig) ascending""" + avg_totalActiveUsersConfig_ASC + + """avg(totalActiveUsersConfig) descending""" + avg_totalActiveUsersConfig_DESC + + """avg(totalActiveUsers) ascending""" + avg_totalActiveUsers_ASC + + """avg(totalActiveUsers) descending""" + avg_totalActiveUsers_DESC + + """avg(totalQueuedUsers) ascending""" + avg_totalQueuedUsers_ASC + + """avg(totalQueuedUsers) descending""" + avg_totalQueuedUsers_DESC + + """avg(turnstileFailures) ascending""" + avg_turnstileFailures_ASC + + """avg(turnstileFailures) descending""" + avg_turnstileFailures_DESC + + """avg(turnstileInfiniteQueueRefreshes) ascending""" + avg_turnstileInfiniteQueueRefreshes_ASC + + """avg(turnstileInfiniteQueueRefreshes) descending""" + avg_turnstileInfiniteQueueRefreshes_DESC + + """avg(turnstileIssued) ascending""" + avg_turnstileIssued_ASC + + """avg(turnstileIssued) descending""" + avg_turnstileIssued_DESC + + """avg(turnstileSuccesses) ascending""" + avg_turnstileSuccesses_ASC + + """avg(turnstileSuccesses) descending""" + avg_turnstileSuccesses_DESC + + """avg(turnstileUnsolved) ascending""" + avg_turnstileUnsolved_ASC + + """avg(turnstileUnsolved) descending""" + avg_turnstileUnsolved_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """max(abandoningUsersPerMinute) ascending""" + max_abandoningUsersPerMinute_ASC + + """max(abandoningUsersPerMinute) descending""" + max_abandoningUsersPerMinute_DESC + + """max(maxEstimatedTimeMinutes) ascending""" + max_maxEstimatedTimeMinutes_ASC + + """max(maxEstimatedTimeMinutes) descending""" + max_maxEstimatedTimeMinutes_DESC + + """max(newUsersPerMinuteConfig) ascending""" + max_newUsersPerMinuteConfig_ASC + + """max(newUsersPerMinuteConfig) descending""" + max_newUsersPerMinuteConfig_DESC + + """max(newUsersPerMinute) ascending""" + max_newUsersPerMinute_ASC + + """max(newUsersPerMinute) descending""" + max_newUsersPerMinute_DESC + + """max(sessionDuration) ascending""" + max_sessionDuration_ASC + + """max(sessionDuration) descending""" + max_sessionDuration_DESC + + """max(sessionsRevoked) ascending""" + max_sessionsRevoked_ASC + + """max(sessionsRevoked) descending""" + max_sessionsRevoked_DESC + + """max(totalActiveUsersConfig) ascending""" + max_totalActiveUsersConfig_ASC + + """max(totalActiveUsersConfig) descending""" + max_totalActiveUsersConfig_DESC + + """max(totalActiveUsers) ascending""" + max_totalActiveUsers_ASC + + """max(totalActiveUsers) descending""" + max_totalActiveUsers_DESC + + """max(totalQueuedUsers) ascending""" + max_totalQueuedUsers_ASC + + """max(totalQueuedUsers) descending""" + max_totalQueuedUsers_DESC + + """max(turnstileFailures) ascending""" + max_turnstileFailures_ASC + + """max(turnstileFailures) descending""" + max_turnstileFailures_DESC + + """max(turnstileInfiniteQueueRefreshes) ascending""" + max_turnstileInfiniteQueueRefreshes_ASC + + """max(turnstileInfiniteQueueRefreshes) descending""" + max_turnstileInfiniteQueueRefreshes_DESC + + """max(turnstileIssued) ascending""" + max_turnstileIssued_ASC + + """max(turnstileIssued) descending""" + max_turnstileIssued_DESC + + """max(turnstileSuccesses) ascending""" + max_turnstileSuccesses_ASC + + """max(turnstileSuccesses) descending""" + max_turnstileSuccesses_DESC + + """max(turnstileUnsolved) ascending""" + max_turnstileUnsolved_ASC + + """max(turnstileUnsolved) descending""" + max_turnstileUnsolved_DESC + + """min(maxEstimatedTimeMinutes) ascending""" + min_maxEstimatedTimeMinutes_ASC + + """min(maxEstimatedTimeMinutes) descending""" + min_maxEstimatedTimeMinutes_DESC + + """min(newUsersPerMinuteConfig) ascending""" + min_newUsersPerMinuteConfig_ASC + + """min(newUsersPerMinuteConfig) descending""" + min_newUsersPerMinuteConfig_DESC + + """min(newUsersPerMinute) ascending""" + min_newUsersPerMinute_ASC + + """min(newUsersPerMinute) descending""" + min_newUsersPerMinute_DESC + + """min(sessionDuration) ascending""" + min_sessionDuration_ASC + + """min(sessionDuration) descending""" + min_sessionDuration_DESC + + """min(sessionsRevoked) ascending""" + min_sessionsRevoked_ASC + + """min(sessionsRevoked) descending""" + min_sessionsRevoked_DESC + + """min(totalActiveUsersConfig) ascending""" + min_totalActiveUsersConfig_ASC + + """min(totalActiveUsersConfig) descending""" + min_totalActiveUsersConfig_DESC + + """min(totalActiveUsers) ascending""" + min_totalActiveUsers_ASC + + """min(totalActiveUsers) descending""" + min_totalActiveUsers_DESC + + """min(totalQueuedUsers) ascending""" + min_totalQueuedUsers_ASC + + """min(totalQueuedUsers) descending""" + min_totalQueuedUsers_DESC + + """min(turnstileFailures) ascending""" + min_turnstileFailures_ASC + + """min(turnstileFailures) descending""" + min_turnstileFailures_DESC + + """min(turnstileInfiniteQueueRefreshes) ascending""" + min_turnstileInfiniteQueueRefreshes_ASC + + """min(turnstileInfiniteQueueRefreshes) descending""" + min_turnstileInfiniteQueueRefreshes_DESC + + """min(turnstileIssued) ascending""" + min_turnstileIssued_ASC + + """min(turnstileIssued) descending""" + min_turnstileIssued_DESC + + """min(turnstileSuccesses) ascending""" + min_turnstileSuccesses_ASC + + """min(turnstileSuccesses) descending""" + min_turnstileSuccesses_DESC + + """min(turnstileUnsolved) ascending""" + min_turnstileUnsolved_ASC + + """min(turnstileUnsolved) descending""" + min_turnstileUnsolved_DESC + + """sampleInterval ascending""" + sampleInterval_ASC + + """sampleInterval descending""" + sampleInterval_DESC + + """sum(newUsersPerMinute) ascending""" + sum_newUsersPerMinute_ASC + + """sum(newUsersPerMinute) descending""" + sum_newUsersPerMinute_DESC + + """sum(sessionsRevoked) ascending""" + sum_sessionsRevoked_ASC + + """sum(sessionsRevoked) descending""" + sum_sessionsRevoked_DESC + + """sum(turnstileFailures) ascending""" + sum_turnstileFailures_ASC + + """sum(turnstileFailures) descending""" + sum_turnstileFailures_DESC + + """sum(turnstileInfiniteQueueRefreshes) ascending""" + sum_turnstileInfiniteQueueRefreshes_ASC + + """sum(turnstileInfiniteQueueRefreshes) descending""" + sum_turnstileInfiniteQueueRefreshes_DESC + + """sum(turnstileIssued) ascending""" + sum_turnstileIssued_ASC + + """sum(turnstileIssued) descending""" + sum_turnstileIssued_DESC + + """sum(turnstileSuccesses) ascending""" + sum_turnstileSuccesses_ASC + + """sum(turnstileSuccesses) descending""" + sum_turnstileSuccesses_DESC + + """sum(turnstileUnsolved) ascending""" + sum_turnstileUnsolved_ASC + + """sum(turnstileUnsolved) descending""" + sum_turnstileUnsolved_DESC + + """waitingRoomId ascending""" + waitingRoomId_ASC + + """waitingRoomId descending""" + waitingRoomId_DESC +} + +"""""" +type ZoneWaitingRoomAnalyticsAdaptiveGroupsSum { + """Sum of new users per minute. A negative number means no data""" + newUsersPerMinute: int64! + + """Sum of sessions revoked. A negative number means no data""" + sessionsRevoked: int64! + + """ + Sum of users seen who failed to complete a Turnstile challenge and therefore are likely bots. These users are placed in the infinite queue if enabled. A negative number means no data + """ + turnstileFailures: int64! + + """ + Sum of requests from users who failed to complete a Turnstile challenge and were placed in an infinite queue. A negative number means no data + """ + turnstileInfiniteQueueRefreshes: int64! + + """ + Sum of times a Turnstile challenge was included in the HTML sent to a user. A negative number means no data + """ + turnstileIssued: int64! + + """ + Sum of users seen who solved a Turnstile challenge and therefore are likely human. These users are placed in the normal queue. A negative number means no data + """ + turnstileSuccesses: int64! + + """ + Sum of users seen who didn't attempt a Turnstile challenge and therefore might be bots. These users will continue to be challenged with every request until they either pass or fail the challenge. A negative number means no data + """ + turnstileUnsolved: int64! +} + +"""""" +enum ZoneWaitingRoomAnalyticsAdaptiveOrderBy { + """abandoningUsersPerMinute ascending""" + abandoningUsersPerMinute_ASC + + """abandoningUsersPerMinute descending""" + abandoningUsersPerMinute_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """maxEstimatedTimeMinutes ascending""" + maxEstimatedTimeMinutes_ASC + + """maxEstimatedTimeMinutes descending""" + maxEstimatedTimeMinutes_DESC + + """newUsersPerMinuteConfig ascending""" + newUsersPerMinuteConfig_ASC + + """newUsersPerMinuteConfig descending""" + newUsersPerMinuteConfig_DESC + + """newUsersPerMinute ascending""" + newUsersPerMinute_ASC + + """newUsersPerMinute descending""" + newUsersPerMinute_DESC + + """sampleInterval ascending""" + sampleInterval_ASC + + """sampleInterval descending""" + sampleInterval_DESC + + """sessionDuration ascending""" + sessionDuration_ASC + + """sessionDuration descending""" + sessionDuration_DESC + + """sessionsRevoked ascending""" + sessionsRevoked_ASC + + """sessionsRevoked descending""" + sessionsRevoked_DESC + + """timeBetweenRefreshesP50 ascending""" + timeBetweenRefreshesP50_ASC + + """timeBetweenRefreshesP50 descending""" + timeBetweenRefreshesP50_DESC + + """timeBetweenRefreshesP75 ascending""" + timeBetweenRefreshesP75_ASC + + """timeBetweenRefreshesP75 descending""" + timeBetweenRefreshesP75_DESC + + """timeBetweenRefreshesP90 ascending""" + timeBetweenRefreshesP90_ASC + + """timeBetweenRefreshesP90 descending""" + timeBetweenRefreshesP90_DESC + + """timeBetweenRefreshesP95 ascending""" + timeBetweenRefreshesP95_ASC + + """timeBetweenRefreshesP95 descending""" + timeBetweenRefreshesP95_DESC + + """timeInQueueP50 ascending""" + timeInQueueP50_ASC + + """timeInQueueP50 descending""" + timeInQueueP50_DESC + + """timeInQueueP75 ascending""" + timeInQueueP75_ASC + + """timeInQueueP75 descending""" + timeInQueueP75_DESC + + """timeInQueueP90 ascending""" + timeInQueueP90_ASC + + """timeInQueueP90 descending""" + timeInQueueP90_DESC + + """timeInQueueP95 ascending""" + timeInQueueP95_ASC + + """timeInQueueP95 descending""" + timeInQueueP95_DESC + + """timeOnOriginP50 ascending""" + timeOnOriginP50_ASC + + """timeOnOriginP50 descending""" + timeOnOriginP50_DESC + + """timeOnOriginP75 ascending""" + timeOnOriginP75_ASC + + """timeOnOriginP75 descending""" + timeOnOriginP75_DESC + + """timeOnOriginP90 ascending""" + timeOnOriginP90_ASC + + """timeOnOriginP90 descending""" + timeOnOriginP90_DESC + + """timeOnOriginP95 ascending""" + timeOnOriginP95_ASC + + """timeOnOriginP95 descending""" + timeOnOriginP95_DESC + + """totalActiveUsersConfig ascending""" + totalActiveUsersConfig_ASC + + """totalActiveUsersConfig descending""" + totalActiveUsersConfig_DESC + + """totalActiveUsers ascending""" + totalActiveUsers_ASC + + """totalActiveUsers descending""" + totalActiveUsers_DESC + + """totalQueuedUsers ascending""" + totalQueuedUsers_ASC + + """totalQueuedUsers descending""" + totalQueuedUsers_DESC + + """totalTimeWaitedP50 ascending""" + totalTimeWaitedP50_ASC + + """totalTimeWaitedP50 descending""" + totalTimeWaitedP50_DESC + + """totalTimeWaitedP75 ascending""" + totalTimeWaitedP75_ASC + + """totalTimeWaitedP75 descending""" + totalTimeWaitedP75_DESC + + """totalTimeWaitedP90 ascending""" + totalTimeWaitedP90_ASC + + """totalTimeWaitedP90 descending""" + totalTimeWaitedP90_DESC + + """totalTimeWaitedP95 ascending""" + totalTimeWaitedP95_ASC + + """totalTimeWaitedP95 descending""" + totalTimeWaitedP95_DESC + + """turnstileFailures ascending""" + turnstileFailures_ASC + + """turnstileFailures descending""" + turnstileFailures_DESC + + """turnstileInfiniteQueueRefreshes ascending""" + turnstileInfiniteQueueRefreshes_ASC + + """turnstileInfiniteQueueRefreshes descending""" + turnstileInfiniteQueueRefreshes_DESC + + """turnstileIssued ascending""" + turnstileIssued_ASC + + """turnstileIssued descending""" + turnstileIssued_DESC + + """turnstileSuccesses ascending""" + turnstileSuccesses_ASC + + """turnstileSuccesses descending""" + turnstileSuccesses_DESC + + """turnstileUnsolved ascending""" + turnstileUnsolved_ASC + + """turnstileUnsolved descending""" + turnstileUnsolved_DESC + + """waitingRoomId ascending""" + waitingRoomId_ASC + + """waitingRoomId descending""" + waitingRoomId_DESC + + """waitingRoomName ascending""" + waitingRoomName_ASC + + """waitingRoomName descending""" + waitingRoomName_DESC +} + +"""Workers invocations with adaptive sampling""" +type ZoneWorkersZoneInvocationsAdaptiveGroups { + """The average of values for a metric per dimension""" + avg: ZoneWorkersZoneInvocationsAdaptiveGroupsAvg + + """ALPHA - DO NOT USE""" + confidence(level: float64!): ZoneWorkersZoneInvocationsAdaptiveGroupsConfidence! + + """List of dimensions to group by""" + dimensions: ZoneWorkersZoneInvocationsAdaptiveGroupsDimensions + + """The sum of values for a metric per dimension""" + sum: ZoneWorkersZoneInvocationsAdaptiveGroupsSum +} + +"""""" +type ZoneWorkersZoneInvocationsAdaptiveGroupsAvg { + """Average CPU time used per request (in microseconds)""" + avgCpuTime: uint64! +} + +"""""" +type ZoneWorkersZoneInvocationsAdaptiveGroupsConfidence { + """Confidence level that was requested""" + level: float64! + + """ + The sum of values for a metric per dimension, with confidence intervals + """ + sum: ZoneWorkersZoneInvocationsAdaptiveGroupsSumConfidence +} + +"""""" +type ZoneWorkersZoneInvocationsAdaptiveGroupsDimensions { + """Worker script Id""" + constantScriptId: uint32! + + """Request datetime, truncated to start of a day""" + date: Date! + + """Request datetime""" + datetime: Time! + + """Request datetime, truncated to start of an hour""" + datetimeHour: Time! + + """Request datetime, truncated to start of an minute""" + datetimeMinute: Time! + + """Request datetime, truncated to start of six hour window""" + datetimeSixHours: Time! + + """Origin HTTP response code""" + httpResponseStatus: uint16! + + """Status of the worker invocation""" + status: string! +} + +"""""" +input ZoneWorkersZoneInvocationsAdaptiveGroupsFilter_InputObject { + """""" + AND: [ZoneWorkersZoneInvocationsAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [ZoneWorkersZoneInvocationsAdaptiveGroupsFilter_InputObject!] + + """""" + constantScriptId: uint32 + + """""" + constantScriptId_geq: uint32 + + """""" + constantScriptId_gt: uint32 + + """""" + constantScriptId_in: [uint32!] + + """""" + constantScriptId_leq: uint32 + + """""" + constantScriptId_lt: uint32 + + """""" + constantScriptId_neq: uint32 + + """""" + constantScriptId_notin: [uint32!] + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetimeSixHours: Time + + """""" + datetimeSixHours_geq: Time + + """""" + datetimeSixHours_gt: Time + + """""" + datetimeSixHours_in: [Time!] + + """""" + datetimeSixHours_leq: Time + + """""" + datetimeSixHours_lt: Time + + """""" + datetimeSixHours_neq: Time + + """""" + datetimeSixHours_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + httpResponseStatus: uint16 + + """""" + httpResponseStatus_geq: uint16 + + """""" + httpResponseStatus_gt: uint16 + + """""" + httpResponseStatus_in: [uint16!] + + """""" + httpResponseStatus_leq: uint16 + + """""" + httpResponseStatus_lt: uint16 + + """""" + httpResponseStatus_neq: uint16 + + """""" + httpResponseStatus_notin: [uint16!] + + """""" + status: string + + """""" + status_geq: string + + """""" + status_gt: string + + """""" + status_in: [string!] + + """""" + status_leq: string + + """""" + status_like: string + + """""" + status_lt: string + + """""" + status_neq: string + + """""" + status_notin: [string!] + + """""" + status_notlike: string +} + +"""""" +enum ZoneWorkersZoneInvocationsAdaptiveGroupsOrderBy { + """avg(avgCpuTime) ascending""" + avg_avgCpuTime_ASC + + """avg(avgCpuTime) descending""" + avg_avgCpuTime_DESC + + """constantScriptId ascending""" + constantScriptId_ASC + + """constantScriptId descending""" + constantScriptId_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetimeSixHours ascending""" + datetimeSixHours_ASC + + """datetimeSixHours descending""" + datetimeSixHours_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """httpResponseStatus ascending""" + httpResponseStatus_ASC + + """httpResponseStatus descending""" + httpResponseStatus_DESC + + """scriptName ascending""" + scriptName_ASC + + """scriptName descending""" + scriptName_DESC + + """stableId ascending""" + stableId_ASC + + """stableId descending""" + stableId_DESC + + """status ascending""" + status_ASC + + """status descending""" + status_DESC + + """sum(requests) ascending""" + sum_requests_ASC + + """sum(requests) descending""" + sum_requests_DESC + + """sum(responseBodySize) ascending""" + sum_responseBodySize_ASC + + """sum(responseBodySize) descending""" + sum_responseBodySize_DESC + + """sum(subrequests) ascending""" + sum_subrequests_ASC + + """sum(subrequests) descending""" + sum_subrequests_DESC + + """sum(totalCpuTime) ascending""" + sum_totalCpuTime_ASC + + """sum(totalCpuTime) descending""" + sum_totalCpuTime_DESC +} + +"""""" +type ZoneWorkersZoneInvocationsAdaptiveGroupsSum { + """Sum of Requests""" + requests: uint64! + + """Bandwidth (in bytes) returned to eyeball""" + responseBodySize: uint64! + + """Number of sub-requests issued by the edge worker""" + subrequests: uint64! + + """Total CPU time used (in microseconds)""" + totalCpuTime: uint64! +} + +"""""" +type ZoneWorkersZoneInvocationsAdaptiveGroupsSumConfidence { + """Confidence interval for the corresponding point estimate""" + requests: Confidence! + + """Confidence interval for the corresponding point estimate""" + responseBodySize: Confidence! + + """Confidence interval for the corresponding point estimate""" + subrequests: Confidence! + + """Confidence interval for the corresponding point estimate""" + totalCpuTime: Confidence! +} + +"""Workers subrequests with adaptive sampling""" +type ZoneWorkersZoneSubrequestsAdaptiveGroups { + """ALPHA - DO NOT USE""" + confidence(level: float64!): ZoneWorkersZoneSubrequestsAdaptiveGroupsConfidence! + + """List of dimensions to group by""" + dimensions: ZoneWorkersZoneSubrequestsAdaptiveGroupsDimensions + + """The sum of values for a metric per dimension""" + sum: ZoneWorkersZoneSubrequestsAdaptiveGroupsSum +} + +"""""" +type ZoneWorkersZoneSubrequestsAdaptiveGroupsConfidence { + """Confidence level that was requested""" + level: float64! + + """ + The sum of values for a metric per dimension, with confidence intervals + """ + sum: ZoneWorkersZoneSubrequestsAdaptiveGroupsSumConfidence +} + +"""""" +type ZoneWorkersZoneSubrequestsAdaptiveGroupsDimensions { + """Cache status""" + cacheStatus: uint64! + + """Request datetime, truncated to start of a day""" + date: Date! + + """Request datetime""" + datetime: Time! + + """Request datetime, truncated to start of an hour""" + datetimeHour: Time! + + """Request datetime, truncated to start of an minute""" + datetimeMinute: Time! + + """Request datetime, truncated to start of six hour window""" + datetimeSixHours: Time! + + """The hostname of the subrequest""" + hostname: string! + + """Origin HTTP response code""" + httpResponseStatus: uint64! +} + +"""""" +input ZoneWorkersZoneSubrequestsAdaptiveGroupsFilter_InputObject { + """""" + AND: [ZoneWorkersZoneSubrequestsAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [ZoneWorkersZoneSubrequestsAdaptiveGroupsFilter_InputObject!] + + """""" + cacheStatus: uint64 + + """""" + cacheStatus_geq: uint64 + + """""" + cacheStatus_gt: uint64 + + """""" + cacheStatus_in: [uint64!] + + """""" + cacheStatus_leq: uint64 + + """""" + cacheStatus_lt: uint64 + + """""" + cacheStatus_neq: uint64 + + """""" + cacheStatus_notin: [uint64!] + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetimeSixHours: Time + + """""" + datetimeSixHours_geq: Time + + """""" + datetimeSixHours_gt: Time + + """""" + datetimeSixHours_in: [Time!] + + """""" + datetimeSixHours_leq: Time + + """""" + datetimeSixHours_lt: Time + + """""" + datetimeSixHours_neq: Time + + """""" + datetimeSixHours_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + hostname: string + + """""" + hostname_geq: string + + """""" + hostname_gt: string + + """""" + hostname_in: [string!] + + """""" + hostname_leq: string + + """""" + hostname_like: string + + """""" + hostname_lt: string + + """""" + hostname_neq: string + + """""" + hostname_notin: [string!] + + """""" + hostname_notlike: string + + """""" + httpResponseStatus: uint64 + + """""" + httpResponseStatus_geq: uint64 + + """""" + httpResponseStatus_gt: uint64 + + """""" + httpResponseStatus_in: [uint64!] + + """""" + httpResponseStatus_leq: uint64 + + """""" + httpResponseStatus_lt: uint64 + + """""" + httpResponseStatus_neq: uint64 + + """""" + httpResponseStatus_notin: [uint64!] +} + +"""""" +enum ZoneWorkersZoneSubrequestsAdaptiveGroupsOrderBy { + """cacheStatus ascending""" + cacheStatus_ASC + + """cacheStatus descending""" + cacheStatus_DESC + + """constantScriptId ascending""" + constantScriptId_ASC + + """constantScriptId descending""" + constantScriptId_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetimeSixHours ascending""" + datetimeSixHours_ASC + + """datetimeSixHours descending""" + datetimeSixHours_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """hostname ascending""" + hostname_ASC + + """hostname descending""" + hostname_DESC + + """httpResponseStatus ascending""" + httpResponseStatus_ASC + + """httpResponseStatus descending""" + httpResponseStatus_DESC + + """scriptName ascending""" + scriptName_ASC + + """scriptName descending""" + scriptName_DESC + + """stableId ascending""" + stableId_ASC + + """stableId descending""" + stableId_DESC + + """sum(requestBodySizeUncached) ascending""" + sum_requestBodySizeUncached_ASC + + """sum(requestBodySizeUncached) descending""" + sum_requestBodySizeUncached_DESC + + """sum(requestBodySize) ascending""" + sum_requestBodySize_ASC + + """sum(requestBodySize) descending""" + sum_requestBodySize_DESC + + """sum(responseBodySize) ascending""" + sum_responseBodySize_ASC + + """sum(responseBodySize) descending""" + sum_responseBodySize_DESC + + """sum(subrequests) ascending""" + sum_subrequests_ASC + + """sum(subrequests) descending""" + sum_subrequests_DESC +} + +"""""" +type ZoneWorkersZoneSubrequestsAdaptiveGroupsSum { + """Workers fetch request body size in bytes""" + requestBodySize: uint64! + + """ + Workers fetch request body size in bytes where the request was not cached + """ + requestBodySizeUncached: uint64! + + """Workers fetch response body size in bytes""" + responseBodySize: uint64! + + """Number of sub-requests issued by the edge worker""" + subrequests: uint64! +} + +"""""" +type ZoneWorkersZoneSubrequestsAdaptiveGroupsSumConfidence { + """Confidence interval for the corresponding point estimate""" + requestBodySize: Confidence! + + """Confidence interval for the corresponding point estimate""" + requestBodySizeUncached: Confidence! + + """Confidence interval for the corresponding point estimate""" + responseBodySize: Confidence! + + """Confidence interval for the corresponding point estimate""" + subrequests: Confidence! +} + +"""Zaraz Actions Analytics""" +type ZoneZarazActionsAdaptiveGroups { + """ALPHA - DO NOT USE""" + confidence(level: float64!): ZoneZarazActionsAdaptiveGroupsConfidence! + + """Number of processed Zaraz Actions""" + count: uint64! + + """List of dimensions to group by""" + dimensions: ZoneZarazActionsAdaptiveGroupsDimensions +} + +"""""" +type ZoneZarazActionsAdaptiveGroupsConfidence { + """Number of processed Zaraz Actions, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! +} + +"""""" +type ZoneZarazActionsAdaptiveGroupsDimensions { + """Action Name""" + actionName: string! + + """The date the Action was triggered""" + date: Date! + + """The date and time truncated to fifteen minutes""" + datetimeFifteenMinutes: Time! + + """The date and time truncated to five minutes""" + datetimeFiveMinutes: Time! + + """The date and time truncated to the hour""" + datetimeHour: Time! + + """The date and time truncated to the minute""" + datetimeMinute: Time! + + """Tool Name""" + toolName: string! +} + +"""""" +input ZoneZarazActionsAdaptiveGroupsFilter_InputObject { + """""" + AND: [ZoneZarazActionsAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [ZoneZarazActionsAdaptiveGroupsFilter_InputObject!] + + """""" + actionName: string + + """""" + actionName_geq: string + + """""" + actionName_gt: string + + """""" + actionName_in: [string!] + + """""" + actionName_leq: string + + """""" + actionName_like: string + + """""" + actionName_lt: string + + """""" + actionName_neq: string + + """""" + actionName_notin: [string!] + + """""" + actionName_notlike: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + toolName: string + + """""" + toolName_geq: string + + """""" + toolName_gt: string + + """""" + toolName_in: [string!] + + """""" + toolName_leq: string + + """""" + toolName_like: string + + """""" + toolName_lt: string + + """""" + toolName_neq: string + + """""" + toolName_notin: [string!] + + """""" + toolName_notlike: string +} + +"""""" +enum ZoneZarazActionsAdaptiveGroupsOrderBy { + """actionName ascending""" + actionName_ASC + + """actionName descending""" + actionName_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """toolName ascending""" + toolName_ASC + + """toolName descending""" + toolName_DESC +} + +"""Zaraz Analytics Identities - zaraz.identify calls""" +type ZoneZarazAnalyticsIdentitiesAdaptiveGroups { + """ALPHA - DO NOT USE""" + confidence(level: float64!): ZoneZarazAnalyticsIdentitiesAdaptiveGroupsConfidence! + + """Number of processed Zaraz identify requests""" + count: uint64! + + """List of dimensions to group by""" + dimensions: ZoneZarazAnalyticsIdentitiesAdaptiveGroupsDimensions +} + +"""""" +type ZoneZarazAnalyticsIdentitiesAdaptiveGroupsConfidence { + """Number of processed Zaraz identify requests, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! +} + +"""""" +type ZoneZarazAnalyticsIdentitiesAdaptiveGroupsDimensions { + """Client ID""" + clientId: string! + + """Date when zaraz.identify() method was called""" + date: Date! + + """The date and time truncated to fifteen minutes""" + datetimeFifteenMinutes: Time! + + """The date and time truncated to five minutes""" + datetimeFiveMinutes: Time! + + """The date and time truncated to the hour""" + datetimeHour: Time! + + """The date and time truncated to the minute""" + datetimeMinute: Time! + + """Identity""" + identity: string! +} + +"""""" +input ZoneZarazAnalyticsIdentitiesAdaptiveGroupsFilter_InputObject { + """""" + AND: [ZoneZarazAnalyticsIdentitiesAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [ZoneZarazAnalyticsIdentitiesAdaptiveGroupsFilter_InputObject!] + + """""" + clientId: string + + """""" + clientId_geq: string + + """""" + clientId_gt: string + + """""" + clientId_in: [string!] + + """""" + clientId_leq: string + + """""" + clientId_like: string + + """""" + clientId_lt: string + + """""" + clientId_neq: string + + """""" + clientId_notin: [string!] + + """""" + clientId_notlike: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + identity: string + + """""" + identity_geq: string + + """""" + identity_gt: string + + """""" + identity_in: [string!] + + """""" + identity_leq: string + + """""" + identity_like: string + + """""" + identity_lt: string + + """""" + identity_neq: string + + """""" + identity_notin: [string!] + + """""" + identity_notlike: string +} + +"""""" +enum ZoneZarazAnalyticsIdentitiesAdaptiveGroupsOrderBy { + """clientId ascending""" + clientId_ASC + + """clientId descending""" + clientId_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """identity ascending""" + identity_ASC + + """identity descending""" + identity_DESC +} + +"""Zaraz Analytics Tracks ordered per session""" +type ZoneZarazAnalyticsOrderedTrackAdaptive { + """User Agent browser name""" + browserName: string! + + """City, region""" + cityRegion: string! + + """Client ID""" + clientId: string! + + """Color depth""" + colors: uint32! + + """Country""" + country: string! + + """Date when track was called""" + date: Date! + + """Date & time when track was called""" + datetime: Time! + + """The date and time truncated to fifteen minutes""" + datetimeFifteenMinutes: Time! + + """The date and time truncated to five minutes""" + datetimeFiveMinutes: Time! + + """The date and time truncated to the hour""" + datetimeHour: Time! + + """The date and time truncated to the minute""" + datetimeMinute: Time! + + """User Agent device model""" + deviceModel: string! + + """User Agent device type""" + deviceType: string! + + """User Agent device vendor""" + deviceVendor: string! + + """IP""" + ip: string! + + """Language""" + language: string! + + """Track's order number for its clientId""" + orderInClient: uint64! + + """ + Track's order number within its session (first track having orderInSession 1) + """ + orderInSession: uint64! + + """User Agent OS name""" + osName: string! + + """User Agent OS version""" + osVersion: string! + + """Page Title""" + pageTitle: string! + + """Screen resolution, cantor paired width & heigh""" + resolution: uint64! + + """Track's reverse order number for its clientId""" + reverseOrderInClient: uint64! + + """ + Track's reverse order number within its session (last track having reverseOrderInSession 1) + """ + reverseOrderInSession: uint64! + + """ABR sample interval""" + sampleInterval: uint32! + + """Session ID""" + sessionId: string! + + """Timezone Offset""" + timezoneOffset: int32! + + """Track Data""" + trackData: string! + + """Track Name""" + trackName: string! + + """Traffic Source""" + trafficSrc: string! + + """User Agent string""" + ua: string! + + """User Agent stringified object""" + uaObj: string! + + """URL query parameters""" + urlParams: string! + + """URL Path""" + urlPath: string! + + """Viewport, cantor paired width & heigh""" + viewport: uint64! +} + +"""""" +input ZoneZarazAnalyticsOrderedTrackAdaptiveFilter_InputObject { + """""" + AND: [ZoneZarazAnalyticsOrderedTrackAdaptiveFilter_InputObject!] + + """""" + OR: [ZoneZarazAnalyticsOrderedTrackAdaptiveFilter_InputObject!] + + """""" + browserName: string + + """""" + browserName_geq: string + + """""" + browserName_gt: string + + """""" + browserName_in: [string!] + + """""" + browserName_leq: string + + """""" + browserName_like: string + + """""" + browserName_lt: string + + """""" + browserName_neq: string + + """""" + browserName_notin: [string!] + + """""" + browserName_notlike: string + + """""" + cityRegion: string + + """""" + cityRegion_geq: string + + """""" + cityRegion_gt: string + + """""" + cityRegion_in: [string!] + + """""" + cityRegion_leq: string + + """""" + cityRegion_like: string + + """""" + cityRegion_lt: string + + """""" + cityRegion_neq: string + + """""" + cityRegion_notin: [string!] + + """""" + cityRegion_notlike: string + + """""" + clientId: string + + """""" + clientId_geq: string + + """""" + clientId_gt: string + + """""" + clientId_in: [string!] + + """""" + clientId_leq: string + + """""" + clientId_like: string + + """""" + clientId_lt: string + + """""" + clientId_neq: string + + """""" + clientId_notin: [string!] + + """""" + clientId_notlike: string + + """""" + colors: uint32 + + """""" + colors_geq: uint32 + + """""" + colors_gt: uint32 + + """""" + colors_in: [uint32!] + + """""" + colors_leq: uint32 + + """""" + colors_lt: uint32 + + """""" + colors_neq: uint32 + + """""" + colors_notin: [uint32!] + + """""" + country: string + + """""" + country_geq: string + + """""" + country_gt: string + + """""" + country_in: [string!] + + """""" + country_leq: string + + """""" + country_like: string + + """""" + country_lt: string + + """""" + country_neq: string + + """""" + country_notin: [string!] + + """""" + country_notlike: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetime: Time + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + datetime_geq: Time + + """""" + datetime_gt: Time + + """""" + datetime_in: [Time!] + + """""" + datetime_leq: Time + + """""" + datetime_lt: Time + + """""" + datetime_neq: Time + + """""" + datetime_notin: [Time!] + + """""" + deviceModel: string + + """""" + deviceModel_geq: string + + """""" + deviceModel_gt: string + + """""" + deviceModel_in: [string!] + + """""" + deviceModel_leq: string + + """""" + deviceModel_like: string + + """""" + deviceModel_lt: string + + """""" + deviceModel_neq: string + + """""" + deviceModel_notin: [string!] + + """""" + deviceModel_notlike: string + + """""" + deviceType: string + + """""" + deviceType_geq: string + + """""" + deviceType_gt: string + + """""" + deviceType_in: [string!] + + """""" + deviceType_leq: string + + """""" + deviceType_like: string + + """""" + deviceType_lt: string + + """""" + deviceType_neq: string + + """""" + deviceType_notin: [string!] + + """""" + deviceType_notlike: string + + """""" + deviceVendor: string + + """""" + deviceVendor_geq: string + + """""" + deviceVendor_gt: string + + """""" + deviceVendor_in: [string!] + + """""" + deviceVendor_leq: string + + """""" + deviceVendor_like: string + + """""" + deviceVendor_lt: string + + """""" + deviceVendor_neq: string + + """""" + deviceVendor_notin: [string!] + + """""" + deviceVendor_notlike: string + + """""" + ip: string + + """""" + ip_geq: string + + """""" + ip_gt: string + + """""" + ip_in: [string!] + + """""" + ip_leq: string + + """""" + ip_like: string + + """""" + ip_lt: string + + """""" + ip_neq: string + + """""" + ip_notin: [string!] + + """""" + ip_notlike: string + + """""" + language: string + + """""" + language_geq: string + + """""" + language_gt: string + + """""" + language_in: [string!] + + """""" + language_leq: string + + """""" + language_like: string + + """""" + language_lt: string + + """""" + language_neq: string + + """""" + language_notin: [string!] + + """""" + language_notlike: string + + """""" + orderInClient: uint64 + + """""" + orderInClient_geq: uint64 + + """""" + orderInClient_gt: uint64 + + """""" + orderInClient_in: [uint64!] + + """""" + orderInClient_leq: uint64 + + """""" + orderInClient_lt: uint64 + + """""" + orderInClient_neq: uint64 + + """""" + orderInClient_notin: [uint64!] + + """""" + orderInSession: uint64 + + """""" + orderInSession_geq: uint64 + + """""" + orderInSession_gt: uint64 + + """""" + orderInSession_in: [uint64!] + + """""" + orderInSession_leq: uint64 + + """""" + orderInSession_lt: uint64 + + """""" + orderInSession_neq: uint64 + + """""" + orderInSession_notin: [uint64!] + + """""" + osName: string + + """""" + osName_geq: string + + """""" + osName_gt: string + + """""" + osName_in: [string!] + + """""" + osName_leq: string + + """""" + osName_like: string + + """""" + osName_lt: string + + """""" + osName_neq: string + + """""" + osName_notin: [string!] + + """""" + osName_notlike: string + + """""" + osVersion: string + + """""" + osVersion_geq: string + + """""" + osVersion_gt: string + + """""" + osVersion_in: [string!] + + """""" + osVersion_leq: string + + """""" + osVersion_like: string + + """""" + osVersion_lt: string + + """""" + osVersion_neq: string + + """""" + osVersion_notin: [string!] + + """""" + osVersion_notlike: string + + """""" + pageTitle: string + + """""" + pageTitle_geq: string + + """""" + pageTitle_gt: string + + """""" + pageTitle_in: [string!] + + """""" + pageTitle_leq: string + + """""" + pageTitle_like: string + + """""" + pageTitle_lt: string + + """""" + pageTitle_neq: string + + """""" + pageTitle_notin: [string!] + + """""" + pageTitle_notlike: string + + """""" + resolution: uint64 + + """""" + resolution_geq: uint64 + + """""" + resolution_gt: uint64 + + """""" + resolution_in: [uint64!] + + """""" + resolution_leq: uint64 + + """""" + resolution_lt: uint64 + + """""" + resolution_neq: uint64 + + """""" + resolution_notin: [uint64!] + + """""" + reverseOrderInClient: uint64 + + """""" + reverseOrderInClient_geq: uint64 + + """""" + reverseOrderInClient_gt: uint64 + + """""" + reverseOrderInClient_in: [uint64!] + + """""" + reverseOrderInClient_leq: uint64 + + """""" + reverseOrderInClient_lt: uint64 + + """""" + reverseOrderInClient_neq: uint64 + + """""" + reverseOrderInClient_notin: [uint64!] + + """""" + reverseOrderInSession: uint64 + + """""" + reverseOrderInSession_geq: uint64 + + """""" + reverseOrderInSession_gt: uint64 + + """""" + reverseOrderInSession_in: [uint64!] + + """""" + reverseOrderInSession_leq: uint64 + + """""" + reverseOrderInSession_lt: uint64 + + """""" + reverseOrderInSession_neq: uint64 + + """""" + reverseOrderInSession_notin: [uint64!] + + """""" + sampleInterval: uint32 + + """""" + sampleInterval_geq: uint32 + + """""" + sampleInterval_gt: uint32 + + """""" + sampleInterval_in: [uint32!] + + """""" + sampleInterval_leq: uint32 + + """""" + sampleInterval_lt: uint32 + + """""" + sampleInterval_neq: uint32 + + """""" + sampleInterval_notin: [uint32!] + + """""" + sessionId: string + + """""" + sessionId_geq: string + + """""" + sessionId_gt: string + + """""" + sessionId_in: [string!] + + """""" + sessionId_leq: string + + """""" + sessionId_like: string + + """""" + sessionId_lt: string + + """""" + sessionId_neq: string + + """""" + sessionId_notin: [string!] + + """""" + sessionId_notlike: string + + """""" + timezoneOffset: int32 + + """""" + timezoneOffset_geq: int32 + + """""" + timezoneOffset_gt: int32 + + """""" + timezoneOffset_in: [int32!] + + """""" + timezoneOffset_leq: int32 + + """""" + timezoneOffset_lt: int32 + + """""" + timezoneOffset_neq: int32 + + """""" + timezoneOffset_notin: [int32!] + + """""" + trackData: string + + """""" + trackData_geq: string + + """""" + trackData_gt: string + + """""" + trackData_in: [string!] + + """""" + trackData_leq: string + + """""" + trackData_like: string + + """""" + trackData_lt: string + + """""" + trackData_neq: string + + """""" + trackData_notin: [string!] + + """""" + trackData_notlike: string + + """""" + trackName: string + + """""" + trackName_geq: string + + """""" + trackName_gt: string + + """""" + trackName_in: [string!] + + """""" + trackName_leq: string + + """""" + trackName_like: string + + """""" + trackName_lt: string + + """""" + trackName_neq: string + + """""" + trackName_notin: [string!] + + """""" + trackName_notlike: string + + """""" + trafficSrc: string + + """""" + trafficSrc_geq: string + + """""" + trafficSrc_gt: string + + """""" + trafficSrc_in: [string!] + + """""" + trafficSrc_leq: string + + """""" + trafficSrc_like: string + + """""" + trafficSrc_lt: string + + """""" + trafficSrc_neq: string + + """""" + trafficSrc_notin: [string!] + + """""" + trafficSrc_notlike: string + + """""" + ua: string + + """""" + uaObj: string + + """""" + uaObj_geq: string + + """""" + uaObj_gt: string + + """""" + uaObj_in: [string!] + + """""" + uaObj_leq: string + + """""" + uaObj_like: string + + """""" + uaObj_lt: string + + """""" + uaObj_neq: string + + """""" + uaObj_notin: [string!] + + """""" + uaObj_notlike: string + + """""" + ua_geq: string + + """""" + ua_gt: string + + """""" + ua_in: [string!] + + """""" + ua_leq: string + + """""" + ua_like: string + + """""" + ua_lt: string + + """""" + ua_neq: string + + """""" + ua_notin: [string!] + + """""" + ua_notlike: string + + """""" + urlParams: string + + """""" + urlParams_geq: string + + """""" + urlParams_gt: string + + """""" + urlParams_in: [string!] + + """""" + urlParams_leq: string + + """""" + urlParams_like: string + + """""" + urlParams_lt: string + + """""" + urlParams_neq: string + + """""" + urlParams_notin: [string!] + + """""" + urlParams_notlike: string + + """""" + urlPath: string + + """""" + urlPath_geq: string + + """""" + urlPath_gt: string + + """""" + urlPath_in: [string!] + + """""" + urlPath_leq: string + + """""" + urlPath_like: string + + """""" + urlPath_lt: string + + """""" + urlPath_neq: string + + """""" + urlPath_notin: [string!] + + """""" + urlPath_notlike: string + + """""" + viewport: uint64 + + """""" + viewport_geq: uint64 + + """""" + viewport_gt: uint64 + + """""" + viewport_in: [uint64!] + + """""" + viewport_leq: uint64 + + """""" + viewport_lt: uint64 + + """""" + viewport_neq: uint64 + + """""" + viewport_notin: [uint64!] +} + +"""Zaraz Analytics Tracks ordered per session""" +type ZoneZarazAnalyticsOrderedTrackAdaptiveGroups { + """ALPHA - DO NOT USE""" + confidence(level: float64!): ZoneZarazAnalyticsOrderedTrackAdaptiveGroupsConfidence! + + """Number of processed Zaraz Track requests""" + count: uint64! + + """List of dimensions to group by""" + dimensions: ZoneZarazAnalyticsOrderedTrackAdaptiveGroupsDimensions + + """""" + uniq: ZoneZarazAnalyticsOrderedTrackAdaptiveGroupsUniq +} + +"""""" +type ZoneZarazAnalyticsOrderedTrackAdaptiveGroupsConfidence { + """Number of processed Zaraz Track requests, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! +} + +"""""" +type ZoneZarazAnalyticsOrderedTrackAdaptiveGroupsDimensions { + """User Agent browser name""" + browserName: string! + + """City, region""" + cityRegion: string! + + """Client ID""" + clientId: string! + + """Color depth""" + colors: uint32! + + """Country""" + country: string! + + """Date when track was called""" + date: Date! + + """The date and time truncated to fifteen minutes""" + datetimeFifteenMinutes: Time! + + """The date and time truncated to five minutes""" + datetimeFiveMinutes: Time! + + """The date and time truncated to the hour""" + datetimeHour: Time! + + """The date and time truncated to the minute""" + datetimeMinute: Time! + + """User Agent device model""" + deviceModel: string! + + """User Agent device type""" + deviceType: string! + + """User Agent device vendor""" + deviceVendor: string! + + """IP""" + ip: string! + + """Language""" + language: string! + + """Track's order number for its clientId""" + orderInClient: uint64! + + """ + Track's order number within its session (first track having orderInSession 1) + """ + orderInSession: uint64! + + """User Agent OS name""" + osName: string! + + """User Agent OS version""" + osVersion: string! + + """Page Title""" + pageTitle: string! + + """Screen resolution, cantor paired width & heigh""" + resolution: uint64! + + """Track's reverse order number for its clientId""" + reverseOrderInClient: uint64! + + """ + Track's reverse order number within its session (last track having reverseOrderInSession 1) + """ + reverseOrderInSession: uint64! + + """Session ID""" + sessionId: string! + + """Timezone Offset""" + timezoneOffset: int32! + + """Track Data""" + trackData: string! + + """Track Name""" + trackName: string! + + """Traffic Source""" + trafficSrc: string! + + """User Agent string""" + ua: string! + + """User Agent stringified object""" + uaObj: string! + + """URL query parameters""" + urlParams: string! + + """URL Path""" + urlPath: string! + + """Viewport, cantor paired width & heigh""" + viewport: uint64! +} + +"""""" +input ZoneZarazAnalyticsOrderedTrackAdaptiveGroupsFilter_InputObject { + """""" + AND: [ZoneZarazAnalyticsOrderedTrackAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [ZoneZarazAnalyticsOrderedTrackAdaptiveGroupsFilter_InputObject!] + + """""" + browserName: string + + """""" + browserName_geq: string + + """""" + browserName_gt: string + + """""" + browserName_in: [string!] + + """""" + browserName_leq: string + + """""" + browserName_like: string + + """""" + browserName_lt: string + + """""" + browserName_neq: string + + """""" + browserName_notin: [string!] + + """""" + browserName_notlike: string + + """""" + cityRegion: string + + """""" + cityRegion_geq: string + + """""" + cityRegion_gt: string + + """""" + cityRegion_in: [string!] + + """""" + cityRegion_leq: string + + """""" + cityRegion_like: string + + """""" + cityRegion_lt: string + + """""" + cityRegion_neq: string + + """""" + cityRegion_notin: [string!] + + """""" + cityRegion_notlike: string + + """""" + clientId: string + + """""" + clientId_geq: string + + """""" + clientId_gt: string + + """""" + clientId_in: [string!] + + """""" + clientId_leq: string + + """""" + clientId_like: string + + """""" + clientId_lt: string + + """""" + clientId_neq: string + + """""" + clientId_notin: [string!] + + """""" + clientId_notlike: string + + """""" + colors: uint32 + + """""" + colors_geq: uint32 + + """""" + colors_gt: uint32 + + """""" + colors_in: [uint32!] + + """""" + colors_leq: uint32 + + """""" + colors_lt: uint32 + + """""" + colors_neq: uint32 + + """""" + colors_notin: [uint32!] + + """""" + country: string + + """""" + country_geq: string + + """""" + country_gt: string + + """""" + country_in: [string!] + + """""" + country_leq: string + + """""" + country_like: string + + """""" + country_lt: string + + """""" + country_neq: string + + """""" + country_notin: [string!] + + """""" + country_notlike: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + deviceModel: string + + """""" + deviceModel_geq: string + + """""" + deviceModel_gt: string + + """""" + deviceModel_in: [string!] + + """""" + deviceModel_leq: string + + """""" + deviceModel_like: string + + """""" + deviceModel_lt: string + + """""" + deviceModel_neq: string + + """""" + deviceModel_notin: [string!] + + """""" + deviceModel_notlike: string + + """""" + deviceType: string + + """""" + deviceType_geq: string + + """""" + deviceType_gt: string + + """""" + deviceType_in: [string!] + + """""" + deviceType_leq: string + + """""" + deviceType_like: string + + """""" + deviceType_lt: string + + """""" + deviceType_neq: string + + """""" + deviceType_notin: [string!] + + """""" + deviceType_notlike: string + + """""" + deviceVendor: string + + """""" + deviceVendor_geq: string + + """""" + deviceVendor_gt: string + + """""" + deviceVendor_in: [string!] + + """""" + deviceVendor_leq: string + + """""" + deviceVendor_like: string + + """""" + deviceVendor_lt: string + + """""" + deviceVendor_neq: string + + """""" + deviceVendor_notin: [string!] + + """""" + deviceVendor_notlike: string + + """""" + ip: string + + """""" + ip_geq: string + + """""" + ip_gt: string + + """""" + ip_in: [string!] + + """""" + ip_leq: string + + """""" + ip_like: string + + """""" + ip_lt: string + + """""" + ip_neq: string + + """""" + ip_notin: [string!] + + """""" + ip_notlike: string + + """""" + language: string + + """""" + language_geq: string + + """""" + language_gt: string + + """""" + language_in: [string!] + + """""" + language_leq: string + + """""" + language_like: string + + """""" + language_lt: string + + """""" + language_neq: string + + """""" + language_notin: [string!] + + """""" + language_notlike: string + + """""" + orderInClient: uint64 + + """""" + orderInClient_geq: uint64 + + """""" + orderInClient_gt: uint64 + + """""" + orderInClient_in: [uint64!] + + """""" + orderInClient_leq: uint64 + + """""" + orderInClient_lt: uint64 + + """""" + orderInClient_neq: uint64 + + """""" + orderInClient_notin: [uint64!] + + """""" + orderInSession: uint64 + + """""" + orderInSession_geq: uint64 + + """""" + orderInSession_gt: uint64 + + """""" + orderInSession_in: [uint64!] + + """""" + orderInSession_leq: uint64 + + """""" + orderInSession_lt: uint64 + + """""" + orderInSession_neq: uint64 + + """""" + orderInSession_notin: [uint64!] + + """""" + osName: string + + """""" + osName_geq: string + + """""" + osName_gt: string + + """""" + osName_in: [string!] + + """""" + osName_leq: string + + """""" + osName_like: string + + """""" + osName_lt: string + + """""" + osName_neq: string + + """""" + osName_notin: [string!] + + """""" + osName_notlike: string + + """""" + osVersion: string + + """""" + osVersion_geq: string + + """""" + osVersion_gt: string + + """""" + osVersion_in: [string!] + + """""" + osVersion_leq: string + + """""" + osVersion_like: string + + """""" + osVersion_lt: string + + """""" + osVersion_neq: string + + """""" + osVersion_notin: [string!] + + """""" + osVersion_notlike: string + + """""" + pageTitle: string + + """""" + pageTitle_geq: string + + """""" + pageTitle_gt: string + + """""" + pageTitle_in: [string!] + + """""" + pageTitle_leq: string + + """""" + pageTitle_like: string + + """""" + pageTitle_lt: string + + """""" + pageTitle_neq: string + + """""" + pageTitle_notin: [string!] + + """""" + pageTitle_notlike: string + + """""" + resolution: uint64 + + """""" + resolution_geq: uint64 + + """""" + resolution_gt: uint64 + + """""" + resolution_in: [uint64!] + + """""" + resolution_leq: uint64 + + """""" + resolution_lt: uint64 + + """""" + resolution_neq: uint64 + + """""" + resolution_notin: [uint64!] + + """""" + reverseOrderInClient: uint64 + + """""" + reverseOrderInClient_geq: uint64 + + """""" + reverseOrderInClient_gt: uint64 + + """""" + reverseOrderInClient_in: [uint64!] + + """""" + reverseOrderInClient_leq: uint64 + + """""" + reverseOrderInClient_lt: uint64 + + """""" + reverseOrderInClient_neq: uint64 + + """""" + reverseOrderInClient_notin: [uint64!] + + """""" + reverseOrderInSession: uint64 + + """""" + reverseOrderInSession_geq: uint64 + + """""" + reverseOrderInSession_gt: uint64 + + """""" + reverseOrderInSession_in: [uint64!] + + """""" + reverseOrderInSession_leq: uint64 + + """""" + reverseOrderInSession_lt: uint64 + + """""" + reverseOrderInSession_neq: uint64 + + """""" + reverseOrderInSession_notin: [uint64!] + + """""" + sessionId: string + + """""" + sessionId_geq: string + + """""" + sessionId_gt: string + + """""" + sessionId_in: [string!] + + """""" + sessionId_leq: string + + """""" + sessionId_like: string + + """""" + sessionId_lt: string + + """""" + sessionId_neq: string + + """""" + sessionId_notin: [string!] + + """""" + sessionId_notlike: string + + """""" + timezoneOffset: int32 + + """""" + timezoneOffset_geq: int32 + + """""" + timezoneOffset_gt: int32 + + """""" + timezoneOffset_in: [int32!] + + """""" + timezoneOffset_leq: int32 + + """""" + timezoneOffset_lt: int32 + + """""" + timezoneOffset_neq: int32 + + """""" + timezoneOffset_notin: [int32!] + + """""" + trackData: string + + """""" + trackData_geq: string + + """""" + trackData_gt: string + + """""" + trackData_in: [string!] + + """""" + trackData_leq: string + + """""" + trackData_like: string + + """""" + trackData_lt: string + + """""" + trackData_neq: string + + """""" + trackData_notin: [string!] + + """""" + trackData_notlike: string + + """""" + trackName: string + + """""" + trackName_geq: string + + """""" + trackName_gt: string + + """""" + trackName_in: [string!] + + """""" + trackName_leq: string + + """""" + trackName_like: string + + """""" + trackName_lt: string + + """""" + trackName_neq: string + + """""" + trackName_notin: [string!] + + """""" + trackName_notlike: string + + """""" + trafficSrc: string + + """""" + trafficSrc_geq: string + + """""" + trafficSrc_gt: string + + """""" + trafficSrc_in: [string!] + + """""" + trafficSrc_leq: string + + """""" + trafficSrc_like: string + + """""" + trafficSrc_lt: string + + """""" + trafficSrc_neq: string + + """""" + trafficSrc_notin: [string!] + + """""" + trafficSrc_notlike: string + + """""" + ua: string + + """""" + uaObj: string + + """""" + uaObj_geq: string + + """""" + uaObj_gt: string + + """""" + uaObj_in: [string!] + + """""" + uaObj_leq: string + + """""" + uaObj_like: string + + """""" + uaObj_lt: string + + """""" + uaObj_neq: string + + """""" + uaObj_notin: [string!] + + """""" + uaObj_notlike: string + + """""" + ua_geq: string + + """""" + ua_gt: string + + """""" + ua_in: [string!] + + """""" + ua_leq: string + + """""" + ua_like: string + + """""" + ua_lt: string + + """""" + ua_neq: string + + """""" + ua_notin: [string!] + + """""" + ua_notlike: string + + """""" + urlParams: string + + """""" + urlParams_geq: string + + """""" + urlParams_gt: string + + """""" + urlParams_in: [string!] + + """""" + urlParams_leq: string + + """""" + urlParams_like: string + + """""" + urlParams_lt: string + + """""" + urlParams_neq: string + + """""" + urlParams_notin: [string!] + + """""" + urlParams_notlike: string + + """""" + urlPath: string + + """""" + urlPath_geq: string + + """""" + urlPath_gt: string + + """""" + urlPath_in: [string!] + + """""" + urlPath_leq: string + + """""" + urlPath_like: string + + """""" + urlPath_lt: string + + """""" + urlPath_neq: string + + """""" + urlPath_notin: [string!] + + """""" + urlPath_notlike: string + + """""" + viewport: uint64 + + """""" + viewport_geq: uint64 + + """""" + viewport_gt: uint64 + + """""" + viewport_in: [uint64!] + + """""" + viewport_leq: uint64 + + """""" + viewport_lt: uint64 + + """""" + viewport_neq: uint64 + + """""" + viewport_notin: [uint64!] +} + +"""""" +enum ZoneZarazAnalyticsOrderedTrackAdaptiveGroupsOrderBy { + """browserName ascending""" + browserName_ASC + + """browserName descending""" + browserName_DESC + + """cityRegion ascending""" + cityRegion_ASC + + """cityRegion descending""" + cityRegion_DESC + + """clientId ascending""" + clientId_ASC + + """clientId descending""" + clientId_DESC + + """colors ascending""" + colors_ASC + + """colors descending""" + colors_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """country ascending""" + country_ASC + + """country descending""" + country_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """deviceModel ascending""" + deviceModel_ASC + + """deviceModel descending""" + deviceModel_DESC + + """deviceType ascending""" + deviceType_ASC + + """deviceType descending""" + deviceType_DESC + + """deviceVendor ascending""" + deviceVendor_ASC + + """deviceVendor descending""" + deviceVendor_DESC + + """ip ascending""" + ip_ASC + + """ip descending""" + ip_DESC + + """language ascending""" + language_ASC + + """language descending""" + language_DESC + + """orderInClient ascending""" + orderInClient_ASC + + """orderInClient descending""" + orderInClient_DESC + + """orderInSession ascending""" + orderInSession_ASC + + """orderInSession descending""" + orderInSession_DESC + + """osName ascending""" + osName_ASC + + """osName descending""" + osName_DESC + + """osVersion ascending""" + osVersion_ASC + + """osVersion descending""" + osVersion_DESC + + """pageTitle ascending""" + pageTitle_ASC + + """pageTitle descending""" + pageTitle_DESC + + """resolution ascending""" + resolution_ASC + + """resolution descending""" + resolution_DESC + + """reverseOrderInClient ascending""" + reverseOrderInClient_ASC + + """reverseOrderInClient descending""" + reverseOrderInClient_DESC + + """reverseOrderInSession ascending""" + reverseOrderInSession_ASC + + """reverseOrderInSession descending""" + reverseOrderInSession_DESC + + """sessionId ascending""" + sessionId_ASC + + """sessionId descending""" + sessionId_DESC + + """timezoneOffset ascending""" + timezoneOffset_ASC + + """timezoneOffset descending""" + timezoneOffset_DESC + + """trackData ascending""" + trackData_ASC + + """trackData descending""" + trackData_DESC + + """trackName ascending""" + trackName_ASC + + """trackName descending""" + trackName_DESC + + """trafficSrc ascending""" + trafficSrc_ASC + + """trafficSrc descending""" + trafficSrc_DESC + + """uaObj ascending""" + uaObj_ASC + + """uaObj descending""" + uaObj_DESC + + """ua ascending""" + ua_ASC + + """ua descending""" + ua_DESC + + """uniq(clientIdCount) ascending""" + uniq_clientIdCount_ASC + + """uniq(clientIdCount) descending""" + uniq_clientIdCount_DESC + + """uniq(sessionIdCount) ascending""" + uniq_sessionIdCount_ASC + + """uniq(sessionIdCount) descending""" + uniq_sessionIdCount_DESC + + """urlParams ascending""" + urlParams_ASC + + """urlParams descending""" + urlParams_DESC + + """urlPath ascending""" + urlPath_ASC + + """urlPath descending""" + urlPath_DESC + + """viewport ascending""" + viewport_ASC + + """viewport descending""" + viewport_DESC +} + +"""""" +type ZoneZarazAnalyticsOrderedTrackAdaptiveGroupsUniq { + """Minimum number of distinct client IDs""" + clientIdCount: uint64! + + """Minimum number of distinct session IDs""" + sessionIdCount: uint64! +} + +"""""" +enum ZoneZarazAnalyticsOrderedTrackAdaptiveOrderBy { + """browserName ascending""" + browserName_ASC + + """browserName descending""" + browserName_DESC + + """cityRegion ascending""" + cityRegion_ASC + + """cityRegion descending""" + cityRegion_DESC + + """clientId ascending""" + clientId_ASC + + """clientId descending""" + clientId_DESC + + """colors ascending""" + colors_ASC + + """colors descending""" + colors_DESC + + """country ascending""" + country_ASC + + """country descending""" + country_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """datetime ascending""" + datetime_ASC + + """datetime descending""" + datetime_DESC + + """deviceModel ascending""" + deviceModel_ASC + + """deviceModel descending""" + deviceModel_DESC + + """deviceType ascending""" + deviceType_ASC + + """deviceType descending""" + deviceType_DESC + + """deviceVendor ascending""" + deviceVendor_ASC + + """deviceVendor descending""" + deviceVendor_DESC + + """ip ascending""" + ip_ASC + + """ip descending""" + ip_DESC + + """language ascending""" + language_ASC + + """language descending""" + language_DESC + + """orderInClient ascending""" + orderInClient_ASC + + """orderInClient descending""" + orderInClient_DESC + + """orderInSession ascending""" + orderInSession_ASC + + """orderInSession descending""" + orderInSession_DESC + + """osName ascending""" + osName_ASC + + """osName descending""" + osName_DESC + + """osVersion ascending""" + osVersion_ASC + + """osVersion descending""" + osVersion_DESC + + """pageTitle ascending""" + pageTitle_ASC + + """pageTitle descending""" + pageTitle_DESC + + """resolution ascending""" + resolution_ASC + + """resolution descending""" + resolution_DESC + + """reverseOrderInClient ascending""" + reverseOrderInClient_ASC + + """reverseOrderInClient descending""" + reverseOrderInClient_DESC + + """reverseOrderInSession ascending""" + reverseOrderInSession_ASC + + """reverseOrderInSession descending""" + reverseOrderInSession_DESC + + """sampleInterval ascending""" + sampleInterval_ASC + + """sampleInterval descending""" + sampleInterval_DESC + + """sessionId ascending""" + sessionId_ASC + + """sessionId descending""" + sessionId_DESC + + """timezoneOffset ascending""" + timezoneOffset_ASC + + """timezoneOffset descending""" + timezoneOffset_DESC + + """trackData ascending""" + trackData_ASC + + """trackData descending""" + trackData_DESC + + """trackName ascending""" + trackName_ASC + + """trackName descending""" + trackName_DESC + + """trafficSrc ascending""" + trafficSrc_ASC + + """trafficSrc descending""" + trafficSrc_DESC + + """uaObj ascending""" + uaObj_ASC + + """uaObj descending""" + uaObj_DESC + + """ua ascending""" + ua_ASC + + """ua descending""" + ua_DESC + + """urlParams ascending""" + urlParams_ASC + + """urlParams descending""" + urlParams_DESC + + """urlPath ascending""" + urlPath_ASC + + """urlPath descending""" + urlPath_DESC + + """viewport ascending""" + viewport_ASC + + """viewport descending""" + viewport_DESC +} + +"""Zaraz Analytics Track - counts zaraz.track calls""" +type ZoneZarazAnalyticsTrackAdaptiveGroups { + """ALPHA - DO NOT USE""" + confidence(level: float64!): ZoneZarazAnalyticsTrackAdaptiveGroupsConfidence! + + """Number of processed Zaraz Track requests""" + count: uint64! + + """List of dimensions to group by""" + dimensions: ZoneZarazAnalyticsTrackAdaptiveGroupsDimensions + + """""" + uniq: ZoneZarazAnalyticsTrackAdaptiveGroupsUniq +} + +"""""" +type ZoneZarazAnalyticsTrackAdaptiveGroupsConfidence { + """Number of processed Zaraz Track requests, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! +} + +"""""" +type ZoneZarazAnalyticsTrackAdaptiveGroupsDimensions { + """User Agent browser name""" + browserName: string! + + """City, region""" + cityRegion: string! + + """Client ID""" + clientId: string! + + """Color depth""" + colors: uint32! + + """Country""" + country: string! + + """Date when track was called""" + date: Date! + + """The date and time truncated to fifteen minutes""" + datetimeFifteenMinutes: Time! + + """The date and time truncated to five minutes""" + datetimeFiveMinutes: Time! + + """The date and time truncated to the hour""" + datetimeHour: Time! + + """The date and time truncated to the minute""" + datetimeMinute: Time! + + """User Agent device model""" + deviceModel: string! + + """User Agent device type""" + deviceType: string! + + """User Agent device vendor""" + deviceVendor: string! + + """IP""" + ip: string! + + """Language""" + language: string! + + """User Agent OS name""" + osName: string! + + """User Agent OS version""" + osVersion: string! + + """Page Title""" + pageTitle: string! + + """Screen resolution, cantor paired width & heigh""" + resolution: uint64! + + """Session ID""" + sessionId: string! + + """Timezone Offset""" + timezoneOffset: int32! + + """Track Data""" + trackData: string! + + """Track Name""" + trackName: string! + + """Traffic Source""" + trafficSrc: string! + + """User Agent string""" + ua: string! + + """User Agent stringified object""" + uaObj: string! + + """URL query parameters""" + urlParams: string! + + """URL Path""" + urlPath: string! + + """Viewport, cantor paired width & heigh""" + viewport: uint64! +} + +"""""" +input ZoneZarazAnalyticsTrackAdaptiveGroupsFilter_InputObject { + """""" + AND: [ZoneZarazAnalyticsTrackAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [ZoneZarazAnalyticsTrackAdaptiveGroupsFilter_InputObject!] + + """""" + browserName: string + + """""" + browserName_geq: string + + """""" + browserName_gt: string + + """""" + browserName_in: [string!] + + """""" + browserName_leq: string + + """""" + browserName_like: string + + """""" + browserName_lt: string + + """""" + browserName_neq: string + + """""" + browserName_notin: [string!] + + """""" + browserName_notlike: string + + """""" + cityRegion: string + + """""" + cityRegion_geq: string + + """""" + cityRegion_gt: string + + """""" + cityRegion_in: [string!] + + """""" + cityRegion_leq: string + + """""" + cityRegion_like: string + + """""" + cityRegion_lt: string + + """""" + cityRegion_neq: string + + """""" + cityRegion_notin: [string!] + + """""" + cityRegion_notlike: string + + """""" + clientId: string + + """""" + clientId_geq: string + + """""" + clientId_gt: string + + """""" + clientId_in: [string!] + + """""" + clientId_leq: string + + """""" + clientId_like: string + + """""" + clientId_lt: string + + """""" + clientId_neq: string + + """""" + clientId_notin: [string!] + + """""" + clientId_notlike: string + + """""" + colors: uint32 + + """""" + colors_geq: uint32 + + """""" + colors_gt: uint32 + + """""" + colors_in: [uint32!] + + """""" + colors_leq: uint32 + + """""" + colors_lt: uint32 + + """""" + colors_neq: uint32 + + """""" + colors_notin: [uint32!] + + """""" + country: string + + """""" + country_geq: string + + """""" + country_gt: string + + """""" + country_in: [string!] + + """""" + country_leq: string + + """""" + country_like: string + + """""" + country_lt: string + + """""" + country_neq: string + + """""" + country_notin: [string!] + + """""" + country_notlike: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + deviceModel: string + + """""" + deviceModel_geq: string + + """""" + deviceModel_gt: string + + """""" + deviceModel_in: [string!] + + """""" + deviceModel_leq: string + + """""" + deviceModel_like: string + + """""" + deviceModel_lt: string + + """""" + deviceModel_neq: string + + """""" + deviceModel_notin: [string!] + + """""" + deviceModel_notlike: string + + """""" + deviceType: string + + """""" + deviceType_geq: string + + """""" + deviceType_gt: string + + """""" + deviceType_in: [string!] + + """""" + deviceType_leq: string + + """""" + deviceType_like: string + + """""" + deviceType_lt: string + + """""" + deviceType_neq: string + + """""" + deviceType_notin: [string!] + + """""" + deviceType_notlike: string + + """""" + deviceVendor: string + + """""" + deviceVendor_geq: string + + """""" + deviceVendor_gt: string + + """""" + deviceVendor_in: [string!] + + """""" + deviceVendor_leq: string + + """""" + deviceVendor_like: string + + """""" + deviceVendor_lt: string + + """""" + deviceVendor_neq: string + + """""" + deviceVendor_notin: [string!] + + """""" + deviceVendor_notlike: string + + """""" + ip: string + + """""" + ip_geq: string + + """""" + ip_gt: string + + """""" + ip_in: [string!] + + """""" + ip_leq: string + + """""" + ip_like: string + + """""" + ip_lt: string + + """""" + ip_neq: string + + """""" + ip_notin: [string!] + + """""" + ip_notlike: string + + """""" + language: string + + """""" + language_geq: string + + """""" + language_gt: string + + """""" + language_in: [string!] + + """""" + language_leq: string + + """""" + language_like: string + + """""" + language_lt: string + + """""" + language_neq: string + + """""" + language_notin: [string!] + + """""" + language_notlike: string + + """""" + osName: string + + """""" + osName_geq: string + + """""" + osName_gt: string + + """""" + osName_in: [string!] + + """""" + osName_leq: string + + """""" + osName_like: string + + """""" + osName_lt: string + + """""" + osName_neq: string + + """""" + osName_notin: [string!] + + """""" + osName_notlike: string + + """""" + osVersion: string + + """""" + osVersion_geq: string + + """""" + osVersion_gt: string + + """""" + osVersion_in: [string!] + + """""" + osVersion_leq: string + + """""" + osVersion_like: string + + """""" + osVersion_lt: string + + """""" + osVersion_neq: string + + """""" + osVersion_notin: [string!] + + """""" + osVersion_notlike: string + + """""" + pageTitle: string + + """""" + pageTitle_geq: string + + """""" + pageTitle_gt: string + + """""" + pageTitle_in: [string!] + + """""" + pageTitle_leq: string + + """""" + pageTitle_like: string + + """""" + pageTitle_lt: string + + """""" + pageTitle_neq: string + + """""" + pageTitle_notin: [string!] + + """""" + pageTitle_notlike: string + + """""" + resolution: uint64 + + """""" + resolution_geq: uint64 + + """""" + resolution_gt: uint64 + + """""" + resolution_in: [uint64!] + + """""" + resolution_leq: uint64 + + """""" + resolution_lt: uint64 + + """""" + resolution_neq: uint64 + + """""" + resolution_notin: [uint64!] + + """""" + sessionId: string + + """""" + sessionId_geq: string + + """""" + sessionId_gt: string + + """""" + sessionId_in: [string!] + + """""" + sessionId_leq: string + + """""" + sessionId_like: string + + """""" + sessionId_lt: string + + """""" + sessionId_neq: string + + """""" + sessionId_notin: [string!] + + """""" + sessionId_notlike: string + + """""" + timezoneOffset: int32 + + """""" + timezoneOffset_geq: int32 + + """""" + timezoneOffset_gt: int32 + + """""" + timezoneOffset_in: [int32!] + + """""" + timezoneOffset_leq: int32 + + """""" + timezoneOffset_lt: int32 + + """""" + timezoneOffset_neq: int32 + + """""" + timezoneOffset_notin: [int32!] + + """""" + trackData: string + + """""" + trackData_geq: string + + """""" + trackData_gt: string + + """""" + trackData_in: [string!] + + """""" + trackData_leq: string + + """""" + trackData_like: string + + """""" + trackData_lt: string + + """""" + trackData_neq: string + + """""" + trackData_notin: [string!] + + """""" + trackData_notlike: string + + """""" + trackName: string + + """""" + trackName_geq: string + + """""" + trackName_gt: string + + """""" + trackName_in: [string!] + + """""" + trackName_leq: string + + """""" + trackName_like: string + + """""" + trackName_lt: string + + """""" + trackName_neq: string + + """""" + trackName_notin: [string!] + + """""" + trackName_notlike: string + + """""" + trafficSrc: string + + """""" + trafficSrc_geq: string + + """""" + trafficSrc_gt: string + + """""" + trafficSrc_in: [string!] + + """""" + trafficSrc_leq: string + + """""" + trafficSrc_like: string + + """""" + trafficSrc_lt: string + + """""" + trafficSrc_neq: string + + """""" + trafficSrc_notin: [string!] + + """""" + trafficSrc_notlike: string + + """""" + ua: string + + """""" + uaObj: string + + """""" + uaObj_geq: string + + """""" + uaObj_gt: string + + """""" + uaObj_in: [string!] + + """""" + uaObj_leq: string + + """""" + uaObj_like: string + + """""" + uaObj_lt: string + + """""" + uaObj_neq: string + + """""" + uaObj_notin: [string!] + + """""" + uaObj_notlike: string + + """""" + ua_geq: string + + """""" + ua_gt: string + + """""" + ua_in: [string!] + + """""" + ua_leq: string + + """""" + ua_like: string + + """""" + ua_lt: string + + """""" + ua_neq: string + + """""" + ua_notin: [string!] + + """""" + ua_notlike: string + + """""" + urlParams: string + + """""" + urlParams_geq: string + + """""" + urlParams_gt: string + + """""" + urlParams_in: [string!] + + """""" + urlParams_leq: string + + """""" + urlParams_like: string + + """""" + urlParams_lt: string + + """""" + urlParams_neq: string + + """""" + urlParams_notin: [string!] + + """""" + urlParams_notlike: string + + """""" + urlPath: string + + """""" + urlPath_geq: string + + """""" + urlPath_gt: string + + """""" + urlPath_in: [string!] + + """""" + urlPath_leq: string + + """""" + urlPath_like: string + + """""" + urlPath_lt: string + + """""" + urlPath_neq: string + + """""" + urlPath_notin: [string!] + + """""" + urlPath_notlike: string + + """""" + viewport: uint64 + + """""" + viewport_geq: uint64 + + """""" + viewport_gt: uint64 + + """""" + viewport_in: [uint64!] + + """""" + viewport_leq: uint64 + + """""" + viewport_lt: uint64 + + """""" + viewport_neq: uint64 + + """""" + viewport_notin: [uint64!] +} + +"""""" +enum ZoneZarazAnalyticsTrackAdaptiveGroupsOrderBy { + """browserName ascending""" + browserName_ASC + + """browserName descending""" + browserName_DESC + + """cityRegion ascending""" + cityRegion_ASC + + """cityRegion descending""" + cityRegion_DESC + + """clientId ascending""" + clientId_ASC + + """clientId descending""" + clientId_DESC + + """colors ascending""" + colors_ASC + + """colors descending""" + colors_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """country ascending""" + country_ASC + + """country descending""" + country_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """deviceModel ascending""" + deviceModel_ASC + + """deviceModel descending""" + deviceModel_DESC + + """deviceType ascending""" + deviceType_ASC + + """deviceType descending""" + deviceType_DESC + + """deviceVendor ascending""" + deviceVendor_ASC + + """deviceVendor descending""" + deviceVendor_DESC + + """ip ascending""" + ip_ASC + + """ip descending""" + ip_DESC + + """language ascending""" + language_ASC + + """language descending""" + language_DESC + + """osName ascending""" + osName_ASC + + """osName descending""" + osName_DESC + + """osVersion ascending""" + osVersion_ASC + + """osVersion descending""" + osVersion_DESC + + """pageTitle ascending""" + pageTitle_ASC + + """pageTitle descending""" + pageTitle_DESC + + """resolution ascending""" + resolution_ASC + + """resolution descending""" + resolution_DESC + + """sessionId ascending""" + sessionId_ASC + + """sessionId descending""" + sessionId_DESC + + """timezoneOffset ascending""" + timezoneOffset_ASC + + """timezoneOffset descending""" + timezoneOffset_DESC + + """trackData ascending""" + trackData_ASC + + """trackData descending""" + trackData_DESC + + """trackName ascending""" + trackName_ASC + + """trackName descending""" + trackName_DESC + + """trafficSrc ascending""" + trafficSrc_ASC + + """trafficSrc descending""" + trafficSrc_DESC + + """uaObj ascending""" + uaObj_ASC + + """uaObj descending""" + uaObj_DESC + + """ua ascending""" + ua_ASC + + """ua descending""" + ua_DESC + + """uniq(clientIdCount) ascending""" + uniq_clientIdCount_ASC + + """uniq(clientIdCount) descending""" + uniq_clientIdCount_DESC + + """uniq(sessionIdCount) ascending""" + uniq_sessionIdCount_ASC + + """uniq(sessionIdCount) descending""" + uniq_sessionIdCount_DESC + + """urlParams ascending""" + urlParams_ASC + + """urlParams descending""" + urlParams_DESC + + """urlPath ascending""" + urlPath_ASC + + """urlPath descending""" + urlPath_DESC + + """viewport ascending""" + viewport_ASC + + """viewport descending""" + viewport_DESC +} + +"""""" +type ZoneZarazAnalyticsTrackAdaptiveGroupsUniq { + """Minimum number of distinct client IDs""" + clientIdCount: uint64! + + """Minimum number of distinct session IDs""" + sessionIdCount: uint64! +} + +"""Zaraz Analytics Track Traffic Sources""" +type ZoneZarazAnalyticsTrackTrafficSourcesAdaptiveGroups { + """""" + avg: ZoneZarazAnalyticsTrackTrafficSourcesAdaptiveGroupsAvg + + """ALPHA - DO NOT USE""" + confidence(level: float64!): ZoneZarazAnalyticsTrackTrafficSourcesAdaptiveGroupsConfidence! + + """Number of unique sessions""" + count: uint64! + + """List of dimensions to group by""" + dimensions: ZoneZarazAnalyticsTrackTrafficSourcesAdaptiveGroupsDimensions + + """""" + uniq: ZoneZarazAnalyticsTrackTrafficSourcesAdaptiveGroupsUniq +} + +"""""" +type ZoneZarazAnalyticsTrackTrafficSourcesAdaptiveGroupsAvg { + """Average session duration""" + sessionDuration: float64! +} + +"""""" +type ZoneZarazAnalyticsTrackTrafficSourcesAdaptiveGroupsConfidence { + """Number of unique sessions, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! +} + +"""""" +type ZoneZarazAnalyticsTrackTrafficSourcesAdaptiveGroupsDimensions { + """City, region""" + cityRegion: string! + + """Client ID""" + clientId: string! + + """Country""" + country: string! + + """Session duration (seconds)""" + duration: uint64! + + """URL Path at session end""" + exitPage: string! + + """Traffic source at session start""" + firstTrafficSrc: string! + + """URL Path at session start""" + landingPage: string! + + """Date when the session ended""" + sessionEnd: Date! + + """The date and time truncated to fifteen minutes""" + sessionEndFifteenMinutes: Time! + + """The date and time truncated to five minutes""" + sessionEndFiveMinutes: Time! + + """The date and time truncated to the hour""" + sessionEndHour: Time! + + """The date and time truncated to the minute""" + sessionEndMinute: Time! + + """Session ID""" + sessionId: string! + + """Date when the session started""" + sessionStart: Date! + + """The date and time truncated to fifteen minutes""" + sessionStartFifteenMinutes: Time! + + """The date and time truncated to five minutes""" + sessionStartFiveMinutes: Time! + + """The date and time truncated to the hour""" + sessionStartHour: Time! + + """The date and time truncated to the minute""" + sessionStartMinute: Time! + + """Unique track names within a session""" + tracks: [string!]! +} + +"""""" +input ZoneZarazAnalyticsTrackTrafficSourcesAdaptiveGroupsFilter_InputObject { + """""" + AND: [ZoneZarazAnalyticsTrackTrafficSourcesAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [ZoneZarazAnalyticsTrackTrafficSourcesAdaptiveGroupsFilter_InputObject!] + + """""" + cityRegion: string + + """""" + cityRegion_geq: string + + """""" + cityRegion_gt: string + + """""" + cityRegion_in: [string!] + + """""" + cityRegion_leq: string + + """""" + cityRegion_like: string + + """""" + cityRegion_lt: string + + """""" + cityRegion_neq: string + + """""" + cityRegion_notin: [string!] + + """""" + cityRegion_notlike: string + + """""" + clientId: string + + """""" + clientId_geq: string + + """""" + clientId_gt: string + + """""" + clientId_in: [string!] + + """""" + clientId_leq: string + + """""" + clientId_like: string + + """""" + clientId_lt: string + + """""" + clientId_neq: string + + """""" + clientId_notin: [string!] + + """""" + clientId_notlike: string + + """""" + country: string + + """""" + country_geq: string + + """""" + country_gt: string + + """""" + country_in: [string!] + + """""" + country_leq: string + + """""" + country_like: string + + """""" + country_lt: string + + """""" + country_neq: string + + """""" + country_notin: [string!] + + """""" + country_notlike: string + + """""" + duration: uint64 + + """""" + duration_geq: uint64 + + """""" + duration_gt: uint64 + + """""" + duration_in: [uint64!] + + """""" + duration_leq: uint64 + + """""" + duration_lt: uint64 + + """""" + duration_neq: uint64 + + """""" + duration_notin: [uint64!] + + """""" + exitPage: string + + """""" + exitPage_geq: string + + """""" + exitPage_gt: string + + """""" + exitPage_in: [string!] + + """""" + exitPage_leq: string + + """""" + exitPage_like: string + + """""" + exitPage_lt: string + + """""" + exitPage_neq: string + + """""" + exitPage_notin: [string!] + + """""" + exitPage_notlike: string + + """""" + firstTrafficSrc: string + + """""" + firstTrafficSrc_geq: string + + """""" + firstTrafficSrc_gt: string + + """""" + firstTrafficSrc_in: [string!] + + """""" + firstTrafficSrc_leq: string + + """""" + firstTrafficSrc_like: string + + """""" + firstTrafficSrc_lt: string + + """""" + firstTrafficSrc_neq: string + + """""" + firstTrafficSrc_notin: [string!] + + """""" + firstTrafficSrc_notlike: string + + """""" + landingPage: string + + """""" + landingPage_geq: string + + """""" + landingPage_gt: string + + """""" + landingPage_in: [string!] + + """""" + landingPage_leq: string + + """""" + landingPage_like: string + + """""" + landingPage_lt: string + + """""" + landingPage_neq: string + + """""" + landingPage_notin: [string!] + + """""" + landingPage_notlike: string + + """""" + sessionEnd: Date + + """""" + sessionEndFifteenMinutes: Time + + """""" + sessionEndFifteenMinutes_geq: Time + + """""" + sessionEndFifteenMinutes_gt: Time + + """""" + sessionEndFifteenMinutes_in: [Time!] + + """""" + sessionEndFifteenMinutes_leq: Time + + """""" + sessionEndFifteenMinutes_lt: Time + + """""" + sessionEndFifteenMinutes_neq: Time + + """""" + sessionEndFifteenMinutes_notin: [Time!] + + """""" + sessionEndFiveMinutes: Time + + """""" + sessionEndFiveMinutes_geq: Time + + """""" + sessionEndFiveMinutes_gt: Time + + """""" + sessionEndFiveMinutes_in: [Time!] + + """""" + sessionEndFiveMinutes_leq: Time + + """""" + sessionEndFiveMinutes_lt: Time + + """""" + sessionEndFiveMinutes_neq: Time + + """""" + sessionEndFiveMinutes_notin: [Time!] + + """""" + sessionEndHour: Time + + """""" + sessionEndHour_geq: Time + + """""" + sessionEndHour_gt: Time + + """""" + sessionEndHour_in: [Time!] + + """""" + sessionEndHour_leq: Time + + """""" + sessionEndHour_lt: Time + + """""" + sessionEndHour_neq: Time + + """""" + sessionEndHour_notin: [Time!] + + """""" + sessionEndMinute: Time + + """""" + sessionEndMinute_geq: Time + + """""" + sessionEndMinute_gt: Time + + """""" + sessionEndMinute_in: [Time!] + + """""" + sessionEndMinute_leq: Time + + """""" + sessionEndMinute_lt: Time + + """""" + sessionEndMinute_neq: Time + + """""" + sessionEndMinute_notin: [Time!] + + """""" + sessionEnd_geq: Date + + """""" + sessionEnd_gt: Date + + """""" + sessionEnd_in: [Date!] + + """""" + sessionEnd_leq: Date + + """""" + sessionEnd_lt: Date + + """""" + sessionEnd_neq: Date + + """""" + sessionEnd_notin: [Date!] + + """""" + sessionId: string + + """""" + sessionId_geq: string + + """""" + sessionId_gt: string + + """""" + sessionId_in: [string!] + + """""" + sessionId_leq: string + + """""" + sessionId_like: string + + """""" + sessionId_lt: string + + """""" + sessionId_neq: string + + """""" + sessionId_notin: [string!] + + """""" + sessionId_notlike: string + + """""" + sessionStart: Date + + """""" + sessionStartFifteenMinutes: Time + + """""" + sessionStartFifteenMinutes_geq: Time + + """""" + sessionStartFifteenMinutes_gt: Time + + """""" + sessionStartFifteenMinutes_in: [Time!] + + """""" + sessionStartFifteenMinutes_leq: Time + + """""" + sessionStartFifteenMinutes_lt: Time + + """""" + sessionStartFifteenMinutes_neq: Time + + """""" + sessionStartFifteenMinutes_notin: [Time!] + + """""" + sessionStartFiveMinutes: Time + + """""" + sessionStartFiveMinutes_geq: Time + + """""" + sessionStartFiveMinutes_gt: Time + + """""" + sessionStartFiveMinutes_in: [Time!] + + """""" + sessionStartFiveMinutes_leq: Time + + """""" + sessionStartFiveMinutes_lt: Time + + """""" + sessionStartFiveMinutes_neq: Time + + """""" + sessionStartFiveMinutes_notin: [Time!] + + """""" + sessionStartHour: Time + + """""" + sessionStartHour_geq: Time + + """""" + sessionStartHour_gt: Time + + """""" + sessionStartHour_in: [Time!] + + """""" + sessionStartHour_leq: Time + + """""" + sessionStartHour_lt: Time + + """""" + sessionStartHour_neq: Time + + """""" + sessionStartHour_notin: [Time!] + + """""" + sessionStartMinute: Time + + """""" + sessionStartMinute_geq: Time + + """""" + sessionStartMinute_gt: Time + + """""" + sessionStartMinute_in: [Time!] + + """""" + sessionStartMinute_leq: Time + + """""" + sessionStartMinute_lt: Time + + """""" + sessionStartMinute_neq: Time + + """""" + sessionStartMinute_notin: [Time!] + + """""" + sessionStart_geq: Date + + """""" + sessionStart_gt: Date + + """""" + sessionStart_in: [Date!] + + """""" + sessionStart_leq: Date + + """""" + sessionStart_lt: Date + + """""" + sessionStart_neq: Date + + """""" + sessionStart_notin: [Date!] + + """""" + tracks_has: string + + """""" + tracks_hasall: [string!] + + """""" + tracks_hasany: [string!] + + """""" + tracks_isempty: bool + + """""" + tracks_nothas: string +} + +"""""" +enum ZoneZarazAnalyticsTrackTrafficSourcesAdaptiveGroupsOrderBy { + """avg(sessionDuration) ascending""" + avg_sessionDuration_ASC + + """avg(sessionDuration) descending""" + avg_sessionDuration_DESC + + """cityRegion ascending""" + cityRegion_ASC + + """cityRegion descending""" + cityRegion_DESC + + """clientId ascending""" + clientId_ASC + + """clientId descending""" + clientId_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """country ascending""" + country_ASC + + """country descending""" + country_DESC + + """duration ascending""" + duration_ASC + + """duration descending""" + duration_DESC + + """exitPage ascending""" + exitPage_ASC + + """exitPage descending""" + exitPage_DESC + + """firstTrafficSrc ascending""" + firstTrafficSrc_ASC + + """firstTrafficSrc descending""" + firstTrafficSrc_DESC + + """landingPage ascending""" + landingPage_ASC + + """landingPage descending""" + landingPage_DESC + + """sessionEndFifteenMinutes ascending""" + sessionEndFifteenMinutes_ASC + + """sessionEndFifteenMinutes descending""" + sessionEndFifteenMinutes_DESC + + """sessionEndFiveMinutes ascending""" + sessionEndFiveMinutes_ASC + + """sessionEndFiveMinutes descending""" + sessionEndFiveMinutes_DESC + + """sessionEndHour ascending""" + sessionEndHour_ASC + + """sessionEndHour descending""" + sessionEndHour_DESC + + """sessionEndMinute ascending""" + sessionEndMinute_ASC + + """sessionEndMinute descending""" + sessionEndMinute_DESC + + """sessionEnd ascending""" + sessionEnd_ASC + + """sessionEnd descending""" + sessionEnd_DESC + + """sessionId ascending""" + sessionId_ASC + + """sessionId descending""" + sessionId_DESC + + """sessionStartFifteenMinutes ascending""" + sessionStartFifteenMinutes_ASC + + """sessionStartFifteenMinutes descending""" + sessionStartFifteenMinutes_DESC + + """sessionStartFiveMinutes ascending""" + sessionStartFiveMinutes_ASC + + """sessionStartFiveMinutes descending""" + sessionStartFiveMinutes_DESC + + """sessionStartHour ascending""" + sessionStartHour_ASC + + """sessionStartHour descending""" + sessionStartHour_DESC + + """sessionStartMinute ascending""" + sessionStartMinute_ASC + + """sessionStartMinute descending""" + sessionStartMinute_DESC + + """sessionStart ascending""" + sessionStart_ASC + + """sessionStart descending""" + sessionStart_DESC + + """tracks ascending""" + tracks_ASC + + """tracks descending""" + tracks_DESC + + """uniq(clientIdCount) ascending""" + uniq_clientIdCount_ASC + + """uniq(clientIdCount) descending""" + uniq_clientIdCount_DESC + + """uniq(sessionIdCount) ascending""" + uniq_sessionIdCount_ASC + + """uniq(sessionIdCount) descending""" + uniq_sessionIdCount_DESC +} + +"""""" +type ZoneZarazAnalyticsTrackTrafficSourcesAdaptiveGroupsUniq { + """Minimum number of distinct client IDs""" + clientIdCount: uint64! + + """Minimum number of distinct session IDs""" + sessionIdCount: uint64! +} + +""" +Zaraz Analytics Triggers (a trigger is a set of rules that can trigger a zaraz action) +""" +type ZoneZarazAnalyticsTriggersAdaptiveGroups { + """ALPHA - DO NOT USE""" + confidence(level: float64!): ZoneZarazAnalyticsTriggersAdaptiveGroupsConfidence! + + """Number of processed Zaraz Triggers""" + count: uint64! + + """List of dimensions to group by""" + dimensions: ZoneZarazAnalyticsTriggersAdaptiveGroupsDimensions + + """""" + uniq: ZoneZarazAnalyticsTriggersAdaptiveGroupsUniq +} + +"""""" +type ZoneZarazAnalyticsTriggersAdaptiveGroupsConfidence { + """Number of processed Zaraz Triggers, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! +} + +"""""" +type ZoneZarazAnalyticsTriggersAdaptiveGroupsDimensions { + """User Agent browser name""" + browserName: string! + + """City, region""" + cityRegion: string! + + """Client ID""" + clientId: string! + + """Color depth""" + colors: uint32! + + """Country""" + country: string! + + """The date when trigger was triggerd""" + date: Date! + + """The date and time truncated to fifteen minutes""" + datetimeFifteenMinutes: Time! + + """The date and time truncated to five minutes""" + datetimeFiveMinutes: Time! + + """The date and time truncated to the hour""" + datetimeHour: Time! + + """The date and time truncated to the minute""" + datetimeMinute: Time! + + """User Agent device model""" + deviceModel: string! + + """User Agent device type""" + deviceType: string! + + """User Agent device vendor""" + deviceVendor: string! + + """IP""" + ip: string! + + """Language""" + language: string! + + """User Agent OS name""" + osName: string! + + """User Agent OS version""" + osVersion: string! + + """Page Title""" + pageTitle: string! + + """Screen resolution, cantor paired width & heigh""" + resolution: uint64! + + """Session ID""" + sessionId: string! + + """Timezone Offset""" + timezoneOffset: int32! + + """Traffic Source""" + trafficSrc: string! + + """Trigger Name""" + triggerName: string! + + """User Agent string""" + ua: string! + + """User Agent stringified object""" + uaObj: string! + + """URL query parameters""" + urlParams: string! + + """URL Path""" + urlPath: string! + + """Viewport, cantor paired width & heigh""" + viewport: uint64! +} + +"""""" +input ZoneZarazAnalyticsTriggersAdaptiveGroupsFilter_InputObject { + """""" + AND: [ZoneZarazAnalyticsTriggersAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [ZoneZarazAnalyticsTriggersAdaptiveGroupsFilter_InputObject!] + + """""" + browserName: string + + """""" + browserName_geq: string + + """""" + browserName_gt: string + + """""" + browserName_in: [string!] + + """""" + browserName_leq: string + + """""" + browserName_like: string + + """""" + browserName_lt: string + + """""" + browserName_neq: string + + """""" + browserName_notin: [string!] + + """""" + browserName_notlike: string + + """""" + cityRegion: string + + """""" + cityRegion_geq: string + + """""" + cityRegion_gt: string + + """""" + cityRegion_in: [string!] + + """""" + cityRegion_leq: string + + """""" + cityRegion_like: string + + """""" + cityRegion_lt: string + + """""" + cityRegion_neq: string + + """""" + cityRegion_notin: [string!] + + """""" + cityRegion_notlike: string + + """""" + clientId: string + + """""" + clientId_geq: string + + """""" + clientId_gt: string + + """""" + clientId_in: [string!] + + """""" + clientId_leq: string + + """""" + clientId_like: string + + """""" + clientId_lt: string + + """""" + clientId_neq: string + + """""" + clientId_notin: [string!] + + """""" + clientId_notlike: string + + """""" + colors: uint32 + + """""" + colors_geq: uint32 + + """""" + colors_gt: uint32 + + """""" + colors_in: [uint32!] + + """""" + colors_leq: uint32 + + """""" + colors_lt: uint32 + + """""" + colors_neq: uint32 + + """""" + colors_notin: [uint32!] + + """""" + country: string + + """""" + country_geq: string + + """""" + country_gt: string + + """""" + country_in: [string!] + + """""" + country_leq: string + + """""" + country_like: string + + """""" + country_lt: string + + """""" + country_neq: string + + """""" + country_notin: [string!] + + """""" + country_notlike: string + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + deviceModel: string + + """""" + deviceModel_geq: string + + """""" + deviceModel_gt: string + + """""" + deviceModel_in: [string!] + + """""" + deviceModel_leq: string + + """""" + deviceModel_like: string + + """""" + deviceModel_lt: string + + """""" + deviceModel_neq: string + + """""" + deviceModel_notin: [string!] + + """""" + deviceModel_notlike: string + + """""" + deviceType: string + + """""" + deviceType_geq: string + + """""" + deviceType_gt: string + + """""" + deviceType_in: [string!] + + """""" + deviceType_leq: string + + """""" + deviceType_like: string + + """""" + deviceType_lt: string + + """""" + deviceType_neq: string + + """""" + deviceType_notin: [string!] + + """""" + deviceType_notlike: string + + """""" + deviceVendor: string + + """""" + deviceVendor_geq: string + + """""" + deviceVendor_gt: string + + """""" + deviceVendor_in: [string!] + + """""" + deviceVendor_leq: string + + """""" + deviceVendor_like: string + + """""" + deviceVendor_lt: string + + """""" + deviceVendor_neq: string + + """""" + deviceVendor_notin: [string!] + + """""" + deviceVendor_notlike: string + + """""" + ip: string + + """""" + ip_geq: string + + """""" + ip_gt: string + + """""" + ip_in: [string!] + + """""" + ip_leq: string + + """""" + ip_like: string + + """""" + ip_lt: string + + """""" + ip_neq: string + + """""" + ip_notin: [string!] + + """""" + ip_notlike: string + + """""" + language: string + + """""" + language_geq: string + + """""" + language_gt: string + + """""" + language_in: [string!] + + """""" + language_leq: string + + """""" + language_like: string + + """""" + language_lt: string + + """""" + language_neq: string + + """""" + language_notin: [string!] + + """""" + language_notlike: string + + """""" + osName: string + + """""" + osName_geq: string + + """""" + osName_gt: string + + """""" + osName_in: [string!] + + """""" + osName_leq: string + + """""" + osName_like: string + + """""" + osName_lt: string + + """""" + osName_neq: string + + """""" + osName_notin: [string!] + + """""" + osName_notlike: string + + """""" + osVersion: string + + """""" + osVersion_geq: string + + """""" + osVersion_gt: string + + """""" + osVersion_in: [string!] + + """""" + osVersion_leq: string + + """""" + osVersion_like: string + + """""" + osVersion_lt: string + + """""" + osVersion_neq: string + + """""" + osVersion_notin: [string!] + + """""" + osVersion_notlike: string + + """""" + pageTitle: string + + """""" + pageTitle_geq: string + + """""" + pageTitle_gt: string + + """""" + pageTitle_in: [string!] + + """""" + pageTitle_leq: string + + """""" + pageTitle_like: string + + """""" + pageTitle_lt: string + + """""" + pageTitle_neq: string + + """""" + pageTitle_notin: [string!] + + """""" + pageTitle_notlike: string + + """""" + resolution: uint64 + + """""" + resolution_geq: uint64 + + """""" + resolution_gt: uint64 + + """""" + resolution_in: [uint64!] + + """""" + resolution_leq: uint64 + + """""" + resolution_lt: uint64 + + """""" + resolution_neq: uint64 + + """""" + resolution_notin: [uint64!] + + """""" + sessionId: string + + """""" + sessionId_geq: string + + """""" + sessionId_gt: string + + """""" + sessionId_in: [string!] + + """""" + sessionId_leq: string + + """""" + sessionId_like: string + + """""" + sessionId_lt: string + + """""" + sessionId_neq: string + + """""" + sessionId_notin: [string!] + + """""" + sessionId_notlike: string + + """""" + timezoneOffset: int32 + + """""" + timezoneOffset_geq: int32 + + """""" + timezoneOffset_gt: int32 + + """""" + timezoneOffset_in: [int32!] + + """""" + timezoneOffset_leq: int32 + + """""" + timezoneOffset_lt: int32 + + """""" + timezoneOffset_neq: int32 + + """""" + timezoneOffset_notin: [int32!] + + """""" + trafficSrc: string + + """""" + trafficSrc_geq: string + + """""" + trafficSrc_gt: string + + """""" + trafficSrc_in: [string!] + + """""" + trafficSrc_leq: string + + """""" + trafficSrc_like: string + + """""" + trafficSrc_lt: string + + """""" + trafficSrc_neq: string + + """""" + trafficSrc_notin: [string!] + + """""" + trafficSrc_notlike: string + + """""" + triggerName: string + + """""" + triggerName_geq: string + + """""" + triggerName_gt: string + + """""" + triggerName_in: [string!] + + """""" + triggerName_leq: string + + """""" + triggerName_like: string + + """""" + triggerName_lt: string + + """""" + triggerName_neq: string + + """""" + triggerName_notin: [string!] + + """""" + triggerName_notlike: string + + """""" + ua: string + + """""" + uaObj: string + + """""" + uaObj_geq: string + + """""" + uaObj_gt: string + + """""" + uaObj_in: [string!] + + """""" + uaObj_leq: string + + """""" + uaObj_like: string + + """""" + uaObj_lt: string + + """""" + uaObj_neq: string + + """""" + uaObj_notin: [string!] + + """""" + uaObj_notlike: string + + """""" + ua_geq: string + + """""" + ua_gt: string + + """""" + ua_in: [string!] + + """""" + ua_leq: string + + """""" + ua_like: string + + """""" + ua_lt: string + + """""" + ua_neq: string + + """""" + ua_notin: [string!] + + """""" + ua_notlike: string + + """""" + urlParams: string + + """""" + urlParams_geq: string + + """""" + urlParams_gt: string + + """""" + urlParams_in: [string!] + + """""" + urlParams_leq: string + + """""" + urlParams_like: string + + """""" + urlParams_lt: string + + """""" + urlParams_neq: string + + """""" + urlParams_notin: [string!] + + """""" + urlParams_notlike: string + + """""" + urlPath: string + + """""" + urlPath_geq: string + + """""" + urlPath_gt: string + + """""" + urlPath_in: [string!] + + """""" + urlPath_leq: string + + """""" + urlPath_like: string + + """""" + urlPath_lt: string + + """""" + urlPath_neq: string + + """""" + urlPath_notin: [string!] + + """""" + urlPath_notlike: string + + """""" + viewport: uint64 + + """""" + viewport_geq: uint64 + + """""" + viewport_gt: uint64 + + """""" + viewport_in: [uint64!] + + """""" + viewport_leq: uint64 + + """""" + viewport_lt: uint64 + + """""" + viewport_neq: uint64 + + """""" + viewport_notin: [uint64!] +} + +"""""" +enum ZoneZarazAnalyticsTriggersAdaptiveGroupsOrderBy { + """browserName ascending""" + browserName_ASC + + """browserName descending""" + browserName_DESC + + """cityRegion ascending""" + cityRegion_ASC + + """cityRegion descending""" + cityRegion_DESC + + """clientId ascending""" + clientId_ASC + + """clientId descending""" + clientId_DESC + + """colors ascending""" + colors_ASC + + """colors descending""" + colors_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """country ascending""" + country_ASC + + """country descending""" + country_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """deviceModel ascending""" + deviceModel_ASC + + """deviceModel descending""" + deviceModel_DESC + + """deviceType ascending""" + deviceType_ASC + + """deviceType descending""" + deviceType_DESC + + """deviceVendor ascending""" + deviceVendor_ASC + + """deviceVendor descending""" + deviceVendor_DESC + + """ip ascending""" + ip_ASC + + """ip descending""" + ip_DESC + + """language ascending""" + language_ASC + + """language descending""" + language_DESC + + """osName ascending""" + osName_ASC + + """osName descending""" + osName_DESC + + """osVersion ascending""" + osVersion_ASC + + """osVersion descending""" + osVersion_DESC + + """pageTitle ascending""" + pageTitle_ASC + + """pageTitle descending""" + pageTitle_DESC + + """resolution ascending""" + resolution_ASC + + """resolution descending""" + resolution_DESC + + """sessionId ascending""" + sessionId_ASC + + """sessionId descending""" + sessionId_DESC + + """timezoneOffset ascending""" + timezoneOffset_ASC + + """timezoneOffset descending""" + timezoneOffset_DESC + + """trafficSrc ascending""" + trafficSrc_ASC + + """trafficSrc descending""" + trafficSrc_DESC + + """triggerName ascending""" + triggerName_ASC + + """triggerName descending""" + triggerName_DESC + + """uaObj ascending""" + uaObj_ASC + + """uaObj descending""" + uaObj_DESC + + """ua ascending""" + ua_ASC + + """ua descending""" + ua_DESC + + """uniq(clientIdCount) ascending""" + uniq_clientIdCount_ASC + + """uniq(clientIdCount) descending""" + uniq_clientIdCount_DESC + + """uniq(sessionIdCount) ascending""" + uniq_sessionIdCount_ASC + + """uniq(sessionIdCount) descending""" + uniq_sessionIdCount_DESC + + """urlParams ascending""" + urlParams_ASC + + """urlParams descending""" + urlParams_DESC + + """urlPath ascending""" + urlPath_ASC + + """urlPath descending""" + urlPath_DESC + + """viewport ascending""" + viewport_ASC + + """viewport descending""" + viewport_DESC +} + +"""""" +type ZoneZarazAnalyticsTriggersAdaptiveGroupsUniq { + """Minimum number of distinct client IDs""" + clientIdCount: uint64! + + """Minimum number of distinct session IDs""" + sessionIdCount: uint64! +} + +"""Zaraz Analytics Triggers Traffic Sources""" +type ZoneZarazAnalyticsTriggersTrafficSourcesAdaptiveGroups { + """ALPHA - DO NOT USE""" + confidence(level: float64!): ZoneZarazAnalyticsTriggersTrafficSourcesAdaptiveGroupsConfidence! + + """Number of unique sessions""" + count: uint64! + + """List of dimensions to group by""" + dimensions: ZoneZarazAnalyticsTriggersTrafficSourcesAdaptiveGroupsDimensions + + """""" + uniq: ZoneZarazAnalyticsTriggersTrafficSourcesAdaptiveGroupsUniq +} + +"""""" +type ZoneZarazAnalyticsTriggersTrafficSourcesAdaptiveGroupsConfidence { + """Number of unique sessions, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! +} + +"""""" +type ZoneZarazAnalyticsTriggersTrafficSourcesAdaptiveGroupsDimensions { + """City, region""" + cityRegion: string! + + """Client ID""" + clientId: string! + + """Country""" + country: string! + + """Traffic source at session start""" + firstTrafficSrc: string! + + """Date when the session ended""" + sessionEnd: Date! + + """The date and time truncated to fifteen minutes""" + sessionEndFifteenMinutes: Time! + + """The date and time truncated to five minutes""" + sessionEndFiveMinutes: Time! + + """The date and time truncated to the hour""" + sessionEndHour: Time! + + """The date and time truncated to the minute""" + sessionEndMinute: Time! + + """Session ID""" + sessionId: string! + + """Date when the session started""" + sessionStart: Date! + + """The date and time truncated to fifteen minutes""" + sessionStartFifteenMinutes: Time! + + """The date and time truncated to five minutes""" + sessionStartFiveMinutes: Time! + + """The date and time truncated to the hour""" + sessionStartHour: Time! + + """The date and time truncated to the minute""" + sessionStartMinute: Time! + + """Unique trigger names within a session""" + triggers: [string!]! +} + +"""""" +input ZoneZarazAnalyticsTriggersTrafficSourcesAdaptiveGroupsFilter_InputObject { + """""" + AND: [ZoneZarazAnalyticsTriggersTrafficSourcesAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [ZoneZarazAnalyticsTriggersTrafficSourcesAdaptiveGroupsFilter_InputObject!] + + """""" + cityRegion: string + + """""" + cityRegion_geq: string + + """""" + cityRegion_gt: string + + """""" + cityRegion_in: [string!] + + """""" + cityRegion_leq: string + + """""" + cityRegion_like: string + + """""" + cityRegion_lt: string + + """""" + cityRegion_neq: string + + """""" + cityRegion_notin: [string!] + + """""" + cityRegion_notlike: string + + """""" + clientId: string + + """""" + clientId_geq: string + + """""" + clientId_gt: string + + """""" + clientId_in: [string!] + + """""" + clientId_leq: string + + """""" + clientId_like: string + + """""" + clientId_lt: string + + """""" + clientId_neq: string + + """""" + clientId_notin: [string!] + + """""" + clientId_notlike: string + + """""" + country: string + + """""" + country_geq: string + + """""" + country_gt: string + + """""" + country_in: [string!] + + """""" + country_leq: string + + """""" + country_like: string + + """""" + country_lt: string + + """""" + country_neq: string + + """""" + country_notin: [string!] + + """""" + country_notlike: string + + """""" + firstTrafficSrc: string + + """""" + firstTrafficSrc_geq: string + + """""" + firstTrafficSrc_gt: string + + """""" + firstTrafficSrc_in: [string!] + + """""" + firstTrafficSrc_leq: string + + """""" + firstTrafficSrc_like: string + + """""" + firstTrafficSrc_lt: string + + """""" + firstTrafficSrc_neq: string + + """""" + firstTrafficSrc_notin: [string!] + + """""" + firstTrafficSrc_notlike: string + + """""" + sessionEnd: Date + + """""" + sessionEndFifteenMinutes: Time + + """""" + sessionEndFifteenMinutes_geq: Time + + """""" + sessionEndFifteenMinutes_gt: Time + + """""" + sessionEndFifteenMinutes_in: [Time!] + + """""" + sessionEndFifteenMinutes_leq: Time + + """""" + sessionEndFifteenMinutes_lt: Time + + """""" + sessionEndFifteenMinutes_neq: Time + + """""" + sessionEndFifteenMinutes_notin: [Time!] + + """""" + sessionEndFiveMinutes: Time + + """""" + sessionEndFiveMinutes_geq: Time + + """""" + sessionEndFiveMinutes_gt: Time + + """""" + sessionEndFiveMinutes_in: [Time!] + + """""" + sessionEndFiveMinutes_leq: Time + + """""" + sessionEndFiveMinutes_lt: Time + + """""" + sessionEndFiveMinutes_neq: Time + + """""" + sessionEndFiveMinutes_notin: [Time!] + + """""" + sessionEndHour: Time + + """""" + sessionEndHour_geq: Time + + """""" + sessionEndHour_gt: Time + + """""" + sessionEndHour_in: [Time!] + + """""" + sessionEndHour_leq: Time + + """""" + sessionEndHour_lt: Time + + """""" + sessionEndHour_neq: Time + + """""" + sessionEndHour_notin: [Time!] + + """""" + sessionEndMinute: Time + + """""" + sessionEndMinute_geq: Time + + """""" + sessionEndMinute_gt: Time + + """""" + sessionEndMinute_in: [Time!] + + """""" + sessionEndMinute_leq: Time + + """""" + sessionEndMinute_lt: Time + + """""" + sessionEndMinute_neq: Time + + """""" + sessionEndMinute_notin: [Time!] + + """""" + sessionEnd_geq: Date + + """""" + sessionEnd_gt: Date + + """""" + sessionEnd_in: [Date!] + + """""" + sessionEnd_leq: Date + + """""" + sessionEnd_lt: Date + + """""" + sessionEnd_neq: Date + + """""" + sessionEnd_notin: [Date!] + + """""" + sessionId: string + + """""" + sessionId_geq: string + + """""" + sessionId_gt: string + + """""" + sessionId_in: [string!] + + """""" + sessionId_leq: string + + """""" + sessionId_like: string + + """""" + sessionId_lt: string + + """""" + sessionId_neq: string + + """""" + sessionId_notin: [string!] + + """""" + sessionId_notlike: string + + """""" + sessionStart: Date + + """""" + sessionStartFifteenMinutes: Time + + """""" + sessionStartFifteenMinutes_geq: Time + + """""" + sessionStartFifteenMinutes_gt: Time + + """""" + sessionStartFifteenMinutes_in: [Time!] + + """""" + sessionStartFifteenMinutes_leq: Time + + """""" + sessionStartFifteenMinutes_lt: Time + + """""" + sessionStartFifteenMinutes_neq: Time + + """""" + sessionStartFifteenMinutes_notin: [Time!] + + """""" + sessionStartFiveMinutes: Time + + """""" + sessionStartFiveMinutes_geq: Time + + """""" + sessionStartFiveMinutes_gt: Time + + """""" + sessionStartFiveMinutes_in: [Time!] + + """""" + sessionStartFiveMinutes_leq: Time + + """""" + sessionStartFiveMinutes_lt: Time + + """""" + sessionStartFiveMinutes_neq: Time + + """""" + sessionStartFiveMinutes_notin: [Time!] + + """""" + sessionStartHour: Time + + """""" + sessionStartHour_geq: Time + + """""" + sessionStartHour_gt: Time + + """""" + sessionStartHour_in: [Time!] + + """""" + sessionStartHour_leq: Time + + """""" + sessionStartHour_lt: Time + + """""" + sessionStartHour_neq: Time + + """""" + sessionStartHour_notin: [Time!] + + """""" + sessionStartMinute: Time + + """""" + sessionStartMinute_geq: Time + + """""" + sessionStartMinute_gt: Time + + """""" + sessionStartMinute_in: [Time!] + + """""" + sessionStartMinute_leq: Time + + """""" + sessionStartMinute_lt: Time + + """""" + sessionStartMinute_neq: Time + + """""" + sessionStartMinute_notin: [Time!] + + """""" + sessionStart_geq: Date + + """""" + sessionStart_gt: Date + + """""" + sessionStart_in: [Date!] + + """""" + sessionStart_leq: Date + + """""" + sessionStart_lt: Date + + """""" + sessionStart_neq: Date + + """""" + sessionStart_notin: [Date!] + + """""" + triggers_has: string + + """""" + triggers_hasall: [string!] + + """""" + triggers_hasany: [string!] + + """""" + triggers_isempty: bool + + """""" + triggers_nothas: string +} + +"""""" +enum ZoneZarazAnalyticsTriggersTrafficSourcesAdaptiveGroupsOrderBy { + """cityRegion ascending""" + cityRegion_ASC + + """cityRegion descending""" + cityRegion_DESC + + """clientId ascending""" + clientId_ASC + + """clientId descending""" + clientId_DESC + + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """country ascending""" + country_ASC + + """country descending""" + country_DESC + + """firstTrafficSrc ascending""" + firstTrafficSrc_ASC + + """firstTrafficSrc descending""" + firstTrafficSrc_DESC + + """sessionEndFifteenMinutes ascending""" + sessionEndFifteenMinutes_ASC + + """sessionEndFifteenMinutes descending""" + sessionEndFifteenMinutes_DESC + + """sessionEndFiveMinutes ascending""" + sessionEndFiveMinutes_ASC + + """sessionEndFiveMinutes descending""" + sessionEndFiveMinutes_DESC + + """sessionEndHour ascending""" + sessionEndHour_ASC + + """sessionEndHour descending""" + sessionEndHour_DESC + + """sessionEndMinute ascending""" + sessionEndMinute_ASC + + """sessionEndMinute descending""" + sessionEndMinute_DESC + + """sessionEnd ascending""" + sessionEnd_ASC + + """sessionEnd descending""" + sessionEnd_DESC + + """sessionId ascending""" + sessionId_ASC + + """sessionId descending""" + sessionId_DESC + + """sessionStartFifteenMinutes ascending""" + sessionStartFifteenMinutes_ASC + + """sessionStartFifteenMinutes descending""" + sessionStartFifteenMinutes_DESC + + """sessionStartFiveMinutes ascending""" + sessionStartFiveMinutes_ASC + + """sessionStartFiveMinutes descending""" + sessionStartFiveMinutes_DESC + + """sessionStartHour ascending""" + sessionStartHour_ASC + + """sessionStartHour descending""" + sessionStartHour_DESC + + """sessionStartMinute ascending""" + sessionStartMinute_ASC + + """sessionStartMinute descending""" + sessionStartMinute_DESC + + """sessionStart ascending""" + sessionStart_ASC + + """sessionStart descending""" + sessionStart_DESC + + """triggers ascending""" + triggers_ASC + + """triggers descending""" + triggers_DESC + + """uniq(clientIdCount) ascending""" + uniq_clientIdCount_ASC + + """uniq(clientIdCount) descending""" + uniq_clientIdCount_DESC + + """uniq(sessionIdCount) ascending""" + uniq_sessionIdCount_ASC + + """uniq(sessionIdCount) descending""" + uniq_sessionIdCount_DESC +} + +"""""" +type ZoneZarazAnalyticsTriggersTrafficSourcesAdaptiveGroupsUniq { + """Minimum number of distinct client IDs""" + clientIdCount: uint64! + + """Minimum number of distinct session IDs""" + sessionIdCount: uint64! +} + +"""Aggregated Zaraz External Fetch Logs""" +type ZoneZarazFetchAdaptiveGroups { + """ALPHA - DO NOT USE""" + confidence(level: float64!): ZoneZarazFetchAdaptiveGroupsConfidence! + + """Number of processed external fetch requests""" + count: uint64! + + """List of dimensions to group by""" + dimensions: ZoneZarazFetchAdaptiveGroupsDimensions +} + +"""""" +type ZoneZarazFetchAdaptiveGroupsConfidence { + """Number of processed external fetch requests, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! +} + +"""""" +type ZoneZarazFetchAdaptiveGroupsDimensions { + """Date when fetch was called""" + date: Date! + + """The date and time truncated to fifteen minutes""" + datetimeFifteenMinutes: Time! + + """The date and time truncated to five minutes""" + datetimeFiveMinutes: Time! + + """The date and time truncated to the hour""" + datetimeHour: Time! + + """The date and time truncated to the minute""" + datetimeMinute: Time! + + """Fetch HTTP status code""" + status: uint32! + + """Fetch URL""" + url: string! +} + +"""""" +input ZoneZarazFetchAdaptiveGroupsFilter_InputObject { + """""" + AND: [ZoneZarazFetchAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [ZoneZarazFetchAdaptiveGroupsFilter_InputObject!] + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + status: uint32 + + """""" + status_geq: uint32 + + """""" + status_gt: uint32 + + """""" + status_in: [uint32!] + + """""" + status_leq: uint32 + + """""" + status_lt: uint32 + + """""" + status_neq: uint32 + + """""" + status_notin: [uint32!] + + """""" + url: string + + """""" + url_geq: string + + """""" + url_gt: string + + """""" + url_in: [string!] + + """""" + url_leq: string + + """""" + url_like: string + + """""" + url_lt: string + + """""" + url_neq: string + + """""" + url_notin: [string!] + + """""" + url_notlike: string +} + +"""""" +enum ZoneZarazFetchAdaptiveGroupsOrderBy { + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """status ascending""" + status_ASC + + """status descending""" + status_DESC + + """url ascending""" + url_ASC + + """url descending""" + url_DESC +} + +"""Zaraz Track Analytics - counts zaraz.track calls""" +type ZoneZarazTrackAdaptiveGroups { + """ALPHA - DO NOT USE""" + confidence(level: float64!): ZoneZarazTrackAdaptiveGroupsConfidence! + + """Number of processed Zaraz Track requests""" + count: uint64! + + """List of dimensions to group by""" + dimensions: ZoneZarazTrackAdaptiveGroupsDimensions +} + +"""""" +type ZoneZarazTrackAdaptiveGroupsConfidence { + """Number of processed Zaraz Track requests, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! +} + +"""""" +type ZoneZarazTrackAdaptiveGroupsDimensions { + """Date when track was called""" + date: Date! + + """The date and time truncated to fifteen minutes""" + datetimeFifteenMinutes: Time! + + """The date and time truncated to five minutes""" + datetimeFiveMinutes: Time! + + """The date and time truncated to the hour""" + datetimeHour: Time! + + """The date and time truncated to the minute""" + datetimeMinute: Time! + + """Track Name""" + trackName: string! + + """The URL from where Track was called""" + urlPath: string! +} + +"""""" +input ZoneZarazTrackAdaptiveGroupsFilter_InputObject { + """""" + AND: [ZoneZarazTrackAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [ZoneZarazTrackAdaptiveGroupsFilter_InputObject!] + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + trackName: string + + """""" + trackName_geq: string + + """""" + trackName_gt: string + + """""" + trackName_in: [string!] + + """""" + trackName_leq: string + + """""" + trackName_like: string + + """""" + trackName_lt: string + + """""" + trackName_neq: string + + """""" + trackName_notin: [string!] + + """""" + trackName_notlike: string + + """""" + urlPath: string + + """""" + urlPath_geq: string + + """""" + urlPath_gt: string + + """""" + urlPath_in: [string!] + + """""" + urlPath_leq: string + + """""" + urlPath_like: string + + """""" + urlPath_lt: string + + """""" + urlPath_neq: string + + """""" + urlPath_notin: [string!] + + """""" + urlPath_notlike: string +} + +"""""" +enum ZoneZarazTrackAdaptiveGroupsOrderBy { + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """trackName ascending""" + trackName_ASC + + """trackName descending""" + trackName_DESC + + """urlPath ascending""" + urlPath_ASC + + """urlPath descending""" + urlPath_DESC +} + +""" +Zaraz Triggers Analytics (a trigger is a set of rules that can trigger a zaraz action) +""" +type ZoneZarazTriggersAdaptiveGroups { + """ALPHA - DO NOT USE""" + confidence(level: float64!): ZoneZarazTriggersAdaptiveGroupsConfidence! + + """Number of processed Zaraz Triggers""" + count: uint64! + + """List of dimensions to group by""" + dimensions: ZoneZarazTriggersAdaptiveGroupsDimensions +} + +"""""" +type ZoneZarazTriggersAdaptiveGroupsConfidence { + """Number of processed Zaraz Triggers, with confidence intervals""" + count: Confidence! + + """Confidence level that was requested""" + level: float64! +} + +"""""" +type ZoneZarazTriggersAdaptiveGroupsDimensions { + """The date when trigger was triggerd""" + date: Date! + + """The date and time truncated to fifteen minutes""" + datetimeFifteenMinutes: Time! + + """The date and time truncated to five minutes""" + datetimeFiveMinutes: Time! + + """The date and time truncated to the hour""" + datetimeHour: Time! + + """The date and time truncated to the minute""" + datetimeMinute: Time! + + """Trigger Name""" + triggerName: string! +} + +"""""" +input ZoneZarazTriggersAdaptiveGroupsFilter_InputObject { + """""" + AND: [ZoneZarazTriggersAdaptiveGroupsFilter_InputObject!] + + """""" + OR: [ZoneZarazTriggersAdaptiveGroupsFilter_InputObject!] + + """""" + date: Date + + """""" + date_geq: Date + + """""" + date_gt: Date + + """""" + date_in: [Date!] + + """""" + date_leq: Date + + """""" + date_lt: Date + + """""" + date_neq: Date + + """""" + date_notin: [Date!] + + """""" + datetimeFifteenMinutes: Time + + """""" + datetimeFifteenMinutes_geq: Time + + """""" + datetimeFifteenMinutes_gt: Time + + """""" + datetimeFifteenMinutes_in: [Time!] + + """""" + datetimeFifteenMinutes_leq: Time + + """""" + datetimeFifteenMinutes_lt: Time + + """""" + datetimeFifteenMinutes_neq: Time + + """""" + datetimeFifteenMinutes_notin: [Time!] + + """""" + datetimeFiveMinutes: Time + + """""" + datetimeFiveMinutes_geq: Time + + """""" + datetimeFiveMinutes_gt: Time + + """""" + datetimeFiveMinutes_in: [Time!] + + """""" + datetimeFiveMinutes_leq: Time + + """""" + datetimeFiveMinutes_lt: Time + + """""" + datetimeFiveMinutes_neq: Time + + """""" + datetimeFiveMinutes_notin: [Time!] + + """""" + datetimeHour: Time + + """""" + datetimeHour_geq: Time + + """""" + datetimeHour_gt: Time + + """""" + datetimeHour_in: [Time!] + + """""" + datetimeHour_leq: Time + + """""" + datetimeHour_lt: Time + + """""" + datetimeHour_neq: Time + + """""" + datetimeHour_notin: [Time!] + + """""" + datetimeMinute: Time + + """""" + datetimeMinute_geq: Time + + """""" + datetimeMinute_gt: Time + + """""" + datetimeMinute_in: [Time!] + + """""" + datetimeMinute_leq: Time + + """""" + datetimeMinute_lt: Time + + """""" + datetimeMinute_neq: Time + + """""" + datetimeMinute_notin: [Time!] + + """""" + triggerName: string + + """""" + triggerName_geq: string + + """""" + triggerName_gt: string + + """""" + triggerName_in: [string!] + + """""" + triggerName_leq: string + + """""" + triggerName_like: string + + """""" + triggerName_lt: string + + """""" + triggerName_neq: string + + """""" + triggerName_notin: [string!] + + """""" + triggerName_notlike: string +} + +"""""" +enum ZoneZarazTriggersAdaptiveGroupsOrderBy { + """count() ascending""" + count_ASC + + """count() descending""" + count_DESC + + """date ascending""" + date_ASC + + """date descending""" + date_DESC + + """datetimeFifteenMinutes ascending""" + datetimeFifteenMinutes_ASC + + """datetimeFifteenMinutes descending""" + datetimeFifteenMinutes_DESC + + """datetimeFiveMinutes ascending""" + datetimeFiveMinutes_ASC + + """datetimeFiveMinutes descending""" + datetimeFiveMinutes_DESC + + """datetimeHour ascending""" + datetimeHour_ASC + + """datetimeHour descending""" + datetimeHour_DESC + + """datetimeMinute ascending""" + datetimeMinute_ASC + + """datetimeMinute descending""" + datetimeMinute_DESC + + """triggerName ascending""" + triggerName_ASC + + """triggerName descending""" + triggerName_DESC +} + +"""""" +type account { + """Magic WAN Connector Metrics (deprecated)""" + MagicWANConnectorMetricsAdaptiveGroups(filter: AccountMagicWANConnectorMetricsAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountMagicWANConnectorMetricsAdaptiveGroupsOrderBy!]): [AccountMagicWANConnectorMetricsAdaptiveGroups!]! @deprecated(reason: "Node is replaced with more capable mconnTelemetry nodes") + + """Access login requests""" + accessLoginRequestsAdaptiveGroups(filter: AccountAccessLoginRequestsAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountAccessLoginRequestsAdaptiveGroupsOrderBy!]): [AccountAccessLoginRequestsAdaptiveGroups!]! + + """""" + accountTag: string! + + """Network analytics data for Advanced DNS Protection""" + advancedDnsProtectionNetworkAnalyticsAdaptiveGroups(filter: AccountAdvancedDnsProtectionNetworkAnalyticsAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountAdvancedDnsProtectionNetworkAnalyticsAdaptiveGroupsOrderBy!]): [AccountAdvancedDnsProtectionNetworkAnalyticsAdaptiveGroups!]! + + """Network analytics data for Advanced TCP Protection""" + advancedTcpProtectionNetworkAnalyticsAdaptiveGroups(filter: AccountAdvancedTcpProtectionNetworkAnalyticsAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountAdvancedTcpProtectionNetworkAnalyticsAdaptiveGroupsOrderBy!]): [AccountAdvancedTcpProtectionNetworkAnalyticsAdaptiveGroups!]! @deprecated(reason: "This node is an alias for advancedTcpProtectionNetworkAnalyticsAdaptiveGroups; prefer using the new name instead") + + """Beta. Aegis IP utilization metrics""" + aegisIpUtilizationAdaptiveGroups(filter: AccountAegisIpUtilizationAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountAegisIpUtilizationAdaptiveGroupsOrderBy!]): [AccountAegisIpUtilizationAdaptiveGroups!]! + + """AI Gateway Cache""" + aiGatewayCacheAdaptiveGroups(filter: AccountAiGatewayCacheAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountAiGatewayCacheAdaptiveGroupsOrderBy!]): [AccountAiGatewayCacheAdaptiveGroups!]! + + """AI Gateway Errors""" + aiGatewayErrorsAdaptiveGroups(filter: AccountAiGatewayErrorsAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountAiGatewayErrorsAdaptiveGroupsOrderBy!]): [AccountAiGatewayErrorsAdaptiveGroups!]! + + """AI Gateway Requests""" + aiGatewayRequestsAdaptiveGroups(filter: AccountAiGatewayRequestsAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountAiGatewayRequestsAdaptiveGroupsOrderBy!]): [AccountAiGatewayRequestsAdaptiveGroups!]! + + """AI Gateway Stored Rows""" + aiGatewaySizeAdaptiveGroups(filter: AccountAiGatewaySizeAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountAiGatewaySizeAdaptiveGroupsOrderBy!]): [AccountAiGatewaySizeAdaptiveGroups!]! + + """AI Inference logs with adaptive sampling""" + aiInferenceAdaptive(filter: AccountAiInferenceAdaptiveFilter_InputObject!, limit: uint64!, orderBy: [AccountAiInferenceAdaptiveOrderBy!]): [AccountAiInferenceAdaptive!]! + + """Aggregated AI Inference logs with adaptive sampling""" + aiInferenceAdaptiveGroups(filter: AccountAiInferenceAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountAiInferenceAdaptiveGroupsOrderBy!]): [AccountAiInferenceAdaptiveGroups!]! + + """AutoRAG Config API Search Analytics""" + autoRAGConfigAPIAdaptiveGroups(filter: AccountAutoRAGConfigAPIAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountAutoRAGConfigAPIAdaptiveGroupsOrderBy!]): [AccountAutoRAGConfigAPIAdaptiveGroups!]! + + """AutoRAG Engine Ingestion Analytics""" + autoRAGEngineAdaptiveGroups(filter: AccountAutoRAGEngineAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountAutoRAGEngineAdaptiveGroupsOrderBy!]): [AccountAutoRAGEngineAdaptiveGroups!]! + + """Aggregated count of Browser Isolation sessions""" + browserIsolationSessionsAdaptiveGroups(filter: AccountBrowserIsolationSessionsAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountBrowserIsolationSessionsAdaptiveGroupsOrderBy!]): [AccountBrowserIsolationSessionsAdaptiveGroups!]! + + """Aggregated count of Browser Isolation User Actions matches""" + browserIsolationUserActionsAdaptiveGroups(filter: AccountBrowserIsolationUserActionsAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountBrowserIsolationUserActionsAdaptiveGroupsOrderBy!]): [AccountBrowserIsolationUserActionsAdaptiveGroups!]! + + """Aggregated Browser Rendering API events with adaptive sampling""" + browserRenderingApiAdaptiveGroups(filter: AccountBrowserRenderingApiAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountBrowserRenderingApiAdaptiveGroupsOrderBy!]): [AccountBrowserRenderingApiAdaptiveGroups!]! + + """ + Aggregated Browser Rendering worker binding sessions with adaptive sampling + """ + browserRenderingBindingSessionsAdaptiveGroups(filter: AccountBrowserRenderingBindingSessionsAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountBrowserRenderingBindingSessionsAdaptiveGroupsOrderBy!]): [AccountBrowserRenderingBindingSessionsAdaptiveGroups!]! + + """ + Aggregated Browser Rendering and Browser Rendering REST API browser sessions with adaptive sampling + """ + browserRenderingBrowserTimeUsageAdaptiveGroups(filter: AccountBrowserRenderingBrowserTimeUsageAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountBrowserRenderingBrowserTimeUsageAdaptiveGroupsOrderBy!]): [AccountBrowserRenderingBrowserTimeUsageAdaptiveGroups!]! + + """Browser Rendering events with adaptive sampling""" + browserRenderingEventsAdaptive(filter: AccountBrowserRenderingEventsAdaptiveFilter_InputObject!, limit: uint64!, orderBy: [AccountBrowserRenderingEventsAdaptiveOrderBy!]): [AccountBrowserRenderingEventsAdaptive!]! + + """Aggregated Browser Rendering events with adaptive sampling""" + browserRenderingEventsAdaptiveGroups(filter: AccountBrowserRenderingEventsAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountBrowserRenderingEventsAdaptiveGroupsOrderBy!]): [AccountBrowserRenderingEventsAdaptiveGroups!]! + + """ + (TESTING ONLY, NOT FOR PRODUCTION) Raw Calls events with adaptive sampling + """ + callsStatusAdaptive(filter: AccountCallsStatusAdaptiveFilter_InputObject!, limit: uint64!, orderBy: [AccountCallsStatusAdaptiveOrderBy!]): [AccountCallsStatusAdaptive!]! + + """ + Aggregated Calls TURN bandwidth usage with adaptive sampling" + """ + callsTurnUsageAdaptiveGroups(filter: AccountCallsTurnUsageAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountCallsTurnUsageAdaptiveGroupsOrderBy!]): [AccountCallsTurnUsageAdaptiveGroups!]! + + """Beta. Aggregated Calls SFU bandwidth usage with adaptive sampling""" + callsUsageAdaptiveGroups(filter: AccountCallsUsageAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountCallsUsageAdaptiveGroupsOrderBy!]): [AccountCallsUsageAdaptiveGroups!]! + + """Network analytics data for Cloudflare CDN traffic""" + cdnNetworkAnalyticsAdaptiveGroups(filter: AccountCdnNetworkAnalyticsAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountCdnNetworkAnalyticsAdaptiveGroupsOrderBy!]): [AccountCdnNetworkAnalyticsAdaptiveGroups!]! + + """Metrics for Cloudchamber applications and deployments""" + cloudchamberMetricsAdaptiveGroups(filter: AccountCloudchamberMetricsAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountCloudchamberMetricsAdaptiveGroupsOrderBy!]): [AccountCloudchamberMetricsAdaptiveGroups!]! + + """Cloudflare tunnel Device Analytics""" + cloudflareTunnelsAnalyticsAdaptiveGroups(filter: AccountCloudflareTunnelsAnalyticsAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountCloudflareTunnelsAnalyticsAdaptiveGroupsOrderBy!]): [AccountCloudflareTunnelsAnalyticsAdaptiveGroups!]! + + """Metrics for Cloudchamber applications and deployments""" + containersMetricsAdaptiveGroups(filter: AccountContainersMetricsAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountContainersMetricsAdaptiveGroupsOrderBy!]): [AccountContainersMetricsAdaptiveGroups!]! + + """Beta. Aggregated D1 analytics with adaptive sampling""" + d1AnalyticsAdaptiveGroups(filter: AccountD1AnalyticsAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountD1AnalyticsAdaptiveGroupsOrderBy!]): [AccountD1AnalyticsAdaptiveGroups!]! + + """Beta. D1 query metrics with adaptive sampling""" + d1QueriesAdaptiveGroups(filter: AccountD1QueriesAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountD1QueriesAdaptiveGroupsOrderBy!]): [AccountD1QueriesAdaptiveGroups!]! + + """Beta. D1 storage with adaptive sampling""" + d1StorageAdaptiveGroups(filter: AccountD1StorageAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountD1StorageAdaptiveGroupsOrderBy!]): [AccountD1StorageAdaptiveGroups!]! + + """Analytics data for DNS queries""" + dnsAnalyticsAdaptive(filter: AccountDnsAnalyticsAdaptiveFilter_InputObject!, limit: uint64!, orderBy: [AccountDnsAnalyticsAdaptiveOrderBy!]): [AccountDnsAnalyticsAdaptive!]! + + """Analytics data for DNS queries""" + dnsAnalyticsAdaptiveGroups(filter: AccountDnsAnalyticsAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountDnsAnalyticsAdaptiveGroupsOrderBy!]): [AccountDnsAnalyticsAdaptiveGroups!]! + + """Analytics data for DNS Firewall queries""" + dnsFirewallAnalyticsAdaptive(filter: AccountDnsFirewallAnalyticsAdaptiveFilter_InputObject!, limit: uint64!, orderBy: [AccountDnsFirewallAnalyticsAdaptiveOrderBy!]): [AccountDnsFirewallAnalyticsAdaptive!]! + + """Analytics data for DNS Firewall queries""" + dnsFirewallAnalyticsAdaptiveGroups(filter: AccountDnsFirewallAnalyticsAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountDnsFirewallAnalyticsAdaptiveGroupsOrderBy!]): [AccountDnsFirewallAnalyticsAdaptiveGroups!]! + + """Attack analytics metadata for attacks detected by dosd""" + dosdAttackAnalyticsGroups(filter: AccountDosdAttackAnalyticsGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountDosdAttackAnalyticsGroupsOrderBy!]): [AccountDosdAttackAnalyticsGroups!]! + + """Network analytics data for dosd""" + dosdNetworkAnalyticsAdaptiveGroups(filter: AccountDosdNetworkAnalyticsAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountDosdNetworkAnalyticsAdaptiveGroupsOrderBy!]): [AccountDosdNetworkAnalyticsAdaptiveGroups!]! + + """Durable Objects invocations with adaptive sampling""" + durableObjectsInvocationsAdaptiveGroups(filter: AccountDurableObjectsInvocationsAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountDurableObjectsInvocationsAdaptiveGroupsOrderBy!]): [AccountDurableObjectsInvocationsAdaptiveGroups!]! + + """Durable Objects periodic metrics""" + durableObjectsPeriodicGroups(filter: AccountDurableObjectsPeriodicGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountDurableObjectsPeriodicGroupsOrderBy!]): [AccountDurableObjectsPeriodicGroups!]! + + """Storage metrics for SQL-backed Durable Objects.""" + durableObjectsSqlStorageGroups(filter: AccountDurableObjectsSqlStorageGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountDurableObjectsSqlStorageGroupsOrderBy!]): [AccountDurableObjectsSqlStorageGroups!]! + + """Durable Objects storage metrics""" + durableObjectsStorageGroups(filter: AccountDurableObjectsStorageGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountDurableObjectsStorageGroupsOrderBy!]): [AccountDurableObjectsStorageGroups!]! + + """Durable Objects subrequests with adaptive sampling""" + durableObjectsSubrequestsAdaptiveGroups(filter: AccountDurableObjectsSubrequestsAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountDurableObjectsSubrequestsAdaptiveGroupsOrderBy!]): [AccountDurableObjectsSubrequestsAdaptiveGroups!]! + + """FBM analytics metadata for attacks detected by dosd""" + fbmAttackAnalyticsGroups(filter: AccountFbmAttackAnalyticsGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountFbmAttackAnalyticsGroupsOrderBy!]): [AccountFbmAttackAnalyticsGroups!]! + + """Raw Firewall events with adaptive sampling""" + firewallEventsAdaptive(filter: AccountFirewallEventsAdaptiveFilter_InputObject!, limit: uint64!, orderBy: [AccountFirewallEventsAdaptiveOrderBy!]): [AccountFirewallEventsAdaptive!]! + + """Aggregated Firewall events with adaptive sampling""" + firewallEventsAdaptiveGroups(filter: AccountFirewallEventsAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountFirewallEventsAdaptiveGroupsOrderBy!]): [AccountFirewallEventsAdaptiveGroups!]! + + """Network analytics data for flowtrackd""" + flowtrackdNetworkAnalyticsAdaptiveGroups(filter: AccountFlowtrackdNetworkAnalyticsAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountFlowtrackdNetworkAnalyticsAdaptiveGroupsOrderBy!]): [AccountFlowtrackdNetworkAnalyticsAdaptiveGroups!]! @deprecated(reason: "This node is an alias for advancedTcpProtectionNetworkAnalyticsAdaptiveGroups; prefer using the new name instead") + + """ + Aggregated metrics about downstream (client to edge) L4 Gateway Sessions. Metrics are reported on TCP or UDP session close + """ + gatewayL4DownstreamSessionsAdaptiveGroups(filter: AccountGatewayL4DownstreamSessionsAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountGatewayL4DownstreamSessionsAdaptiveGroupsOrderBy!]): [AccountGatewayL4DownstreamSessionsAdaptiveGroups!]! + + """BETA - Aggregate counts of Gateway L4 sessions with adaptive sampling""" + gatewayL4SessionsAdaptiveGroups(filter: AccountGatewayL4SessionsAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountGatewayL4SessionsAdaptiveGroupsOrderBy!]): [AccountGatewayL4SessionsAdaptiveGroups!]! + + """ + Aggregated metrics about upstream (edge to client) L4 Gateway Sessions. Metrics are reported on TCP, QUIC or UDP session close + """ + gatewayL4UpstreamSessionsAdaptiveGroups(filter: AccountGatewayL4UpstreamSessionsAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountGatewayL4UpstreamSessionsAdaptiveGroupsOrderBy!]): [AccountGatewayL4UpstreamSessionsAdaptiveGroups!]! + + """BETA - Aggregate counts of Gateway L7 requests with adaptive sampling""" + gatewayL7RequestsAdaptiveGroups(filter: AccountGatewayL7RequestsAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountGatewayL7RequestsAdaptiveGroupsOrderBy!]): [AccountGatewayL7RequestsAdaptiveGroups!]! + + """ + BETA - Aggregate counts of Gateway Resolver queries by category with adaptive sampling + """ + gatewayResolverByCategoryAdaptiveGroups(filter: AccountGatewayResolverByCategoryAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountGatewayResolverByCategoryAdaptiveGroupsOrderBy!]): [AccountGatewayResolverByCategoryAdaptiveGroups!]! + + """Stats on dns custom resolvers""" + gatewayResolverByCustomResolverGroups(filter: AccountGatewayResolverByCustomResolverGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountGatewayResolverByCustomResolverGroupsOrderBy!]): [AccountGatewayResolverByCustomResolverGroups!]! + + """Total time spent on executing firewall rules at the edge""" + gatewayResolverByRuleExecutionPerformanceAdaptiveGroups(filter: AccountGatewayResolverByRuleExecutionPerformanceAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountGatewayResolverByRuleExecutionPerformanceAdaptiveGroupsOrderBy!]): [AccountGatewayResolverByRuleExecutionPerformanceAdaptiveGroups!]! + + """ + BETA - Aggregate counts of Gateway Resolver queries with adaptive sampling + """ + gatewayResolverQueriesAdaptiveGroups(filter: AccountGatewayResolverQueriesAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountGatewayResolverQueriesAdaptiveGroupsOrderBy!]): [AccountGatewayResolverQueriesAdaptiveGroups!]! + + """Daily rollups of request data""" + httpRequests1dGroups(filter: AccountHttpRequests1dGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountHttpRequests1dGroupsOrderBy!]): [AccountHttpRequests1dGroups!]! + + """Hourly rollups of request data""" + httpRequests1hGroups(filter: AccountHttpRequests1hGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountHttpRequests1hGroupsOrderBy!]): [AccountHttpRequests1hGroups!]! + + """Minutely rollups of request data""" + httpRequests1mGroups(filter: AccountHttpRequests1mGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountHttpRequests1mGroupsOrderBy!]): [AccountHttpRequests1mGroups!]! + + """Raw HTTP requests with adaptive sampling""" + httpRequestsAdaptive(filter: AccountHttpRequestsAdaptiveFilter_InputObject!, limit: uint64!, orderBy: [AccountHttpRequestsAdaptiveOrderBy!]): [AccountHttpRequestsAdaptive!]! + + """Aggregated HTTP requests data with adaptive sampling""" + httpRequestsAdaptiveGroups(filter: AccountHttpRequestsAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountHttpRequestsAdaptiveGroupsOrderBy!]): [AccountHttpRequestsAdaptiveGroups!]! + + """A high-level summary of HTTP requests made by end users.""" + httpRequestsOverviewAdaptiveGroups(filter: AccountHttpRequestsOverviewAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountHttpRequestsOverviewAdaptiveGroupsOrderBy!]): [AccountHttpRequestsOverviewAdaptiveGroups!]! + + """Hyperdrive query events with adaptive sampling.""" + hyperdriveQueriesAdaptiveGroups(filter: AccountHyperdriveQueriesAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountHyperdriveQueriesAdaptiveGroupsOrderBy!]): [AccountHyperdriveQueriesAdaptiveGroups!]! + + """A high-level summary of Cloudflare Images served to end users.""" + imagesRequestsAdaptiveGroups(filter: AccountImagesRequestsAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountImagesRequestsAdaptiveGroupsOrderBy!]): [AccountImagesRequestsAdaptiveGroups!]! + + """Image unique transfromations per day""" + imagesUniqueTransformations(filter: AccountImagesUniqueTransformationsFilter_InputObject!, limit: uint64!, orderBy: [AccountImagesUniqueTransformationsOrderBy!]): [AccountImagesUniqueTransformations!]! + + """Image unique transformations accumulated since start of month""" + imagesUniqueTransformationsAccumulatedSinceStartOfMonth(filter: AccountImagesUniqueTransformationsAccumulatedSinceStartOfMonthFilter_InputObject!, limit: uint64!, orderBy: [AccountImagesUniqueTransformationsAccumulatedSinceStartOfMonthOrderBy!]): [AccountImagesUniqueTransformationsAccumulatedSinceStartOfMonth!]! + + """KV operations data with adaptive sampling""" + kvOperationsAdaptiveGroups(filter: AccountKvOperationsAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountKvOperationsAdaptiveGroupsOrderBy!]): [AccountKvOperationsAdaptiveGroups!]! + + """KV stored data with adaptive sampling""" + kvStorageAdaptiveGroups(filter: AccountKvStorageAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountKvStorageAdaptiveGroupsOrderBy!]): [AccountKvStorageAdaptiveGroups!]! + + """Live input events with adaptive sampling""" + liveInputEventsAdaptive(filter: AccountLiveInputEventsAdaptiveFilter_InputObject!, limit: uint64!, orderBy: [AccountLiveInputEventsAdaptiveOrderBy!]): [AccountLiveInputEventsAdaptive!]! + + """Aggregated live input events with adaptive sampling""" + liveInputEventsAdaptiveGroups(filter: AccountLiveInputEventsAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountLiveInputEventsAdaptiveGroupsOrderBy!]): [AccountLiveInputEventsAdaptiveGroups!]! + + """Ingestion metrics for Log Explorer""" + logExplorerIngestionAdaptiveGroups(filter: AccountLogExplorerIngestionAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountLogExplorerIngestionAdaptiveGroupsOrderBy!]): [AccountLogExplorerIngestionAdaptiveGroups!]! + + """Beta. Logpush job health metrics""" + logpushHealthAdaptiveGroups(filter: AccountLogpushHealthAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountLogpushHealthAdaptiveGroupsOrderBy!]): [AccountLogpushHealthAdaptiveGroups!]! + + """Magic Endpoint Healthcheck events with adaptive sampling.""" + magicEndpointHealthCheckAdaptiveGroups(filter: AccountMagicEndpointHealthCheckAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountMagicEndpointHealthCheckAdaptiveGroupsOrderBy!]): [AccountMagicEndpointHealthCheckAdaptiveGroups!]! + + """Network analytics data for Magic Firewall""" + magicFirewallNetworkAnalyticsAdaptiveGroups(filter: AccountMagicFirewallNetworkAnalyticsAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountMagicFirewallNetworkAnalyticsAdaptiveGroupsOrderBy!]): [AccountMagicFirewallNetworkAnalyticsAdaptiveGroups!]! + + """Network analytics data for Magic Firewall Ratelimiting""" + magicFirewallRateLimitNetworkAnalyticsAdaptiveGroups(filter: AccountMagicFirewallRateLimitNetworkAnalyticsAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountMagicFirewallRateLimitNetworkAnalyticsAdaptiveGroupsOrderBy!]): [AccountMagicFirewallRateLimitNetworkAnalyticsAdaptiveGroups!]! + + """Data to visualize traffic allowed and blocked by Magic Firewall rules""" + magicFirewallSamplesAdaptiveGroups(filter: AccountMagicFirewallSamplesAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountMagicFirewallSamplesAdaptiveGroupsOrderBy!]): [AccountMagicFirewallSamplesAdaptiveGroups!]! + + """Network analytics data for Magic IDS""" + magicIDPSNetworkAnalyticsAdaptiveGroups(filter: AccountMagicIDPSNetworkAnalyticsAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountMagicIDPSNetworkAnalyticsAdaptiveGroupsOrderBy!]): [AccountMagicIDPSNetworkAnalyticsAdaptiveGroups!]! + + """Network analytics data for Magic Transit traffic""" + magicTransitNetworkAnalyticsAdaptiveGroups(filter: AccountMagicTransitNetworkAnalyticsAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountMagicTransitNetworkAnalyticsAdaptiveGroupsOrderBy!]): [AccountMagicTransitNetworkAnalyticsAdaptiveGroups!]! + + """Magic Transit Tunnel Health Check SLO events with adaptive sampling.""" + magicTransitTunnelHealthCheckSLOsAdaptiveGroups(filter: AccountMagicTransitTunnelHealthCheckSLOsAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountMagicTransitTunnelHealthCheckSLOsAdaptiveGroupsOrderBy!]): [AccountMagicTransitTunnelHealthCheckSLOsAdaptiveGroups!]! + + """ + Beta. Magic Transit Health check results for customer GRE Tunnels with adaptive sampling (ABR). + """ + magicTransitTunnelHealthChecksAdaptiveGroups(filter: AccountMagicTransitTunnelHealthChecksAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountMagicTransitTunnelHealthChecksAdaptiveGroupsOrderBy!]): [AccountMagicTransitTunnelHealthChecksAdaptiveGroups!]! + + """Bandwidth usage metric of a Magic Transit tunnel.""" + magicTransitTunnelTrafficAdaptiveGroups(filter: AccountMagicTransitTunnelTrafficAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountMagicTransitTunnelTrafficAdaptiveGroupsOrderBy!]): [AccountMagicTransitTunnelTrafficAdaptiveGroups!]! + + """Aggregated Magic WAN Connector events with adaptive sampling""" + mconnTelemetryEventsAdaptiveGroups(filter: AccountMconnTelemetryEventsAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountMconnTelemetryEventsAdaptiveGroupsOrderBy!]): [AccountMconnTelemetryEventsAdaptiveGroups!]! + + """Aggregated Magic WAN Connector events with adaptive sampling""" + mconnTelemetryEventsStagingAdaptiveGroups(filter: AccountMconnTelemetryEventsStagingAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountMconnTelemetryEventsStagingAdaptiveGroupsOrderBy!]): [AccountMconnTelemetryEventsStagingAdaptiveGroups!]! + + """ + Aggregated Magic WAN Connector snapshots of DHCP leases with adaptive sampling + """ + mconnTelemetrySnapshotDhcpLeasesAdaptiveGroups(filter: AccountMconnTelemetrySnapshotDhcpLeasesAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountMconnTelemetrySnapshotDhcpLeasesAdaptiveGroupsOrderBy!]): [AccountMconnTelemetrySnapshotDhcpLeasesAdaptiveGroups!]! + + """ + Aggregated Magic WAN Connector snapshots of DHCP leases with adaptive sampling + """ + mconnTelemetrySnapshotDhcpLeasesStagingAdaptiveGroups(filter: AccountMconnTelemetrySnapshotDhcpLeasesStagingAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountMconnTelemetrySnapshotDhcpLeasesStagingAdaptiveGroupsOrderBy!]): [AccountMconnTelemetrySnapshotDhcpLeasesStagingAdaptiveGroups!]! + + """Aggregated Magic WAN Connector disk snapshots with adaptive sampling""" + mconnTelemetrySnapshotDisksAdaptiveGroups(filter: AccountMconnTelemetrySnapshotDisksAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountMconnTelemetrySnapshotDisksAdaptiveGroupsOrderBy!]): [AccountMconnTelemetrySnapshotDisksAdaptiveGroups!]! + + """Aggregated Magic WAN Connector disk snapshots with adaptive sampling""" + mconnTelemetrySnapshotDisksStagingAdaptiveGroups(filter: AccountMconnTelemetrySnapshotDisksStagingAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountMconnTelemetrySnapshotDisksStagingAdaptiveGroupsOrderBy!]): [AccountMconnTelemetrySnapshotDisksStagingAdaptiveGroups!]! + + """ + Aggregated Magic WAN Connector interface address snapshots with adaptive sampling + """ + mconnTelemetrySnapshotInterfaceAddressesAdaptiveGroups(filter: AccountMconnTelemetrySnapshotInterfaceAddressesAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountMconnTelemetrySnapshotInterfaceAddressesAdaptiveGroupsOrderBy!]): [AccountMconnTelemetrySnapshotInterfaceAddressesAdaptiveGroups!]! + + """ + Aggregated Magic WAN Connector interface address snapshots with adaptive sampling + """ + mconnTelemetrySnapshotInterfaceAddressesStagingAdaptiveGroups(filter: AccountMconnTelemetrySnapshotInterfaceAddressesStagingAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountMconnTelemetrySnapshotInterfaceAddressesStagingAdaptiveGroupsOrderBy!]): [AccountMconnTelemetrySnapshotInterfaceAddressesStagingAdaptiveGroups!]! + + """ + Aggregated Magic WAN Connector interface snapshots with adaptive sampling + """ + mconnTelemetrySnapshotInterfacesAdaptiveGroups(filter: AccountMconnTelemetrySnapshotInterfacesAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountMconnTelemetrySnapshotInterfacesAdaptiveGroupsOrderBy!]): [AccountMconnTelemetrySnapshotInterfacesAdaptiveGroups!]! + + """ + Aggregated Magic WAN Connector interface snapshots with adaptive sampling + """ + mconnTelemetrySnapshotInterfacesStagingAdaptiveGroups(filter: AccountMconnTelemetrySnapshotInterfacesStagingAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountMconnTelemetrySnapshotInterfacesStagingAdaptiveGroupsOrderBy!]): [AccountMconnTelemetrySnapshotInterfacesStagingAdaptiveGroups!]! + + """Aggregated Magic WAN Connector mount snapshots with adaptive sampling""" + mconnTelemetrySnapshotMountsAdaptiveGroups(filter: AccountMconnTelemetrySnapshotMountsAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountMconnTelemetrySnapshotMountsAdaptiveGroupsOrderBy!]): [AccountMconnTelemetrySnapshotMountsAdaptiveGroups!]! + + """Aggregated Magic WAN Connector mount snapshots with adaptive sampling""" + mconnTelemetrySnapshotMountsStagingAdaptiveGroups(filter: AccountMconnTelemetrySnapshotMountsStagingAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountMconnTelemetrySnapshotMountsStagingAdaptiveGroupsOrderBy!]): [AccountMconnTelemetrySnapshotMountsStagingAdaptiveGroups!]! + + """Aggregated Magic WAN Connector netdev snapshots with adaptive sampling""" + mconnTelemetrySnapshotNetdevsAdaptiveGroups(filter: AccountMconnTelemetrySnapshotNetdevsAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountMconnTelemetrySnapshotNetdevsAdaptiveGroupsOrderBy!]): [AccountMconnTelemetrySnapshotNetdevsAdaptiveGroups!]! + + """Aggregated Magic WAN Connector netdev snapshots with adaptive sampling""" + mconnTelemetrySnapshotNetdevsStagingAdaptiveGroups(filter: AccountMconnTelemetrySnapshotNetdevsStagingAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountMconnTelemetrySnapshotNetdevsStagingAdaptiveGroupsOrderBy!]): [AccountMconnTelemetrySnapshotNetdevsStagingAdaptiveGroups!]! + + """ + Aggregated Magic WAN Connector thermal snapshots with adaptive sampling + """ + mconnTelemetrySnapshotThermalsAdaptiveGroups(filter: AccountMconnTelemetrySnapshotThermalsAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountMconnTelemetrySnapshotThermalsAdaptiveGroupsOrderBy!]): [AccountMconnTelemetrySnapshotThermalsAdaptiveGroups!]! + + """ + Aggregated Magic WAN Connector thermal snapshots with adaptive sampling + """ + mconnTelemetrySnapshotThermalsStagingAdaptiveGroups(filter: AccountMconnTelemetrySnapshotThermalsStagingAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountMconnTelemetrySnapshotThermalsStagingAdaptiveGroupsOrderBy!]): [AccountMconnTelemetrySnapshotThermalsStagingAdaptiveGroups!]! + + """Aggregated Magic WAN Connector tunnel snapshots with adaptive sampling""" + mconnTelemetrySnapshotTunnelsAdaptiveGroups(filter: AccountMconnTelemetrySnapshotTunnelsAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountMconnTelemetrySnapshotTunnelsAdaptiveGroupsOrderBy!]): [AccountMconnTelemetrySnapshotTunnelsAdaptiveGroups!]! + + """Aggregated Magic WAN Connector tunnel snapshots with adaptive sampling""" + mconnTelemetrySnapshotTunnelsStagingAdaptiveGroups(filter: AccountMconnTelemetrySnapshotTunnelsStagingAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountMconnTelemetrySnapshotTunnelsStagingAdaptiveGroupsOrderBy!]): [AccountMconnTelemetrySnapshotTunnelsStagingAdaptiveGroups!]! + + """Aggregated Magic WAN Connector system snapshots with adaptive sampling""" + mconnTelemetrySnapshotsAdaptiveGroups(filter: AccountMconnTelemetrySnapshotsAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountMconnTelemetrySnapshotsAdaptiveGroupsOrderBy!]): [AccountMconnTelemetrySnapshotsAdaptiveGroups!]! + + """Aggregated Magic WAN Connector system snapshots with adaptive sampling""" + mconnTelemetrySnapshotsStagingAdaptiveGroups(filter: AccountMconnTelemetrySnapshotsStagingAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountMconnTelemetrySnapshotsStagingAdaptiveGroupsOrderBy!]): [AccountMconnTelemetrySnapshotsStagingAdaptiveGroups!]! + + """Media unique transfromations per day""" + mediaUniqueTransformations(filter: AccountMediaUniqueTransformationsFilter_InputObject!, limit: uint64!, orderBy: [AccountMediaUniqueTransformationsOrderBy!]): [AccountMediaUniqueTransformations!]! + + """Media unique transformations accumulated since start of month""" + mediaUniqueTransformationsAccumulatedSinceStartOfMonth(filter: AccountMediaUniqueTransformationsAccumulatedSinceStartOfMonthFilter_InputObject!, limit: uint64!, orderBy: [AccountMediaUniqueTransformationsAccumulatedSinceStartOfMonthOrderBy!]): [AccountMediaUniqueTransformationsAccumulatedSinceStartOfMonth!]! + + """AWS VPC Flow data collected through Magic Network Monitoring""" + mnmAWSVPCFlowDataAdaptiveGroups(filter: AccountMnmAWSVPCFlowDataAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountMnmAWSVPCFlowDataAdaptiveGroupsOrderBy!]): [AccountMnmAWSVPCFlowDataAdaptiveGroups!]! + + """Flow data collected through Magic Network Monitoring""" + mnmFlowDataAdaptiveGroups(filter: AccountMnmFlowDataAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountMnmFlowDataAdaptiveGroupsOrderBy!]): [AccountMnmFlowDataAdaptiveGroups!]! + + """Data to visualize network error logs""" + nelReportsAdaptiveGroups(filter: AccountNelReportsAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountNelReportsAdaptiveGroupsOrderBy!]): [AccountNelReportsAdaptiveGroups!]! + + """oHTTP request metrics with adaptive sampling""" + ohttpMetricsAdaptive(filter: AccountOhttpMetricsAdaptiveFilter_InputObject!, limit: uint64!, orderBy: [AccountOhttpMetricsAdaptiveOrderBy!]): [AccountOhttpMetricsAdaptive!]! + + """Aggregated oHTTP request metrics with adaptive sampling""" + ohttpMetricsAdaptiveGroups(filter: AccountOhttpMetricsAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountOhttpMetricsAdaptiveGroupsOrderBy!]): [AccountOhttpMetricsAdaptiveGroups!]! + + """Pages Functions invocations with adaptive sampling""" + pagesFunctionsInvocationsAdaptiveGroups(filter: AccountPagesFunctionsInvocationsAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountPagesFunctionsInvocationsAdaptiveGroupsOrderBy!]): [AccountPagesFunctionsInvocationsAdaptiveGroups!]! + + """Beta. Data delivered via Workers Pipelines""" + pipelinesDeliveryAdaptiveGroups(filter: AccountPipelinesDeliveryAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountPipelinesDeliveryAdaptiveGroupsOrderBy!]): [AccountPipelinesDeliveryAdaptiveGroups!]! + + """Beta. Data ingested via Workers Pipelines""" + pipelinesIngestionAdaptiveGroups(filter: AccountPipelinesIngestionAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountPipelinesIngestionAdaptiveGroupsOrderBy!]): [AccountPipelinesIngestionAdaptiveGroups!]! + + """Aggregated Pipelines source metrics with adaptive sampling""" + pipelinesOperatorAdaptiveGroups(filter: AccountPipelinesOperatorAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountPipelinesOperatorAdaptiveGroupsOrderBy!]): [AccountPipelinesOperatorAdaptiveGroups!]! + + """Aggregated Pipelines source metrics with adaptive sampling""" + pipelinesOperatorStagingAdaptiveGroups(filter: AccountPipelinesOperatorStagingAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountPipelinesOperatorStagingAdaptiveGroupsOrderBy!]): [AccountPipelinesOperatorStagingAdaptiveGroups!]! + + """Aggregated Pipelines sink metrics with adaptive sampling""" + pipelinesSinkAdaptiveGroups(filter: AccountPipelinesSinkAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountPipelinesSinkAdaptiveGroupsOrderBy!]): [AccountPipelinesSinkAdaptiveGroups!]! + + """Aggregated Pipelines sink metrics with adaptive sampling""" + pipelinesSinkStagingAdaptiveGroups(filter: AccountPipelinesSinkStagingAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountPipelinesSinkStagingAdaptiveGroupsOrderBy!]): [AccountPipelinesSinkStagingAdaptiveGroups!]! + + """Network analytics data for Programmable Flow Protection""" + programmableFlowProtectionNetworkAnalyticsAdaptiveGroups(filter: AccountProgrammableFlowProtectionNetworkAnalyticsAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountProgrammableFlowProtectionNetworkAnalyticsAdaptiveGroupsOrderBy!]): [AccountProgrammableFlowProtectionNetworkAnalyticsAdaptiveGroups!]! + + """ + Beta. Queue backlog data with adaptive sampling. Queues that are not being written to, or read from, will not return data, even if they have a backlog. + """ + queueBacklogAdaptiveGroups(filter: AccountQueueBacklogAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountQueueBacklogAdaptiveGroupsOrderBy!]): [AccountQueueBacklogAdaptiveGroups!]! + + """ + Beta. Queue consumer metrics with adaptive sampling. Inactive queues will not return data. + """ + queueConsumerMetricsAdaptiveGroups(filter: AccountQueueConsumerMetricsAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountQueueConsumerMetricsAdaptiveGroupsOrderBy!]): [AccountQueueConsumerMetricsAdaptiveGroups!]! + + """ + Beta. Queue delayed backlog data with adaptive sampling. Queues that are not being written to, or read from, will not return data, even if they have a backlog. + """ + queueDelayedBacklogAdaptiveGroups(filter: AccountQueueDelayedBacklogAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountQueueDelayedBacklogAdaptiveGroupsOrderBy!]): [AccountQueueDelayedBacklogAdaptiveGroups!]! + + """Beta. Queue message operation data with adaptive sampling""" + queueMessageOperationsAdaptiveGroups(filter: AccountQueueMessageOperationsAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountQueueMessageOperationsAdaptiveGroupsOrderBy!]): [AccountQueueMessageOperationsAdaptiveGroups!]! + + """Beta. R2 operations with adaptive sampling""" + r2OperationsAdaptiveGroups(filter: AccountR2OperationsAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountR2OperationsAdaptiveGroupsOrderBy!]): [AccountR2OperationsAdaptiveGroups!]! + + """Beta. R2 storage with adaptive sampling""" + r2StorageAdaptiveGroups(filter: AccountR2StorageAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountR2StorageAdaptiveGroupsOrderBy!]): [AccountR2StorageAdaptiveGroups!]! + + """Beta. Aggregated RUM pageload event metrics with adaptive sampling""" + rumPageloadEventsAdaptiveGroups(filter: AccountRumPageloadEventsAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountRumPageloadEventsAdaptiveGroupsOrderBy!]): [AccountRumPageloadEventsAdaptiveGroups!]! + + """Beta. Aggregated RUM performance event metrics with adaptive sampling""" + rumPerformanceEventsAdaptiveGroups(filter: AccountRumPerformanceEventsAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountRumPerformanceEventsAdaptiveGroupsOrderBy!]): [AccountRumPerformanceEventsAdaptiveGroups!]! + + """Beta. RUM Web Vitals event metrics with adaptive sampling""" + rumWebVitalsEventsAdaptive(filter: AccountRumWebVitalsEventsAdaptiveFilter_InputObject!, limit: uint64!, orderBy: [AccountRumWebVitalsEventsAdaptiveOrderBy!]): [AccountRumWebVitalsEventsAdaptive!]! + + """Beta. Aggregated RUM Web Vitals event metrics with adaptive sampling""" + rumWebVitalsEventsAdaptiveGroups(filter: AccountRumWebVitalsEventsAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountRumWebVitalsEventsAdaptiveGroupsOrderBy!]): [AccountRumWebVitalsEventsAdaptiveGroups!]! + + """""" + settings: AccountSettings + + """Sinkhole Request Logs""" + sinkholeRequestLogsAdaptive(filter: AccountSinkholeRequestLogsAdaptiveFilter_InputObject!, limit: uint64!, orderBy: [AccountSinkholeRequestLogsAdaptiveOrderBy!]): [AccountSinkholeRequestLogsAdaptive!]! + + """Sinkhole Request Logs""" + sinkholeRequestLogsAdaptiveGroups(filter: AccountSinkholeRequestLogsAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountSinkholeRequestLogsAdaptiveGroupsOrderBy!]): [AccountSinkholeRequestLogsAdaptiveGroups!]! + + """Sippy operations with adaptive sampling""" + sippyOperationsAdaptiveGroups(filter: AccountSippyOperationsAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountSippyOperationsAdaptiveGroupsOrderBy!]): [AccountSippyOperationsAdaptiveGroups!]! + + """Network analytics data for Spectrum traffic""" + spectrumNetworkAnalyticsAdaptiveGroups(filter: AccountSpectrumNetworkAnalyticsAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountSpectrumNetworkAnalyticsAdaptiveGroupsOrderBy!]): [AccountSpectrumNetworkAnalyticsAdaptiveGroups!]! + + """Storage Tracing Information""" + storageTraces(filter: AccountStorageTracesFilter_InputObject!, limit: uint64!, orderBy: [AccountStorageTracesOrderBy!]): [AccountStorageTraces!]! + + """Stream CMCD data""" + streamCMCDAdaptiveGroups(filter: AccountStreamCMCDAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountStreamCMCDAdaptiveGroupsOrderBy!]): [AccountStreamCMCDAdaptiveGroups!]! + + """A high-level summary of Cloudflare Stream minutes viewed.""" + streamMinutesViewedAdaptiveGroups(filter: AccountStreamMinutesViewedAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountStreamMinutesViewedAdaptiveGroupsOrderBy!]): [AccountStreamMinutesViewedAdaptiveGroups!]! + + """Markdown Conversion Metrics""" + toMarkdownConversionAdaptive(filter: AccountToMarkdownConversionAdaptiveFilter_InputObject!, limit: uint64!, orderBy: [AccountToMarkdownConversionAdaptiveOrderBy!]): [AccountToMarkdownConversionAdaptive!]! + + """Markdown Conversion Metrics""" + toMarkdownConversionAdaptiveGroups(filter: AccountToMarkdownConversionAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountToMarkdownConversionAdaptiveGroupsOrderBy!]): [AccountToMarkdownConversionAdaptiveGroups!]! + + """Beta. Cloudflare Turnstile aggregated events with adaptive sampling""" + turnstileAdaptiveGroups(filter: AccountTurnstileAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountTurnstileAdaptiveGroupsOrderBy!]): [AccountTurnstileAdaptiveGroups!]! + + """Beta. Vectorize usage with adaptive sampling""" + vectorizeQueriesAdaptiveGroups(filter: AccountVectorizeQueriesAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountVectorizeQueriesAdaptiveGroupsOrderBy!]): [AccountVectorizeQueriesAdaptiveGroups!]! + + """Beta. Vectorize storage with adaptive sampling""" + vectorizeStorageAdaptiveGroups(filter: AccountVectorizeStorageAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountVectorizeStorageAdaptiveGroupsOrderBy!]): [AccountVectorizeStorageAdaptiveGroups!]! + + """Vectorize operations with adaptive sampling""" + vectorizeV2OperationsAdaptiveGroups(filter: AccountVectorizeV2OperationsAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountVectorizeV2OperationsAdaptiveGroupsOrderBy!]): [AccountVectorizeV2OperationsAdaptiveGroups!]! + + """Vectorize queries with adaptive sampling""" + vectorizeV2QueriesAdaptiveGroups(filter: AccountVectorizeV2QueriesAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountVectorizeV2QueriesAdaptiveGroupsOrderBy!]): [AccountVectorizeV2QueriesAdaptiveGroups!]! + + """Vectorize storage with adaptive sampling""" + vectorizeV2StorageAdaptiveGroups(filter: AccountVectorizeV2StorageAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountVectorizeV2StorageAdaptiveGroupsOrderBy!]): [AccountVectorizeV2StorageAdaptiveGroups!]! + + """Vectorize writes with adaptive sampling""" + vectorizeV2WritesAdaptiveGroups(filter: AccountVectorizeV2WritesAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountVectorizeV2WritesAdaptiveGroupsOrderBy!]): [AccountVectorizeV2WritesAdaptiveGroups!]! + + """ + Beta. Aggregated video streaming buffer event metrics with adaptive sampling + """ + videoBufferEventsAdaptiveGroups(filter: AccountVideoBufferEventsAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountVideoBufferEventsAdaptiveGroupsOrderBy!]): [AccountVideoBufferEventsAdaptiveGroups!]! + + """ + Beta. Aggregated video streaming playback event metrics with adaptive sampling + """ + videoPlaybackEventsAdaptiveGroups(filter: AccountVideoPlaybackEventsAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountVideoPlaybackEventsAdaptiveGroupsOrderBy!]): [AccountVideoPlaybackEventsAdaptiveGroups!]! + + """ + Beta. Aggregated video streaming quality change event metrics with adaptive sampling + """ + videoQualityEventsAdaptiveGroups(filter: AccountVideoQualityEventsAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountVideoQualityEventsAdaptiveGroupsOrderBy!]): [AccountVideoQualityEventsAdaptiveGroups!]! + + """Beta. Warp device health events with adaptive sampling""" + warpDeviceAdaptiveGroups(filter: AccountWarpDeviceAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountWarpDeviceAdaptiveGroupsOrderBy!]): [AccountWarpDeviceAdaptiveGroups!]! + + """Worker placement metrics""" + workerPlacementAdaptiveGroups(filter: AccountWorkerPlacementAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountWorkerPlacementAdaptiveGroupsOrderBy!]): [AccountWorkerPlacementAdaptiveGroups!]! + + """Beta. Custom Events with adaptive sampling""" + workersAnalyticsEngineAdaptiveGroups(filter: AccountWorkersAnalyticsEngineAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountWorkersAnalyticsEngineAdaptiveGroupsOrderBy!]): [AccountWorkersAnalyticsEngineAdaptiveGroups!]! + + """Workers Builds build minute overview data with adaptive sampling""" + workersBuildsBuildMinutesAdaptiveGroups(filter: AccountWorkersBuildsBuildMinutesAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountWorkersBuildsBuildMinutesAdaptiveGroupsOrderBy!]): [AccountWorkersBuildsBuildMinutesAdaptiveGroups!]! + + """Beta. Workers invocations with adaptive sampling""" + workersInvocationsAdaptive(filter: AccountWorkersInvocationsAdaptiveFilter_InputObject!, limit: uint64!, orderBy: [AccountWorkersInvocationsAdaptiveOrderBy!]): [AccountWorkersInvocationsAdaptive!]! + + """Workers scheduled invocations""" + workersInvocationsScheduled(filter: AccountWorkersInvocationsScheduledFilter_InputObject!, limit: uint64!, orderBy: [AccountWorkersInvocationsScheduledOrderBy!]): [AccountWorkersInvocationsScheduled!]! + + """Beta. Workers account overview invocation data with adaptive sampling""" + workersOverviewDataAdaptiveGroups(filter: AccountWorkersOverviewDataAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountWorkersOverviewDataAdaptiveGroupsOrderBy!]): [AccountWorkersOverviewDataAdaptiveGroups!]! + + """Beta. Workers account overview invocation count with adaptive sampling""" + workersOverviewRequestsAdaptiveGroups(filter: AccountWorkersOverviewRequestsAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountWorkersOverviewRequestsAdaptiveGroupsOrderBy!]): [AccountWorkersOverviewRequestsAdaptiveGroups!]! + + """Beta. Workers subrequests with adaptive sampling""" + workersSubrequestsAdaptiveGroups(filter: AccountWorkersSubrequestsAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountWorkersSubrequestsAdaptiveGroupsOrderBy!]): [AccountWorkersSubrequestsAdaptiveGroups!]! + + """Workers VPC connections with adaptive sampling.""" + workersVpcConnectionAdaptiveGroups(filter: AccountWorkersVpcConnectionAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountWorkersVpcConnectionAdaptiveGroupsOrderBy!]): [AccountWorkersVpcConnectionAdaptiveGroups!]! + + """Workflows analytics""" + workflowsAdaptive(filter: AccountWorkflowsAdaptiveFilter_InputObject!, limit: uint64!, orderBy: [AccountWorkflowsAdaptiveOrderBy!]): [AccountWorkflowsAdaptive!]! + + """Workflows analytics""" + workflowsAdaptiveGroups(filter: AccountWorkflowsAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountWorkflowsAdaptiveGroupsOrderBy!]): [AccountWorkflowsAdaptiveGroups!]! + + """Zaraz Track Analytics - counts zaraz.track calls""" + zarazTrackAdaptiveGroups(filter: AccountZarazTrackAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountZarazTrackAdaptiveGroupsOrderBy!]): [AccountZarazTrackAdaptiveGroups!]! + + """ + Zaraz Triggers Analytics (a trigger is a set of rules that can trigger a zaraz action) + """ + zarazTriggersAdaptiveGroups(filter: AccountZarazTriggersAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountZarazTriggersAdaptiveGroupsOrderBy!]): [AccountZarazTriggersAdaptiveGroups!]! + + """ + Beta - Unique origins, applications, and users discovered for Zero Trust private networks + """ + zeroTrustPrivateNetworkDiscoveryGroups(filter: AccountZeroTrustPrivateNetworkDiscoveryGroupsFilter_InputObject!, limit: uint64!, orderBy: [AccountZeroTrustPrivateNetworkDiscoveryGroupsOrderBy!]): [AccountZeroTrustPrivateNetworkDiscoveryGroups!]! + + """""" + zones(filter: ZoneFilter_InputObject, limit: uint64): [zone!]! +} + +"""Scalar type bool""" +scalar bool + +"""Scalar type []uint8""" +scalar bytes + +"""Scalar type float32""" +scalar float32 + +"""Scalar type float64""" +scalar float64 + +"""Scalar type int16""" +scalar int16 + +"""Scalar type int32""" +scalar int32 + +"""Scalar type int64""" +scalar int64 + +"""Scalar type int8""" +scalar int8 + +"""""" +type organization { + """Aggregated HTTP requests data with adaptive sampling""" + httpRequestsAdaptiveGroups(filter: OrganizationHttpRequestsAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [OrganizationHttpRequestsAdaptiveGroupsOrderBy!]): [OrganizationHttpRequestsAdaptiveGroups!]! + + """""" + organizationTag: string! + + """""" + settings: OrganizationSettings +} + +"""Scalar type string""" +scalar string + +"""Scalar type uint16""" +scalar uint16 + +"""Scalar type uint32""" +scalar uint32 + +"""Scalar type uint64""" +scalar uint64 + +"""Scalar type uint8""" +scalar uint8 + +"""""" +type viewer { + """""" + accounts(filter: AccountFilter_InputObject): [account!]! + + """""" + budget: uint64! + + """""" + organizations(filter: OrganizationFilter_InputObject): [organization!]! + + """""" + zones(filter: ZoneFilter_InputObject, limit: uint64): [zone!]! +} + +"""""" +type zone { + """GraphQL query attributes and trends""" + apiGatewayGraphqlQueryAnalyticsGroups(filter: ZoneApiGatewayGraphqlQueryAnalyticsGroupsFilter_InputObject!, limit: uint64!, orderBy: [ZoneApiGatewayGraphqlQueryAnalyticsGroupsOrderBy!]): [ZoneApiGatewayGraphqlQueryAnalyticsGroups!]! + + """Beta. Aggregated count of Session Identifier matches""" + apiGatewayMatchedSessionIDsAdaptiveGroups(filter: ZoneApiGatewayMatchedSessionIDsAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [ZoneApiGatewayMatchedSessionIDsAdaptiveGroupsOrderBy!]): [ZoneApiGatewayMatchedSessionIDsAdaptiveGroups!]! + + """Beta. Aggregated count of Session Identifier matches per endpoint""" + apiGatewayMatchedSessionIDsPerEndpointAdaptiveGroups(filter: ZoneApiGatewayMatchedSessionIDsPerEndpointAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [ZoneApiGatewayMatchedSessionIDsPerEndpointAdaptiveGroupsOrderBy!]): [ZoneApiGatewayMatchedSessionIDsPerEndpointAdaptiveGroups!]! + + """Beta. Aggregated count of Session Identifier matches""" + apiGatewayMatchedSessionIDsPerEndpointFlattenedAdaptiveGroups(filter: ZoneApiGatewayMatchedSessionIDsPerEndpointFlattenedAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [ZoneApiGatewayMatchedSessionIDsPerEndpointFlattenedAdaptiveGroupsOrderBy!]): [ZoneApiGatewayMatchedSessionIDsPerEndpointFlattenedAdaptiveGroups!]! + + """ + Sequences of API endpoint operations. Sequences are learned by grouping requests by AuthID. Correlation scores are estimated over a 24 hour window and are current to within 10 minutes + """ + apiRequestSequencesGroups(filter: ZoneApiRequestSequencesGroupsFilter_InputObject!, limit: uint64!, orderBy: [ZoneApiRequestSequencesGroupsOrderBy!]): [ZoneApiRequestSequencesGroups!]! + + """Beta. Cache Reserve operations with adaptive sampling""" + cacheReserveOperationsAdaptiveGroups(filter: ZoneCacheReserveOperationsAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [ZoneCacheReserveOperationsAdaptiveGroupsOrderBy!]): [ZoneCacheReserveOperationsAdaptiveGroups!]! + + """Cache Reserve HTTP requests data with adaptive sampling""" + cacheReserveRequestsAdaptiveGroups(filter: ZoneCacheReserveRequestsAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [ZoneCacheReserveRequestsAdaptiveGroupsOrderBy!]): [ZoneCacheReserveRequestsAdaptiveGroups!]! + + """Beta. Cache Reserve storage with adaptive sampling""" + cacheReserveStorageAdaptiveGroups(filter: ZoneCacheReserveStorageAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [ZoneCacheReserveStorageAdaptiveGroupsOrderBy!]): [ZoneCacheReserveStorageAdaptiveGroups!]! + + """Dmarc report records with adaptive sampling""" + dmarcReportsAdaptive(filter: ZoneDmarcReportsAdaptiveFilter_InputObject!, limit: uint64!, orderBy: [ZoneDmarcReportsAdaptiveOrderBy!]): [ZoneDmarcReportsAdaptive!]! + + """Aggregated dmarc reports by sources logs with adaptive sampling""" + dmarcReportsSourcesAdaptiveGroups(filter: ZoneDmarcReportsSourcesAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [ZoneDmarcReportsSourcesAdaptiveGroupsOrderBy!]): [ZoneDmarcReportsSourcesAdaptiveGroups!]! + + """Analytics data for DNS queries""" + dnsAnalyticsAdaptive(filter: ZoneDnsAnalyticsAdaptiveFilter_InputObject!, limit: uint64!, orderBy: [ZoneDnsAnalyticsAdaptiveOrderBy!]): [ZoneDnsAnalyticsAdaptive!]! + + """Analytics data for DNS queries""" + dnsAnalyticsAdaptiveGroups(filter: ZoneDnsAnalyticsAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [ZoneDnsAnalyticsAdaptiveGroupsOrderBy!]): [ZoneDnsAnalyticsAdaptiveGroups!]! + + """Beta. Raw email routing logs with adaptive sampling""" + emailRoutingAdaptive(filter: ZoneEmailRoutingAdaptiveFilter_InputObject!, limit: uint64!, orderBy: [ZoneEmailRoutingAdaptiveOrderBy!]): [ZoneEmailRoutingAdaptive!]! + + """Beta. Aggregated email routing logs with adaptive sampling""" + emailRoutingAdaptiveGroups(filter: ZoneEmailRoutingAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [ZoneEmailRoutingAdaptiveGroupsOrderBy!]): [ZoneEmailRoutingAdaptiveGroups!]! + + """Raw email sending logs with adaptive sampling""" + emailSendingAdaptive(filter: ZoneEmailSendingAdaptiveFilter_InputObject!, limit: uint64!, orderBy: [ZoneEmailSendingAdaptiveOrderBy!]): [ZoneEmailSendingAdaptive!]! + + """Aggregated email sending logs with adaptive sampling""" + emailSendingAdaptiveGroups(filter: ZoneEmailSendingAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [ZoneEmailSendingAdaptiveGroupsOrderBy!]): [ZoneEmailSendingAdaptiveGroups!]! + + """Raw Firewall events with adaptive sampling""" + firewallEventsAdaptive(filter: ZoneFirewallEventsAdaptiveFilter_InputObject!, limit: uint64!, orderBy: [ZoneFirewallEventsAdaptiveOrderBy!]): [ZoneFirewallEventsAdaptive!]! + + """Aggregated Firewall events with adaptive sampling grouped by time""" + firewallEventsAdaptiveByTimeGroups(filter: ZoneFirewallEventsAdaptiveByTimeGroupsFilter_InputObject!, limit: uint64!, orderBy: [ZoneFirewallEventsAdaptiveByTimeGroupsOrderBy!]): [ZoneFirewallEventsAdaptiveByTimeGroups!]! + + """Aggregated Firewall events with adaptive sampling""" + firewallEventsAdaptiveGroups(filter: ZoneFirewallEventsAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [ZoneFirewallEventsAdaptiveGroupsOrderBy!]): [ZoneFirewallEventsAdaptiveGroups!]! + + """Raw Health Check events with adaptive sampling""" + healthCheckEventsAdaptive(filter: ZoneHealthCheckEventsAdaptiveFilter_InputObject!, limit: uint64!, orderBy: [ZoneHealthCheckEventsAdaptiveOrderBy!]): [ZoneHealthCheckEventsAdaptive!]! + + """Aggregated Health Check events with adaptive sampling""" + healthCheckEventsAdaptiveGroups(filter: ZoneHealthCheckEventsAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [ZoneHealthCheckEventsAdaptiveGroupsOrderBy!]): [ZoneHealthCheckEventsAdaptiveGroups!]! + + """Daily rollups of request data by colo""" + httpRequests1dByColoGroups(filter: ZoneHttpRequests1dByColoGroupsFilter_InputObject!, limit: uint64!, orderBy: [ZoneHttpRequests1dByColoGroupsOrderBy!]): [ZoneHttpRequests1dByColoGroups!]! @deprecated(reason: "Node is replaced with more capable httpRequestsAdaptiveGroups") + + """Daily rollups of request data""" + httpRequests1dGroups(filter: ZoneHttpRequests1dGroupsFilter_InputObject!, limit: uint64!, orderBy: [ZoneHttpRequests1dGroupsOrderBy!]): [ZoneHttpRequests1dGroups!]! + + """Hourly rollups of request data""" + httpRequests1hGroups(filter: ZoneHttpRequests1hGroupsFilter_InputObject!, limit: uint64!, orderBy: [ZoneHttpRequests1hGroupsOrderBy!]): [ZoneHttpRequests1hGroups!]! + + """Minutely rollups of request data by colo""" + httpRequests1mByColoGroups(filter: ZoneHttpRequests1mByColoGroupsFilter_InputObject!, limit: uint64!, orderBy: [ZoneHttpRequests1mByColoGroupsOrderBy!]): [ZoneHttpRequests1mByColoGroups!]! @deprecated(reason: "Node is replaced with more capable httpRequestsAdaptiveGroups") + + """Minutely rollups of request data""" + httpRequests1mGroups(filter: ZoneHttpRequests1mGroupsFilter_InputObject!, limit: uint64!, orderBy: [ZoneHttpRequests1mGroupsOrderBy!]): [ZoneHttpRequests1mGroups!]! + + """Raw HTTP requests with adaptive sampling""" + httpRequestsAdaptive(filter: ZoneHttpRequestsAdaptiveFilter_InputObject!, limit: uint64!, orderBy: [ZoneHttpRequestsAdaptiveOrderBy!]): [ZoneHttpRequestsAdaptive!]! + + """Aggregated HTTP requests data with adaptive sampling""" + httpRequestsAdaptiveGroups(filter: ZoneHttpRequestsAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [ZoneHttpRequestsAdaptiveGroupsOrderBy!]): [ZoneHttpRequestsAdaptiveGroups!]! + + """A high-level summary of HTTP requests made by end users.""" + httpRequestsOverviewAdaptiveGroups(filter: ZoneHttpRequestsOverviewAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [ZoneHttpRequestsOverviewAdaptiveGroupsOrderBy!]): [ZoneHttpRequestsOverviewAdaptiveGroups!]! + + """Minutely rollups of Image Resizing requests""" + imageResizingRequests1mGroups(filter: ZoneImageResizingRequests1mGroupsFilter_InputObject!, limit: uint64!, orderBy: [ZoneImageResizingRequests1mGroupsOrderBy!]): [ZoneImageResizingRequests1mGroups!]! + + """Raw Load Balancing origin requests with adaptive sampling""" + loadBalancingRequestsAdaptive(filter: ZoneLoadBalancingRequestsAdaptiveFilter_InputObject!, limit: uint64!, orderBy: [ZoneLoadBalancingRequestsAdaptiveOrderBy!]): [ZoneLoadBalancingRequestsAdaptive!]! + + """Aggregated Load Balancing origin requests with adaptive sampling""" + loadBalancingRequestsAdaptiveGroups(filter: ZoneLoadBalancingRequestsAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [ZoneLoadBalancingRequestsAdaptiveGroupsOrderBy!]): [ZoneLoadBalancingRequestsAdaptiveGroups!]! + + """Beta. Logpush job health metrics""" + logpushHealthAdaptiveGroups(filter: ZoneLogpushHealthAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [ZoneLogpushHealthAdaptiveGroupsOrderBy!]): [ZoneLogpushHealthAdaptiveGroups!]! + + """Data to visualize network error logs""" + nelReportsAdaptiveGroups(filter: ZoneNelReportsAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [ZoneNelReportsAdaptiveGroupsOrderBy!]): [ZoneNelReportsAdaptiveGroups!]! + + """Page Shield CSP reports""" + pageShieldReportsAdaptiveGroups(filter: ZonePageShieldReportsAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [ZonePageShieldReportsAdaptiveGroupsOrderBy!]): [ZonePageShieldReportsAdaptiveGroups!]! + + """""" + settings: ZoneSettings + + """User ID profiles for login and sign up attempts""" + userProfilesAdaptiveGroups(filter: ZoneUserProfilesAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [ZoneUserProfilesAdaptiveGroupsOrderBy!]): [ZoneUserProfilesAdaptiveGroups!]! + + """Historical login and signup events per user.""" + userProfilesRawEventsGroups(filter: ZoneUserProfilesRawEventsGroupsFilter_InputObject!, limit: uint64!, orderBy: [ZoneUserProfilesRawEventsGroupsOrderBy!]): [ZoneUserProfilesRawEventsGroups!]! + + """Raw Waiting Room analytics logs""" + waitingRoomAnalyticsAdaptive(filter: ZoneWaitingRoomAnalyticsAdaptiveFilter_InputObject!, limit: uint64!, orderBy: [ZoneWaitingRoomAnalyticsAdaptiveOrderBy!]): [ZoneWaitingRoomAnalyticsAdaptive!]! + + """Aggregated Waiting Room analytics logs with adaptive sampling""" + waitingRoomAnalyticsAdaptiveGroups(filter: ZoneWaitingRoomAnalyticsAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [ZoneWaitingRoomAnalyticsAdaptiveGroupsOrderBy!]): [ZoneWaitingRoomAnalyticsAdaptiveGroups!]! + + """Workers invocations with adaptive sampling""" + workersZoneInvocationsAdaptiveGroups(filter: ZoneWorkersZoneInvocationsAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [ZoneWorkersZoneInvocationsAdaptiveGroupsOrderBy!]): [ZoneWorkersZoneInvocationsAdaptiveGroups!]! + + """Workers subrequests with adaptive sampling""" + workersZoneSubrequestsAdaptiveGroups(filter: ZoneWorkersZoneSubrequestsAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [ZoneWorkersZoneSubrequestsAdaptiveGroupsOrderBy!]): [ZoneWorkersZoneSubrequestsAdaptiveGroups!]! + + """Zaraz Actions Analytics""" + zarazActionsAdaptiveGroups(filter: ZoneZarazActionsAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [ZoneZarazActionsAdaptiveGroupsOrderBy!]): [ZoneZarazActionsAdaptiveGroups!]! + + """Zaraz Analytics Identities - zaraz.identify calls""" + zarazAnalyticsIdentitiesAdaptiveGroups(filter: ZoneZarazAnalyticsIdentitiesAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [ZoneZarazAnalyticsIdentitiesAdaptiveGroupsOrderBy!]): [ZoneZarazAnalyticsIdentitiesAdaptiveGroups!]! + + """Zaraz Analytics Tracks ordered per session""" + zarazAnalyticsOrderedTrackAdaptive(filter: ZoneZarazAnalyticsOrderedTrackAdaptiveFilter_InputObject!, limit: uint64!, orderBy: [ZoneZarazAnalyticsOrderedTrackAdaptiveOrderBy!]): [ZoneZarazAnalyticsOrderedTrackAdaptive!]! + + """Zaraz Analytics Tracks ordered per session""" + zarazAnalyticsOrderedTrackAdaptiveGroups(filter: ZoneZarazAnalyticsOrderedTrackAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [ZoneZarazAnalyticsOrderedTrackAdaptiveGroupsOrderBy!]): [ZoneZarazAnalyticsOrderedTrackAdaptiveGroups!]! + + """Zaraz Analytics Track - counts zaraz.track calls""" + zarazAnalyticsTrackAdaptiveGroups(filter: ZoneZarazAnalyticsTrackAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [ZoneZarazAnalyticsTrackAdaptiveGroupsOrderBy!]): [ZoneZarazAnalyticsTrackAdaptiveGroups!]! + + """Zaraz Analytics Track Traffic Sources""" + zarazAnalyticsTrackTrafficSourcesAdaptiveGroups(filter: ZoneZarazAnalyticsTrackTrafficSourcesAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [ZoneZarazAnalyticsTrackTrafficSourcesAdaptiveGroupsOrderBy!]): [ZoneZarazAnalyticsTrackTrafficSourcesAdaptiveGroups!]! + + """ + Zaraz Analytics Triggers (a trigger is a set of rules that can trigger a zaraz action) + """ + zarazAnalyticsTriggersAdaptiveGroups(filter: ZoneZarazAnalyticsTriggersAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [ZoneZarazAnalyticsTriggersAdaptiveGroupsOrderBy!]): [ZoneZarazAnalyticsTriggersAdaptiveGroups!]! + + """Zaraz Analytics Triggers Traffic Sources""" + zarazAnalyticsTriggersTrafficSourcesAdaptiveGroups(filter: ZoneZarazAnalyticsTriggersTrafficSourcesAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [ZoneZarazAnalyticsTriggersTrafficSourcesAdaptiveGroupsOrderBy!]): [ZoneZarazAnalyticsTriggersTrafficSourcesAdaptiveGroups!]! + + """Aggregated Zaraz External Fetch Logs""" + zarazFetchAdaptiveGroups(filter: ZoneZarazFetchAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [ZoneZarazFetchAdaptiveGroupsOrderBy!]): [ZoneZarazFetchAdaptiveGroups!]! + + """Zaraz Track Analytics - counts zaraz.track calls""" + zarazTrackAdaptiveGroups(filter: ZoneZarazTrackAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [ZoneZarazTrackAdaptiveGroupsOrderBy!]): [ZoneZarazTrackAdaptiveGroups!]! + + """ + Zaraz Triggers Analytics (a trigger is a set of rules that can trigger a zaraz action) + """ + zarazTriggersAdaptiveGroups(filter: ZoneZarazTriggersAdaptiveGroupsFilter_InputObject!, limit: uint64!, orderBy: [ZoneZarazTriggersAdaptiveGroupsOrderBy!]): [ZoneZarazTriggersAdaptiveGroups!]! + + """""" + zoneTag: string! +} \ No newline at end of file diff --git a/src/cloudflare/queries.ts b/src/cloudflare/queries.ts new file mode 100644 index 0000000..a8ad138 --- /dev/null +++ b/src/cloudflare/queries.ts @@ -0,0 +1,104 @@ +import z from "zod"; + +/** + * Zod schema for all supported metric query names. + * Includes both account-level and zone-level queries. + */ +export const MetricQueryNameSchema = z.enum([ + // Account-level + "worker-totals", + "logpush-account", + "magic-transit", + // Zone-level + "http-metrics", + "adaptive-metrics", + "edge-country-metrics", + "colo-metrics", + "colo-error-metrics", + "request-method-metrics", + "health-check-metrics", + "load-balancer-metrics", + "logpush-zone", + "origin-status-metrics", + "cache-miss-metrics", + // REST API + "ssl-certificates", + "lb-weight-metrics", +]); + +/** + * Union of all metric query names (account and zone level). + */ +export type MetricQueryName = z.infer; + +/** + * Account-scoped metric queries (require single accountTag). + */ +export const ACCOUNT_LEVEL_QUERIES = [ + "worker-totals", + "logpush-account", + "magic-transit", +] as const; + +/** + * Union of account-level query names. + */ +export type AccountLevelQuery = (typeof ACCOUNT_LEVEL_QUERIES)[number]; + +/** + * Zone-scoped metric queries (support multiple zoneIDs). + */ +export const ZONE_LEVEL_QUERIES = [ + "http-metrics", + "adaptive-metrics", + "edge-country-metrics", + "colo-metrics", + "colo-error-metrics", + "request-method-metrics", + "health-check-metrics", + "load-balancer-metrics", + "logpush-zone", + "origin-status-metrics", + "cache-miss-metrics", + "ssl-certificates", + "lb-weight-metrics", +] as const; + +/** + * Union of zone-level query names. + */ +export type ZoneLevelQuery = (typeof ZONE_LEVEL_QUERIES)[number]; + +/** + * Type guard for account-level queries. + * + * @param query Query name to check. + * @returns True if query is account-level. + */ +export function isAccountLevelQuery(query: string): query is AccountLevelQuery { + return (ACCOUNT_LEVEL_QUERIES as readonly string[]).includes(query); +} + +/** + * Type guard for zone-level queries. + * + * @param query Query name to check. + * @returns True if query is zone-level. + */ +export function isZoneLevelQuery(query: string): query is ZoneLevelQuery { + return (ZONE_LEVEL_QUERIES as readonly string[]).includes(query); +} + +/** + * Query types available on free tier accounts. + */ +export const FREE_TIER_QUERIES = [ + "worker-totals", + "logpush-account", + "magic-transit", +] as const; + +/** + * Type for free tier query names. + */ +export type FreeTierQuery = (typeof FREE_TIER_QUERIES)[number]; diff --git a/src/components/LandingPage.tsx b/src/components/LandingPage.tsx new file mode 100644 index 0000000..c5fbb79 --- /dev/null +++ b/src/components/LandingPage.tsx @@ -0,0 +1,1191 @@ +import { html, raw } from "hono/html"; +import type { FC } from "hono/jsx"; +import type { AppConfig } from "../lib/config"; +import { LandingPageScript } from "./LandingPageScript"; + +type Props = { config: AppConfig }; + +export const LandingPage: FC = ({ config }) => { + return ( + + + + + Cloudflare Prometheus Exporter + + `} + + + + {/* Hero Section */} +
+
+
+ +
+ + Cloudflare + + | + + Prometheus Exporter + +
+
+

+ Cloudflare Metrics +
+ for Prometheus +

+

+ Export zone analytics, HTTP metrics, and performance data from + Cloudflare's GraphQL API directly to Prometheus format. +

+ +
+
+ +
+ {/* Feature Cards */} +

Features

+
+
+
+ +
+

GraphQL + REST

+

+ Hybrid API approach for comprehensive metrics +

+
+ +
+
+ +
+

Durable Objects

+

+ Stateful counter accumulation at the edge +

+
+ +
+
+ +
+

Zone Filtering

+

+ Include or exclude specific zones +

+
+ +
+
+ +
+

Real-time

+

+ Live metrics updated every scrape +

+
+
+ {/* Configuration */} +

Configuration

+ {/* Service Status Card */} +
+
+
+
+
+

Service Status

+

+ Checking... +

+
+
+
+ Unknown +
+
+
+
+
+
+
+ + Cloudflare REST API + +
+ + — + +
+
+
+
+
+
+ GraphQL API +
+ + — + +
+
+
+

+ — +

+
+ {/* Runtime Configuration Card */} +
+ {/* Header with Save/Reset buttons */} +
+
+

+ Runtime Configuration +

+

+ Loading... +

+
+
+ + +
+
+ + {/* Tab Navigation */} +
+
+ + + + +
+
+ + {/* Tab Panels */} +
+ {/* Timing Tab */} +
+
+
+ +
+ + +
+

+ Max results per GraphQL query +

+
+
+ +
+ + +
+

+ Delay before fetching metrics +

+
+
+ +
+ + +
+

Query time window

+
+
+ +
+ + +
+

+ Background refresh interval +

+
+
+
+ + {/* Cache Tab */} + + + {/* Filters Tab */} + + + {/* Output Tab */} + +
+
+ {/* Toast notification */} +
{/* Live Metrics Section */} +

Live Metrics

+
+
+
+
+ + Prometheus Metrics + +
+ +
+
+
+								Loading metrics...
+							
+
+
+ - + - +
+
+ {/* Footer */} +
+

Built with Cloudflare Workers & Durable Objects

+

+ This UI can be disabled via{" "} + DISABLE_UI env var +

+
+
+ + + + + ); +}; diff --git a/src/components/LandingPageScript.tsx b/src/components/LandingPageScript.tsx new file mode 100644 index 0000000..c47c9cf --- /dev/null +++ b/src/components/LandingPageScript.tsx @@ -0,0 +1,349 @@ +import { html } from "hono/html"; +import type { FC } from "hono/jsx"; + +type Props = { metricsPath: string }; + +export const LandingPageScript: FC = ({ metricsPath }) => { + return html` + + `; +}; diff --git a/src/durable-objects/AccountMetricCoordinator.ts b/src/durable-objects/AccountMetricCoordinator.ts new file mode 100644 index 0000000..2c4db41 --- /dev/null +++ b/src/durable-objects/AccountMetricCoordinator.ts @@ -0,0 +1,400 @@ +import { DurableObject } from "cloudflare:workers"; +import { + ACCOUNT_LEVEL_QUERIES, + getCloudflareMetricsClient, + ZONE_LEVEL_QUERIES, +} from "../cloudflare/client"; +import { FREE_TIER_QUERIES } from "../cloudflare/queries"; +import { filterZonesByIds, parseCommaSeparated } from "../lib/filters"; +import { createLogger, type Logger } from "../lib/logger"; +import type { MetricDefinition } from "../lib/metrics"; +import { getConfig, type ResolvedConfig } from "../lib/runtime-config"; +import { getTimeRange } from "../lib/time"; +import type { Zone } from "../lib/types"; +import { MetricExporter } from "./MetricExporter"; + +const STATE_KEY = "state"; + +// Account-scoped queries: all account-level + zone-batched (excludes zone-scoped REST queries) +const ACCOUNT_SCOPED_QUERIES = [ + ...ACCOUNT_LEVEL_QUERIES, + ...ZONE_LEVEL_QUERIES.filter( + (q) => q !== "ssl-certificates" && q !== "lb-weight-metrics", + ), +] as const; + +// Zone-scoped REST queries (one DO per zone for parallelization and fault isolation) +const ZONE_SCOPED_QUERIES = ["ssl-certificates", "lb-weight-metrics"] as const; + +type AccountMetricCoordinatorState = { + accountId: string; + accountName: string; + zones: Zone[]; + totalZoneCount: number; + firewallRules: Record; + lastZoneFetch: number; + lastRefresh: number; +}; + +/** + * Coordinates metric collection for a Cloudflare account and manages zone list caching and distributes work to MetricExporter DOs. + */ +export class AccountMetricCoordinator extends DurableObject { + private state: AccountMetricCoordinatorState | undefined; + + constructor(ctx: DurableObjectState, env: Env) { + super(ctx, env); + ctx.blockConcurrencyWhile(async () => { + this.state = + await ctx.storage.get(STATE_KEY); + }); + } + + /** + * Creates logger instance with account-specific tag. + * + * @param config Resolved runtime configuration. + * @returns Logger instance. + */ + private createLogger(config: ResolvedConfig): Logger { + const state = this.getState(); + const tag = state.accountName.toLowerCase().replace(/[ -]/g, "_"); + return createLogger("account_coordinator", { + format: config.logFormat, + level: config.logLevel, + }).child(tag); + } + + /** + * Gets current coordinator state. + * + * @returns Current state. + * @throws {Error} When state not initialized. + */ + private getState(): AccountMetricCoordinatorState { + if (this.state === undefined) { + console.error( + "[account_coordinator] State not initialized - initialize() must be called first", + ); + throw new Error("State not initialized"); + } + return this.state; + } + + /** + * Gets or creates coordinator stub for account and ensures coordinator is initialized before returning. + * + * @param accountId Cloudflare account ID. + * @param accountName Account display name for logging. + * @param env Worker environment bindings. + * @returns Initialized coordinator stub. + */ + static async get(accountId: string, accountName: string, env: Env) { + const stub = env.AccountMetricCoordinator.getByName(`account:${accountId}`); + await stub.initialize(accountId, accountName); + return stub; + } + + /** + * Initializes coordinator state and starts alarm cycle. Idempotent safe to call multiple times. + * + * @param accountId Cloudflare account ID. + * @param accountName Account display name for logging. + */ + async initialize(accountId: string, accountName: string): Promise { + if (this.state !== undefined) { + return; + } + + const config = await getConfig(this.env); + + this.state = { + accountId, + accountName, + zones: [], + totalZoneCount: 0, + firewallRules: {}, + lastZoneFetch: 0, + lastRefresh: 0, + }; + + await this.ctx.storage.put(STATE_KEY, this.state); + await this.ctx.storage.setAlarm( + Date.now() + config.metricRefreshIntervalSeconds * 1000, + ); + } + + override async alarm(): Promise { + const config = await getConfig(this.env); + const logger = this.createLogger(config); + logger.info("Alarm fired, refreshing zones"); + await this.refresh(config, logger); + } + + /** + * Refreshes zone list and pushes context to exporters. Exporters handle their own metric fetching via alarms. + * + * @param config Resolved runtime configuration. + * @param logger Logger instance. + */ + private async refresh(config: ResolvedConfig, logger: Logger): Promise { + logger.info("Starting refresh"); + + try { + await this.refreshZonesAndPushContext(config, logger); + + this.state = { ...this.getState(), lastRefresh: Date.now() }; + await this.ctx.storage.put(STATE_KEY, this.state); + } catch (error) { + const msg = error instanceof Error ? error.message : String(error); + logger.error("Refresh failed", { error: msg }); + } + + await this.ctx.storage.setAlarm( + Date.now() + config.metricRefreshIntervalSeconds * 1000, + ); + } + + /** + * Refreshes zone list if stale then pushes context to all exporters. + * + * @param config Resolved runtime configuration. + * @param logger Logger instance. + */ + private async refreshZonesAndPushContext( + config: ResolvedConfig, + logger: Logger, + ): Promise { + const state = this.getState(); + const ttlMs = config.zoneListCacheTtlSeconds * 1000; + const isStale = Date.now() - state.lastZoneFetch >= ttlMs; + + // Calculate shared time range once for all exporters in this refresh cycle + const timeRange = getTimeRange( + config.scrapeDelaySeconds, + config.timeWindowSeconds, + ); + + let zones = state.zones; + let firewallRules = state.firewallRules; + + if (isStale || zones.length === 0) { + const client = getCloudflareMetricsClient(this.env); + logger.info("Refreshing zones"); + + const allZones = await client.getZones(state.accountId); + + // Apply zone whitelist if set + const cfZonesSet = + config.cfZones !== null ? parseCommaSeparated(config.cfZones) : null; + zones = + cfZonesSet !== null ? filterZonesByIds(allZones, cfZonesSet) : allZones; + + // Build firewall rules map + firewallRules = {}; + const rulesResults = await Promise.all( + zones.map((zone) => + client.getFirewallRules(zone.id).catch((error) => { + const msg = error instanceof Error ? error.message : String(error); + logger.warn("Failed to fetch firewall rules", { + zone: zone.name, + error: msg, + }); + return new Map(); + }), + ), + ); + for (const rules of rulesResults) { + for (const [id, name] of rules) { + firewallRules[id] = name; + } + } + + this.state = { + ...state, + zones, + totalZoneCount: allZones.length, + firewallRules, + lastZoneFetch: Date.now(), + }; + await this.ctx.storage.put(STATE_KEY, this.state); + + logger.info("Zones cached", { + total: allZones.length, + filtered: zones.length, + }); + } + + // Check if this account is marked as free tier + const cfFreeTierSet = parseCommaSeparated(config.cfFreeTierAccounts); + const isFreeTierAccount = cfFreeTierSet.has(state.accountId); + + // Filter queries based on account tier + const accountQueries = isFreeTierAccount + ? ACCOUNT_SCOPED_QUERIES.filter((q) => + FREE_TIER_QUERIES.includes(q as (typeof FREE_TIER_QUERIES)[number]), + ) + : ACCOUNT_SCOPED_QUERIES; + + // Push zone context to account-scoped exporters AND initialize zone-scoped exporters concurrently + await Promise.all([ + // Account-scoped exporters + ...accountQueries.map(async (query) => { + try { + const exporter = await MetricExporter.get( + `account:${state.accountId}:${query}`, + this.env, + ); + await exporter.updateZoneContext( + state.accountId, + state.accountName, + zones, + firewallRules, + timeRange, + ); + } catch (error) { + const msg = error instanceof Error ? error.message : String(error); + logger.error("Failed to update zone context", { + query, + error: msg, + }); + } + }), + // Zone-scoped exporters (skip for free tier accounts) + ...(isFreeTierAccount + ? [] + : zones.flatMap((zone) => + ZONE_SCOPED_QUERIES.map(async (query) => { + try { + const exporter = await MetricExporter.get( + `zone:${zone.id}:${query}`, + this.env, + ); + await exporter.initializeZone( + zone, + state.accountId, + state.accountName, + timeRange, + ); + } catch (error) { + const msg = + error instanceof Error ? error.message : String(error); + logger.error("Failed to initialize zone exporter", { + zone: zone.name, + query, + error: msg, + }); + } + }), + )), + ]); + + logger.info("Context pushed to exporters", { + account_scoped: accountQueries.length, + zone_scoped: isFreeTierAccount + ? 0 + : zones.length * ZONE_SCOPED_QUERIES.length, + }); + } + + /** + * Collects and aggregates metrics from all MetricExporter DOs. + * + * @returns Metrics and zone counts. + */ + async export(): Promise<{ + metrics: MetricDefinition[]; + zoneCounts: { total: number; filtered: number; processed: number }; + }> { + const config = await getConfig(this.env); + const logger = this.createLogger(config); + + logger.info("Exporting metrics"); + + // Ensure exporters have been initialized + const staleThreshold = config.metricRefreshIntervalSeconds * 2 * 1000; + const initialState = this.getState(); + if ( + initialState.lastRefresh === 0 || + Date.now() - initialState.lastRefresh > staleThreshold + ) { + await this.refresh(config, logger); + } + + // Re-get state after potential refresh (this.state may have been updated) + const state = this.getState(); + + // Check if this account is marked as free tier + const cfFreeTierSet = parseCommaSeparated(config.cfFreeTierAccounts); + const isFreeTierAccount = cfFreeTierSet.has(state.accountId); + + // Filter queries based on account tier + const accountQueries = isFreeTierAccount + ? ACCOUNT_SCOPED_QUERIES.filter((q) => + FREE_TIER_QUERIES.includes(q as (typeof FREE_TIER_QUERIES)[number]), + ) + : ACCOUNT_SCOPED_QUERIES; + + // Collect from account-scoped exporters + const accountMetricsResults = await Promise.all( + accountQueries.map(async (query) => { + try { + const exporter = await MetricExporter.get( + `account:${state.accountId}:${query}`, + this.env, + ); + return await exporter.export(); + } catch (error) { + const msg = error instanceof Error ? error.message : String(error); + logger.error("Failed to export account metrics", { + query, + error: msg, + }); + return []; + } + }), + ); + + // Collect from zone-scoped exporters (skip for free tier accounts) + const zoneMetricsResults = isFreeTierAccount + ? [] + : await Promise.all( + state.zones.flatMap((zone) => + ZONE_SCOPED_QUERIES.map(async (query) => { + try { + const exporter = await MetricExporter.get( + `zone:${zone.id}:${query}`, + this.env, + ); + return await exporter.export(); + } catch (error) { + const msg = + error instanceof Error ? error.message : String(error); + logger.error("Failed to export zone metrics", { + zone: zone.name, + query, + error: msg, + }); + return []; + } + }), + ), + ); + + const allMetrics = [...accountMetricsResults, ...zoneMetricsResults].flat(); + + // Count processed zones (zones with at least one metric result) + const processedZones = zoneMetricsResults.filter( + (r) => r.length > 0, + ).length; + + return { + metrics: allMetrics, + zoneCounts: { + total: state.totalZoneCount, + filtered: state.zones.length, + processed: processedZones, + }, + }; + } +} diff --git a/src/durable-objects/MetricCoordinator.ts b/src/durable-objects/MetricCoordinator.ts new file mode 100644 index 0000000..d7c9551 --- /dev/null +++ b/src/durable-objects/MetricCoordinator.ts @@ -0,0 +1,291 @@ +import { DurableObject } from "cloudflare:workers"; +import { getCloudflareMetricsClient } from "../cloudflare/client"; +import { extractErrorInfo } from "../lib/errors"; +import { filterAccountsByIds, parseCommaSeparated } from "../lib/filters"; +import { createLogger, type Logger } from "../lib/logger"; +import type { MetricDefinition } from "../lib/metrics"; +import { serializeToPrometheus } from "../lib/prometheus"; +import { getConfig, type ResolvedConfig } from "../lib/runtime-config"; +import type { Account } from "../lib/types"; +import { AccountMetricCoordinator } from "./AccountMetricCoordinator"; + +const STATE_KEY = "state"; + +type MetricCoordinatorState = { + identifier: string; + accounts: Account[]; + lastAccountFetch: number; +}; + +/** + * Coordinates metrics collection across all Cloudflare accounts and maintains cached account list. + */ +export class MetricCoordinator extends DurableObject { + private state: MetricCoordinatorState | undefined; + + /** + * Gets or creates singleton MetricCoordinator instance. + * + * @param env Worker environment bindings. + * @returns Initialized MetricCoordinator stub. + */ + static async get(env: Env) { + const stub = env.MetricCoordinator.getByName("metric-coordinator"); + await stub.setIdentifier("metric-coordinator"); + return stub; + } + + /** + * Constructs MetricCoordinator and initializes state from storage. + * + * @param ctx Durable Object state. + * @param env Worker environment bindings. + */ + constructor(ctx: DurableObjectState, env: Env) { + super(ctx, env); + ctx.blockConcurrencyWhile(async () => { + this.state = await ctx.storage.get(STATE_KEY); + }); + } + + /** + * Creates logger instance with resolved configuration. + * + * @param config Resolved runtime configuration. + * @returns Logger instance. + */ + private createLogger(config: ResolvedConfig): Logger { + return createLogger("metric_coordinator", { + format: config.logFormat, + level: config.logLevel, + }); + } + + /** + * Initializes coordinator state if not already set. + * + * @param id Unique identifier for this coordinator instance. + */ + async setIdentifier(id: string): Promise { + if (this.state !== undefined) { + return; + } + this.state = { identifier: id, accounts: [], lastAccountFetch: 0 }; + await this.ctx.storage.put(STATE_KEY, this.state); + } + + /** + * Gets coordinator state. + * + * @returns Current coordinator state. + * @throws {Error} When state not initialized. + */ + private getState(): MetricCoordinatorState { + if (this.state === undefined) { + throw new Error("State not initialized"); + } + return this.state; + } + + /** + * Refreshes accounts from Cloudflare API if cache expired. + * + * @param config Resolved runtime configuration. + * @param logger Logger instance. + * @returns Cached or refreshed account list. + */ + private async refreshAccountsIfStale( + config: ResolvedConfig, + logger: Logger, + ): Promise { + const state = this.getState(); + const ttlMs = config.accountListCacheTtlSeconds * 1000; + + if ( + state.accounts.length > 0 && + Date.now() - state.lastAccountFetch < ttlMs + ) { + return state.accounts; + } + + const client = getCloudflareMetricsClient(this.env); + logger.info("Refreshing account list"); + const allAccounts = await client.getAccounts(); + + // Filter accounts if whitelist is set + const cfAccountsSet = + config.cfAccounts !== null + ? parseCommaSeparated(config.cfAccounts) + : null; + const accounts = + cfAccountsSet !== null + ? filterAccountsByIds(allAccounts, cfAccountsSet) + : allAccounts; + + this.state = { + ...state, + accounts, + lastAccountFetch: Date.now(), + }; + await this.ctx.storage.put(STATE_KEY, this.state); + + logger.info("Accounts cached", { + total: allAccounts.length, + filtered: accounts.length, + }); + return accounts; + } + + /** + * Collects metrics from all accounts and serializes to Prometheus format. + * + * @returns Prometheus-formatted metrics string. + */ + async export(): Promise { + const config = await getConfig(this.env); + const logger = this.createLogger(config); + + logger.info("Collecting metrics"); + const accounts = await this.refreshAccountsIfStale(config, logger); + + if (accounts.length === 0) { + logger.warn("No accounts found"); + return ""; + } + + logger.info("Exporting metrics", { account_count: accounts.length }); + + // Track errors by account and error code + const errorsByAccount: Map = + new Map(); + + const results = await Promise.all( + accounts.map(async (account) => { + try { + const coordinator = await AccountMetricCoordinator.get( + account.id, + account.name, + this.env, + ); + return await coordinator.export(); + } catch (error) { + const info = extractErrorInfo(error); + logger.error("Failed to export account", { + account_id: account.id, + error_code: info.code, + error: info.message, + ...(info.stack && { stack: info.stack }), + }); + + // Track error for metrics + const accountErrors = errorsByAccount.get(account.id) ?? []; + const existing = accountErrors.find((e) => e.code === info.code); + if (existing) { + existing.count++; + } else { + accountErrors.push({ code: info.code, count: 1 }); + } + errorsByAccount.set(account.id, accountErrors); + + return { + metrics: [], + zoneCounts: { total: 0, filtered: 0, processed: 0 }, + }; + } + }), + ); + + // Aggregate stats + const zoneCounts = { total: 0, filtered: 0, processed: 0 }; + const allMetrics: MetricDefinition[] = []; + for (const result of results) { + allMetrics.push(...result.metrics); + zoneCounts.total += result.zoneCounts.total; + zoneCounts.filtered += result.zoneCounts.filtered; + zoneCounts.processed += result.zoneCounts.processed; + } + + // Add exporter info metrics + const exporterMetrics = this.buildExporterInfoMetrics( + accounts.length, + zoneCounts, + errorsByAccount, + ); + + const metricsDenylist = parseCommaSeparated(config.metricsDenylist); + return serializeToPrometheus([...exporterMetrics, ...allMetrics], { + denylist: metricsDenylist, + excludeLabels: config.excludeHost ? new Set(["host"]) : undefined, + }); + } + + /** + * Builds exporter health and discovery metrics. + * + * @param accountCount Number of accounts discovered. + * @param zoneCounts Zone counts (total, filtered, processed). + * @param errorsByAccount Errors by account and error code. + * @returns Exporter info metrics. + */ + private buildExporterInfoMetrics( + accountCount: number, + zoneCounts: { total: number; filtered: number; processed: number }, + errorsByAccount: Map, + ): MetricDefinition[] { + const metrics: MetricDefinition[] = [ + { + name: "cloudflare_exporter_up", + help: "Exporter health", + type: "gauge", + values: [{ labels: {}, value: 1 }], + }, + { + name: "cloudflare_accounts_total", + help: "Total accounts discovered", + type: "gauge", + values: [{ labels: {}, value: accountCount }], + }, + { + name: "cloudflare_zones_total", + help: "Total zones before filtering", + type: "gauge", + values: [{ labels: {}, value: zoneCounts.total }], + }, + { + name: "cloudflare_zones_filtered", + help: "Zones after whitelist filter", + type: "gauge", + values: [{ labels: {}, value: zoneCounts.filtered }], + }, + { + name: "cloudflare_zones_processed", + help: "Zones successfully processed", + type: "gauge", + values: [{ labels: {}, value: zoneCounts.processed }], + }, + ]; + + // Add error metrics if any errors occurred + if (errorsByAccount.size > 0) { + const errorsMetric: MetricDefinition = { + name: "cloudflare_exporter_errors_total", + help: "Total errors during metric collection by account and error code", + type: "counter", + values: [], + }; + + for (const [accountId, errors] of errorsByAccount) { + for (const { code, count } of errors) { + errorsMetric.values.push({ + labels: { account_id: accountId, error_code: code }, + value: count, + }); + } + } + + metrics.push(errorsMetric); + } + + return metrics; + } +} diff --git a/src/durable-objects/MetricExporter.ts b/src/durable-objects/MetricExporter.ts new file mode 100644 index 0000000..87cfc2c --- /dev/null +++ b/src/durable-objects/MetricExporter.ts @@ -0,0 +1,495 @@ +import { DurableObject } from "cloudflare:workers"; +import { + getCloudflareMetricsClient, + isAccountLevelQuery, + isZoneLevelQuery, +} from "../cloudflare/client"; +import { createLogger, type Logger } from "../lib/logger"; +import type { MetricDefinition, MetricValue } from "../lib/metrics"; +import { getConfig, type ResolvedConfig } from "../lib/runtime-config"; +import { getTimeRange, metricKey } from "../lib/time"; +import { + type CounterState, + MetricExporterIdSchema, + type MetricExporterIdString, + type TimeRange, + type Zone, +} from "../lib/types"; + +const STATE_KEY = "state"; + +type MetricExporterState = { + // Core identity + scopeType: "account" | "zone"; + scopeId: string; + queryName: string; + + // Metric storage + counters: Record; + metrics: MetricDefinition[]; + lastIngest: number; + + // Context for fetching (account-scoped) + accountId: string; + accountName: string; + zones: Zone[]; + firewallRules: Record; + + // Context for fetching (zone-scoped) + zoneMetadata: Zone | null; + + // Refresh state + refreshInterval: number; + lastRefresh: number; + lastError: string | null; + + // SSL cert cache (zone-scoped only) + lastSslFetch: number; +}; + +/** + * Durable Object that fetches and exports Prometheus metrics for a specific query scope. + * Handles counter accumulation, alarm-based refresh scheduling, and metric caching. + */ +export class MetricExporter extends DurableObject { + private state: MetricExporterState | undefined; + + constructor(ctx: DurableObjectState, env: Env) { + super(ctx, env); + ctx.blockConcurrencyWhile(async () => { + this.state = await ctx.storage.get(STATE_KEY); + }); + } + + /** + * Create a logger instance with context from the exporter's state. + * + * @param config Resolved runtime configuration. + * @returns Logger instance with scope type, scope ID, and query name context. + */ + private createLogger(config: ResolvedConfig): Logger { + const state = this.getState(); + return createLogger("metric_exporter", { + format: config.logFormat, + level: config.logLevel, + }) + .child(state.scopeType) + .child(state.scopeId) + .child(state.queryName); + } + + /** + * Get the current state or throw if not initialized. + * + * @returns Current state. + * @throws {Error} When state is undefined. + */ + private getState(): MetricExporterState { + if (this.state === undefined) { + console.error( + "State not initialized - initialize() must be called first", + ); + throw new Error("State not initialized"); + } + return this.state; + } + + /** + * Get or create a MetricExporter instance by ID, ensuring it's initialized. + * + * @param id Composite ID in format "scopeType:scopeId:queryName". + * @param env Worker environment bindings. + * @returns Initialized MetricExporter stub. + */ + static async get(id: MetricExporterIdString, env: Env) { + const stub = env.MetricExporter.getByName(id); + await stub.initialize(id); + return stub; + } + + /** + * Initialize the exporter state from a composite ID. + * Idempotent - skips if already initialized. + * + * @param id Composite ID string to parse into scope type, scope ID, and query name. + * @throws {ZodError} When ID format is invalid. + */ + async initialize(id: string): Promise { + if (this.state !== undefined) { + return; + } + + const config = await getConfig(this.env); + const parsed = MetricExporterIdSchema.parse(id); + + this.state = { + scopeType: parsed.scopeType, + scopeId: parsed.scopeId, + queryName: parsed.queryName, + counters: {}, + metrics: [], + lastIngest: 0, + accountId: "", + accountName: "", + zones: [], + firewallRules: {}, + zoneMetadata: null, + refreshInterval: config.metricRefreshIntervalSeconds, + lastRefresh: 0, + lastError: null, + lastSslFetch: 0, + }; + + await this.ctx.storage.put(STATE_KEY, this.state); + } + + /** + * Update zone context for account-scoped exporters. + * Called by AccountMetricCoordinator after zone list refresh. + * Triggers immediate fetch on first context push. + * + * @param accountId Cloudflare account ID. + * @param accountName Account display name. + * @param zones List of zones in the account. + * @param firewallRules Map of firewall rule IDs to descriptions. + * @param timeRange Shared time range for metrics queries. + */ + async updateZoneContext( + accountId: string, + accountName: string, + zones: Zone[], + firewallRules: Record, + timeRange: TimeRange, + ): Promise { + const config = await getConfig(this.env); + const logger = this.createLogger(config); + const state = this.getState(); + + if (state.scopeType !== "account") { + logger.warn("updateZoneContext called on non-account exporter"); + return; + } + + const isFirstContext = + state.zones.length === 0 && zones.length > 0 && state.lastRefresh === 0; + + this.state = { + ...state, + accountId, + accountName, + zones, + firewallRules, + }; + await this.ctx.storage.put(STATE_KEY, this.state); + + logger.info("Zone context updated", { zone_count: zones.length }); + + // On first context push, fetch immediately then schedule recurring alarm + if (isFirstContext) { + await this.refreshWithTimeRange(timeRange, config, logger); + } + } + + /** + * Initialize zone-scoped exporter with zone metadata. + * Called by AccountMetricCoordinator when ensuring zone exporters exist. + * Triggers immediate fetch on first initialization. + * + * @param zone Zone metadata including ID, name, and plan. + * @param accountId Cloudflare account ID that owns the zone. + * @param accountName Account display name. + * @param timeRange Shared time range for metrics queries. + */ + async initializeZone( + zone: Zone, + accountId: string, + accountName: string, + timeRange: TimeRange, + ): Promise { + const config = await getConfig(this.env); + const logger = this.createLogger(config); + const state = this.getState(); + + if (state.scopeType !== "zone") { + logger.warn("initializeZone called on non-zone exporter"); + return; + } + + const isFirstInit = state.zoneMetadata === null && state.lastRefresh === 0; + + this.state = { + ...state, + accountId, + accountName, + zoneMetadata: zone, + }; + await this.ctx.storage.put(STATE_KEY, this.state); + + logger.info("Zone metadata set", { zone: zone.name }); + + // On first init, fetch immediately then schedule recurring alarm + if (isFirstInit) { + await this.refreshWithTimeRange(timeRange, config, logger); + } + } + + /** + * Durable Object alarm handler. + * Triggers metric refresh and reschedules next alarm with jitter. + */ + override async alarm(): Promise { + const config = await getConfig(this.env); + const logger = this.createLogger(config); + logger.info("Alarm fired, refreshing"); + const timeRange = getTimeRange( + config.scrapeDelaySeconds, + config.timeWindowSeconds, + ); + await this.refreshWithTimeRange(timeRange, config, logger); + } + + /** + * Public method for coordinator to trigger refresh with shared time range. + * Called by AccountMetricCoordinator to ensure all exporters use the same time window. + * + * @param timeRange Shared time range calculated by coordinator. + */ + async triggerRefresh(timeRange: TimeRange): Promise { + const config = await getConfig(this.env); + const logger = this.createLogger(config); + await this.refreshWithTimeRange(timeRange, config, logger); + } + + /** + * Refresh metrics from Cloudflare API using the provided time range. + * Handles account-scoped and zone-scoped queries, processes counters, and schedules next alarm. + * + * @param timeRange Time range for metrics queries. + * @param config Resolved runtime configuration. + * @param logger Logger instance for logging. + */ + private async refreshWithTimeRange( + timeRange: TimeRange, + config: ResolvedConfig, + logger: Logger, + ): Promise { + const state = this.getState(); + + // Skip if zone context not yet pushed (account-scoped needs zones) + if (state.scopeType === "account" && state.zones.length === 0) { + logger.info("Skipping refresh - no zone context yet"); + await this.scheduleNextAlarm(config); + return; + } + + // Skip if zone metadata not set (zone-scoped) + if (state.scopeType === "zone" && state.zoneMetadata === null) { + logger.info("Skipping refresh - no zone metadata yet"); + await this.scheduleNextAlarm(config); + return; + } + + // For zone-scoped (SSL certs), check cache TTL + if (state.scopeType === "zone") { + const cacheAgeMs = Date.now() - state.lastSslFetch; + const cacheTtlMs = config.sslCertsCacheTtlSeconds * 1000; + if (state.lastSslFetch > 0 && cacheAgeMs < cacheTtlMs) { + logger.debug("SSL cert cache fresh, skipping fetch", { + age_seconds: Math.floor(cacheAgeMs / 1000), + ttl_seconds: config.sslCertsCacheTtlSeconds, + }); + await this.scheduleNextAlarm(config); + return; + } + } + + const client = getCloudflareMetricsClient(this.env); + + try { + let metrics: MetricDefinition[]; + + if (state.scopeType === "account") { + metrics = await this.fetchAccountScopedMetrics( + client, + state, + timeRange, + ); + } else { + metrics = await this.fetchZoneScopedMetrics(client, state); + } + + const processed = this.processCounters(metrics, state.counters); + + this.state = { + ...state, + metrics: processed.metrics, + counters: processed.counters, + lastRefresh: Date.now(), + lastSslFetch: + state.scopeType === "zone" ? Date.now() : state.lastSslFetch, + lastError: null, + }; + await this.ctx.storage.put(STATE_KEY, this.state); + + logger.info("Refresh complete", { + metric_count: metrics.length, + }); + } catch (error) { + const msg = error instanceof Error ? error.message : String(error); + logger.error("Refresh failed", { error: msg }); + this.state = { ...state, lastError: msg }; + await this.ctx.storage.put(STATE_KEY, this.state); + } + + await this.scheduleNextAlarm(config); + } + + /** + * Schedule the next alarm with jitter for time range alignment. + * + * @param config Resolved runtime configuration. + */ + private async scheduleNextAlarm(config: ResolvedConfig): Promise { + const intervalMs = config.metricRefreshIntervalSeconds * 1000; + // Jitter: 1-5s fixed (tighter clustering for time range alignment) + const jitter = 1000 + Math.random() * 4000; + const nextAlarm = Date.now() + intervalMs + jitter; + + await this.ctx.storage.setAlarm(nextAlarm); + } + + /** + * Fetch account-scoped metrics from Cloudflare API. + * Handles both account-level and zone-batched queries. + * + * @param client Cloudflare metrics client. + * @param state Current exporter state. + * @param timeRange Time range for metrics queries. + * @returns Array of metric definitions. + */ + private async fetchAccountScopedMetrics( + client: ReturnType, + state: MetricExporterState, + timeRange: TimeRange, + ): Promise { + const { queryName, accountId, accountName, zones, firewallRules } = state; + + // Account-level queries (worker-totals, logpush-account, magic-transit) + if (isAccountLevelQuery(queryName)) { + return client.getAccountMetrics( + queryName, + accountId, + accountName, + timeRange, + ); + } + + // Zone-batched queries - fetch all zones in one GraphQL call + if (isZoneLevelQuery(queryName)) { + const zoneIds = zones.map((z) => z.id); + return client.getZoneMetrics( + queryName, + zoneIds, + zones, + firewallRules, + timeRange, + ); + } + + // Unknown query - should not happen if IDs are constructed correctly + console.error("Unknown query type", { queryName }); + return []; + } + + /** + * Fetch zone-scoped metrics from Cloudflare API. + * Handles SSL certificates and load balancer weight metrics. + * + * @param client Cloudflare metrics client. + * @param state Current exporter state. + * @returns Array of metric definitions. + */ + private async fetchZoneScopedMetrics( + client: ReturnType, + state: MetricExporterState, + ): Promise { + const { queryName, zoneMetadata } = state; + + if (zoneMetadata === null) { + return []; + } + + switch (queryName) { + case "ssl-certificates": + return client.getSSLCertificateMetricsForZone(zoneMetadata); + case "lb-weight-metrics": + return client.getLbWeightMetricsForZone(zoneMetadata); + default: + console.error("Unknown zone-scoped query", { queryName }); + return []; + } + } + + /** + * Return cached accumulated metrics. + * + * @returns Current snapshot of metrics with accumulated counter values. + */ + async export(): Promise { + const state = this.getState(); + return state.metrics; + } + + /** + * Process raw metrics and accumulate counter values. + * + * @param rawMetrics Raw metrics from Cloudflare API. + * @param existingCounters Existing counter state. + * @returns Processed metrics with accumulated counter values and updated counter state. + */ + private processCounters( + rawMetrics: MetricDefinition[], + existingCounters: Record, + ): { metrics: MetricDefinition[]; counters: Record } { + const newCounters: Record = { ...existingCounters }; + + const metrics = rawMetrics.map((metric) => { + if (metric.type !== "counter") { + return metric; + } + + const processedValues: MetricValue[] = metric.values.map((value) => { + const key = metricKey(metric.name, value.labels); + newCounters[key] = this.updateCounter(newCounters[key], value.value); + return { labels: value.labels, value: newCounters[key].accumulated }; + }); + + return { ...metric, values: processedValues }; + }); + + return { metrics, counters: newCounters }; + } + + /** + * Update counter state with a new raw value. + * Handles counter resets by detecting decreases. + * + * @param existing Existing counter state or undefined for new counter. + * @param rawValue New raw counter value from API. + * @returns Updated counter state with accumulated value. + */ + private updateCounter( + existing: CounterState | undefined, + rawValue: number, + ): CounterState { + if (!existing) { + return { prev: rawValue, accumulated: rawValue }; + } + const delta = + rawValue < existing.prev ? rawValue : rawValue - existing.prev; + return { + prev: rawValue, + accumulated: existing.accumulated + delta, + }; + } +} diff --git a/src/env.d.ts b/src/env.d.ts new file mode 100644 index 0000000..72c9eec --- /dev/null +++ b/src/env.d.ts @@ -0,0 +1,5 @@ +declare namespace Cloudflare { + interface Env { + CLOUDFLARE_API_TOKEN: string; + } +} diff --git a/src/index.ts b/src/index.ts deleted file mode 100644 index 2780d5b..0000000 --- a/src/index.ts +++ /dev/null @@ -1,64 +0,0 @@ -import { DurableObject } from "cloudflare:workers"; - -/** - * Welcome to Cloudflare Workers! This is your first Durable Objects application. - * - * - Run `npm run dev` in your terminal to start a development server - * - Open a browser tab at http://localhost:8787/ to see your Durable Object in action - * - Run `npm run deploy` to publish your application - * - * Bind resources to your worker in `wrangler.jsonc`. After adding bindings, a type definition for the - * `Env` object can be regenerated with `npm run cf-typegen`. - * - * Learn more at https://developers.cloudflare.com/durable-objects - */ - -/** A Durable Object's behavior is defined in an exported Javascript class */ -export class MyDurableObject extends DurableObject { - /** - * The constructor is invoked once upon creation of the Durable Object, i.e. the first call to - * `DurableObjectStub::get` for a given identifier (no-op constructors can be omitted) - * - * @param ctx - The interface for interacting with Durable Object state - * @param env - The interface to reference bindings declared in wrangler.jsonc - */ - constructor(ctx: DurableObjectState, env: Env) { - super(ctx, env); - } - - /** - * The Durable Object exposes an RPC method sayHello which will be invoked when a Durable - * Object instance receives a request from a Worker via the same method invocation on the stub - * - * @param name - The name provided to a Durable Object instance from a Worker - * @returns The greeting to be sent back to the Worker - */ - async sayHello(name: string): Promise { - return `Hello, ${name}!`; - } -} - -export default { - /** - * This is the standard fetch handler for a Cloudflare Worker - * - * @param request - The request submitted to the Worker from the client - * @param env - The interface to reference bindings declared in wrangler.jsonc - * @param ctx - The execution context of the Worker - * @returns The response to be sent back to the client - */ - async fetch(request, env, ctx): Promise { - // Create a stub to open a communication channel with the Durable Object - // instance named "foo". - // - // Requests from all Workers to the Durable Object instance named "foo" - // will go to a single remote Durable Object instance. - const stub = env.MY_DURABLE_OBJECT.getByName("foo"); - - // Call the `sayHello()` RPC method on the stub to invoke the method on - // the remote Durable Object instance. - const greeting = await stub.sayHello("world"); - - return new Response(greeting); - }, -} satisfies ExportedHandler; diff --git a/src/lib/config.ts b/src/lib/config.ts new file mode 100644 index 0000000..91fc9fa --- /dev/null +++ b/src/lib/config.ts @@ -0,0 +1,93 @@ +import z from "zod"; + +/** + * Application configuration parsed from environment variables. + */ +export type AppConfig = { + readonly excludeHost: boolean; + readonly httpStatusGroup: boolean; + readonly metricsDenylist: ReadonlySet; + readonly cfAccounts: ReadonlySet | null; + readonly cfZones: ReadonlySet | null; + readonly cfFreeTierAccounts: ReadonlySet; + readonly metricsPath: string; + readonly disableUi: boolean; + readonly disableConfigApi: boolean; +}; + +/** + * Parses comma-separated string into Set, trimming whitespace. + * Returns empty Set for empty/undefined input. + * + * @param value Comma-separated string or undefined. + * @returns Set of trimmed non-empty strings. + */ +function parseCommaSeparated(value: string | undefined): Set { + if (!value || value.trim() === "") { + return new Set(); + } + return new Set( + value + .split(",") + .map((s) => s.trim()) + .filter((s) => s.length > 0), + ); +} + +/** + * Optional environment variables not defined in wrangler.jsonc vars. + */ +type OptionalEnvVars = { + METRICS_DENYLIST?: string; + CF_ACCOUNTS?: string; + CF_ZONES?: string; + CF_FREE_TIER_ACCOUNTS?: string; +}; + +/** + * Parses application configuration from environment variables. + * Uses Zod for type coercion with sensible defaults. + * + * @param env Worker environment bindings. + * @returns Parsed application configuration. + */ +export function parseConfig(env: Env): AppConfig { + const optionalEnv = env as Env & OptionalEnvVars; + + const excludeHost = z.coerce.boolean().catch(false).parse(env.EXCLUDE_HOST); + const httpStatusGroup = z.coerce + .boolean() + .catch(false) + .parse(env.CF_HTTP_STATUS_GROUP); + const metricsPath = z + .string() + .min(1) + .catch("/metrics") + .parse(env.METRICS_PATH); + const disableUi = z.coerce.boolean().catch(false).parse(env.DISABLE_UI); + const disableConfigApi = z.coerce + .boolean() + .catch(false) + .parse(env.DISABLE_CONFIG_API); + + const metricsDenylist = parseCommaSeparated(optionalEnv.METRICS_DENYLIST); + const cfAccountsRaw = parseCommaSeparated(optionalEnv.CF_ACCOUNTS); + const cfAccounts = cfAccountsRaw.size > 0 ? cfAccountsRaw : null; + const cfZonesRaw = parseCommaSeparated(optionalEnv.CF_ZONES); + const cfZones = cfZonesRaw.size > 0 ? cfZonesRaw : null; + const cfFreeTierAccounts = parseCommaSeparated( + optionalEnv.CF_FREE_TIER_ACCOUNTS, + ); + + return { + excludeHost, + httpStatusGroup, + metricsDenylist, + cfAccounts, + cfZones, + cfFreeTierAccounts, + metricsPath, + disableUi, + disableConfigApi, + }; +} diff --git a/src/lib/errors.ts b/src/lib/errors.ts new file mode 100644 index 0000000..4ba32cb --- /dev/null +++ b/src/lib/errors.ts @@ -0,0 +1,459 @@ +/** + * Error codes for categorization and alerting. + */ +export const ErrorCode = { + // API/Network + API_RATE_LIMITED: "API_RATE_LIMITED", + API_TIMEOUT: "API_TIMEOUT", + API_UNAVAILABLE: "API_UNAVAILABLE", + API_AUTH_FAILED: "API_AUTH_FAILED", + + // GraphQL + GRAPHQL_ERROR: "GRAPHQL_ERROR", + GRAPHQL_FIELD_ACCESS: "GRAPHQL_FIELD_ACCESS", + + // Config + CONFIG_INVALID: "CONFIG_INVALID", + CONFIG_PARSE_ERROR: "CONFIG_PARSE_ERROR", + + // State + STATE_NOT_INITIALIZED: "STATE_NOT_INITIALIZED", + + // Validation + VALIDATION_ERROR: "VALIDATION_ERROR", + + // Timeout + TIMEOUT: "TIMEOUT", + + // Unknown + UNKNOWN: "UNKNOWN", +} as const; + +/** + * Error code type. + */ +export type ErrorCode = (typeof ErrorCode)[keyof typeof ErrorCode]; + +/** + * Error context type. + */ +type ErrorContext = Record; + +/** + * CloudflarePrometheusError options. + */ +type CloudflarePrometheusErrorOptions = ErrorOptions & { + context?: ErrorContext; + retryable?: boolean; +}; + +/** + * Base error class with cause chaining, error codes, and structured logging support. + */ +export class CloudflarePrometheusError extends Error { + readonly code: ErrorCode; + readonly context: ErrorContext; + readonly timestamp: string; + readonly retryable: boolean; + + /** + * Create a CloudflarePrometheusError. + * + * @param message Error message. + * @param code Error code. + * @param options Error options. + */ + constructor( + message: string, + code: ErrorCode, + options?: CloudflarePrometheusErrorOptions, + ) { + super(message, options); + + // Fix prototype chain for instanceof checks + Object.setPrototypeOf(this, new.target.prototype); + + this.name = this.constructor.name; + this.code = code; + this.context = options?.context ?? {}; + this.timestamp = new Date().toISOString(); + this.retryable = options?.retryable ?? false; + + // Append cause stack if available + if (options?.cause instanceof Error) { + this.stack = `${this.stack}\nCaused by: ${options.cause.stack}`; + } + } + + /** + * Convert to structured data for logging. + * + * @returns Structured error context. + */ + toStructuredData(): ErrorContext { + return { + error_code: this.code, + error_message: this.message, + error_name: this.name, + error_retryable: this.retryable, + ...this.context, + }; + } +} + +/** + * API errors (rate limits, unavailable, auth failures). + */ +export class ApiError extends CloudflarePrometheusError { + readonly statusCode?: number; + + /** + * Create an ApiError. + * + * @param message Error message. + * @param options Error options. + */ + constructor( + message: string, + options?: CloudflarePrometheusErrorOptions & { statusCode?: number }, + ) { + const statusCode = options?.statusCode; + let code: ErrorCode; + let retryable = false; + + if (statusCode === 429) { + code = ErrorCode.API_RATE_LIMITED; + retryable = true; + } else if (statusCode === 401 || statusCode === 403) { + code = ErrorCode.API_AUTH_FAILED; + } else if (statusCode !== undefined && statusCode >= 500) { + code = ErrorCode.API_UNAVAILABLE; + retryable = true; + } else { + code = ErrorCode.API_UNAVAILABLE; + } + + super(message, code, { ...options, retryable }); + this.statusCode = statusCode; + } + + /** + * Convert to structured data for logging. + * + * @returns Structured error context. + */ + override toStructuredData(): ErrorContext { + return { + ...super.toStructuredData(), + ...(this.statusCode !== undefined && { status_code: this.statusCode }), + }; + } +} + +/** + * GraphQL error detail. + */ +type GraphQLErrorDetail = { + message: string; + path?: ReadonlyArray; + extensions?: Record; +}; + +/** + * GraphQL query errors with access to underlying error details. + */ +export class GraphQLError extends CloudflarePrometheusError { + readonly graphqlErrors: GraphQLErrorDetail[]; + + /** + * Create a GraphQLError. + * + * @param message Error message. + * @param graphqlErrors GraphQL error details. + * @param options Error options. + */ + constructor( + message: string, + graphqlErrors: GraphQLErrorDetail[] = [], + options?: CloudflarePrometheusErrorOptions, + ) { + const hasFieldAccessError = graphqlErrors.some( + (e) => + e.message.includes("does not have access") || + e.extensions?.code === "FORBIDDEN", + ); + const code = hasFieldAccessError + ? ErrorCode.GRAPHQL_FIELD_ACCESS + : ErrorCode.GRAPHQL_ERROR; + + super(message, code, options); + this.graphqlErrors = graphqlErrors; + } + + /** + * Convert to structured data for logging. + * + * @returns Structured error context. + */ + override toStructuredData(): ErrorContext { + return { + ...super.toStructuredData(), + graphql_error_count: this.graphqlErrors.length, + graphql_paths: this.graphqlErrors + .map((e) => e.path?.join(".")) + .filter(Boolean), + }; + } +} + +/** + * Configuration parsing/validation errors. + */ +export class ConfigError extends CloudflarePrometheusError { + readonly issues?: Array<{ path: string; message: string }>; + + /** + * Create a ConfigError. + * + * @param message Error message. + * @param options Error options. + */ + constructor( + message: string, + options?: CloudflarePrometheusErrorOptions & { + issues?: Array<{ path: string; message: string }>; + }, + ) { + const code = message.includes("parse") + ? ErrorCode.CONFIG_PARSE_ERROR + : ErrorCode.CONFIG_INVALID; + super(message, code, options); + this.issues = options?.issues; + } + + /** + * Convert to structured data for logging. + * + * @returns Structured error context. + */ + override toStructuredData(): ErrorContext { + return { + ...super.toStructuredData(), + ...(this.issues && { validation_issues: this.issues }), + }; + } +} + +/** + * State not initialized (DO not ready). + */ +export class StateNotInitializedError extends CloudflarePrometheusError { + /** + * Create a StateNotInitializedError. + * + * @param component Component name. + * @param options Error options. + */ + constructor( + component: string, + options?: Omit, + ) { + super( + `State not initialized - initialize() must be called first`, + ErrorCode.STATE_NOT_INITIALIZED, + { + ...options, + context: { component }, + }, + ); + } +} + +/** + * Operation timeout. + */ +export class TimeoutError extends CloudflarePrometheusError { + readonly timeoutMs: number; + readonly operation: string; + + /** + * Create a TimeoutError. + * + * @param operation Operation name. + * @param timeoutMs Timeout in milliseconds. + * @param options Error options. + */ + constructor( + operation: string, + timeoutMs: number, + options?: CloudflarePrometheusErrorOptions, + ) { + super(`${operation} timed out after ${timeoutMs}ms`, ErrorCode.TIMEOUT, { + ...options, + retryable: true, + context: { ...options?.context, operation, timeout_ms: timeoutMs }, + }); + this.timeoutMs = timeoutMs; + this.operation = operation; + } +} + +/** + * Race promise against timeout with proper cleanup. + * + * @param promise Promise to race. + * @param ms Timeout in milliseconds. + * @param operation Operation name. + * @returns Discriminated union for type-safe handling. + */ +export async function withTimeout( + promise: Promise, + ms: number, + operation = "Operation", +): Promise<{ ok: true; value: T } | { ok: false; error: TimeoutError }> { + let timeoutId: ReturnType | undefined; + + const timeoutPromise = new Promise((_, reject) => { + timeoutId = setTimeout(() => reject(new TimeoutError(operation, ms)), ms); + }); + + try { + const value = await Promise.race([promise, timeoutPromise]); + return { ok: true, value }; + } catch (err) { + if (err instanceof TimeoutError) { + return { ok: false, error: err }; + } + throw err; + } finally { + if (timeoutId !== undefined) { + clearTimeout(timeoutId); + } + } +} + +/** + * Validation error (Zod or other). + */ +export class ValidationError extends CloudflarePrometheusError { + readonly field?: string; + + /** + * Create a ValidationError. + * + * @param message Error message. + * @param options Error options. + */ + constructor( + message: string, + options?: CloudflarePrometheusErrorOptions & { field?: string }, + ) { + super(message, ErrorCode.VALIDATION_ERROR, options); + this.field = options?.field; + } + + /** + * Convert to structured data for logging. + * + * @returns Structured error context. + */ + override toStructuredData(): ErrorContext { + return { + ...super.toStructuredData(), + ...(this.field && { field: this.field }), + }; + } +} + +/** + * Extract structured error info from any error type. + * + * @param error Error to extract info from. + * @returns Structured error info. + */ +export function extractErrorInfo(error: unknown): { + message: string; + stack?: string; + code: ErrorCode; + context: ErrorContext; + retryable: boolean; +} { + if (error instanceof CloudflarePrometheusError) { + return { + message: error.message, + stack: error.stack, + code: error.code, + context: error.context, + retryable: error.retryable, + }; + } + + if (error instanceof Error) { + return { + message: error.message, + stack: error.stack, + code: ErrorCode.UNKNOWN, + context: {}, + retryable: false, + }; + } + + return { + message: String(error), + code: ErrorCode.UNKNOWN, + context: {}, + retryable: false, + }; +} + +/** + * Check if an error is retryable. + * + * @param error Error to check. + * @returns True if retryable. + */ +export function isRetryable(error: unknown): boolean { + if (error instanceof CloudflarePrometheusError) { + return error.retryable; + } + + // Network errors are generally retryable + if (error instanceof TypeError && error.message.includes("fetch")) { + return true; + } + + return false; +} + +/** + * Wrap an unknown error as a CloudflarePrometheusError. + * + * @param error Error to wrap. + * @param message Error message. + * @param code Error code. + * @param context Error context. + * @returns Wrapped error. + */ +export function wrapError( + error: unknown, + message: string, + code: ErrorCode = ErrorCode.UNKNOWN, + context?: ErrorContext, +): CloudflarePrometheusError { + if (error instanceof CloudflarePrometheusError) { + // Already our error type, just add context if needed + if (context) { + return new CloudflarePrometheusError(message, error.code, { + cause: error, + context: { ...error.context, ...context }, + retryable: error.retryable, + }); + } + return error; + } + + return new CloudflarePrometheusError(message, code, { + cause: error instanceof Error ? error : undefined, + context, + }); +} diff --git a/src/lib/filters.ts b/src/lib/filters.ts new file mode 100644 index 0000000..4467ec0 --- /dev/null +++ b/src/lib/filters.ts @@ -0,0 +1,58 @@ +import type { Account, Zone } from "./types"; + +/** + * Parses comma-separated string into Set, trimming whitespace. + * + * @param value Comma-separated string to parse. + * @returns Set of trimmed non-empty strings, or empty Set for empty/undefined input. + */ +export function parseCommaSeparated(value: string | undefined): Set { + if (!value || value.trim() === "") { + return new Set(); + } + return new Set( + value + .split(",") + .map((s) => s.trim()) + .filter((s) => s.length > 0), + ); +} + +/** + * Filters accounts to only include those with IDs in the set. + * + * @param accounts Array of accounts to filter. + * @param includeIds Set of account IDs to include. + * @returns Filtered array of accounts. + */ +export function filterAccountsByIds( + accounts: Account[], + includeIds: ReadonlySet, +): Account[] { + return accounts.filter((a) => includeIds.has(a.id)); +} + +/** + * Filters zones to only include those with IDs in the set. + * + * @param zones Array of zones to filter. + * @param includeIds Set of zone IDs to include. + * @returns Filtered array of zones. + */ +export function filterZonesByIds( + zones: Zone[], + includeIds: ReadonlySet, +): Zone[] { + return zones.filter((z) => includeIds.has(z.id)); +} + +/** + * Looks up zone name by ID, falling back to ID if not found. + * + * @param zoneId Zone ID to look up. + * @param zones Array of zones to search. + * @returns Zone name if found, otherwise the zone ID. + */ +export function findZoneName(zoneId: string, zones: Zone[]): string { + return zones.find((z) => z.id === zoneId)?.name ?? zoneId; +} diff --git a/src/lib/health.ts b/src/lib/health.ts new file mode 100644 index 0000000..a0c0c8d --- /dev/null +++ b/src/lib/health.ts @@ -0,0 +1,185 @@ +import { + CLOUDFLARE_GQL_URL, + getCloudflareMetricsClient, +} from "../cloudflare/client"; +import { extractErrorInfo, withTimeout } from "./errors"; +import { getConfig } from "./runtime-config"; + +const CHECK_TIMEOUT_MS = 5_000; + +type CheckStatus = "healthy" | "unhealthy"; + +type HealthCheck = { + status: CheckStatus; + latency_ms: number; + error?: string; + error_code?: string; +}; + +type HealthResponse = { + status: CheckStatus; + timestamp: string; + checks: { + cloudflare_api: HealthCheck; + graphql_api: HealthCheck; + }; +}; + +type CachedHealth = { + response: HealthResponse; + expires: number; +}; + +let healthCache: CachedHealth | null = null; + +/** + * Check Cloudflare REST API connectivity by fetching accounts. + * + * @param env Environment variables. + * @returns Health check result. + */ +async function checkCloudflareApi(env: Env): Promise { + const start = performance.now(); + + try { + const client = getCloudflareMetricsClient(env); + const result = await withTimeout( + client.getAccounts(), + CHECK_TIMEOUT_MS, + "Cloudflare API health check", + ); + const latency_ms = Math.round(performance.now() - start); + + if (result.ok) { + return { status: "healthy", latency_ms }; + } + return { + status: "unhealthy", + latency_ms, + error: result.error.message, + error_code: result.error.code, + }; + } catch (err) { + const latency_ms = Math.round(performance.now() - start); + const info = extractErrorInfo(err); + return { + status: "unhealthy", + latency_ms, + error: info.message, + error_code: info.code, + }; + } +} + +/** + * Check Cloudflare GraphQL API connectivity via introspection. + * + * @param env Environment variables. + * @returns Health check result. + */ +async function checkGraphqlApi(env: Env): Promise { + const start = performance.now(); + + try { + const result = await withTimeout( + fetch(CLOUDFLARE_GQL_URL, { + method: "POST", + headers: { + "Content-Type": "application/json", + Authorization: `Bearer ${env.CLOUDFLARE_API_TOKEN}`, + }, + body: JSON.stringify({ + query: "{ __typename }", + }), + }), + CHECK_TIMEOUT_MS, + "GraphQL API health check", + ); + + const latency_ms = Math.round(performance.now() - start); + + if (!result.ok) { + return { + status: "unhealthy", + latency_ms, + error: result.error.message, + error_code: result.error.code, + }; + } + + const response = result.value; + if (!response.ok) { + return { + status: "unhealthy", + latency_ms, + error: `HTTP ${response.status}`, + error_code: "API_UNAVAILABLE", + }; + } + + return { status: "healthy", latency_ms }; + } catch (err) { + const latency_ms = Math.round(performance.now() - start); + const info = extractErrorInfo(err); + return { + status: "unhealthy", + latency_ms, + error: info.message, + error_code: info.code, + }; + } +} + +/** + * Perform health check with configurable caching. + * + * @param env Environment variables. + * @returns Health check response. + */ +export async function checkHealth(env: Env): Promise { + const now = Date.now(); + const config = await getConfig(env); + const cacheTtlMs = config.healthCheckCacheTtlSeconds * 1000; + + if (healthCache && healthCache.expires > now) { + return healthCache.response; + } + + const [cloudflareApi, graphqlApi] = await Promise.all([ + checkCloudflareApi(env), + checkGraphqlApi(env), + ]); + + const allHealthy = + cloudflareApi.status === "healthy" && graphqlApi.status === "healthy"; + + const response: HealthResponse = { + status: allHealthy ? "healthy" : "unhealthy", + timestamp: new Date().toISOString(), + checks: { + cloudflare_api: cloudflareApi, + graphql_api: graphqlApi, + }, + }; + + healthCache = { + response, + expires: now + cacheTtlMs, + }; + + return response; +} + +/** + * Build HTTP response from health check result. + * + * @param health Health check response. + * @returns HTTP response with JSON body. + */ +export function healthResponse(health: HealthResponse): Response { + const status = health.status === "healthy" ? 200 : 503; + return new Response(JSON.stringify(health), { + status, + headers: { "Content-Type": "application/json" }, + }); +} diff --git a/src/lib/logger.ts b/src/lib/logger.ts new file mode 100644 index 0000000..9f17bf9 --- /dev/null +++ b/src/lib/logger.ts @@ -0,0 +1,323 @@ +import { createConsola, type LogObject } from "consola"; + +// Raw ANSI escape codes - bypass consola's color detection which doesn't work in wrangler dev +const ansi = { + reset: "\x1b[0m", + dim: "\x1b[2m", + bold: "\x1b[1m", + red: "\x1b[31m", + green: "\x1b[32m", + yellow: "\x1b[33m", + blue: "\x1b[34m", + magenta: "\x1b[35m", + cyan: "\x1b[36m", + white: "\x1b[37m", + gray: "\x1b[90m", +}; + +const c = { + dim: (s: string) => `${ansi.dim}${s}${ansi.reset}`, + red: (s: string) => `${ansi.red}${s}${ansi.reset}`, + green: (s: string) => `${ansi.green}${s}${ansi.reset}`, + yellow: (s: string) => `${ansi.yellow}${s}${ansi.reset}`, + cyan: (s: string) => `${ansi.cyan}${s}${ansi.reset}`, + white: (s: string) => `${ansi.white}${s}${ansi.reset}`, + gray: (s: string) => `${ansi.gray}${s}${ansi.reset}`, + magenta: (s: string) => `${ansi.magenta}${s}${ansi.reset}`, +}; + +/** + * Log severity levels. + */ +export type LogLevel = "debug" | "info" | "warn" | "error"; + +/** + * Output format: json for structured logs, pretty for human-readable. + */ +export type LogFormat = "json" | "pretty"; + +/** + * Key-value pairs attached to log entries. + */ +export type StructuredData = Record; + +/** + * Structured logger with level methods, namespacing, and context. + */ +export interface Logger { + /** + * Log debug message. + * + * @param msg Message text. + * @param data Optional structured data. + */ + debug(msg: string, data?: StructuredData): void; + + /** + * Log info message. + * + * @param msg Message text. + * @param data Optional structured data. + */ + info(msg: string, data?: StructuredData): void; + + /** + * Log warning message. + * + * @param msg Message text. + * @param data Optional structured data. + */ + warn(msg: string, data?: StructuredData): void; + + /** + * Log error message. + * + * @param msg Message text. + * @param data Optional structured data. + */ + error(msg: string, data?: StructuredData): void; + + /** + * Create child logger with namespaced tag. + * + * @param namespace Namespace appended to parent tag with colon separator. + * @returns New logger instance. + */ + child(namespace: string): Logger; + + /** + * Create logger with merged context data. + * + * @param ctx Context data merged into all log entries. + * @returns New logger instance. + */ + withContext(ctx: StructuredData): Logger; +} + +/** + * Logger configuration. + */ +export interface LoggerConfig { + /** Output format, defaults to pretty. */ + format?: LogFormat; + + /** Minimum log level, defaults to info. */ + level?: LogLevel; +} + +const LEVELS: Record = { + debug: 0, + info: 1, + warn: 2, + error: 3, +}; + +const LEVEL_COLORS: Record string> = { + debug: c.gray, + info: c.cyan, + warn: c.yellow, + error: c.red, +}; + +const LEVEL_ICONS: Record = { + debug: "●", + info: "◆", + warn: "▲", + error: "✖", +}; + +/** + * Format current time as HH:MM:SS. + * + * @returns Formatted time string. + */ +function formatTime(): string { + const now = new Date(); + return `${String(now.getHours()).padStart(2, "0")}:${String(now.getMinutes()).padStart(2, "0")}:${String(now.getSeconds()).padStart(2, "0")}`; +} + +/** + * Get current UTC timestamp in ISO format. + * + * @returns ISO 8601 timestamp string. + */ +function utcTimestamp(): string { + return new Date().toISOString(); +} + +/** + * Format value for display in logs. + * + * @param v Value to format. + * @returns Formatted string representation. + */ +function formatValue(v: unknown): string { + if (typeof v === "string") return v; + if (typeof v === "number" || typeof v === "boolean") return String(v); + return JSON.stringify(v); +} + +/** + * Format structured data as key=value pairs. + * + * @param data Structured data object. + * @returns Formatted string with colored key-value pairs. + */ +function formatData(data: StructuredData): string { + return Object.entries(data) + .map(([k, v]) => `${c.dim(k)}=${c.white(formatValue(v))}`) + .join(" "); +} + +/** + * Shorten tag for display: truncate zone/account IDs to 8 chars. + * + * @param tag Tag string to shorten. + * @returns Shortened tag string. + */ +function shortenTag(tag: string): string { + // Pattern: something:scope:longid:query -> something:scope:shortid:query + return tag.replace(/([a-f0-9]{32})/g, (match) => match.slice(0, 8)); +} + +/** + * Create pretty console reporter for human-readable logs. + * + * @param minLevel Minimum log level to output. + * @returns Reporter object with log method. + */ +function createPrettyReporter(minLevel: LogLevel) { + const minLevelNum = LEVELS[minLevel]; + + return { + log(logObj: LogObject) { + const level = logObj.type as LogLevel; + if (LEVELS[level] === undefined || LEVELS[level] < minLevelNum) return; + + const tag = logObj.tag || "app"; + const colorFn = LEVEL_COLORS[level] || c.white; + const icon = LEVEL_ICONS[level] || "●"; + const args = logObj.args as [string, StructuredData?]; + const msg = args[0]; + const data = args[1]; + + const time = c.dim(formatTime()); + const levelBadge = colorFn(`${icon} ${level.toUpperCase().padEnd(5)}`); + const shortTag = c.dim(shortenTag(tag)); + const suffix = data ? ` ${formatData(data)}` : ""; + + console.log(`${time} ${levelBadge} ${shortTag} ${msg}${suffix}`); + }, + }; +} + +/** + * Create JSON reporter for structured logs. + * + * @param minLevel Minimum log level to output. + * @returns Reporter object with log method. + */ +function createJsonReporter(minLevel: LogLevel) { + const minLevelNum = LEVELS[minLevel]; + + return { + log(logObj: LogObject) { + const level = logObj.type as LogLevel; + if (LEVELS[level] === undefined || LEVELS[level] < minLevelNum) return; + + const tagParts = (logObj.tag || "app").split(":"); + const [logger, ...namespaceParts] = tagParts; + const namespace = + namespaceParts.length > 0 ? namespaceParts.join(":") : undefined; + + const args = logObj.args as [string, StructuredData?]; + const msg = args[0]; + const data = args[1]; + + console.log( + JSON.stringify({ + ts: utcTimestamp(), + logger, + ...(namespace && { namespace }), + level, + msg, + ...data, + }), + ); + }, + }; +} + +// Consola log levels: 0=silent, 1=error, 2=warn, 3=info, 4=debug, 5=trace +const CONSOLA_LEVELS: Record = { + error: 1, + warn: 2, + info: 3, + debug: 4, +}; + +/** + * Create logger instance with specified name and config. + * + * @param name Logger name, normalized to lowercase with underscores. + * @param config Logger configuration. + * @returns Configured logger instance. + */ +export function createLogger(name: string, config: LoggerConfig = {}): Logger { + const format = config.format ?? "pretty"; + const level = config.level ?? "info"; + + const reporter = + format === "json" ? createJsonReporter(level) : createPrettyReporter(level); + + const consola = createConsola({ + level: CONSOLA_LEVELS[level], + reporters: [reporter], + }); + + function makeLogger(tag: string, baseContext: StructuredData = {}): Logger { + const instance = consola.withTag(tag); + + const mergeData = (data?: StructuredData): StructuredData | undefined => { + if (!data && Object.keys(baseContext).length === 0) return undefined; + if (!data) return baseContext; + return { ...baseContext, ...data }; + }; + + return { + debug: (msg, data) => instance.debug(msg, mergeData(data)), + info: (msg, data) => instance.info(msg, mergeData(data)), + warn: (msg, data) => instance.warn(msg, mergeData(data)), + error: (msg, data) => instance.error(msg, mergeData(data)), + child: (ns) => makeLogger(`${tag}:${ns}`, baseContext), + withContext: (ctx) => makeLogger(tag, { ...baseContext, ...ctx }), + }; + } + + const normalizedName = name.toLowerCase().replace(/[ -]/g, "_"); + return makeLogger(normalizedName); +} + +/** + * Create logger config from Cloudflare Worker env. + * + * @param env Environment object with LOG_FORMAT and LOG_LEVEL. + * @returns Logger configuration. + */ +export function configFromEnv(env: { + LOG_FORMAT?: string; + LOG_LEVEL?: string; +}): LoggerConfig { + const format = env.LOG_FORMAT; + const level = env.LOG_LEVEL; + return { + format: format === "json" || format === "pretty" ? format : "pretty", + level: + level === "debug" || + level === "info" || + level === "warn" || + level === "error" + ? level + : "info", + }; +} diff --git a/src/lib/metrics.ts b/src/lib/metrics.ts new file mode 100644 index 0000000..5527b37 --- /dev/null +++ b/src/lib/metrics.ts @@ -0,0 +1,42 @@ +import z from "zod"; + +/** + * Prometheus metric type discriminator. + */ +export type MetricType = z.infer; + +/** + * Zod schema validating Prometheus metric types (counter or gauge). + */ +export const MetricTypeSchema = z.union([ + z.literal("counter"), + z.literal("gauge"), +]); + +/** + * Single metric observation with labels and numeric value. + */ +export type MetricValue = z.infer; + +/** + * Zod schema validating metric observations with label key-value pairs and numeric values. + */ +export const MetricValueSchema = z.object({ + labels: z.record(z.string(), z.string()), + value: z.number(), +}); + +/** + * Complete metric definition with metadata and observations for Prometheus export. + */ +export type MetricDefinition = z.infer; + +/** + * Zod schema validating complete metric definitions including name, help text, type, and observations. + */ +export const MetricDefinitionSchema = z.object({ + name: z.string(), + help: z.string(), + type: MetricTypeSchema, + values: z.array(MetricValueSchema), +}); diff --git a/src/lib/prometheus.ts b/src/lib/prometheus.ts new file mode 100644 index 0000000..82aa286 --- /dev/null +++ b/src/lib/prometheus.ts @@ -0,0 +1,149 @@ +import type { MetricDefinition } from "./metrics"; + +/** + * Options for Prometheus serialization. + */ +export type SerializeOptions = { + /** Set of metric names to exclude from output. */ + denylist?: ReadonlySet; + /** Set of label keys to exclude from all metrics. */ + excludeLabels?: ReadonlySet; +}; + +/** + * Serializes MetricDefinition array to Prometheus text exposition format. + * Groups metrics by name, outputs HELP/TYPE headers, then values. + * + * @param metrics Array of metric definitions to serialize. + * @param options Serialization options for filtering. + * @returns Prometheus-formatted metrics string. + */ +export function serializeToPrometheus( + metrics: readonly MetricDefinition[], + options?: SerializeOptions, +): string { + const denylist = options?.denylist ?? new Set(); + const excludeLabels = options?.excludeLabels ?? new Set(); + + // Group metrics by name to consolidate HELP/TYPE headers + const grouped = new Map(); + + for (const metric of metrics) { + // Skip denied metrics + if (denylist.has(metric.name)) { + continue; + } + + // Filter excluded labels from all values + const filteredValues = + excludeLabels.size > 0 + ? metric.values.map((v) => ({ + ...v, + labels: filterLabels(v.labels, excludeLabels), + })) + : metric.values; + + const existing = grouped.get(metric.name); + if (existing) { + // Merge values + grouped.set(metric.name, { + ...existing, + values: [...existing.values, ...filteredValues], + }); + } else { + grouped.set(metric.name, { ...metric, values: [...filteredValues] }); + } + } + + const lines: string[] = []; + + for (const [name, metric] of grouped) { + // HELP line + lines.push(`# HELP ${name} ${escapeHelp(metric.help)}`); + // TYPE line + lines.push(`# TYPE ${name} ${metric.type}`); + + // Value lines + for (const { labels, value } of metric.values) { + const labelStr = formatLabels(labels); + lines.push(`${name}${labelStr} ${formatValue(value)}`); + } + + // Blank line between metrics for readability + lines.push(""); + } + + return lines.join("\n"); +} + +/** + * Filters out excluded label keys from a labels object. + * + * @param labels Original label key-value pairs. + * @param exclude Set of label keys to exclude. + * @returns Filtered labels object. + */ +function filterLabels( + labels: Record, + exclude: ReadonlySet, +): Record { + const filtered: Record = {}; + for (const [key, value] of Object.entries(labels)) { + if (!exclude.has(key)) { + filtered[key] = value; + } + } + return filtered; +} + +/** + * Formats labels object into Prometheus label string. + * + * @param labels Label key-value pairs. + * @returns Formatted label string like `{key="value"}` or empty string. + */ +function formatLabels(labels: Record): string { + const entries = Object.entries(labels); + if (entries.length === 0) return ""; + + const formatted = entries + .map(([key, value]) => `${key}="${escapeLabel(value)}"`) + .join(","); + + return `{${formatted}}`; +} + +/** + * Formats numeric value for Prometheus output. + * + * @param value Numeric value to format. + * @returns String representation handling NaN and Infinity. + */ +function formatValue(value: number): string { + if (Number.isNaN(value)) return "NaN"; + if (!Number.isFinite(value)) return value > 0 ? "+Inf" : "-Inf"; + return String(value); +} + +/** + * Escapes special characters in HELP text. + * + * @param help Raw help text. + * @returns Escaped help text. + */ +function escapeHelp(help: string): string { + return help.replace(/\\/g, "\\\\").replace(/\n/g, "\\n"); +} + +/** + * Escapes special characters in label values. + * + * @param value Raw label value. + * @returns Escaped label value. + */ +function escapeLabel(value: string): string { + return value + .replace(/\\/g, "\\\\") + .replace(/"/g, '\\"') + .replace(/\n/g, "\\n"); +} diff --git a/src/lib/runtime-config.ts b/src/lib/runtime-config.ts new file mode 100644 index 0000000..f02f403 --- /dev/null +++ b/src/lib/runtime-config.ts @@ -0,0 +1,375 @@ +import { z } from "zod"; + +/** KV storage key for configuration overrides. */ +const KV_KEY = "overrides"; + +/** + * Zod schema for valid configuration key names. + */ +export const ConfigKeySchema = z.enum([ + // Timing/limits + "queryLimit", + "scrapeDelaySeconds", + "timeWindowSeconds", + "metricRefreshIntervalSeconds", + // Cache TTLs + "accountListCacheTtlSeconds", + "zoneListCacheTtlSeconds", + "sslCertsCacheTtlSeconds", + "healthCheckCacheTtlSeconds", + // Logging + "logFormat", + "logLevel", + // Filters/whitelists + "cfAccounts", + "cfZones", + "cfFreeTierAccounts", + "metricsDenylist", + // Output options + "excludeHost", + "httpStatusGroup", +]); + +/** + * Union type of all valid configuration key names. + */ +export type ConfigKey = z.infer; + +/** + * Zod schemas for individual configuration values by key. + */ +const ConfigValueSchemas = { + queryLimit: z.number().int().positive(), + scrapeDelaySeconds: z.number().int().nonnegative(), + timeWindowSeconds: z.number().int().positive(), + metricRefreshIntervalSeconds: z.number().int().positive(), + accountListCacheTtlSeconds: z.number().int().nonnegative(), + zoneListCacheTtlSeconds: z.number().int().nonnegative(), + sslCertsCacheTtlSeconds: z.number().int().nonnegative(), + healthCheckCacheTtlSeconds: z.number().int().nonnegative(), + logFormat: z.enum(["json", "pretty"]), + logLevel: z.enum(["debug", "info", "warn", "error"]), + cfAccounts: z.string().nullable(), + cfZones: z.string().nullable(), + cfFreeTierAccounts: z.string(), + metricsDenylist: z.string(), + excludeHost: z.boolean(), + httpStatusGroup: z.boolean(), +} as const; + +/** + * Zod schema for partial configuration overrides (all fields optional). + */ +export const ConfigOverridesSchema = z + .object({ + queryLimit: ConfigValueSchemas.queryLimit.optional(), + scrapeDelaySeconds: ConfigValueSchemas.scrapeDelaySeconds.optional(), + timeWindowSeconds: ConfigValueSchemas.timeWindowSeconds.optional(), + metricRefreshIntervalSeconds: + ConfigValueSchemas.metricRefreshIntervalSeconds.optional(), + accountListCacheTtlSeconds: + ConfigValueSchemas.accountListCacheTtlSeconds.optional(), + zoneListCacheTtlSeconds: + ConfigValueSchemas.zoneListCacheTtlSeconds.optional(), + sslCertsCacheTtlSeconds: + ConfigValueSchemas.sslCertsCacheTtlSeconds.optional(), + healthCheckCacheTtlSeconds: + ConfigValueSchemas.healthCheckCacheTtlSeconds.optional(), + logFormat: ConfigValueSchemas.logFormat.optional(), + logLevel: ConfigValueSchemas.logLevel.optional(), + cfAccounts: ConfigValueSchemas.cfAccounts.optional(), + cfZones: ConfigValueSchemas.cfZones.optional(), + cfFreeTierAccounts: ConfigValueSchemas.cfFreeTierAccounts.optional(), + metricsDenylist: ConfigValueSchemas.metricsDenylist.optional(), + excludeHost: ConfigValueSchemas.excludeHost.optional(), + httpStatusGroup: ConfigValueSchemas.httpStatusGroup.optional(), + }) + .readonly(); + +/** + * Partial configuration overrides stored in KV. + */ +export type ConfigOverrides = z.infer; + +/** + * Zod schema for fully resolved configuration (all fields required). + */ +export const ResolvedConfigSchema = z + .object({ + queryLimit: ConfigValueSchemas.queryLimit, + scrapeDelaySeconds: ConfigValueSchemas.scrapeDelaySeconds, + timeWindowSeconds: ConfigValueSchemas.timeWindowSeconds, + metricRefreshIntervalSeconds: + ConfigValueSchemas.metricRefreshIntervalSeconds, + accountListCacheTtlSeconds: ConfigValueSchemas.accountListCacheTtlSeconds, + zoneListCacheTtlSeconds: ConfigValueSchemas.zoneListCacheTtlSeconds, + sslCertsCacheTtlSeconds: ConfigValueSchemas.sslCertsCacheTtlSeconds, + healthCheckCacheTtlSeconds: ConfigValueSchemas.healthCheckCacheTtlSeconds, + logFormat: ConfigValueSchemas.logFormat, + logLevel: ConfigValueSchemas.logLevel, + cfAccounts: ConfigValueSchemas.cfAccounts, + cfZones: ConfigValueSchemas.cfZones, + cfFreeTierAccounts: ConfigValueSchemas.cfFreeTierAccounts, + metricsDenylist: ConfigValueSchemas.metricsDenylist, + excludeHost: ConfigValueSchemas.excludeHost, + httpStatusGroup: ConfigValueSchemas.httpStatusGroup, + }) + .readonly(); + +/** + * Fully resolved configuration with all fields populated. + */ +export type ResolvedConfig = z.infer; + +/** + * Optional environment variables not defined in wrangler.jsonc. + */ +type OptionalEnvVars = { + METRICS_DENYLIST?: string; + CF_ACCOUNTS?: string; + CF_ZONES?: string; + CF_FREE_TIER_ACCOUNTS?: string; + HEALTH_CHECK_CACHE_TTL_SECONDS?: string; +}; + +/** + * Gets default configuration values from environment variables. + * + * @param env Worker environment bindings. + * @returns Resolved configuration with defaults applied. + */ +export function getEnvDefaults(env: Env): ResolvedConfig { + const optionalEnv = env as Env & OptionalEnvVars; + return { + queryLimit: z.coerce.number().catch(10000).parse(env.QUERY_LIMIT), + scrapeDelaySeconds: z.coerce + .number() + .catch(300) + .parse(env.SCRAPE_DELAY_SECONDS), + timeWindowSeconds: z.coerce + .number() + .catch(60) + .parse(env.TIME_WINDOW_SECONDS), + metricRefreshIntervalSeconds: z.coerce + .number() + .catch(60) + .parse(env.METRIC_REFRESH_INTERVAL_SECONDS), + accountListCacheTtlSeconds: z.coerce + .number() + .catch(600) + .parse(env.ACCOUNT_LIST_CACHE_TTL_SECONDS), + zoneListCacheTtlSeconds: z.coerce + .number() + .catch(1800) + .parse(env.ZONE_LIST_CACHE_TTL_SECONDS), + sslCertsCacheTtlSeconds: z.coerce + .number() + .catch(1800) + .parse(env.SSL_CERTS_CACHE_TTL_SECONDS), + healthCheckCacheTtlSeconds: z.coerce + .number() + .catch(10) + .parse(optionalEnv.HEALTH_CHECK_CACHE_TTL_SECONDS), + logFormat: z.enum(["json", "pretty"]).catch("pretty").parse(env.LOG_FORMAT), + logLevel: z + .enum(["debug", "info", "warn", "error"]) + .catch("info") + .parse(env.LOG_LEVEL), + cfAccounts: optionalEnv.CF_ACCOUNTS?.trim() || null, + cfZones: optionalEnv.CF_ZONES?.trim() || null, + cfFreeTierAccounts: optionalEnv.CF_FREE_TIER_ACCOUNTS?.trim() ?? "", + metricsDenylist: optionalEnv.METRICS_DENYLIST?.trim() ?? "", + excludeHost: z.coerce.boolean().catch(false).parse(env.EXCLUDE_HOST), + httpStatusGroup: z.coerce + .boolean() + .catch(false) + .parse(env.CF_HTTP_STATUS_GROUP), + }; +} + +/** + * Reads configuration overrides from KV storage. + * Returns empty object on parse errors or missing data. + * + * @param env Worker environment bindings. + * @returns Configuration overrides or empty object. + */ +async function readOverrides(env: Env): Promise { + const raw = await env.CONFIG_KV.get(KV_KEY); + if (!raw) return {}; + try { + const parsed: unknown = JSON.parse(raw); + const result = ConfigOverridesSchema.safeParse(parsed); + if (!result.success) { + console.error("Invalid config overrides in KV, using defaults", { + error: result.error.message, + }); + return {}; + } + return result.data; + } catch { + console.error("Failed to parse config overrides from KV, using defaults"); + return {}; + } +} + +/** + * Writes configuration overrides to KV storage. + * + * @param env Worker environment bindings. + * @param overrides Configuration overrides to persist. + */ +async function writeOverrides( + env: Env, + overrides: ConfigOverrides, +): Promise { + await env.CONFIG_KV.put(KV_KEY, JSON.stringify(overrides)); +} + +/** + * Merges configuration overrides with environment defaults. + * + * @param defaults Default configuration from environment. + * @param overrides Partial overrides from KV storage. + * @returns Fully resolved configuration. + */ +function mergeConfig( + defaults: ResolvedConfig, + overrides: ConfigOverrides, +): ResolvedConfig { + return { + queryLimit: overrides.queryLimit ?? defaults.queryLimit, + scrapeDelaySeconds: + overrides.scrapeDelaySeconds ?? defaults.scrapeDelaySeconds, + timeWindowSeconds: + overrides.timeWindowSeconds ?? defaults.timeWindowSeconds, + metricRefreshIntervalSeconds: + overrides.metricRefreshIntervalSeconds ?? + defaults.metricRefreshIntervalSeconds, + accountListCacheTtlSeconds: + overrides.accountListCacheTtlSeconds ?? + defaults.accountListCacheTtlSeconds, + zoneListCacheTtlSeconds: + overrides.zoneListCacheTtlSeconds ?? defaults.zoneListCacheTtlSeconds, + sslCertsCacheTtlSeconds: + overrides.sslCertsCacheTtlSeconds ?? defaults.sslCertsCacheTtlSeconds, + healthCheckCacheTtlSeconds: + overrides.healthCheckCacheTtlSeconds ?? + defaults.healthCheckCacheTtlSeconds, + logFormat: overrides.logFormat ?? defaults.logFormat, + logLevel: overrides.logLevel ?? defaults.logLevel, + cfAccounts: + overrides.cfAccounts !== undefined + ? overrides.cfAccounts + : defaults.cfAccounts, + cfZones: + overrides.cfZones !== undefined ? overrides.cfZones : defaults.cfZones, + cfFreeTierAccounts: + overrides.cfFreeTierAccounts ?? defaults.cfFreeTierAccounts, + metricsDenylist: overrides.metricsDenylist ?? defaults.metricsDenylist, + excludeHost: overrides.excludeHost ?? defaults.excludeHost, + httpStatusGroup: overrides.httpStatusGroup ?? defaults.httpStatusGroup, + }; +} + +/** + * Gets resolved configuration by merging KV overrides with environment defaults. + * + * @param env Worker environment bindings. + * @returns Fully resolved configuration. + */ +export async function getConfig(env: Env): Promise { + const defaults = getEnvDefaults(env); + const overrides = await readOverrides(env); + return mergeConfig(defaults, overrides); +} + +/** + * Gets a single configuration key value. + * + * @param env Worker environment bindings. + * @param key Configuration key to retrieve. + * @returns Value for the specified configuration key. + */ +export async function getConfigKey( + env: Env, + key: K, +): Promise { + const config = await getConfig(env); + return config[key]; +} + +/** + * Validates a value for a specific configuration key. + * + * @param key Configuration key to validate against. + * @param value Value to validate. + * @returns Validation result with parsed data or Zod error. + */ +export function validateConfigValue( + key: ConfigKey, + value: unknown, +): { success: true; data: unknown } | { success: false; error: z.ZodError } { + return ConfigValueSchemas[key].safeParse(value); +} + +/** + * Result type for setConfigKey operation. + */ +type SetConfigKeyResult = + | { success: true; config: ResolvedConfig } + | { success: false; error: z.ZodError }; + +/** + * Sets a single configuration key override with validation. + * + * @param env Worker environment bindings. + * @param key Configuration key to set. + * @param value Value to set for the key. + * @returns Result with updated config or validation error. + */ +export async function setConfigKey( + env: Env, + key: ConfigKey, + value: unknown, +): Promise { + const result = ConfigValueSchemas[key].safeParse(value); + if (!result.success) { + return { success: false, error: result.error }; + } + const overrides = await readOverrides(env); + const updated = { ...overrides, [key]: result.data }; + await writeOverrides(env, updated); + return { + success: true, + config: mergeConfig(getEnvDefaults(env), updated), + }; +} + +/** + * Resets a single configuration key to its environment default. + * + * @param env Worker environment bindings. + * @param key Configuration key to reset. + * @returns Resolved configuration after reset. + */ +export async function resetConfigKey( + env: Env, + key: ConfigKey, +): Promise { + const overrides = await readOverrides(env); + const { [key]: _, ...remaining } = overrides; + await writeOverrides(env, remaining); + return mergeConfig(getEnvDefaults(env), remaining); +} + +/** + * Resets all configuration overrides to environment defaults. + * + * @param env Worker environment bindings. + * @returns Resolved configuration with only environment defaults. + */ +export async function resetAllConfig(env: Env): Promise { + await env.CONFIG_KV.delete(KV_KEY); + return getEnvDefaults(env); +} diff --git a/src/lib/time.ts b/src/lib/time.ts new file mode 100644 index 0000000..f03e004 --- /dev/null +++ b/src/lib/time.ts @@ -0,0 +1,41 @@ +import type { TimeRange } from "./types"; + +/** + * Computes time range for GraphQL queries with delay and window. + * Rounds to nearest minute and applies delay to account for ingestion lag. + * + * @param scrapeDelaySeconds Delay in seconds to account for ingestion lag. + * @param timeWindowSeconds Window size in seconds for the time range. + * @returns Time range with mintime and maxtime ISO strings. + */ +export function getTimeRange( + scrapeDelaySeconds: number = 300, + timeWindowSeconds: number = 60, +): TimeRange { + const now = new Date(); + now.setSeconds(0, 0); + now.setTime(now.getTime() - scrapeDelaySeconds * 1000); + const maxtime = now.toISOString(); + now.setTime(now.getTime() - timeWindowSeconds * 1000); + const mintime = now.toISOString(); + return { mintime, maxtime }; +} + +/** + * Generates deterministic metric key from name and labels. + * Labels are sorted alphabetically for consistency. + * + * @param name Metric name. + * @param labels Label key value pairs. + * @returns Formatted metric key string. + */ +export function metricKey( + name: string, + labels: Record, +): string { + const sortedLabels = Object.entries(labels) + .sort(([a], [b]) => a.localeCompare(b)) + .map(([k, v]) => `${k}=${v}`) + .join(","); + return `${name}{${sortedLabels}}`; +} diff --git a/src/lib/types.ts b/src/lib/types.ts new file mode 100644 index 0000000..177da35 --- /dev/null +++ b/src/lib/types.ts @@ -0,0 +1,195 @@ +import z from "zod"; +import { MetricDefinitionSchema } from "./metrics"; + +// Re-export metric types from metrics.ts +export type { MetricDefinition, MetricType, MetricValue } from "./metrics"; +export { MetricDefinitionSchema } from "./metrics"; + +/** + * Zod schema for MetricExporter scope: account-level or zone-level. + */ +export const ScopeTypeSchema = z.enum(["account", "zone"]); + +/** + * Scope discriminator for MetricExporter DOs. + */ +export type ScopeType = z.infer; + +/** + * String literal type for MetricExporter DO IDs: "scope:id:queryName". + */ +export type MetricExporterIdString = + `${"account" | "zone"}:${string}:${string}`; + +/** + * Zod schema that parses and validates MetricExporter DO ID strings. + * Transforms "scope:id:query" into structured object. + */ +export const MetricExporterIdSchema = z + .string() + .regex(/^(account|zone):[^:]+:[^:]+$/) + .transform((s) => { + const parts = s.split(":"); + // Regex guarantees exactly 3 parts with account|zone prefix + const scopeType = ScopeTypeSchema.parse(parts[0]); + const scopeId = z.string().min(1).parse(parts[1]); + const queryName = z.string().min(1).parse(parts[2]); + return { scopeType, scopeId, queryName }; + }); + +/** + * Parsed MetricExporter DO identifier with scope, ID, and query name. + */ +export type MetricExporterId = z.infer; + +/** + * Zod schema for counter state tracking previous value and accumulated total. + */ +export const CounterStateSchema = z + .object({ + prev: z.number(), + accumulated: z.number(), + }) + .readonly(); + +/** + * Counter state for Prometheus monotonic counter semantics. + */ +export type CounterState = z.infer; + +/** + * Zod schema for persistent metric state in MetricExporter DO storage. + */ +export const MetricStateSchema = z + .object({ + accountId: z.string().optional(), + accountName: z.string().optional(), + counters: z.record(z.string(), CounterStateSchema), + metrics: z.array(MetricDefinitionSchema).readonly(), + lastFetch: z.number(), + lastError: z.string().optional(), + }) + .readonly(); + +/** + * Persistent metric state stored in MetricExporter DO. + */ +export type MetricState = z.infer; + +/** + * Zod schema for Cloudflare account API response. + */ +export const AccountSchema = z + .object({ + id: z.string(), + name: z.string(), + }) + .readonly(); + +/** + * Cloudflare account with ID and name. + */ +export type Account = z.infer; + +/** + * Zod schema for Cloudflare zone API response with plan and account. + */ +export const ZoneSchema = z + .object({ + id: z.string(), + name: z.string(), + status: z.string(), + plan: z.object({ + id: z.string(), + name: z.string(), + }), + account: z.object({ + id: z.string(), + name: z.string(), + }), + }) + .readonly(); + +/** + * Cloudflare zone with plan and account associations. + */ +export type Zone = z.infer; + +/** + * Zod schema for Cloudflare SSL certificate API response. + */ +export const SSLCertificateSchema = z + .object({ + id: z.string(), + type: z.string(), + status: z.string(), + issuer: z.string(), + expiresOn: z.string(), + hosts: z.array(z.string()), + }) + .readonly(); + +/** + * SSL certificate with expiration and host coverage. + */ +export type SSLCertificate = z.infer; + +/** + * Zod schema for GraphQL query time range with ISO 8601 timestamps. + */ +export const TimeRangeSchema = z + .object({ + mintime: z.string(), + maxtime: z.string(), + }) + .readonly(); + +/** + * Time range for GraphQL queries with start and end timestamps. + */ +export type TimeRange = z.infer; + +/** + * Zod schema for load balancer origin configuration. + */ +export const LoadBalancerOriginSchema = z + .object({ + name: z.string(), + address: z.string(), + enabled: z.boolean(), + weight: z.number(), + }) + .passthrough() + .readonly(); + +/** + * Load balancer origin with weight configuration. + */ +export type LoadBalancerOrigin = z.infer; + +/** + * Zod schema for load balancer pool configuration. + */ +export const LoadBalancerPoolSchema = z + .object({ + id: z.string(), + name: z.string(), + enabled: z.boolean(), + origins: z.array(LoadBalancerOriginSchema), + }) + .passthrough() + .readonly(); + +/** + * Load balancer pool with origins. + */ +export type LoadBalancerPool = z.infer; + +/** + * Combined load balancer with resolved pools. + */ +export type LoadBalancerWithPools = { + readonly id: string; + readonly name: string; + readonly pools: readonly LoadBalancerPool[]; +}; diff --git a/src/worker.tsx b/src/worker.tsx new file mode 100644 index 0000000..f7a368e --- /dev/null +++ b/src/worker.tsx @@ -0,0 +1,128 @@ +import { env } from "cloudflare:workers"; +import { Hono } from "hono"; +import { LandingPage } from "./components/LandingPage"; +import { AccountMetricCoordinator } from "./durable-objects/AccountMetricCoordinator"; +import { MetricCoordinator } from "./durable-objects/MetricCoordinator"; +import { MetricExporter } from "./durable-objects/MetricExporter"; +import { type AppConfig, parseConfig } from "./lib/config"; +import { checkHealth, healthResponse } from "./lib/health"; +import { configFromEnv, createLogger } from "./lib/logger"; +import { + ConfigKeySchema, + getConfig, + getConfigKey, + getEnvDefaults, + resetAllConfig, + resetConfigKey, + setConfigKey, +} from "./lib/runtime-config"; + +export { MetricCoordinator, AccountMetricCoordinator, MetricExporter }; + +type Variables = { config: AppConfig }; + +const app = new Hono<{ Bindings: Env; Variables: Variables }>(); + +// Parse config middleware +app.use("*", async (c, next) => { + c.set("config", parseConfig(c.env)); + await next(); +}); + +// Disable guards +app.use("*", async (c, next) => { + const path = c.req.path; + if (c.var.config.disableUi && path === "/") { + return c.text("Not Found", 404); + } + if (c.var.config.disableConfigApi && path.startsWith("/config")) { + return c.text("Not Found", 404); + } + await next(); +}); + +// Dynamic metrics path middleware (runs before routing) +app.get(env.METRICS_PATH, async (c) => { + const logger = createLogger("worker", configFromEnv(c.env)).withContext({ + request_id: crypto.randomUUID(), + }); + logger.info("Metrics request received"); + + try { + const coordinator = await MetricCoordinator.get(c.env); + const output = await coordinator.export(); + logger.info("Metrics exported successfully"); + return c.text(output, 200, { + "Content-Type": "text/plain; charset=utf-8", + }); + } catch (error) { + const message = error instanceof Error ? error.message : String(error); + logger.error("Failed to collect metrics", { error: message }); + return c.text(`Error collecting metrics: ${message}`, 500); + } +}); + +// Routes +app.get("/", (c) => c.html()); + +app.get("/health", async (c) => { + const health = await checkHealth(c.env); + return healthResponse(health); +}); + +// Config API routes +app.get("/config", async (c) => { + const config = await getConfig(c.env); + return c.json(config); +}); + +app.get("/config/defaults", (c) => { + const defaults = getEnvDefaults(c.env); + return c.json(defaults); +}); + +app.get("/config/:key", async (c) => { + const keyResult = ConfigKeySchema.safeParse(c.req.param("key")); + if (!keyResult.success) { + return c.json({ error: "Invalid config key" }, 400); + } + const value = await getConfigKey(c.env, keyResult.data); + return c.json({ key: keyResult.data, value }); +}); + +app.put("/config/:key", async (c) => { + const keyResult = ConfigKeySchema.safeParse(c.req.param("key")); + if (!keyResult.success) { + return c.json({ error: "Invalid config key" }, 400); + } + const body = await c.req.json<{ value: unknown }>().catch(() => null); + if (!body || !("value" in body)) { + return c.json({ error: "Request body must contain 'value'" }, 400); + } + const result = await setConfigKey(c.env, keyResult.data, body.value); + if (!result.success) { + return c.json( + { error: "Invalid value", details: result.error.issues }, + 400, + ); + } + return c.json(result.config); +}); + +app.delete("/config/:key", async (c) => { + const keyResult = ConfigKeySchema.safeParse(c.req.param("key")); + if (!keyResult.success) { + return c.json({ error: "Invalid config key" }, 400); + } + const config = await resetConfigKey(c.env, keyResult.data); + return c.json(config); +}); + +app.delete("/config", async (c) => { + const config = await resetAllConfig(c.env); + return c.json(config); +}); + +app.notFound((c) => c.text("Not Found", 404)); + +export default app; diff --git a/tsconfig.json b/tsconfig.json index d1eef7f..f1ea78b 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,43 +1,46 @@ { "compilerOptions": { - /* Visit https://aka.ms/tsconfig.json to read more about this file */ - - /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */ - "target": "es2021", - /* Specify a set of bundled library declaration files that describe the target runtime environment. */ - "lib": ["es2021"], - /* Specify what JSX code is generated. */ + // Environment setup & latest features + "lib": ["ESNext"], + "target": "ESNext", + "module": "Preserve", + "moduleDetection": "force", "jsx": "react-jsx", - - /* Specify what module code is generated. */ - "module": "es2022", - /* Specify how TypeScript looks up a file from a given module specifier. */ - "moduleResolution": "node", + "jsxImportSource": "hono/jsx", + "allowJs": true, + // Bundler mode + "moduleResolution": "bundler", + "allowImportingTsExtensions": true, + "verbatimModuleSyntax": true, + "noEmit": true, + // Best practices + "strict": true, + "skipLibCheck": true, + "noFallthroughCasesInSwitch": true, + "noUncheckedIndexedAccess": true, + "noImplicitOverride": true, + // Some stricter flags (disabled by default) + "noUnusedLocals": false, + "noUnusedParameters": false, + "noPropertyAccessFromIndexSignature": false, /* Enable importing .json files */ "resolveJsonModule": true, - - /* Allow JavaScript files to be a part of your program. Use the `checkJS` option to get errors from these files. */ - "allowJs": true, /* Enable error reporting in type-checked JavaScript files. */ "checkJs": false, - - /* Disable emitting files from a compilation. */ - "noEmit": true, - /* Ensure that each file can be safely transpiled without relying on other imports. */ "isolatedModules": true, /* Allow 'import x from y' when a module doesn't have a default export. */ "allowSyntheticDefaultImports": true, /* Ensure that casing is correct in imports. */ "forceConsistentCasingInFileNames": true, - - /* Enable all strict type-checking options. */ - "strict": true, - - /* Skip type checking all .d.ts files. */ - "skipLibCheck": true, - "types": [ - "./worker-configuration.d.ts" + "types": ["./worker-configuration.d.ts"], + /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */ + "plugins": [ + { + "name": "gql.tada/ts-plugin", + "schema": "./src/gql/schema.gql", + "tadaOutputLocation": "./src/gql/graphql-env.d.ts" + } ] } } diff --git a/worker-configuration.d.ts b/worker-configuration.d.ts index 79b6818..ba24356 100644 --- a/worker-configuration.d.ts +++ b/worker-configuration.d.ts @@ -1,16 +1,41 @@ /* eslint-disable */ -// Generated by Wrangler by running `wrangler types` (hash: 543f992083f7639592591242de0b7088) -// Runtime types generated with workerd@1.20251125.0 2025-12-02 +// Generated by Wrangler by running `wrangler types` (hash: d16ad07d8f190b43581686102026ae12) +// Runtime types generated with workerd@1.20251202.0 2025-12-09 nodejs_compat declare namespace Cloudflare { interface GlobalProps { - mainModule: typeof import("./src/index"); - durableNamespaces: "MyDurableObject"; + mainModule: typeof import("./src/worker"); + durableNamespaces: "MetricExporter" | "MetricCoordinator" | "AccountMetricCoordinator"; } interface Env { - MY_DURABLE_OBJECT: DurableObjectNamespace; + CONFIG_KV: KVNamespace; + QUERY_LIMIT: 10000; + SCRAPE_DELAY_SECONDS: 300; + TIME_WINDOW_SECONDS: 60; + METRIC_REFRESH_INTERVAL_SECONDS: 60; + LOG_FORMAT: "json"; + LOG_LEVEL: "info"; + ACCOUNT_LIST_CACHE_TTL_SECONDS: 600; + ZONE_LIST_CACHE_TTL_SECONDS: 1800; + SSL_CERTS_CACHE_TTL_SECONDS: 1800; + EXCLUDE_HOST: false; + CF_HTTP_STATUS_GROUP: false; + METRICS_PATH: "/metrics"; + DISABLE_UI: false; + DISABLE_CONFIG_API: false; + CLOUDFLARE_API_TOKEN: string; + MetricCoordinator: DurableObjectNamespace; + AccountMetricCoordinator: DurableObjectNamespace; + MetricExporter: DurableObjectNamespace; + CF_API_RATE_LIMITER: RateLimit; } } interface Env extends Cloudflare.Env {} +type StringifyValues> = { + [Binding in keyof EnvType]: EnvType[Binding] extends string ? EnvType[Binding] : string; +}; +declare namespace NodeJS { + interface ProcessEnv extends StringifyValues> {} +} // Begin runtime types /*! ***************************************************************************** @@ -10808,8 +10833,11 @@ type InstanceStatus = { | 'complete' | 'waiting' // instance is hibernating and waiting for sleep or event to finish | 'waitingForPause' // instance is finishing the current work to pause | 'unknown'; - error?: string; - output?: object; + error?: { + name: string; + message: string; + }; + output?: unknown; }; interface WorkflowError { code?: number; diff --git a/wrangler.jsonc b/wrangler.jsonc index 7b59751..36626ff 100644 --- a/wrangler.jsonc +++ b/wrangler.jsonc @@ -4,56 +4,68 @@ */ { "$schema": "node_modules/wrangler/config-schema.json", - "name": "cloudflare-prometheus-exporter-v2", - "main": "src/index.ts", - "compatibility_date": "2025-12-02", + "name": "cloudflare-prometheus-exporter", + "main": "src/worker.tsx", + "compatibility_date": "2025-12-09", + "compatibility_flags": ["nodejs_compat"], "migrations": [ { + "tag": "v1", "new_sqlite_classes": [ - "MyDurableObject" - ], - "tag": "v1" + "MetricExporter", + "MetricCoordinator", + "AccountMetricCoordinator" + ] } ], "durable_objects": { "bindings": [ { - "class_name": "MyDurableObject", - "name": "MY_DURABLE_OBJECT" + "name": "MetricCoordinator", + "class_name": "MetricCoordinator" + }, + { + "name": "AccountMetricCoordinator", + "class_name": "AccountMetricCoordinator" + }, + { + "name": "MetricExporter", + "class_name": "MetricExporter" } ] }, "observability": { "enabled": true + }, + "kv_namespaces": [ + { + "binding": "CONFIG_KV" + } + ], + "ratelimits": [ + { + "name": "CF_API_RATE_LIMITER", + "namespace_id": "1", + "simple": { + "limit": 40, + "period": 10 + } + } + ], + "vars": { + "QUERY_LIMIT": 10000, + "SCRAPE_DELAY_SECONDS": 300, + "TIME_WINDOW_SECONDS": 60, + "METRIC_REFRESH_INTERVAL_SECONDS": 60, + "LOG_FORMAT": "json", + "LOG_LEVEL": "info", + "ACCOUNT_LIST_CACHE_TTL_SECONDS": 600, + "ZONE_LIST_CACHE_TTL_SECONDS": 1800, + "SSL_CERTS_CACHE_TTL_SECONDS": 1800, + "EXCLUDE_HOST": false, + "CF_HTTP_STATUS_GROUP": false, + "METRICS_PATH": "/metrics", + "DISABLE_UI": false, + "DISABLE_CONFIG_API": false } - /** - * Smart Placement - * Docs: https://developers.cloudflare.com/workers/configuration/smart-placement/#smart-placement - */ - // "placement": { "mode": "smart" } - /** - * Bindings - * Bindings allow your Worker to interact with resources on the Cloudflare Developer Platform, including - * databases, object storage, AI inference, real-time communication and more. - * https://developers.cloudflare.com/workers/runtime-apis/bindings/ - */ - /** - * Environment Variables - * https://developers.cloudflare.com/workers/wrangler/configuration/#environment-variables - */ - // "vars": { "MY_VARIABLE": "production_value" } - /** - * Note: Use secrets to store sensitive data. - * https://developers.cloudflare.com/workers/configuration/secrets/ - */ - /** - * Static Assets - * https://developers.cloudflare.com/workers/static-assets/binding/ - */ - // "assets": { "directory": "./public/", "binding": "ASSETS" } - /** - * Service Bindings (communicate between multiple Workers) - * https://developers.cloudflare.com/workers/wrangler/configuration/#service-bindings - */ - // "services": [{ "binding": "MY_SERVICE", "service": "my-service" }] -} \ No newline at end of file +}